[debian-edu-commits] r80859 - trunk/src/build/CD-administrator
pere at alioth.debian.org
pere at alioth.debian.org
Tue Jun 18 04:35:21 UTC 2013
Author: pere
Date: 2013-06-18 04:35:21 +0000 (Tue, 18 Jun 2013)
New Revision: 80859
Removed:
trunk/src/build/CD-administrator/CONF-wheezy-test-dvd-amd64.sh
trunk/src/build/CD-administrator/cdspacelist-wheezy-test-dvd-amd64.txt
trunk/src/build/CD-administrator/filelist-wheezy-test-dvd-amd64.txt
trunk/src/build/CD-administrator/missingpkglist-wheezy-test-dvd-amd64.txt
trunk/src/build/CD-administrator/pkgdeblist-wheezy-test-dvd-amd64.txt
trunk/src/build/CD-administrator/sort-by-popcon-wheezy-test-dvd-amd64.txt
trunk/src/build/CD-administrator/unwantedpkglist-wheezy-test-dvd-amd64.txt
trunk/src/build/CD-administrator/wantedpkglist-wheezy-test-dvd-amd64.txt
Log:
Remove wheezy-test-dvd-amd64 build completely.
Deleted: trunk/src/build/CD-administrator/CONF-wheezy-test-dvd-amd64.sh
===================================================================
--- trunk/src/build/CD-administrator/CONF-wheezy-test-dvd-amd64.sh 2013-06-18 04:35:02 UTC (rev 80858)
+++ trunk/src/build/CD-administrator/CONF-wheezy-test-dvd-amd64.sh 2013-06-18 04:35:21 UTC (rev 80859)
@@ -1,431 +0,0 @@
-#
-# This file will have to be sourced where needed
-
-# To prevent sourcing this file twice when using scripts to build CD images,
-# use the following code at the top of your script:
-# CF=CONF.sh
-# . $CF
-# export DEBIAN_CD_CONF_SOURCED=true
-
-# Allow to prevent double sourcing of this file
-if [ "$DEBIAN_CD_CONF_SOURCED" = true ]; then
- return 0
-fi
-
-# Unset all optional variables first to start from a clean state
-unset NONFREE || true
-unset CONTRIB || true
-unset EXTRANONFREE || true
-unset LOCAL || true
-unset LOCALDEBS || true
-unset SECURITY || true
-unset PROPOSED_UPDATES || true
-unset BOOTDIR || true
-unset SYMLINK || true
-unset COPYLINK || true
-unset MKISOFS || true
-unset MKISOFS_OPTS || true
-unset ISOLINUX || true
-unset EXCLUDE || true
-unset NORECOMMENDS || true
-unset NOSUGGESTS || true
-unset IMAGESUMS || true
-unset JIGDOTEMPLATEURL || true
-unset JIGDOFALLBACKURLS || true
-unset JIGDOINCLUDEURLS || true
-unset JIGDOSCRIPT || true
-unset JIGDO_OPTS || true
-unset PUBLISH_URL || true
-unset PUBLISH_PATH || true
-unset UDEB_INCLUDE || true
-unset UDEB_EXCLUDE || true
-unset BASE_INCLUDE || true
-unset BASE_EXCLUDE || true
-unset INSTALLER_CD || true
-unset MAXCDS || true
-unset MAXISOS || true
-unset MAXJIGDOS || true
-unset SPLASHPNG || true
-unset OMIT_MANUAL || true
-unset OMIT_RELEASE_NOTES || true
-unset OMIT_DOC_TOOLS || true
-unset SUITE || true
-unset LOGOPNG || true
-
-# The debian-cd dir
-# Where I am (hoping I'm in the debian-cd dir)
-export BASEDIR=`pwd`
-export TOPDIR=/skolelinux/administrator
-
-# Building wheezy cd set ...
-export CODENAME=wheezy
-export LOCALCODE=wheezy-test
-
-# By default use Debian installer packages from $CODENAME
-if [ -z "$DI_CODENAME" ]; then
- export DI_CODENAME=$CODENAME
-fi
-
-# If set, controls where the d-i components are downloaded from.
-# This may be an url, or "default", which will make it use the default url
-# for the daily d-i builds. If not set, uses the official d-i images from
-# the Debian mirror.
-#export DI_WWW_HOME=default
-#export DI_WWW_HOME="http://people.debian.org/~otavio/d-i-lenny/installer-amd64/current/images/"
-
-# Version number, "2.2 r0", "2.2 r1" etc.
-export DEBVERSION="7.0+edu0~a3"
-
-# Official or non-official set.
-# NOTE: THE "OFFICIAL" DESIGNATION IS ONLY ALLOWED FOR IMAGES AVAILABLE
-# ON THE OFFICIAL DEBIAN CD WEBSITE http://cdimage.debian.org
-export OFFICIAL="Unofficial"
-#export OFFICIAL="Official"
-#export OFFICIAL="Official Beta"
-export ARCHES="amd64"
-# ... for arch
-if [ -z "$ARCHES" ]; then
- CPU=`dpkg-architecture -qDEB_HOST_DPKG_CPU 2>/dev/null || true`
- if [ -z "$CPU" ]; then
- CPU=`dpkg-architecture -qDEB_HOST_ARCH`
- fi
- KERNEL=`dpkg-architecture -qDEB_HOST_DPKG_OS 2>/dev/null || true`
- if [ -z "$KERNEL" ]; then
- KERNEL=linux
- fi
- if [ $KERNEL = linux ] ; then
- ARCHES=$CPU
- else
- ARCHES="$KERNEL-$CPU"
- fi
- export ARCHES
-fi
-
-# IMPORTANT : The 4 following paths must be on the same partition/device.
-# If they aren't then you must set COPYLINK below to 1. This
-# takes a lot of extra room to create the sandbox for the ISO
-# images, however. Also, if you are using an NFS partition for
-# some part of this, you must use this option.
-# Paths to the mirrors
-export MIRROR=$TOPDIR/debmirror/debian/debian
-
-# Path of the temporary directory
-export TDIR=$TOPDIR/debmirror/builder_temp_dir/wheezy-test-dvd-amd64
-
-# Path where the images will be written
-export OUT=$TDIR/CD/wheezy-test-dvd-amd64
-
-#edu logo
-export LOGOPNG="$BASEDIR/../debian-edu-installer-logo-wheezy.png"
-
-# Where we keep the temporary apt stuff.
-# This cannot reside on an NFS mount.
-export APTTMP=$TDIR/apt
-
-# Do I want to have NONFREE merged in the CD set
-export NONFREE=1
-
-# Do I want to have CONTRIB merged in the CD set
-export CONTRIB=1
-
-# Do I want to have NONFREE on a separate CD (the last CD of the CD set)
-# WARNING: Don't use NONFREE and EXTRANONFREE at the same time !
-# export EXTRANONFREE=1
-
-# Do I want to force (potentially non-free) firmware packages to be
-# placed on disc 1? Will make installation much easier if systems
-# contain hardware that depends on this firmware
-# If you enable this, make sure to disable the firmware-fixup in DISK_FINISH_HOOK
-# export FORCE_FIRMWARE=1
-
-
-# If you have a $MIRROR/dists/$CODENAME/local/binary-$ARCH dir with
-# local packages that you want to put on the CD set then
-# uncomment the following line
-export LOCAL=1
-
-# If your local packages are not under $MIRROR, but somewhere else,
-# you can uncomment this line and edit to to point to a directory
-# containing dists/$CODENAME/local/binary-$ARCH
-# use local-mirror mirror for local
-#export LOCALDEBS=$TOPDIR/debmirror/builder_temp_dir/local-mirror
-# use morror-link for local-test
-export LOCALDEBS=$TOPDIR/debmirror/builder_temp_dir/mirror-link
-
-# Where to find the security patches. This directory should be the
-# top directory of a security.debian.org mirror.
-export SECURITY="$TOPDIR"/debmirror/debian/debian-security
-
-# Include proposed updates
-# Note that on the CDs it will not be visible where packages came from:
-# from the released archive or from proposed updates archive.
-# NOTE: intended to be used for pre-release testing, not for publication!
-#export PROPOSED_UPDATES=$CODENAME-proposed-updates
-
-# Sparc only : bootdir (location of cd.b and second.b)
-# export BOOTDIR=/boot
-
-# Symlink farmers should uncomment this line :
-# export SYMLINK=1
-
-# Use this to force copying the files instead of symlinking or hardlinking
-# them. This is useful if your destination directories are on a different
-# partition than your source files.
-export COPYLINK=0
-
-# Options
-# export MKISOFS=mkisofs
-# export MKISOFS_OPTS="-r" #For normal users
-# export MKISOFS_OPTS="-r -F ." #For symlink farmers
-
-# ISOLinux support for multiboot on CD1 for i386
-export ISOLINUX=1
-
-# uncomment this to if you want to see more of what the Makefile is doing
-export VERBOSE_MAKE=1
-
-# uncoment this to make build_all.sh try to build a simple CD image if
-# the proper official CD run does not work
-ATTEMPT_FALLBACK=yes
-
-# Set your disk type here. Known types are:
-# BC (businesscard): 650 MiB max (should be limited elsewhere,
-# should never fill a CD anyway)
-# NETINST: 650 MiB max (ditto)
-# CD: standard 74-min CD (650 MiB)
-# CD700: (semi-)standard 80-min CD (700 MiB)
-# DVD: standard 4.7 GB DVD
-# DLDVD: standard 8.5 GB dual-layer DVD
-# BD: standard 25 GB blu-ray
-# DLBD: standard 50 GB dual-layer blu-ray
-# CUSTOM: up to you - specify a size to go with it (in 2K blocks)
-export DISKTYPE=DVD
-#export DISKTYPE=CUSTOM
-#export CUSTOMSIZE=XXXX
-
-# List of languages for which language tasks from tasksel should be
-# included. See tasks/README.tasksel for further info.
-export TASK_LANGLIST=tasksel_d-i.languages
-
-# We don't want certain packages to take up space on CD1...
-#export EXCLUDE1=exclude
-# ...but they are okay for other CDs (UNEXCLUDEx == may be included
-# on CD x if not already covered)
-#export UNEXCLUDE2=unexclude-CD2
-# Any packages listed in EXCLUDEx but not in any UNEXCLUDE will be
-# excluded completely. The same goes for packages listed in EXCLUDE.
-export EXCLUDE=debian-edu-exclude
-
-# Set this if the recommended packages should be skipped when adding
-# package on the CD. The default is 'false'.
-export NORECOMMENDS=0
-
-# Set this if the suggested packages should be skipped when adding
-# package on the CD. The default is 'true'.
-#export NOSUGGESTS=1
-
-# Set to 1 to generate MD5 and SHA1 sums for generated images
-export IMAGESUMS=1
-
-# We may have to extract files from packages to put them onto the CD
-# (e.g. bootloader files). If you make those packages (and their
-# sources) available somewhere, list it here so that README.source
-# can point to it
-export ARCHIVE_EXTRACTED_SOURCES="http://cdimage.debian.org/cdimage/cd-sources/"
-
-# Produce iso/jigdo files: specify how many iso/jigdo files should be
-# produced in your set. If not set or when the value is "ALL" they will
-# be created for all images. One of the variables can be set to zero if
-# either iso or jigdo files are not wanted, but not both.
-# Replaces the old "DOJIGDO" setting with something much more flexible.
-export MAXISOS=1
-export MAXJIGDOS=0
-
-# HTTP/FTP URL for directory where you intend to make the templates
-# available. You should not need to change this; the default value ""
-# means "template in same dir as the .jigdo file", which is usually
-# correct. If it is non-empty, it needs a trailing slash. "%ARCH%"
-# will be substituted by the current architecture.
-#export JIGDOTEMPLATEURL=""
-#
-# Name of a directory on disc to create data for a fallback server in.
-# Should later be made available by you at the URL given in
-# JIGDOFALLBACKURLS. In the directory, two subdirs named "Debian" and
-# "Non-US" will be created, and filled with hard links to the actual
-# files in your FTP archive. Because of the hard links, the dir must
-# be on the same partition as the FTP archive! If unset, no fallback
-# data is created, which may cause problems - see README.
-#export JIGDOFALLBACKPATH="$(OUT)/snapshot/"
-#
-# Space-separated list of label->URL mappings for "jigdo fallback
-# server(s)" to add to .jigdo file. If unset, no fallback URL is
-# added, which may cause problems - see README.
-#export JIGDOFALLBACKURLS="Debian=http://myserver/snapshot/Debian/ Non-US=http://myserver/snapshot/Non-US/"
-#
-# Space-separated list of "include URLs" to add to the .jigdo file.
-# The included files are used to provide an up-to-date list of Debian
-# mirrors to the jigdo _GUI_application_ (_jigdo-lite_ doesn't support
-# "[Include ...]").
-export JIGDOINCLUDEURLS="http://cdimage.debian.org/debian-cd/debian-servers.jigdo"
-#
-# $JIGDOTEMPLATEURL and $JIGDOINCLUDEURLS are passed to
-# "tools/jigdo_header", which is used by default to generate the
-# [Image] and [Servers] sections of the .jigdo file. You can provide
-# your own script if you need the .jigdo file to contain different
-# data.
-#export JIGDOSCRIPT="myscript"
-
-# A couple of things used only by publish_cds, so it can tweak the
-# jigdo files, and knows where to put the results.
-# You need to run publish_cds manually, it is not run by the Makefile.
-export PUBLISH_URL="http://cdimage.debian.org/jigdo-area"
-export PUBLISH_PATH="/home/jigdo-area/"
-
-# Specify files and directories to *exclude* from jigdo processing. These
-# files on each CD are expected to be different to those on the mirror, or
-# are often subject to change. Any files matching entries in this list will
-# simply be placed straight into the template file.
-export JIGDO_EXCLUDE="'README*' /doc/ /md5sum.txt /.disk/ /pics/ 'Release*' 'Packages*' 'Sources*'"
-
-# Specify files that MUST match entries in the externally-supplied
-# md5-list. If they do not, the CD build process will fail; something
-# must have been corrupted. Replaces the old mirrorcheck code.
-export JIGDO_INCLUDE="/pool/"
-
-# Specify the minimum file size to consider for jigdo processing. Any files
-# smaller than this will simply be placed straight into the template file.
-export JIGDO_OPTS="-jigdo-min-file-size 0"
-
-for EXCL in $JIGDO_EXCLUDE; do
- JIGDO_OPTS="$JIGDO_OPTS -jigdo-exclude $EXCL"
-done
-
-for INCL in $JIGDO_INCLUDE; do
- JIGDO_OPTS="$JIGDO_OPTS -jigdo-force-md5 $INCL"
-done
-
-# File with list of packages to include when fetching modules for the
-# first stage installer (debian-installer). One package per line.
-# Lines starting with '#' are comments. The package order is
-# important, as the packages will be installed in the given order.
-export UDEB_INCLUDE="$BASEDIR"/data/$CODENAME/debian-edu_udeb_include
-
-# File with list of packages to exclude as above.
-export UDEB_EXCLUDE="$BASEDIR"/data/$CODENAME/udeb_exclude
-
-# File with list of packages to include when running debootstrap from
-# the first stage installer (currently only supported in
-# debian-installer). One package per line. Lines starting with '#'
-# are comments. The package order is important, as the packages will
-# be installed in the given order.
-#export BASE_INCLUDE="$BASEDIR"/data/$CODENAME/base_include
-
-# File with list of packages to exclude as above.
-#export BASE_EXCLUDE="$BASEDIR"/data/$CODENAME/base_exclude
-
-# Only put the installer onto the cd (set NORECOMMENDS,... as well,
-# and if you're not using build.sh then also make sure you set TASK
-# appropriately here)
-# INSTALLER_CD=0: nothing special (default)
-# INSTALLER_CD=1: just add debian-installer (use TASK=debian-installer)
-# INSTALLER_CD=2: add d-i and base (use TASK=debian-installer+kernel)
-export INSTALLER_CD=2
-export TASK=Debian-edu-netinst
-export COMPLETE=0
-
-# Parameters to pass to kernel (or d-i) when the CD boots. Not currently
-# supported for all architectures.
-export KERNEL_PARAMS="desktop=kde"
-
-# Default desktop (currently only used by win32-loader)
-export DESKTOP=kde
-
-# If set, limits the number of binary CDs to produce.
-export MAXCDS=1
-
-# If set, overrides the boot picture used.
-export SPLASHPNG="$BASEDIR/../splash-skolelinux-wheezy.png"
-
-# Set to 1 to save space by omitting the installation manual.
-# If so the README will link to the manual on the web site.
-export OMIT_MANUAL=1
-
-# Set to 1 to save space by omitting the release notes
-# If so we will link to them on the web site.
-export OMIT_RELEASE_NOTES=1
-
-# Set to 1 to not include the doc/tools directories on CD1
-# Useful to save space and avoids failures if you have a mirror
-# without those directories.
-#export OMIT_DOC_TOOLS=1
-
-# Set this to override the default location
-#export RELEASE_NOTES_LOCATION="http://www.debian.org/releases/$CODENAME"
-
-case "$OFFICIAL" in
- "Official")
- export OFFICIAL_VAL=2
- ;;
- "Official Beta")
- export OFFICIAL_VAL=1
- ;;
- *)
- export OFFICIAL_VAL=0
- ;;
-esac
-
-# Set this to force the Release file(s) to say "stable". Used in first
-# Etch builds to allow us to build before the archive updated
-#EARLY_BUILD_HACK=1
-
-#Debian Edu suite
-SUITE="wheezy-test-dvd-amd64"
-
-##################################
-# LOCAL HOOK DEFINITIONS
-##################################
-#
-# Set these to point to scripts/programs to be called at various
-# points in the debian-cd image-making process. This is the ideal place
-# to customise what's on the CDs, for example to add extra files or
-# modify existing ones. Each will be called with the arguments in order:
-#
-# $TDIR (the temporary dir containing the build tree)
-# $MIRROR (the location of the mirror)
-# $DISKNUM (the image number in the set)
-# $CDDIR (the root of the temp disc tree)
-# $ARCHES (the set of architectures chosen)
-#
-# BE CAREFUL about what you do at each point: in the first couple of
-# cases, files and directories you're looking to use may not exist yet,
-# you may need to worry about adding entries into md5sum.txt yourself
-# and (in the last couple of cases) if you add any extra files you may
-# end up over-filling the disc. If you *do* need to add files at the end
-# of the process, see RESERVED_BLOCKS_HOOK below. It's strongly
-# recommended to do this kind of customisation up-front if you can, it's
-# much simpler that way!
-
-# The disc_start hook. This will be called near the beginning of the
-# start_new_disc script, just after the directory tree has been created
-# but before any files have been added
-#export DISC_START_HOOK=/bin/true
-
-# The disc_pkg hook. This will be called just after the
-# start_new_disc script has finished, just before make_disc_trees.pl
-# starts to add package files.
-#export DISC_PKG_HOOK=/bin/true
-
-# The reserved_blocks hook; if set, this script should print the
-# number of 2K blocks that need to be reserved for data to be added
-# *after* a disc tree is filled with packages.
-#export RESERVED_BLOCKS_HOOK=/bin/true
-
-# The disc_finish hook. This will be called once a disc image is full,
-# just after the last package rollback but before the last bits of
-# cleanup are done on the temp disc tree
-# Do not enable FORCE-FIRMWARE and this firmware-fixup at the same time.
-#export DISC_FINISH_HOOK=$BASEDIR/../firmware-fixup
-
-# The disc_end hook. This will be called *right* at the end of the
-# image-making process in make_disc_trees.pl.
-#export DISC_END_HOOK=/bin/true
Deleted: trunk/src/build/CD-administrator/cdspacelist-wheezy-test-dvd-amd64.txt
===================================================================
--- trunk/src/build/CD-administrator/cdspacelist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:02 UTC (rev 80858)
+++ trunk/src/build/CD-administrator/cdspacelist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:21 UTC (rev 80859)
@@ -1,658 +0,0 @@
-==== amd64 ====
- +size pkgname
------------------------
- 5894 mawk
- 70 base-files
- 45 base-passwd
- 6029 bash
- 433 bsdutils
- 5544 coreutils
- 4393 debconf
- 357 diffutils
- 192 e2fslibs
- 6130 e2fsprogs
- 678 findutils
- 443 grep
- 116 gzip
- 14 hostname
- 222 libpam-runtime
- 959 login
- 193 ncurses-base
- 327 ncurses-bin
- 244 sed
- 129 sysvinit
- 231 xz-utils
- 257 adduser
- 10112 apt
- 30040 aptitude
- 260 cpio
- 2731 cron
- 75 dmidecode
- 1125 groff-base
- 365 info
- 410 iptables
- 57 iputils-ping
- 1605 isc-dhcp-client
- 105 kmod
- 111 libnewt0.52
- 38 libpipeline1
- 55 libpopt0
- 56 libprocps0
- 123 libudev0
- 49 logrotate
- 1036 man-db
- 776 manpages
- 572 nano
- 337 net-tools
- 69 netcat-traditional
- 246 procps
- 533 rsyslog
- 117 tasksel
- 49 traceroute
- 937 udev
- 5479 vim-common
- 346 vim-tiny
- 744 wget
- 42 whiptail
- 253 eject
- 5578 locales
- 749 lvm2
- 545 mdadm
- 2759 kbd
- 31 pcmciautils
- 168 wireless-tools
- 1429 xfsprogs
- 278 jfsutils
- 510 reiserfsprogs
- 234 btrfs-tools
- 287 ufsutils
- 238 localization-config
- 16 acpi
- 6318 acpid
- 511 ppp
- 225 pppoeconf
- 4738 pptp-linux
- 414 installation-report
- 5705 openssh-server
- 1139 cryptsetup
- 145 dmraid
- 822 sudo
- 260 multipath-tools-boot
- 724 wpasupplicant
- 3010 grub-legacy
- 882 grub-pc
- 293 lilo
- 22931 linux-image-amd64
- 35989 linux-headers-amd64
- 310051 education-common
- 484 libnss-ldapd
- 76 ldapvi
- 32 rwho
- 80 ntpdate
- 620 ntp
- 647 nfs-common
- 819 autofs5-ldap
- 842 sudo-ldap
- 204 krb5-clients
- 449 krb5-user
- 97 libsasl2-modules-gssapi-mit
- 2042 munin-node
- 36 sitesummary-client
- 108 shutdown-at-night
- 44 education-networked
- 87 libpam-krb5
- 2606 network-manager
- 140080 education-laptop
- 53791 education-main-server
- 0 <=============== (probably) start of CD 2
-1873444 education-thin-client-server
- 118 openoffice.org
- 0 <=============== CD 2 fill level passing 1024000 KiB
- 0 <=============== CD 2 fill level passing 2048000 KiB
- 0 <=============== (probably) start of CD 5
- 26 mozilla-plugin-gnash
- 2335 gnupg2
- 1071 education-thin-client
- 3496 education-standalone
- 560666 education-desktop-kde
- 615 wicd
- 0 <=============== CD 5 fill level passing 3072000 KiB
- 30 libpam-mklocaluser
- 3697 libpam-sss
- 322 libpam-cracklib
- 12565 debian-edu-doc-nb
- 10573 debian-edu-doc-de
- 9627 debian-edu-doc-es
- 1417 gcompris-sound-es
- 17329 debian-edu-doc-fr
- 8795 openoffice.org-help-zh-tw
- 118 openoffice.org-l10n-zh-tw
- 0 <=============== (probably) start of CD 6
- 7761 ttf-arphic-uming
- 8973 ttf-wqy-zenhei
- 2317 ttf-wqy-microhei
- 18 im-switch
- 3435 ibus-chewing
- 5657 ibus-table-cangjie
- 1279 ibus-array
- 10044 ttf-arphic-ukai
- 8509 debian-edu-doc-it
- 1324 gcompris-sound-it
- 5977 debian-edu-doc-da
- 459 gcompris-sound-da
- 13 libnss-myhostname
- 1376 jxplorer
- 23 killer
- 118 openoffice.org-l10n-el
- 118 openoffice.org-l10n-de
- 118 openoffice.org-l10n-fr
- 118 openoffice.org-l10n-es
- 118 openoffice.org-l10n-ca
- 118 openoffice.org-l10n-nl
- 118 openoffice.org-l10n-sv
- 118 openoffice.org-l10n-pt-br
- 118 openoffice.org-help-el
- 118 openoffice.org-help-fr
- 118 openoffice.org-help-es
- 118 openoffice.org-help-sv
- 118 openoffice.org-help-pt-br
- 118 openclipart-openoffice.org
- 0 icedtea6-plugin
- 118 openoffice.org-kde
- 1156 myspell-nb
- 13280 aspell-no
- 699 myspell-nn
- 3853 inorwegian
- 3102 wnorwegian
- 1398 gcompris-sound-nb
- 541 openoffice.org-l10n-nb
- 544 openoffice.org-l10n-nn
- 320 iceweasel-l10n-nb-no
- 323 iceweasel-l10n-nn-no
- 1370 kde-l10n-nn
- 1999 kde-l10n-nb
- 375 myspell-de-at
- 375 myspell-de-ch
- 433 iswiss
- 895 wngerman
- 438 gcompris-sound-de
- 32567 gimp-help-de
- 6191 openoffice.org-help-de
- 150 openoffice.org-hyphenation-de
- 3766 openoffice.org-thesaurus-de
- 3762 openoffice.org-thesaurus-de-ch
- 254 wspanish
- 2159 manpages-es-extra
- 29549 gimp-help-es
- 348 wfrench
- 2258 manpages-fr-extra
- 4848 gcompris-sound-fr
- 28679 gimp-help-fr
- 130 openoffice.org-hyphenation-fr
- 1929 openoffice.org-thesaurus-fr
- 19 ttf-vlgothic
- 4536 scim-skk
- 664 scim-canna
- 11684 scim-tables-ja
- 1494 openoffice.org-l10n-ja
- 7988 openoffice.org-help-ja
- 360 iceweasel-l10n-ja
- 1635 kde-l10n-ja
- 1797 kde-l10n-zhtw
- 998 culmus
- 185 aspell-he
- 685 hspell
- 890 myspell-he
- 547 openoffice.org-l10n-he
- 337 iceweasel-l10n-he
- 1140 kde-l10n-he
- 309 witalian
- 33285 gimp-help-it
- 7337 openoffice.org-help-it
- 118 openoffice.org-l10n-it
- 1064 openoffice.org-thesaurus-it
- 3247 hunspell-se
- 419 myspell-da
- 966 idanish
- 801 wdanish
- 7274 openoffice.org-help-da
- 118 openoffice.org-l10n-da
- 318 iceweasel-l10n-da
- 11761 kde-l10n-da
- 38 celestia
- 2523 vym
- 156826 education-desktop-gnome
- 118 openoffice.org-gnome
- 118 openoffice.org-gtk
- 118 openoffice.org-writer
- 118 openoffice.org-calc
- 118 openoffice.org-impress
- 118 openoffice.org-draw
- 118 openoffice.org-math
- 118 openoffice.org-base
- 118 openoffice.org-filter-binfilter
- 118 openoffice.org-java-common
- 34143 education-desktop-lxde
- 143 epdfview
- 9396 education-desktop-sugar
- 175812 education-development
- 5731 education-services
- 0 <=============== (probably) start of CD 7
- 1507 sunclock
- 1484 xtide
- 1757 rasmol
- 1082 rsyslog-doc
- 24501 emacs
- 19 apticron
- 35 debsecan
- 235 dpt-i2o-raidutils
- 122 mpt-status
- 1524 isag
- 15880 wireshark
- 17 cpqarrayd
- 102457 valgrind
- 66 popularity-contest
- 489 debian-goodies
- 85 kexec-tools
- 311 firmware-bnx2
- 511 firmware-ipw2x00
- 3494 firmware-iwlwifi
- 514 firmware-qlogic
- 27 foo2zjs
- 6782 dasher
- 7462 knode
- 197 kcron
- 0 <=============== CD 7 fill level passing 4096000 KiB
- 191 kuser
- 225 kscd
- 118 kruler
- 461 kfilereplace
- 435 krfb
- 720 krdc
- 61328 koffice
- 966 koffice-l10n-es
- 392 koffice-l10n-it
- 496 koffice-l10n-de
- 1593 koffice-l10n-fr
- 295 koffice-l10n-el
- 1 kspread
- 1 kpresenter
- 1 kword
- 7211 xfonts-100dpi-transcoded
- 827 ttf-malayalam-fonts
- 118 openoffice.org-filter-mobiledev
- 529 openoffice.org-l10n-en-za
- 2160 openoffice.org-style-crystal
- 5141 openoffice.org-thesaurus-en-us
- 316 iceweasel-l10n-af
- 346 iceweasel-l10n-ar
- 308 iceweasel-l10n-be
- 666 iceweasel-l10n-bg
- 333 iceweasel-l10n-ca
- 1302 iceweasel-l10n-cs
- 1718 iceweasel-l10n-fi
- 326 iceweasel-l10n-fy-nl
- 332 iceweasel-l10n-ga-ie
- 352 iceweasel-l10n-gu-in
- 1418 iceweasel-l10n-hu
- 334 iceweasel-l10n-ko
- 369 iceweasel-l10n-ku
- 750 iceweasel-l10n-lt
- 350 iceweasel-l10n-mk
- 324 iceweasel-l10n-nl
- 351 iceweasel-l10n-pa-in
- 1407 iceweasel-l10n-pl
- 325 iceweasel-l10n-pt-pt
- 344 iceweasel-l10n-ro
- 837 iceweasel-l10n-ru
- 940 iceweasel-l10n-sk
- 1479 iceweasel-l10n-sl
- 331 iceweasel-l10n-tr
- 340 iceweasel-l10n-zh-cn
- 339 iceweasel-l10n-zh-tw
- 18567 icedove
- 360 icedove-l10n-ca
- 362 icedove-l10n-de
- 350 icedove-l10n-el
- 296 icedove-l10n-es-es
- 359 icedove-l10n-fr
- 293 icedove-l10n-it
- 19 flashplugin-nonfree
- 2091 gnupg-doc
- 90 avahi-discover
- 11 mdns-scan
- 4593 kino
- 2469 pitivi
- 5643 xine-ui
- 889 gcompris-sound-eu
- 1778 gcompris-sound-fi
- 670 gcompris-sound-hu
- 849 gcompris-sound-nl
- 5522 gcompris-sound-pt
- 1059 gcompris-sound-ru
- 1393 gcompris-sound-sv
- 1029 gcompris-sound-cs
- 2837 gcompris-sound-mr
- 712 gcompris-sound-ptbr
- 1018 gcompris-sound-so
- 2465 gcompris-sound-tr
- 1454 postgresql-client
- 3711 postgresql
- 6073 sql-ledger
- 177199 texlive
- 30 lacheck
- 1521 auctex
- 371442 lyx
- 29344 texmacs
- 0 <=============== (probably) start of CD 8
- 229 gv
- 315 myspell-fr-gut
- 215 lightspeed
- 782 kppp
- 516 tablix2
- 6818 fet
- 182 monopd
- 63 scim-chewing
- 627 rsibreak
- 360 ktron
- 11487 kpat
- 944 kbattleship
- 1021 ksame
- 1816 kbounce
- 214 kspaceduel
- 4713 kgoldrunner
- 815 kolf
- 650 kmines
- 501 konquest
- 2074 kshisen
- 629 katomic
- 131 kblackbox
- 113 kjumpingcube
- 1056 kmahjongg
- 443 kreversi
- 104 wine
- 447 wine-doc
- 507 kernel-package
- 319 libncurses5-dev
- 4407 controlaula
- 25526 etoys
- 171660 eclipse
- 2094 tk8.5-dev
- 5132 swi-prolog
- 3691 swi-prolog-doc
- 39936 kicad
- 6211 kicad-doc-en
- 0 <=============== CD 8 fill level passing 5120000 KiB
- 397 kicad-doc-de
- 6 kicad-doc-es
- 5864 kicad-doc-fr
- 13459 electric
- 2621 pcb
- 1049 xcircuit
- 3041 freehdl
- 2557 gtkwave
- 116 gpscorrelate
- 19669 qlandkartegt
- 651 viking
- 11 googleearth-package
- 16854 openscenegraph
- 20346 grass
- 21162 qgis
- 64729 gmt
- 1192 thuban
- 611 xaos
- 2005 tgif
- 27505 blender
- 309 icedove-l10n-da
- 361 koffice-l10n-da
- 290 aptitude-doc-fr
- 383 icedove-l10n-he
- 402 icedove-l10n-ja
- 346 aptitude-doc-ja
- 275 koffice-l10n-nb
- 77 typespeed
- 102 brazilian-conjugate
- 98859 collatinus
- 213 verbiste-gnome
- 0 <=============== (probably) start of CD 9
- 92 bluez-cups
- 379 bluez-utils
- 2221 crafty
- 25032 kdegames
- 28 nslint
- 19 dnswalk
- 21 dlint
- 355 dovecot-pop3d
- 5650 samba-doc
- 1731 apache2-doc
- 363 webalizer
- 126 calamaris
- 120 squidguard
- 242 sarg
- 46 dsh
- 24 nagios3-doc
- 5605 ocsinventory-server
- 2602 krb5-doc
- 6 geogebra-kde
- 59 lybniz
- 45675 rkward
- 12017 r-cran-rcmdr
- 439 euler
- 8918 gretl
- 1788 kile
- 682 mathomatic
- 50735 pari-gp
- 889 yacas
- 52373 scilab
- 32 qliss3d
- 2981 jclic
- 3893 beast
- 1116 ntp-doc
- 176 libpam-mount
- 233 ocsinventory-agent
- 20 libpam-ccreds
- 72 denyhosts
- 246 fail2ban
- 2546 italc-master
- 59 ltsp-controlaula
- 383 kredentials
- 25 arping
- 26 cron-apt
- 59 mtr
- 4 raidutils
- 762 kaffeine
- 2753 mplayer
- 30249 kde-full
- 52 mozilla-plugin-vlc
- 310 totem-mozilla
- 5703 workrave
- 3771 pdns-backend-ldap
- 559 pdns-recursor
- 46 tftpd-hpa
- 117 libnss-ldap
- 78 apmd
- 266 astronomical-almanac
- 30 autolog
- 832 backuppc
- 40 battery-stats
- 1687 brltty
- 79 brltty-x11
- 206 capiutils
- 1138 cipux-rpcd
- 1272 clamav-docs
- 71 cmt
- 192 dcraw
- 494 diveintopython
- 726 doc-debian
- 2487 dosemu
- 234 drawmap
- 19920 ejabberd
- 75 espeak
- 5492 f-spot
- 1242 gcompris-sound-ar
- 799 gcompris-sound-bg
- 1664 gcompris-sound-br
- 2263 gcompris-sound-el
- 2596 gcompris-sound-hi
- 363 gcompris-sound-id
- 694 gcompris-sound-sr
- 4995 gcompris-sound-ur
- 28431 gimp-help-en
- 28556 gimp-help-nl
- 29110 gimp-help-sv
- 216 gocr
- 137 gpaint
- 384 gphoto2
- 140 hdapsd
- 71 ifplugd
- 337 ipppd
- 56 isdnutils-xtools
- 2049 kde-l10n-ar
- 1012 kde-l10n-bg
- 1657 kde-l10n-bs
- 2316 kde-l10n-cs
- 1937 kde-l10n-engb
- 4999 kde-l10n-et
- 1446 kde-l10n-eu
- 763 kde-l10n-fa
- 1717 kde-l10n-fi
- 1938 kde-l10n-ga
- 2883 kde-l10n-gl
- 840 kde-l10n-hr
- 3238 kde-l10n-hu
- 735 kde-l10n-is
- 1307 kde-l10n-km
- 1218 kde-l10n-ko
- 9514 kde-l10n-lt
- 2306 kde-l10n-nds
- 865 kde-l10n-pa
- 16517 kde-l10n-pl
- 4645 kde-l10n-pt
- 1995 kde-l10n-ro
- 20655 kde-l10n-ru
- 1369 kde-l10n-sk
- 1865 kde-l10n-sl
- 8655 kde-l10n-sr
- 654 kde-l10n-tg
- 1514 kde-l10n-tr
- 18856 kde-l10n-uk
- 2754 kde-l10n-zhcn
- 21 libgeo-coordinates-utm-perl
- 9 libgeo-helmerttransform-perl
- 25 libgeo-metar-perl
- 24 libgeo-postcode-perl
- 30 libgeography-nationalgrid-perl
- 194 linux-wlan-ng
- 93 mcpp
- 856 mgp
- 2 min12xxw
- 112 module-assistant
- 16 mouseemu
- 40 mpack
- 1633 mutt
- 159 ndiswrapper-source
- 17982 nvidia-glx
- 48 ogdi-bin
- 7419 openoffice.org-help-cs
- 8355 openoffice.org-help-dz
- 6901 openoffice.org-help-en-gb
- 5469 openoffice.org-help-en-us
- 6394 openoffice.org-help-et
- 6399 openoffice.org-help-hi-in
- 7692 openoffice.org-help-hu
- 9347 openoffice.org-help-km
- 7900 openoffice.org-help-ko
- 5945 openoffice.org-help-nl
- 7529 openoffice.org-help-pl
- 0 <=============== (probably) start of CD 10
- 8047 openoffice.org-help-ru
- 7379 openoffice.org-help-sl
- 8745 openoffice.org-help-zh-cn
- 547 openoffice.org-l10n-af
- 562 openoffice.org-l10n-be-by
- 1536 openoffice.org-l10n-bg
- 571 openoffice.org-l10n-bn
- 553 openoffice.org-l10n-br
- 554 openoffice.org-l10n-bs
- 118 openoffice.org-l10n-cs
- 541 openoffice.org-l10n-cy
- 118 openoffice.org-l10n-dz
- 118 openoffice.org-l10n-en-gb
- 541 openoffice.org-l10n-eo
- 118 openoffice.org-l10n-et
- 696 openoffice.org-l10n-fa
- 546 openoffice.org-l10n-fi
- 553 openoffice.org-l10n-ga
- 118 openoffice.org-l10n-hi-in
- 554 openoffice.org-l10n-hr
- 118 openoffice.org-l10n-hu
- 3907 openoffice.org-l10n-in
- 571 openoffice.org-l10n-ka
- 118 openoffice.org-l10n-km
- 118 openoffice.org-l10n-ko
- 564 openoffice.org-l10n-ku
- 547 openoffice.org-l10n-lt
- 550 openoffice.org-l10n-lv
- 568 openoffice.org-l10n-mk
- 569 openoffice.org-l10n-ne
- 564 openoffice.org-l10n-nr
- 556 openoffice.org-l10n-ns
- 118 openoffice.org-l10n-pa-in
- 118 openoffice.org-l10n-pl
- 1476 openoffice.org-l10n-pt
- 118 openoffice.org-l10n-ru
- 551 openoffice.org-l10n-rw
- 1489 openoffice.org-l10n-sk
- 118 openoffice.org-l10n-sl
- 561 openoffice.org-l10n-ss
- 561 openoffice.org-l10n-st
- 560 openoffice.org-l10n-tg
- 3223 openoffice.org-l10n-th
- 552 openoffice.org-l10n-tn
- 963 openoffice.org-l10n-tr
- 560 openoffice.org-l10n-ts
- 568 openoffice.org-l10n-uk
- 563 openoffice.org-l10n-ve
- 1540 openoffice.org-l10n-vi
- 568 openoffice.org-l10n-xh
- 612 openoffice.org-l10n-za
- 118 openoffice.org-l10n-zh-cn
- 118 openoffice.org-l10n-zu
- 4764 openuniverse
- 616 postgis
- 0 <=============== CD 10 fill level passing 6144000 KiB
- 71 pppdcapiplugin
- 20 pwgen
- 157 python-at-spi
- 126 python-newt
- 37511 qemu
- 97 qemu-launcher
- 11 qemuctl
- 605 quota
- 26325 r-cran-mapdata
- 16 recover
- 247 rkhunter
- 127 scim-modules-socket
- 94 scim-tables-additional
- 709 shorewall
- 576 smart-notifier
- 564 tcsh
- 762632 texlive-full
- 7950 thunar
- 0 <=============== (probably) start of CD 12
- 33 time
- 48 tmpreaper
- 21 tofrodos
- 2257 ttf-arabeyes
- 55 ttf-lao
- 83 ttf-mscorefonts-installer
- 35 ttf-thai-tlwg
- 900 upstart
- 1232 w3m
- 82 wmgui
- 85 wminput
- 2407 worldwind
- 1260 xfce4-terminal
- 5322 xfdesktop4
- 305 xournal
- 36 xpmutils
Deleted: trunk/src/build/CD-administrator/filelist-wheezy-test-dvd-amd64.txt
===================================================================
--- trunk/src/build/CD-administrator/filelist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:02 UTC (rev 80858)
+++ trunk/src/build/CD-administrator/filelist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:21 UTC (rev 80859)
@@ -1,3958 +0,0 @@
-builder 1 2013-06-14 22:10:31.000000000 +0200 ./autorun.inf
-builder 5 2013-06-13 20:22:44.000000000 +0200 ./css/debinstall.css
-builder 2 2013-06-13 20:22:44.000000000 +0200 ./css/debinstall-print.css
-builder 1 2013-06-14 22:10:00.000000000 +0200 ./debian -> .
-builder 1 2013-06-14 22:10:00.000000000 +0200 ./.disk/base_components
-builder 0 2013-06-14 22:12:46.000000000 +0200 ./.disk/base_installable
-builder 1 2013-06-14 22:10:00.000000000 +0200 ./.disk/cd_type
-builder 1 2013-06-14 22:10:00.000000000 +0200 ./.disk/info
-builder 1 2013-06-14 22:12:52.000000000 +0200 ./.disk/mkisofs
-builder 1 2013-06-14 22:10:00.000000000 +0200 ./.disk/udeb_exclude
-builder 1 2013-06-14 22:10:00.000000000 +0200 ./.disk/udeb_include
-builder 1 2013-06-14 22:10:00.000000000 +0200 ./dists/local -> wheezy
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./dists/stable -> wheezy
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./dists/wheezy/contrib/binary-amd64/Release
-builder 49 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/binary-amd64/Packages
-builder 15 2013-06-14 22:12:46.000000000 +0200 ./dists/wheezy/local/binary-amd64/Packages.gz
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./dists/wheezy/local/binary-amd64/Release
-builder 3 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-cs.gz
-builder 3 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-da.gz
-builder 3 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-de.gz
-builder 4 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-en.gz
-builder 1 2013-06-14 22:11:04.000000000 +0200 ./dists/wheezy/local/i18n/Translation-es.gz
-builder 1 2013-06-14 22:11:04.000000000 +0200 ./dists/wheezy/local/i18n/Translation-fi.gz
-builder 1 2013-06-14 22:11:17.000000000 +0200 ./dists/wheezy/local/i18n/Translation-fr.gz
-builder 4 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-it.gz
-builder 2 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-ja.gz
-builder 1 2013-06-14 22:10:51.000000000 +0200 ./dists/wheezy/local/i18n/Translation-ko.gz
-builder 3 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-pl.gz
-builder 1 2013-06-14 22:11:13.000000000 +0200 ./dists/wheezy/local/i18n/Translation-pt_BR.gz
-builder 3 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-pt.gz
-builder 2 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-ru.gz
-builder 1 2013-06-14 22:10:51.000000000 +0200 ./dists/wheezy/local/i18n/Translation-sk.gz
-builder 4 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/local/i18n/Translation-uk.gz
-builder 4308 2013-06-14 22:11:47.000000000 +0200 ./dists/wheezy/main/binary-amd64/Packages
-builder 1238 2013-06-14 22:12:46.000000000 +0200 ./dists/wheezy/main/binary-amd64/Packages.gz
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./dists/wheezy/main/binary-amd64/Release
-builder 136 2013-06-14 22:10:40.000000000 +0200 ./dists/wheezy/main/debian-installer/binary-amd64/Packages
-builder 40 2013-06-14 22:12:46.000000000 +0200 ./dists/wheezy/main/debian-installer/binary-amd64/Packages.gz
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./dists/wheezy/main/debian-installer/binary-amd64/Release
-builder 4 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/main/i18n/Translation-ca.gz
-builder 169 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-cs.gz
-builder 453 2013-06-14 22:11:47.000000000 +0200 ./dists/wheezy/main/i18n/Translation-da.gz
-builder 1 2013-06-14 22:10:33.000000000 +0200 ./dists/wheezy/main/i18n/Translation-de_DE.gz
-builder 507 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-de.gz
-builder 2 2013-06-14 22:11:20.000000000 +0200 ./dists/wheezy/main/i18n/Translation-el.gz
-builder 518 2013-06-14 22:11:48.000000000 +0200 ./dists/wheezy/main/i18n/Translation-en.gz
-builder 1 2013-06-14 22:10:33.000000000 +0200 ./dists/wheezy/main/i18n/Translation-eo.gz
-builder 119 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-es.gz
-builder 6 2013-06-14 22:10:37.000000000 +0200 ./dists/wheezy/main/i18n/Translation-eu.gz
-builder 61 2013-06-14 22:11:38.000000000 +0200 ./dists/wheezy/main/i18n/Translation-fi.gz
-builder 297 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-fr.gz
-builder 7 2013-06-14 22:10:42.000000000 +0200 ./dists/wheezy/main/i18n/Translation-hr.gz
-builder 15 2013-06-14 22:11:38.000000000 +0200 ./dists/wheezy/main/i18n/Translation-hu.gz
-builder 3 2013-06-14 22:11:28.000000000 +0200 ./dists/wheezy/main/i18n/Translation-id.gz
-builder 499 2013-06-14 22:11:49.000000000 +0200 ./dists/wheezy/main/i18n/Translation-it.gz
-builder 313 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-ja.gz
-builder 4 2013-06-14 22:10:37.000000000 +0200 ./dists/wheezy/main/i18n/Translation-km.gz
-builder 47 2013-06-14 22:11:38.000000000 +0200 ./dists/wheezy/main/i18n/Translation-ko.gz
-builder 2 2013-06-14 22:10:33.000000000 +0200 ./dists/wheezy/main/i18n/Translation-nb.gz
-builder 40 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-nl.gz
-builder 274 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-pl.gz
-builder 188 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-pt_BR.gz
-builder 151 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-pt.gz
-builder 2 2013-06-14 22:10:33.000000000 +0200 ./dists/wheezy/main/i18n/Translation-ro.gz
-builder 201 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-ru.gz
-builder 190 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-sk.gz
-builder 50 2013-06-14 22:11:37.000000000 +0200 ./dists/wheezy/main/i18n/Translation-sr.gz
-builder 25 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-sv.gz
-builder 437 2013-06-14 22:11:39.000000000 +0200 ./dists/wheezy/main/i18n/Translation-uk.gz
-builder 12 2013-06-14 22:10:53.000000000 +0200 ./dists/wheezy/main/i18n/Translation-vi.gz
-builder 50 2013-06-14 22:11:38.000000000 +0200 ./dists/wheezy/main/i18n/Translation-zh_CN.gz
-builder 2 2013-06-14 22:10:33.000000000 +0200 ./dists/wheezy/main/i18n/Translation-zh.gz
-builder 16 2013-06-14 22:11:37.000000000 +0200 ./dists/wheezy/main/i18n/Translation-zh_TW.gz
-builder 10 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/non-free/binary-amd64/Packages
-builder 3 2013-06-14 22:12:46.000000000 +0200 ./dists/wheezy/non-free/binary-amd64/Packages.gz
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./dists/wheezy/non-free/binary-amd64/Release
-builder 2 2013-06-14 22:11:36.000000000 +0200 ./dists/wheezy/non-free/i18n/Translation-en.gz
-builder 6 2013-06-14 22:12:46.000000000 +0200 ./dists/wheezy/Release
-builder 1 2009-02-07 01:32:23.000000000 +0100 ./doc/00-INDEX
-builder 3 2013-02-16 08:52:04.000000000 +0100 ./doc/bug-log-access.txt
-builder 9 2013-02-16 08:52:04.000000000 +0100 ./doc/bug-log-mailserver.txt
-builder 3 2013-05-08 21:52:23.000000000 +0200 ./doc/bug-mailserver-refcard.txt
-builder 22 2013-04-19 03:52:04.000000000 +0200 ./doc/bug-maint-info.txt
-builder 21 2013-05-08 21:52:23.000000000 +0200 ./doc/bug-maint-mailcontrol.txt
-builder 17 2013-02-16 08:52:04.000000000 +0100 ./doc/bug-reporting.txt
-builder 31 2012-04-15 10:41:41.000000000 +0200 ./doc/constitution.txt
-builder 7 1996-05-21 08:00:00.000000000 +0200 ./doc/debian-manifesto
-builder 117 2013-06-05 00:27:29.000000000 +0200 ./doc/FAQ/debian-faq.en.html.tar.gz
-builder 304 2013-06-05 00:27:35.000000000 +0200 ./doc/FAQ/debian-faq.en.pdf.gz
-builder 248 2013-06-05 00:27:33.000000000 +0200 ./doc/FAQ/debian-faq.en.ps.gz
-builder 60 2013-06-05 00:27:31.000000000 +0200 ./doc/FAQ/debian-faq.en.txt.gz
-builder 36 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-basic_defs.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-basic_defs.html -> ch-basic_defs.en.html
-builder 45 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-choosing.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-choosing.html -> ch-choosing.en.html
-builder 36 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-compat.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-compat.html -> ch-compat.en.html
-builder 28 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-contributing.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-contributing.html -> ch-contributing.en.html
-builder 37 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-customizing.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-customizing.html -> ch-customizing.en.html
-builder 27 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-faqinfo.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-faqinfo.html -> ch-faqinfo.en.html
-builder 39 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-ftparchives.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-ftparchives.html -> ch-ftparchives.en.html
-builder 30 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-getting.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-getting.html -> ch-getting.en.html
-builder 28 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-kernel.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-kernel.html -> ch-kernel.en.html
-builder 27 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-nexttime.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-nexttime.html -> ch-nexttime.en.html
-builder 49 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-pkg_basics.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-pkg_basics.html -> ch-pkg_basics.en.html
-builder 49 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-pkgtools.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-pkgtools.html -> ch-pkgtools.en.html
-builder 27 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-redistrib.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-redistrib.html -> ch-redistrib.en.html
-builder 35 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-software.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-software.html -> ch-software.en.html
-builder 36 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-support.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-support.html -> ch-support.en.html
-builder 35 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/ch-uptodate.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/ch-uptodate.html -> ch-uptodate.en.html
-builder 25 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/footnotes.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/footnotes.html -> footnotes.en.html
-builder 44 2013-06-02 01:30:20.000000000 +0200 ./doc/FAQ/html/index.en.html
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./doc/FAQ/html/index.html -> index.en.html
-builder 66 2013-06-13 18:37:25.000000000 +0200 ./doc/mailing-lists.txt
-builder 7 2012-04-15 10:41:41.000000000 +0200 ./doc/social-contract.txt
-builder 2 1998-01-19 02:27:02.000000000 +0100 ./doc/source-unpack.txt
-builder 1 2013-06-14 22:11:36.000000000 +0200 ./firmware/firmware-bnx2_0.36+wheezy.1_all.deb -> ../pool/non-free/f/firmware-nonfree/firmware-bnx2_0.36+wheezy.1_all.deb
-builder 1 2013-06-14 22:11:36.000000000 +0200 ./firmware/firmware-ipw2x00_0.36+wheezy.1_all.deb -> ../pool/non-free/f/firmware-nonfree/firmware-ipw2x00_0.36+wheezy.1_all.deb
-builder 1 2013-06-14 22:11:36.000000000 +0200 ./firmware/firmware-iwlwifi_0.36+wheezy.1_all.deb -> ../pool/non-free/f/firmware-nonfree/firmware-iwlwifi_0.36+wheezy.1_all.deb
-builder 1 2013-06-14 22:10:42.000000000 +0200 ./firmware/firmware-linux-free_3.2_all.deb -> ../pool/main/f/firmware-free/firmware-linux-free_3.2_all.deb
-builder 1 2013-06-14 22:11:36.000000000 +0200 ./firmware/firmware-qlogic_0.36+wheezy.1_all.deb -> ../pool/non-free/f/firmware-nonfree/firmware-qlogic_0.36+wheezy.1_all.deb
-builder 22569 2013-06-14 22:10:09.000000000 +0200 ./install.amd/gtk/initrd.gz
-builder 1 2013-06-14 22:10:04.000000000 +0200 ./install.amd/gtk/install.bat
-builder 2767 2013-06-14 22:10:01.000000000 +0200 ./install.amd/gtk/vmlinuz
-builder 4786 2013-06-14 22:10:01.000000000 +0200 ./install.amd/initrd.gz
-builder 1 2013-06-14 22:10:01.000000000 +0200 ./install.amd/install.bat
-builder 2767 2013-06-14 22:10:01.000000000 +0200 ./install.amd/vmlinuz
-builder 356 2013-06-14 22:12:52.000000000 +0200 ./md5sum.txt
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/blue-lowerleft.png
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/blue-lowerright.png
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/blue-upperleft.png
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/blue-upperright.png
-builder 8 2013-06-13 20:22:44.000000000 +0200 ./pics/debian-61.png
-builder 9 2013-06-13 20:22:44.000000000 +0200 ./pics/debian.jpg
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/dot_bw.gif
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/gradient.png
-builder 4 2013-06-13 20:22:44.000000000 +0200 ./pics/logo-50.jpg
-builder 2 2013-06-13 20:22:44.000000000 +0200 ./pics/openlogo-nd-50.png
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/red-lowerleft.png
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/red-lowerright.png
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/red-upperleft.png
-builder 1 2013-06-13 20:22:44.000000000 +0200 ./pics/red-upperright.png
-builder 7761 2013-06-14 18:00:03.000000000 +0200 ./pool/local/d/debian-edu-artwork/debian-edu-artwork_0.0.35-1_all.deb
-builder 394 2013-06-14 10:30:02.000000000 +0200 ./pool/local/d/debian-edu-config/debian-edu-config_1.707~svn80617_all.deb
-builder 115 2013-06-14 10:30:02.000000000 +0200 ./pool/local/d/debian-edu-config/debian-edu-config-gosa-netgroups_1.707~svn80617_all.deb
-builder 5978 2013-06-01 01:45:03.000000000 +0200 ./pool/local/d/debian-edu-doc/debian-edu-doc-da_1.5~20130531~7.0_all.deb
-builder 10574 2013-06-01 01:45:03.000000000 +0200 ./pool/local/d/debian-edu-doc/debian-edu-doc-de_1.5~20130531~7.0_all.deb
-builder 18823 2013-06-01 01:45:03.000000000 +0200 ./pool/local/d/debian-edu-doc/debian-edu-doc-en_1.5~20130531~7.0_all.deb
-builder 9628 2013-06-01 01:45:03.000000000 +0200 ./pool/local/d/debian-edu-doc/debian-edu-doc-es_1.5~20130531~7.0_all.deb
-builder 17330 2013-06-01 01:45:03.000000000 +0200 ./pool/local/d/debian-edu-doc/debian-edu-doc-fr_1.5~20130531~7.0_all.deb
-builder 8510 2013-06-01 01:45:02.000000000 +0200 ./pool/local/d/debian-edu-doc/debian-edu-doc-it_1.5~20130531~7.0_all.deb
-builder 12566 2013-06-01 01:45:03.000000000 +0200 ./pool/local/d/debian-edu-doc/debian-edu-doc-nb_1.5~20130531~7.0_all.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-astronomy_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-chemistry_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-common_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-desktop-gnome_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-desktop-kde_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-desktop-lxde_1.709_amd64.deb
-builder 46 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-desktop-other_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-desktop-sugar_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-development_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-electronics_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-geography_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-graphics_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-language_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-laptop_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-logic-games_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-main-server_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-mathematics_1.709_amd64.deb
-builder 78 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-menus_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-misc_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-music_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-networked_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-physics_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-services_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-standalone_1.709_amd64.deb
-builder 47 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-tasks_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-thin-client_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-thin-client-server_1.709_amd64.deb
-builder 45 2013-06-10 00:30:02.000000000 +0200 ./pool/local/d/debian-edu/education-workstation_1.709_amd64.deb
-builder 52 2013-06-13 17:45:01.000000000 +0200 ./pool/local/d/debian-edu-install/debian-edu-install_1.713~svn80578_all.deb
-builder 6 2013-05-04 13:45:02.000000000 +0200 ./pool/local/libp/libpam-mklocaluser/libpam-mklocaluser_0.8_all.deb
-builder 49 2012-11-30 22:30:09.000000000 +0100 ./pool/local/s/sitesummary/sitesummary_0.1.8_all.deb
-builder 37 2012-11-30 22:30:09.000000000 +0100 ./pool/local/s/sitesummary/sitesummary-client_0.1.8_all.deb
-builder 26 2013-06-10 21:30:03.000000000 +0200 ./pool/local/s/slbackup-php/slbackup-php_0.4.3-2+deb7u1_all.deb
-builder 36 2013-04-24 14:00:01.000000000 +0200 ./pool/local/s/slbackup/slbackup_0.0.12-5~edu70+1_all.deb
-builder 34 2011-05-06 12:32:04.000000000 +0200 ./pool/main/a/a52dec/liba52-0.7.4_0.7.4-16_amd64.deb
-builder 53 2011-05-06 12:32:04.000000000 +0200 ./pool/main/a/a52dec/liba52-0.7.4-dev_0.7.4-16_amd64.deb
-builder 63 2012-06-30 14:02:28.000000000 +0200 ./pool/main/a/aalib/libaa1_1.4p5-40_amd64.deb
-builder 72 2013-01-02 14:55:57.000000000 +0100 ./pool/main/a/accountsservice/accountsservice_0.6.21-8_amd64.deb
-builder 12 2013-01-02 14:55:57.000000000 +0100 ./pool/main/a/accountsservice/gir1.2-accountsservice-1.0_0.6.21-8_amd64.deb
-builder 86 2013-01-02 14:55:57.000000000 +0100 ./pool/main/a/accountsservice/libaccountsservice0_0.6.21-8_amd64.deb
-builder 70 2012-06-14 01:47:08.000000000 +0200 ./pool/main/a/acl/acl_2.2.51-8_amd64.deb
-builder 30 2012-06-14 01:47:08.000000000 +0200 ./pool/main/a/acl/libacl1_2.2.51-8_amd64.deb
-builder 17 2012-01-13 13:02:07.000000000 +0100 ./pool/main/a/acpi/acpi_1.6-1_amd64.deb
-builder 57 2013-04-15 23:02:54.000000000 +0200 ./pool/main/a/acpid/acpid_2.0.16-1+deb7u1_amd64.deb
-builder 22 2012-07-05 21:17:07.000000000 +0200 ./pool/main/a/acpi-support/acpi-support-base_0.140-5_all.deb
-builder 561 2012-06-30 01:49:57.000000000 +0200 ./pool/main/a/adblock-plus/xul-ext-adblock-plus_2.1-1_all.deb
-builder 258 2012-05-31 00:32:08.000000000 +0200 ./pool/main/a/adduser/adduser_3.113+nmu3_all.deb
-builder 2609 2012-04-22 13:17:08.000000000 +0200 ./pool/main/a/aisleriot/aisleriot_3.4.1-1_amd64.deb
-builder 12 2013-03-26 20:18:22.000000000 +0100 ./pool/main/a/akonadi/akonadi-backend-mysql_1.7.2-3_all.deb
-builder 558 2013-03-26 20:18:22.000000000 +0100 ./pool/main/a/akonadi/akonadi-server_1.7.2-3_amd64.deb
-builder 43 2013-03-26 20:18:22.000000000 +0100 ./pool/main/a/akonadi/libakonadiprotocolinternals1_1.7.2-3_amd64.deb
-builder 103 2012-06-29 13:02:08.000000000 +0200 ./pool/main/a/alacarte/alacarte_3.5.3-1_all.deb
-builder 59 2012-08-26 18:06:50.000000000 +0200 ./pool/main/a/alsa-base/alsa-base_1.0.25+2+nmu2_all.deb
-builder 2 2012-08-26 18:06:50.000000000 +0200 ./pool/main/a/alsa-base/alsa-base-udeb_1.0.25+2+nmu2_all.udeb
-builder 451 2012-08-04 00:02:08.000000000 +0200 ./pool/main/a/alsa-lib/libasound2_1.0.25-4_amd64.deb
-builder 69 2012-08-04 00:02:08.000000000 +0200 ./pool/main/a/alsa-lib/libasound2-dev_1.0.25-4_amd64.deb
-builder 316 2012-08-04 00:02:08.000000000 +0200 ./pool/main/a/alsa-lib/libasound2-udeb_1.0.25-4_amd64.udeb
-builder 90 2012-05-20 23:17:20.000000000 +0200 ./pool/main/a/alsa-plugins/libasound2-plugins_1.0.25-2_amd64.deb
-builder 1147 2013-01-10 02:23:53.000000000 +0100 ./pool/main/a/alsa-utils/alsa-utils_1.0.25-4_amd64.deb
-builder 50 2013-01-10 02:23:53.000000000 +0100 ./pool/main/a/alsa-utils/alsa-utils-udeb_1.0.25-4_amd64.udeb
-builder 6871 2012-06-29 02:17:08.000000000 +0200 ./pool/main/a/amarok/amarok_2.6~beta1+75.g47e75df-1_amd64.deb
-builder 3650 2012-06-29 02:17:08.000000000 +0200 ./pool/main/a/amarok/amarok-common_2.6~beta1+75.g47e75df-1_all.deb
-builder 233 2012-06-29 02:17:08.000000000 +0200 ./pool/main/a/amarok/amarok-utils_2.6~beta1+75.g47e75df-1_amd64.deb
-builder 35 2012-05-23 00:17:08.000000000 +0200 ./pool/main/a/anacron/anacron_2.3-19_amd64.deb
-builder 182 2012-06-22 01:02:09.000000000 +0200 ./pool/main/a/analitza/libanalitza4abi1_4.8.4-2_amd64.deb
-builder 86 2012-06-22 01:02:09.000000000 +0200 ./pool/main/a/analitza/libanalitzagui4_4.8.4-2_amd64.deb
-builder 1799 2011-09-22 06:47:05.000000000 +0200 ./pool/main/a/ant/ant_1.8.2-4_all.deb
-builder 328 2011-09-22 06:47:05.000000000 +0200 ./pool/main/a/ant/ant-optional_1.8.2-4_all.deb
-builder 2 2013-03-04 23:11:38.000000000 +0100 ./pool/main/a/apache2/apache2_2.2.22-13_amd64.deb
-builder 762 2013-03-04 23:11:38.000000000 +0100 ./pool/main/a/apache2/apache2.2-bin_2.2.22-13_amd64.deb
-builder 285 2013-03-04 23:11:38.000000000 +0100 ./pool/main/a/apache2/apache2.2-common_2.2.22-13_amd64.deb
-builder 3 2013-03-04 23:11:38.000000000 +0100 ./pool/main/a/apache2/apache2-mpm-prefork_2.2.22-13_amd64.deb
-builder 158 2013-03-04 23:11:38.000000000 +0100 ./pool/main/a/apache2/apache2-utils_2.2.22-13_amd64.deb
-builder 376 2011-12-01 23:49:57.000000000 +0100 ./pool/main/a/apache-log4j1.2/liblog4j1.2-java_1.2.16-3_all.deb
-builder 4 2011-12-04 02:17:05.000000000 +0100 ./pool/main/a/apache-pom/libapache-pom-java_10-2_all.deb
-builder 332 2012-04-30 00:02:08.000000000 +0200 ./pool/main/a/apbs/apbs_1.3.0-2_amd64.deb
-builder 62 2007-06-20 19:02:01.000000000 +0200 ./pool/main/a/apg/apg_2.2.3.dfsg.1-2_amd64.deb
-builder 9195 2012-08-06 17:02:08.000000000 +0200 ./pool/main/a/app-install-data/app-install-data_2012.06.16.1_all.deb
-builder 98 2012-05-28 18:02:20.000000000 +0200 ./pool/main/a/apr/libapr1_1.4.6-3_amd64.deb
-builder 88 2012-08-15 21:05:41.000000000 +0200 ./pool/main/a/apr-util/libaprutil1_1.4.1-3_amd64.deb
-builder 19 2012-08-15 21:05:41.000000000 +0200 ./pool/main/a/apr-util/libaprutil1-dbd-sqlite3_1.4.1-3_amd64.deb
-builder 17 2012-08-15 21:05:41.000000000 +0200 ./pool/main/a/apr-util/libaprutil1-ldap_1.4.1-3_amd64.deb
-builder 1225 2013-03-14 14:28:31.000000000 +0100 ./pool/main/a/apt/apt_0.9.7.8_amd64.deb
-builder 369 2013-03-14 14:28:31.000000000 +0100 ./pool/main/a/apt/apt-utils_0.9.7.8_amd64.deb
-builder 272 2013-03-02 19:26:23.000000000 +0100 ./pool/main/a/aptdaemon/aptdaemon_0.45-2_all.deb
-builder 187 2013-03-02 19:26:23.000000000 +0100 ./pool/main/a/aptdaemon/aptdaemon-data_0.45-2_all.deb
-builder 90 2013-03-02 19:26:23.000000000 +0100 ./pool/main/a/aptdaemon/python-aptdaemon_0.45-2_all.deb
-builder 27 2013-03-02 19:26:23.000000000 +0100 ./pool/main/a/aptdaemon/python-aptdaemon.gtk3widgets_0.45-2_all.deb
-builder 41 2013-03-02 19:26:23.000000000 +0100 ./pool/main/a/aptdaemon/python-aptdaemon.pkcompat_0.45-2_all.deb
-builder 20 2012-05-23 03:32:06.000000000 +0200 ./pool/main/a/apticron/apticron_1.1.55_all.deb
-builder 1400 2012-11-07 08:45:37.000000000 +0100 ./pool/main/a/aptitude/aptitude_0.6.8.2-1_amd64.deb
-builder 1462 2012-11-07 07:25:34.000000000 +0100 ./pool/main/a/aptitude/aptitude-common_0.6.8.2-1_all.deb
-builder 163 2013-03-14 14:28:31.000000000 +0100 ./pool/main/a/apt/libapt-inst1.5_0.9.7.8_amd64.deb
-builder 876 2013-03-14 14:28:31.000000000 +0100 ./pool/main/a/apt/libapt-pkg4.12_0.9.7.8_amd64.deb
-builder 87 2012-06-30 13:02:29.000000000 +0200 ./pool/main/a/apt-listchanges/apt-listchanges_2.85.11_all.deb
-builder 94 2013-04-06 20:25:17.000000000 +0200 ./pool/main/a/apt-setup/apt-cdrom-setup_0.79_all.udeb
-builder 72 2013-04-06 20:25:17.000000000 +0200 ./pool/main/a/apt-setup/apt-mirror-setup_0.79_all.udeb
-builder 64 2013-04-06 20:25:17.000000000 +0200 ./pool/main/a/apt-setup/apt-setup-udeb_0.79_all.udeb
-builder 67 2011-12-28 15:49:44.000000000 +0100 ./pool/main/a/apt-xapian-index/apt-xapian-index_0.45_all.deb
-builder 991 2012-06-15 17:02:11.000000000 +0200 ./pool/main/a/aqualung/aqualung_0.9~beta11-1.2+b1_amd64.deb
-builder 4404 2012-11-25 10:59:47.000000000 +0100 ./pool/main/a/argyll/argyll_1.4.0-8_amd64.deb
-builder 158 2012-11-25 10:59:47.000000000 +0100 ./pool/main/a/argyll/libicc2_2.12+argyll1.4.0-8_amd64.deb
-builder 200 2012-11-25 10:59:47.000000000 +0100 ./pool/main/a/argyll/libimdi0_1.4.0-8_amd64.deb
-builder 251 2011-03-07 23:17:15.000000000 +0100 ./pool/main/a/arj/arj_3.10.22-10_amd64.deb
-builder 381 2012-06-22 23:32:07.000000000 +0200 ./pool/main/a/ark/ark_4.8.4-2_amd64.deb
-builder 354 2011-07-29 06:32:15.000000000 +0200 ./pool/main/a/aspell/aspell_0.60.7~20110707-1_amd64.deb
-builder 262 2011-07-29 06:02:35.000000000 +0200 ./pool/main/a/aspell-en/aspell-en_7.1-0-1_all.deb
-builder 186 2011-08-10 19:17:05.000000000 +0200 ./pool/main/a/aspell-he/aspell-he_1.0-0-5_all.deb
-builder 691 2011-07-29 06:32:15.000000000 +0200 ./pool/main/a/aspell/libaspell15_0.60.7~20110707-1_amd64.deb
-builder 65 2011-09-23 16:47:59.000000000 +0200 ./pool/main/a/atftp/atftpd_0.7.dfsg-11_amd64.deb
-builder 64 2012-04-02 03:32:07.000000000 +0200 ./pool/main/a/atk1.0/gir1.2-atk-1.0_2.4.0-2_amd64.deb
-builder 93 2012-04-02 03:32:07.000000000 +0200 ./pool/main/a/atk1.0/libatk1.0-0_2.4.0-2_amd64.deb
-builder 235 2012-04-02 03:32:07.000000000 +0200 ./pool/main/a/atk1.0/libatk1.0-data_2.4.0-2_all.deb
-builder 115 2012-04-02 03:32:07.000000000 +0200 ./pool/main/a/atk1.0/libatk1.0-dev_2.4.0-2_amd64.deb
-builder 86 2011-11-17 02:47:05.000000000 +0100 ./pool/main/a/atkmm1.6/libatkmm-1.6-1_2.22.6-1_amd64.deb
-builder 57 2012-06-18 03:32:08.000000000 +0200 ./pool/main/a/atomix/atomix_2.14.0-2_amd64.deb
-builder 107 2012-06-18 03:02:07.000000000 +0200 ./pool/main/a/atomix/atomix-data_2.14.0-2_all.deb
-builder 6 2012-09-30 17:57:44.000000000 +0200 ./pool/main/a/at-spi2-atk/libatk-adaptor_2.5.3-2_amd64.deb
-builder 21 2012-09-30 17:57:44.000000000 +0200 ./pool/main/a/at-spi2-atk/libatk-adaptor-data_2.5.3-2_amd64.deb
-builder 61 2012-09-30 17:57:44.000000000 +0200 ./pool/main/a/at-spi2-atk/libatk-bridge2.0-0_2.5.3-2_amd64.deb
-builder 47 2012-09-30 17:57:43.000000000 +0200 ./pool/main/a/at-spi2-core/at-spi2-core_2.5.3-2_amd64.deb
-builder 18 2012-09-30 17:57:43.000000000 +0200 ./pool/main/a/at-spi2-core/gir1.2-atspi-2.0_2.5.3-2_amd64.deb
-builder 59 2012-09-30 17:57:43.000000000 +0200 ./pool/main/a/at-spi2-core/libatspi2.0-0_2.5.3-2_amd64.deb
-builder 204 2012-11-17 01:44:54.000000000 +0100 ./pool/main/a/at-spi/libatspi1.0-0_1.32.0-2_amd64.deb
-builder 177 2011-03-14 00:47:04.000000000 +0100 ./pool/main/a/attica/libattica0_0.2.0-1_amd64.deb
-builder 20 2012-06-13 12:02:07.000000000 +0200 ./pool/main/a/attr/libattr1_2.4.46-8_amd64.deb
-builder 54 2011-09-28 18:02:08.000000000 +0200 ./pool/main/a/aubio/libaubio2_0.3.2-4.2+b1_amd64.deb
-builder 1219 2012-11-20 17:49:53.000000000 +0100 ./pool/main/a/auctex/auctex_11.86-11_all.deb
-builder 303 2012-11-20 17:49:53.000000000 +0100 ./pool/main/a/auctex/preview-latex-style_11.86-11_all.deb
-builder 398 2012-11-04 18:36:25.000000000 +0100 ./pool/main/a/audacious/audacious_3.2.4-1_amd64.deb
-builder 20 2012-11-04 18:36:25.000000000 +0100 ./pool/main/a/audacious/libaudclient2_3.2.4-1_amd64.deb
-builder 99 2012-11-04 18:36:25.000000000 +0100 ./pool/main/a/audacious/libaudcore1_3.2.4-1_amd64.deb
-builder 1261 2012-11-04 20:46:49.000000000 +0100 ./pool/main/a/audacious-plugins/audacious-plugins_3.2.4-1_amd64.deb
-builder 873 2012-11-04 20:46:49.000000000 +0100 ./pool/main/a/audacious-plugins/audacious-plugins-data_3.2.4-1_all.deb
-builder 2485 2012-06-30 01:50:56.000000000 +0200 ./pool/main/a/audacity/audacity_2.0.1-1_amd64.deb
-builder 2731 2012-06-30 01:50:56.000000000 +0200 ./pool/main/a/audacity/audacity-data_2.0.1-1_all.deb
-builder 96 2012-10-14 13:32:41.000000000 +0200 ./pool/main/a/audiofile/libaudiofile1_0.3.4-2_amd64.deb
-builder 67 2012-01-31 16:47:07.000000000 +0100 ./pool/main/a/audit/libaudit0_1.7.18-1.1_amd64.deb
-builder 576 2012-05-01 11:17:07.000000000 +0200 ./pool/main/a/autoconf/autoconf_2.69-1_all.deb
-builder 699 2012-10-10 21:15:41.000000000 +0200 ./pool/main/a/autofs/autofs_5.0.7-3_amd64.deb
-builder 23 2012-10-10 20:50:40.000000000 +0200 ./pool/main/a/autofs/autofs5-ldap_5.0.7-3_all.deb
-builder 99 2012-10-10 21:15:41.000000000 +0200 ./pool/main/a/autofs/autofs-ldap_5.0.7-3_amd64.deb
-builder 73 2011-07-10 16:47:18.000000000 +0200 ./pool/main/a/autogen/libopts25_5.12-0.1_amd64.deb
-builder 594 2012-07-10 23:47:07.000000000 +0200 ./pool/main/a/automake1.11/automake_1.11.6-1_all.deb
-builder 72 2012-06-08 18:32:07.000000000 +0200 ./pool/main/a/autotools-dev/autotools-dev_20120608.1_all.deb
-builder 52 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/avahi-autoipd_0.6.31-2_amd64.deb
-builder 97 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/avahi-daemon_0.6.31-2_amd64.deb
-builder 39 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/avahi-discover_0.6.31-2_all.deb
-builder 59 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-client3_0.6.31-2_amd64.deb
-builder 66 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-client-dev_0.6.31-2_amd64.deb
-builder 54 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-common3_0.6.31-2_amd64.deb
-builder 133 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-common-data_0.6.31-2_amd64.deb
-builder 72 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-common-dev_0.6.31-2_amd64.deb
-builder 128 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-core7_0.6.31-2_amd64.deb
-builder 37 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-glib1_0.6.31-2_amd64.deb
-builder 49 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-gobject0_0.6.31-2_amd64.deb
-builder 51 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/libavahi-ui-gtk3-0_0.6.31-2_amd64.deb
-builder 37 2013-03-06 23:17:19.000000000 +0100 ./pool/main/a/avahi/python-avahi_0.6.31-2_amd64.deb
-builder 314 2012-06-06 23:17:09.000000000 +0200 ./pool/main/a/avogadro/avogadro-data_1.0.3-5_all.deb
-builder 1674 2012-06-06 23:17:09.000000000 +0200 ./pool/main/a/avogadro/libavogadro1_1.0.3-5_amd64.deb
-builder 518 2012-06-06 23:17:09.000000000 +0200 ./pool/main/a/avogadro/python-avogadro_1.0.3-5_amd64.deb
-builder 112 2012-05-05 20:32:08.000000000 +0200 ./pool/main/b/babl/libbabl-0.1-0_0.1.10-1_amd64.deb
-builder 288 2010-05-03 01:02:29.000000000 +0200 ./pool/main/b/backport-util-concurrent/libbackport-util-concurrent-java_3.1-3_all.deb
-builder 440 2012-04-19 03:47:08.000000000 +0200 ./pool/main/b/baobab/baobab_3.4.1-1_amd64.deb
-builder 71 2012-12-14 13:59:14.000000000 +0100 ./pool/main/b/base-files/base-files_7.1_amd64.deb
-builder 46 2012-12-25 18:47:13.000000000 +0100 ./pool/main/b/base-installer/base-installer_1.130_all.udeb
-builder 187 2012-12-25 18:47:13.000000000 +0100 ./pool/main/b/base-installer/bootstrap-base_1.130_amd64.udeb
-builder 46 2012-06-23 11:17:08.000000000 +0200 ./pool/main/b/base-passwd/base-passwd_3.5.26_amd64.deb
-builder 1461 2012-12-30 02:50:55.000000000 +0100 ./pool/main/b/bash/bash_4.2+dfsg-0.1_amd64.deb
-builder 189 2012-06-17 21:17:07.000000000 +0200 ./pool/main/b/bash-completion/bash-completion_2.0-1_all.deb
-builder 108 2011-08-10 17:47:05.000000000 +0200 ./pool/main/b/bc/bc_1.06.95-2+b1_amd64.deb
-builder 69 2011-08-10 17:47:05.000000000 +0200 ./pool/main/b/bc/dc_1.06.95-2+b1_amd64.deb
-builder 466 2011-12-13 07:02:05.000000000 +0100 ./pool/main/b/bcel/libbcel-java_5.2-9_all.deb
-builder 35 2012-06-16 15:47:08.000000000 +0200 ./pool/main/b/beautifulsoup/python-beautifulsoup_3.2.1-1_all.deb
-builder 5 2012-06-24 14:32:08.000000000 +0200 ./pool/main/b/beep/beep-udeb_1.3-3+b1_amd64.udeb
-builder 303 2011-08-21 20:32:05.000000000 +0200 ./pool/main/b/bgoffice/myspell-bg_4.1-3_all.deb
-builder 358 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/bind9_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 72 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/bind9-host_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 124 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/bind9utils_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 163 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/dnsutils_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 20 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/host_9.8.4.dfsg.P1-6+nmu2_all.deb
-builder 41 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/libbind9-80_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 733 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/libdns88_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 178 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/libisc84_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 35 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/libisccc80_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 61 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/libisccfg82_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 54 2013-04-16 04:48:58.000000000 +0200 ./pool/main/b/bind9/liblwres80_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-builder 84 2012-10-01 00:18:39.000000000 +0200 ./pool/main/b/binfmt-support/binfmt-support_2.0.12_amd64.deb
-builder 4688 2013-02-23 03:14:32.000000000 +0100 ./pool/main/b/binutils/binutils_2.22-8_amd64.deb
-builder 287 2012-06-29 21:06:37.000000000 +0200 ./pool/main/b/blas/libblas3_1.2.20110419-5_amd64.deb
-builder 8 2012-06-29 21:06:37.000000000 +0200 ./pool/main/b/blas/libblas3gf_1.2.20110419-5_all.deb
-builder 43 2013-03-27 00:24:06.000000000 +0100 ./pool/main/b/blcr/blcr-util_0.8.5-2_amd64.deb
-builder 37 2013-03-27 00:24:06.000000000 +0100 ./pool/main/b/blcr/libcr0_0.8.5-2_amd64.deb
-builder 547 2012-06-17 23:47:45.000000000 +0200 ./pool/main/b/blinken/blinken_4.8.4-1_amd64.deb
-builder 1655 2009-12-04 19:38:51.000000000 +0100 ./pool/main/b/blt/blt_2.4z-4.2_amd64.deb
-builder 279 2012-09-10 00:37:10.000000000 +0200 ./pool/main/b/bluefish/bluefish_2.2.3-4_amd64.deb
-builder 2638 2012-09-10 00:37:10.000000000 +0200 ./pool/main/b/bluefish/bluefish-data_2.2.3-4_all.deb
-builder 240 2012-09-10 00:37:10.000000000 +0200 ./pool/main/b/bluefish/bluefish-plugins_2.2.3-4_amd64.deb
-builder 981 2012-03-24 23:32:08.000000000 +0100 ./pool/main/b/bluez/bluez_4.99-2_amd64.deb
-builder 87 2012-03-24 23:32:08.000000000 +0100 ./pool/main/b/bluez/libbluetooth3_4.99-2_amd64.deb
-builder 102 2010-04-27 23:33:33.000000000 +0200 ./pool/main/b/bodr/bodr_9-1_all.deb
-builder 1 2012-12-04 22:26:07.000000000 +0100 ./pool/main/b/bogofilter/bogofilter_1.2.2+dfsg1-2_amd64.deb
-builder 287 2012-12-04 22:26:07.000000000 +0100 ./pool/main/b/bogofilter/bogofilter-bdb_1.2.2+dfsg1-2_amd64.deb
-builder 190 2012-12-04 21:25:58.000000000 +0100 ./pool/main/b/bogofilter/bogofilter-common_1.2.2+dfsg1-2_all.deb
-builder 77 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-filesystem1.49.0_1.49.0-3.2_amd64.deb
-builder 159 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-graph1.49.0_1.49.0-3.2_amd64.deb
-builder 59 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-iostreams1.49.0_1.49.0-3.2_amd64.deb
-builder 158 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-program-options1.49.0_1.49.0-3.2_amd64.deb
-builder 354 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-python1.49.0_1.49.0-3.2_amd64.deb
-builder 449 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-regex1.49.0_1.49.0-3.2_amd64.deb
-builder 57 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-signals1.49.0_1.49.0-3.2_amd64.deb
-builder 33 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-system1.49.0_1.49.0-3.2_amd64.deb
-builder 63 2013-02-04 03:12:25.000000000 +0100 ./pool/main/b/boost1.49/libboost-thread1.49.0_1.49.0-3.2_amd64.deb
-builder 656 2012-10-11 23:42:58.000000000 +0200 ./pool/main/b/brasero/brasero_3.4.1-4_amd64.deb
-builder 1991 2012-10-11 23:42:58.000000000 +0200 ./pool/main/b/brasero/brasero-common_3.4.1-4_all.deb
-builder 848 2012-10-11 23:42:58.000000000 +0200 ./pool/main/b/brasero/libbrasero-media3-1_3.4.1-4_amd64.deb
-builder 186 2011-09-14 18:17:24.000000000 +0200 ./pool/main/b/br.ispell/ibrazilian_3.0~beta4-15_all.deb
-builder 78 2013-04-16 01:03:18.000000000 +0200 ./pool/main/b/brltty/libbrlapi0.5_4.4-10_amd64.deb
-builder 105 2013-04-16 01:03:18.000000000 +0200 ./pool/main/b/brltty/python-brlapi_4.4-10_amd64.deb
-builder 149 2013-04-16 01:03:18.000000000 +0200 ./pool/main/b/brltty/xbrlapi_4.4-10_amd64.deb
-builder 20 2012-06-18 08:47:07.000000000 +0200 ./pool/main/b/bsd-finger/finger_0.17-15_amd64.deb
-builder 205 2012-06-11 12:47:09.000000000 +0200 ./pool/main/b/bsdmainutils/bsdmainutils_9.0.3_amd64.deb
-builder 434 2012-06-24 14:47:18.000000000 +0200 ./pool/main/b/bterm-unifont/bterm-unifont_1.2+b1_amd64.udeb
-builder 235 2013-02-28 20:55:54.000000000 +0100 ./pool/main/b/btrfs-tools/btrfs-tools_0.19+20120328-7.1_amd64.deb
-builder 100 2013-02-28 20:55:54.000000000 +0100 ./pool/main/b/btrfs-tools/btrfs-tools-udeb_0.19+20120328-7.1_amd64.udeb
-builder 8 2010-03-15 08:33:48.000000000 +0100 ./pool/main/b/build-essential/build-essential_11.5_amd64.deb
-builder 442 2012-09-20 11:29:01.000000000 +0200 ./pool/main/b/busybox/busybox_1.20.0-7_amd64.deb
-builder 92 2011-07-25 14:32:10.000000000 +0200 ./pool/main/b/bwbasic/bwbasic_2.20pl2-11_amd64.deb
-builder 49 2012-07-29 18:17:07.000000000 +0200 ./pool/main/b/bzip2/bzip2_1.0.6-4_amd64.deb
-builder 46 2012-07-29 18:17:07.000000000 +0200 ./pool/main/b/bzip2/libbz2-1.0_1.0.6-4_amd64.deb
-builder 11 2011-10-21 21:32:04.000000000 +0200 ./pool/main/c/c2050/printer-driver-c2050_0.3b-4_amd64.deb
-builder 33 2012-04-26 11:17:19.000000000 +0200 ./pool/main/c/c2esp/printer-driver-c2esp_24-2_amd64.deb
-builder 182 2013-01-20 15:40:05.000000000 +0100 ./pool/main/c/ca-certificates/ca-certificates_20130119_all.deb
-builder 15 2013-01-27 14:35:37.000000000 +0100 ./pool/main/c/ca-certificates-java/ca-certificates-java_20121112+nmu2_all.deb
-builder 891 2013-01-31 16:37:12.000000000 +0100 ./pool/main/c/cairo/libcairo2_1.12.2-3_amd64.deb
-builder 1134 2013-01-31 16:37:12.000000000 +0100 ./pool/main/c/cairo/libcairo2-dev_1.12.2-3_amd64.deb
-builder 428 2013-01-31 16:37:12.000000000 +0100 ./pool/main/c/cairo/libcairo-gobject2_1.12.2-3_amd64.deb
-builder 471 2013-01-31 16:37:12.000000000 +0100 ./pool/main/c/cairo/libcairo-script-interpreter2_1.12.2-3_amd64.deb
-builder 76 2011-05-24 05:32:05.000000000 +0200 ./pool/main/c/cairomm/libcairomm-1.0-1_1.10.0-1_amd64.deb
-builder 280 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/braindump_2.4.4-3_amd64.deb
-builder 12 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligra_2.4.4-3_all.deb
-builder 1491 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligra-data_2.4.4-3_all.deb
-builder 78 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligraflow_2.4.4-3_amd64.deb
-builder 6046 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligraflow-data_2.4.4-3_all.deb
-builder 6421 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligra-libs_2.4.4-3_amd64.deb
-builder 2164 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligraplan_2.4.4-3_amd64.deb
-builder 4338 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligrasheets_2.4.4-3_amd64.deb
-builder 7888 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligrastage_2.4.4-3_amd64.deb
-builder 2548 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligrawords_2.4.4-3_amd64.deb
-builder 480 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/calligrawords-data_2.4.4-3_all.deb
-builder 672 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/karbon_2.4.4-3_amd64.deb
-builder 3425 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/kexi_2.4.4-3_amd64.deb
-builder 6215 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/krita_2.4.4-3_amd64.deb
-builder 19240 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/krita-data_2.4.4-3_all.deb
-builder 28 2013-03-16 15:07:59.000000000 +0100 ./pool/main/c/calligra/kthesaurus_2.4.4-3_amd64.deb
-builder 496 2012-06-29 17:18:42.000000000 +0200 ./pool/main/c/calligra-l10n/calligra-l10n-de_2.4.3-1_all.deb
-builder 294 2012-06-29 17:18:41.000000000 +0200 ./pool/main/c/calligra-l10n/calligra-l10n-el_2.4.3-1_all.deb
-builder 965 2012-06-29 17:18:41.000000000 +0200 ./pool/main/c/calligra-l10n/calligra-l10n-es_2.4.3-1_all.deb
-builder 1593 2012-06-29 17:18:42.000000000 +0200 ./pool/main/c/calligra-l10n/calligra-l10n-fr_2.4.3-1_all.deb
-builder 391 2012-06-29 17:18:41.000000000 +0200 ./pool/main/c/calligra-l10n/calligra-l10n-it_2.4.3-1_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/koffice_2.4.3+2_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/koffice-l10n-de_2.4.3+2_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/koffice-l10n-el_2.4.3+2_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/koffice-l10n-es_2.4.3+2_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/koffice-l10n-fr_2.4.3+2_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/koffice-l10n-it_2.4.3+2_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/kpresenter_2.4.3+2_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/kspread_2.4.3+2_all.deb
-builder 2 2012-06-30 11:50:24.000000000 +0200 ./pool/main/c/calligra-transitional/kword_2.4.3+2_all.deb
-builder 580 2012-11-25 10:29:45.000000000 +0100 ./pool/main/c/canna/libcanna1g_3.7p3-11_amd64.deb
-builder 380 2012-06-22 10:47:48.000000000 +0200 ./pool/main/c/cantor/cantor_4.8.4-2_amd64.deb
-builder 22 2012-06-22 10:47:47.000000000 +0200 ./pool/main/c/cantor/cantor-backend-kalgebra_4.8.4-2_amd64.deb
-builder 700 2007-08-09 16:02:01.000000000 +0200 ./pool/main/c/caps/caps_0.4.2-1_amd64.deb
-builder 73 2012-06-26 00:17:39.000000000 +0200 ./pool/main/c/c-ares/libc-ares2_1.9.1-3_amd64.deb
-builder 66 2012-09-22 12:59:00.000000000 +0200 ./pool/main/c/caribou/caribou_0.4.4-1_all.deb
-builder 16 2012-09-22 12:59:00.000000000 +0200 ./pool/main/c/caribou/caribou-antler_0.4.4-1_all.deb
-builder 10 2012-09-22 12:59:00.000000000 +0200 ./pool/main/c/caribou/gir1.2-caribou-1.0_0.4.4-1_amd64.deb
-builder 40 2012-09-22 12:59:00.000000000 +0200 ./pool/main/c/caribou/libcaribou0_0.4.4-1_amd64.deb
-builder 8 2012-09-22 12:59:00.000000000 +0200 ./pool/main/c/caribou/libcaribou-common_0.4.4-1_all.deb
-builder 16 2012-09-22 12:59:00.000000000 +0200 ./pool/main/c/caribou/libcaribou-gtk3-module_0.4.4-1_amd64.deb
-builder 16 2012-09-22 12:59:00.000000000 +0200 ./pool/main/c/caribou/libcaribou-gtk-module_0.4.4-1_amd64.deb
-builder 115 2008-12-08 17:47:02.000000000 +0100 ./pool/main/c/cbflib/libcbf0_0.7.9.1-3_amd64.deb
-builder 17 2012-10-14 11:27:04.000000000 +0200 ./pool/main/c/cdebconf-entropy/cdebconf-gtk-entropy_0.24_amd64.udeb
-builder 18 2012-10-14 11:27:04.000000000 +0200 ./pool/main/c/cdebconf-entropy/cdebconf-newt-entropy_0.24_amd64.udeb
-builder 18 2012-10-14 11:27:04.000000000 +0200 ./pool/main/c/cdebconf-entropy/cdebconf-text-entropy_0.24_amd64.udeb
-builder 5 2012-12-09 16:42:52.000000000 +0100 ./pool/main/c/cdebconf-terminal/cdebconf-newt-terminal_0.18_amd64.udeb
-builder 43 2012-02-29 20:17:07.000000000 +0100 ./pool/main/c/cdparanoia/cdparanoia_3.10.2+debian-10.1_amd64.deb
-builder 55 2012-02-29 20:17:07.000000000 +0100 ./pool/main/c/cdparanoia/libcdparanoia0_3.10.2+debian-10.1_amd64.deb
-builder 424 2012-04-08 19:32:08.000000000 +0200 ./pool/main/c/cdrdao/cdrdao_1.2.3-0.3_amd64.deb
-builder 620 2011-07-21 14:02:05.000000000 +0200 ./pool/main/c/cdrkit/genisoimage_1.1.11-2_amd64.deb
-builder 449 2011-07-21 14:02:05.000000000 +0200 ./pool/main/c/cdrkit/wodim_1.1.11-2_amd64.deb
-builder 39 2012-05-19 22:48:05.000000000 +0200 ./pool/main/c/celestia/celestia_1.6.1+dfsg-2_all.deb
-builder 28127 2012-05-19 22:48:05.000000000 +0200 ./pool/main/c/celestia/celestia-common_1.6.1+dfsg-2_all.deb
-builder 1105 2012-05-19 22:48:05.000000000 +0200 ./pool/main/c/celestia/celestia-gnome_1.6.1+dfsg-2_amd64.deb
-builder 2676 2012-03-21 10:18:10.000000000 +0100 ./pool/main/c/cfengine2/cfengine2_2.2.10-5_amd64.deb
-builder 592 2012-06-03 15:47:47.000000000 +0200 ./pool/main/c/cfitsio3/libcfitsio3_3.300-2_amd64.deb
-builder 251 2012-05-06 21:02:30.000000000 +0200 ./pool/main/c/cgoban/cgoban_1.9.14-17_amd64.deb
-builder 174 2011-07-20 23:02:43.000000000 +0200 ./pool/main/c/chardet/python-chardet_2.0.1-2_all.deb
-builder 204 2012-09-22 13:39:02.000000000 +0200 ./pool/main/c/cheese/cheese_3.4.2-2_amd64.deb
-builder 3031 2012-09-22 13:39:02.000000000 +0200 ./pool/main/c/cheese/cheese-common_3.4.2-2_all.deb
-builder 177 2012-09-22 13:39:02.000000000 +0200 ./pool/main/c/cheese/libcheese3_3.4.2-2_amd64.deb
-builder 173 2012-09-22 13:39:02.000000000 +0200 ./pool/main/c/cheese/libcheese-gtk21_3.4.2-2_amd64.deb
-builder 60 2012-02-26 20:47:26.000000000 +0100 ./pool/main/c/chemical-mime-data/chemical-mime-data_0.1.94-6_all.deb
-builder 293 2011-12-29 19:32:47.000000000 +0100 ./pool/main/c/chemtool/chemtool_1.6.13-1_amd64.deb
-builder 226 2010-11-08 14:32:03.000000000 +0100 ./pool/main/c/childsplay-alphabet-sounds-bg/childsplay-alphabet-sounds-bg_0.9.1-2_all.deb
-builder 11648 2011-09-27 16:47:19.000000000 +0200 ./pool/main/c/childsplay/childsplay_1.6-1_all.deb
-builder 30 2012-01-02 10:32:05.000000000 +0100 ./pool/main/c/chmlib/libchm1_0.40a-2_amd64.deb
-builder 77 2012-04-29 07:47:07.000000000 +0200 ./pool/main/c/chmsee/chmsee_1.99.10-1_amd64.deb
-builder 190 2013-04-06 13:14:04.000000000 +0200 ./pool/main/c/choose-mirror/choose-mirror-bin_2.45_amd64.udeb
-builder 72 2012-06-03 20:17:52.000000000 +0200 ./pool/main/c/cifs-utils/cifs-utils_5.5-1_amd64.deb
-builder 27 2012-04-01 00:17:07.000000000 +0200 ./pool/main/c/cjet/printer-driver-cjet_0.8.9-3_amd64.deb
-builder 333 2013-04-25 06:44:59.000000000 +0200 ./pool/main/c/clamav/clamav_0.97.8+dfsg-1_amd64.deb
-builder 302 2013-04-25 05:59:55.000000000 +0200 ./pool/main/c/clamav/clamav-base_0.97.8+dfsg-1_all.deb
-builder 316 2013-04-25 06:44:59.000000000 +0200 ./pool/main/c/clamav/clamav-freshclam_0.97.8+dfsg-1_amd64.deb
-builder 4213 2013-04-25 06:44:59.000000000 +0200 ./pool/main/c/clamav/libclamav6_0.97.8+dfsg-1_amd64.deb
-builder 174 2012-01-17 23:47:08.000000000 +0100 ./pool/main/c/cli-common/cli-common_0.8.2_all.deb
-builder 634 2012-04-01 13:17:52.000000000 +0200 ./pool/main/c/cln/libcln6_1.3.2-1.2_amd64.deb
-builder 61 2012-12-09 20:13:49.000000000 +0100 ./pool/main/c/clock-setup/clock-setup_0.114_amd64.udeb
-builder 361 2009-08-28 14:34:45.000000000 +0200 ./pool/main/c/clucene-core/libclucene0ldbl_0.9.21b-2+b1_amd64.deb
-builder 363 2012-08-04 23:02:17.000000000 +0200 ./pool/main/c/clutter-1.0/gir1.2-clutter-1.0_1.10.8-2_amd64.deb
-builder 702 2012-08-04 23:02:17.000000000 +0200 ./pool/main/c/clutter-1.0/libclutter-1.0-0_1.10.8-2_amd64.deb
-builder 816 2012-08-04 23:02:17.000000000 +0200 ./pool/main/c/clutter-1.0/libclutter-1.0-common_1.10.8-2_all.deb
-builder 26 2012-06-12 12:33:21.000000000 +0200 ./pool/main/c/clutter-gesture/libcluttergesture-0.0.2-0_0.0.2.1-7_amd64.deb
-builder 11 2012-05-06 03:48:27.000000000 +0200 ./pool/main/c/clutter-gst/gir1.2-clutter-gst-1.0_1.5.4-1+b2_amd64.deb
-builder 59 2012-05-06 03:48:27.000000000 +0200 ./pool/main/c/clutter-gst/libclutter-gst-1.0-0_1.5.4-1+b2_amd64.deb
-builder 10 2012-05-04 21:17:41.000000000 +0200 ./pool/main/c/clutter-gtk/gir1.2-gtkclutter-1.0_1.2.0-2_amd64.deb
-builder 27 2012-05-04 21:17:41.000000000 +0200 ./pool/main/c/clutter-gtk/libclutter-gtk-1.0-0_1.2.0-2_amd64.deb
-builder 16 2012-06-28 09:18:07.000000000 +0200 ./pool/main/c/clutter-imcontext/libclutter-imcontext-0.1-0_0.1.4-3_amd64.deb
-builder 8 2012-06-28 09:18:07.000000000 +0200 ./pool/main/c/clutter-imcontext/libclutter-imcontext-0.1-bin_0.1.4-3_amd64.deb
-builder 29 2013-03-16 12:42:37.000000000 +0100 ./pool/main/c/cogl/gir1.2-cogl-1.0_1.10.2-7_amd64.deb
-builder 20 2013-03-16 12:42:37.000000000 +0100 ./pool/main/c/cogl/gir1.2-coglpango-1.0_1.10.2-7_amd64.deb
-builder 213 2013-03-16 12:42:37.000000000 +0100 ./pool/main/c/cogl/libcogl9_1.10.2-7_amd64.deb
-builder 223 2013-03-16 12:42:37.000000000 +0100 ./pool/main/c/cogl/libcogl-common_1.10.2-7_all.deb
-builder 29 2013-03-16 12:42:37.000000000 +0100 ./pool/main/c/cogl/libcogl-pango0_1.10.2-7_amd64.deb
-builder 759 2011-11-28 17:02:46.000000000 +0100 ./pool/main/c/collections15/libcollections15-java_4.01+ds1-1_all.deb
-builder 6 2007-02-10 21:47:01.000000000 +0100 ./pool/main/c/colorblind/libcolorblind0_0.0.1-1_amd64.deb
-builder 234 2012-06-01 09:32:22.000000000 +0200 ./pool/main/c/colord/colord_0.1.21-1_amd64.deb
-builder 114 2012-06-01 09:32:22.000000000 +0200 ./pool/main/c/colord/libcolord1_0.1.21-1_amd64.deb
-builder 178 2012-07-06 17:17:18.000000000 +0200 ./pool/main/c/comedilib/libcomedi0_0.10.0-3_amd64.deb
-builder 418 2012-04-08 18:32:07.000000000 +0200 ./pool/main/c/commons-beanutils/libcommons-beanutils-java_1.8.3-3_all.deb
-builder 875 2011-12-12 08:17:04.000000000 +0100 ./pool/main/c/commons-math/libcommons-math-java_2.2-2_all.deb
-builder 7 2011-12-04 02:18:49.000000000 +0100 ./pool/main/c/commons-parent/libcommons-parent-java_22-2_all.deb
-builder 19 2012-05-08 16:47:53.000000000 +0200 ./pool/main/c/console-data/console-keymaps-mac_1.12-2_all.udeb
-builder 152 2012-07-30 15:17:28.000000000 +0200 ./pool/main/c/consolekit/consolekit_0.4.5-3.1_amd64.deb
-builder 58 2012-07-30 15:17:28.000000000 +0200 ./pool/main/c/consolekit/libck-connector0_0.4.5-3.1_amd64.deb
-builder 58 2012-07-30 15:17:28.000000000 +0200 ./pool/main/c/consolekit/libpam-ck-connector_0.4.5-3.1_amd64.deb
-builder 120 2012-12-10 19:07:37.000000000 +0100 ./pool/main/c/console-setup/console-setup_1.88_all.deb
-builder 972 2012-12-10 19:07:37.000000000 +0100 ./pool/main/c/console-setup/console-setup-linux_1.88_all.deb
-builder 594 2012-12-10 19:07:37.000000000 +0100 ./pool/main/c/console-setup/keyboard-configuration_1.88_all.deb
-builder 20 2009-01-12 14:02:01.000000000 +0100 ./pool/main/c/convmv/convmv_1.12-2_all.deb
-builder 5496 2013-01-26 22:14:12.000000000 +0100 ./pool/main/c/coreutils/coreutils_8.13-3.5_amd64.deb
-builder 261 2012-12-30 03:41:04.000000000 +0100 ./pool/main/c/cpio/cpio_2.11+dfsg-0.1_amd64.deb
-builder 18 2011-09-23 18:32:19.000000000 +0200 ./pool/main/c/cpqarrayd/cpqarrayd_2.3-1.3_amd64.deb
-builder 8 2012-01-27 23:47:43.000000000 +0100 ./pool/main/c/cpuburn/cpuburn-udeb_1.4a-3_amd64.udeb
-builder 41 2012-05-06 13:02:07.000000000 +0200 ./pool/main/c/cpufrequtils/cpufrequtils_008-1_amd64.deb
-builder 16 2012-05-06 13:02:07.000000000 +0200 ./pool/main/c/cpufrequtils/libcpufreq0_008-1_amd64.deb
-builder 182 2012-12-12 23:09:29.000000000 +0100 ./pool/main/c/cracklib2/cracklib-runtime_2.8.19-3_amd64.deb
-builder 60 2012-12-12 23:09:29.000000000 +0100 ./pool/main/c/cracklib2/libcrack2_2.8.19-3_amd64.deb
-builder 14 2011-12-29 04:32:44.000000000 +0100 ./pool/main/c/crda/crda_1.1.2-1_amd64.deb
-builder 106 2012-07-04 00:03:05.000000000 +0200 ./pool/main/c/cron/cron_3.0pl1-124_amd64.deb
-builder 125 2012-11-07 17:06:15.000000000 +0100 ./pool/main/c/cryptsetup/cryptsetup_1.4.3-4_amd64.deb
-builder 150 2012-11-07 17:06:15.000000000 +0100 ./pool/main/c/cryptsetup/cryptsetup-bin_1.4.3-4_amd64.deb
-builder 30 2012-11-07 17:06:15.000000000 +0100 ./pool/main/c/cryptsetup/cryptsetup-udeb_1.4.3-4_amd64.udeb
-builder 92 2012-11-07 17:06:15.000000000 +0100 ./pool/main/c/cryptsetup/libcryptsetup4_1.4.3-4_amd64.deb
-builder 42 2012-11-07 17:06:15.000000000 +0100 ./pool/main/c/cryptsetup/libcryptsetup4-udeb_1.4.3-4_amd64.udeb
-builder 52 2013-03-02 23:52:00.000000000 +0100 ./pool/main/c/crystalhd/libcrystalhd3_0.0~git20110715.fdd2f19-9_amd64.deb
-builder 199 2013-04-12 23:20:34.000000000 +0200 ./pool/main/c/csound/csound_5.17.11~dfsg-3_amd64.deb
-builder 1655 2013-04-12 23:20:34.000000000 +0200 ./pool/main/c/csound/csound-data_5.17.11~dfsg-3_all.deb
-builder 239 2013-04-12 23:20:34.000000000 +0200 ./pool/main/c/csound/csound-gui_5.17.11~dfsg-3_amd64.deb
-builder 193 2013-04-12 23:20:34.000000000 +0200 ./pool/main/c/csound/csound-utils_5.17.11~dfsg-3_amd64.deb
-builder 1442 2013-04-12 23:20:34.000000000 +0200 ./pool/main/c/csound/libcsound64-5.2_5.17.11~dfsg-3_amd64.deb
-builder 92 2011-08-02 05:17:04.000000000 +0200 ./pool/main/c/csound-manual/csound-manpages_5.13~dfsg-1_all.deb
-builder 999 2012-01-31 23:18:47.000000000 +0100 ./pool/main/c/culmus/culmus_0.121-1_all.deb
-builder 1355 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/cups_1.5.3-5_amd64.deb
-builder 45 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/cups-bsd_1.5.3-5_amd64.deb
-builder 176 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/cups-client_1.5.3-5_amd64.deb
-builder 882 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/cups-common_1.5.3-5_all.deb
-builder 114 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/cups-ppdc_1.5.3-5_amd64.deb
-builder 381 2012-11-20 20:55:05.000000000 +0100 ./pool/main/c/cups-filters/cups-filters_1.0.18-2.1_amd64.deb
-builder 64 2012-11-20 20:55:05.000000000 +0100 ./pool/main/c/cups-filters/libcupsfilters1_1.0.18-2.1_amd64.deb
-builder 250 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/libcups2_1.5.3-5_amd64.deb
-builder 114 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/libcupscgi1_1.5.3-5_amd64.deb
-builder 102 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/libcupsdriver1_1.5.3-5_amd64.deb
-builder 135 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/libcupsimage2_1.5.3-5_amd64.deb
-builder 97 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/libcupsmime1_1.5.3-5_amd64.deb
-builder 136 2013-03-18 15:52:05.000000000 +0100 ./pool/main/c/cups/libcupsppdc1_1.5.3-5_amd64.deb
-builder 80 2013-01-11 23:37:43.000000000 +0100 ./pool/main/c/cups-pk-helper/cups-pk-helper_0.2.3-3_amd64.deb
-builder 264 2013-04-13 14:57:35.000000000 +0200 ./pool/main/c/curl/curl_7.26.0-1+wheezy2_amd64.deb
-builder 324 2013-04-13 14:57:35.000000000 +0200 ./pool/main/c/curl/libcurl3_7.26.0-1+wheezy2_amd64.deb
-builder 315 2013-04-13 14:57:35.000000000 +0200 ./pool/main/c/curl/libcurl3-gnutls_7.26.0-1+wheezy2_amd64.deb
-builder 5 2009-11-25 18:32:30.000000000 +0100 ./pool/main/c/cvector/libcvector2_1.0.3-1_amd64.deb
-builder 403 2012-06-21 23:35:33.000000000 +0200 ./pool/main/c/cwidget/libcwidget3_0.5.16-3.4_amd64.deb
-builder 118 2012-10-26 14:20:39.000000000 +0200 ./pool/main/c/cyrus-sasl2/libsasl2-2_2.1.25.dfsg1-6_amd64.deb
-builder 114 2012-10-26 14:20:39.000000000 +0200 ./pool/main/c/cyrus-sasl2/libsasl2-modules_2.1.25.dfsg1-6_amd64.deb
-builder 98 2012-10-26 14:20:39.000000000 +0200 ./pool/main/c/cyrus-sasl2/libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6_amd64.deb
-builder 63 2012-10-26 14:20:39.000000000 +0200 ./pool/main/c/cyrus-sasl2/libsasl2-modules-ldap_2.1.25.dfsg1-6_amd64.deb
-builder 96 2010-06-15 17:49:22.000000000 +0200 ./pool/main/d/daemon/daemon_0.6.4-1_amd64.deb
-builder 463 2012-06-24 09:17:44.000000000 +0200 ./pool/main/d/dansguardian/dansguardian_2.10.1.1-5_amd64.deb
-builder 111 2012-03-03 11:02:19.000000000 +0100 ./pool/main/d/dash/dash_0.5.7-3_amd64.deb
-builder 312 2012-09-28 23:17:47.000000000 +0200 ./pool/main/d/dasher/dasher_4.11-2_amd64.deb
-builder 6414 2012-09-28 23:17:47.000000000 +0200 ./pool/main/d/dasher/dasher-data_4.11-2_all.deb
-builder 3 2012-05-18 14:17:22.000000000 +0200 ./pool/main/d/db-defaults/libdb-java_5.1.6_all.deb
-builder 706 2012-06-28 14:47:35.000000000 +0200 ./pool/main/d/db/libdb5.1_5.1.29-5_amd64.deb
-builder 514 2012-06-28 14:47:35.000000000 +0200 ./pool/main/d/db/libdb5.1-java_5.1.29-5_all.deb
-builder 745 2012-06-28 14:47:35.000000000 +0200 ./pool/main/d/db/libdb5.1-java-jni_5.1.29-5_amd64.deb
-builder 199 2013-02-25 14:32:33.000000000 +0100 ./pool/main/d/dbus-glib/libdbus-glib-1-2_0.100.2-1_amd64.deb
-builder 256 2012-06-25 23:07:27.000000000 +0200 ./pool/main/d/dbus-python/python-dbus_1.1.1-1_amd64.deb
-builder 107 2012-06-25 23:07:27.000000000 +0200 ./pool/main/d/dbus-python/python-dbus-dev_1.1.1-1_all.deb
-builder 8 2012-01-25 00:17:25.000000000 +0100 ./pool/main/d/dbus-sharp-glib/libdbus-glib1.0-cil_0.5.0-4_all.deb
-builder 55 2012-01-24 23:47:15.000000000 +0100 ./pool/main/d/dbus-sharp/libdbus1.0-cil_0.7.0-5_all.deb
-builder 21 2012-11-26 12:48:53.000000000 +0100 ./pool/main/d/d-conf/dconf-gsettings-backend_0.12.1-3_amd64.deb
-builder 22 2012-11-26 12:48:53.000000000 +0100 ./pool/main/d/d-conf/dconf-service_0.12.1-3_amd64.deb
-builder 73 2012-11-26 12:48:53.000000000 +0100 ./pool/main/d/d-conf/dconf-tools_0.12.1-3_amd64.deb
-builder 25 2012-11-26 12:48:53.000000000 +0100 ./pool/main/d/d-conf/libdconf0_0.12.1-3_amd64.deb
-builder 163 2012-06-07 11:17:08.000000000 +0200 ./pool/main/d/dctrl-tools/dctrl-tools_2.22.2_amd64.deb
-builder 40 2010-05-12 21:47:17.000000000 +0200 ./pool/main/d/ddccontrol-db/ddccontrol-db_20061014-4_all.deb
-builder 86 2011-10-17 07:17:11.000000000 +0200 ./pool/main/d/ddccontrol/ddccontrol_0.4.2-10_amd64.deb
-builder 35 2011-10-17 07:17:11.000000000 +0200 ./pool/main/d/ddccontrol/libddccontrol0_0.4.2-10_amd64.deb
-builder 1394 2012-08-22 04:57:55.000000000 +0200 ./pool/main/d/ddd/ddd_3.3.12-4_amd64.deb
-builder 168 2012-12-26 03:32:39.000000000 +0100 ./pool/main/d/debconf/debconf_1.5.49_all.deb
-builder 232 2012-12-26 03:32:39.000000000 +0100 ./pool/main/d/debconf/debconf-i18n_1.5.49_all.deb
-builder 55 2012-12-26 03:32:39.000000000 +0100 ./pool/main/d/debconf/debconf-utils_1.5.49_all.deb
-builder 689 2012-09-10 19:13:58.000000000 +0200 ./pool/main/d/debhelper/debhelper_9.20120909_all.deb
-builder 30 2012-06-02 18:03:08.000000000 +0200 ./pool/main/d/debian-archive-keyring/debian-archive-keyring_2012.4_all.deb
-builder 14 2012-06-02 18:03:08.000000000 +0200 ./pool/main/d/debian-archive-keyring/debian-archive-keyring-udeb_2012.4_all.udeb
-builder 5 2013-03-15 20:26:07.000000000 +0100 ./pool/main/d/debian-edu-archive-keyring/debian-edu-archive-keyring_2013.03.15_all.deb
-builder 64 2012-06-16 05:48:53.000000000 +0200 ./pool/main/d/debian-goodies/debian-goodies_0.61_all.deb
-builder 3 2013-01-22 09:56:25.000000000 +0100 ./pool/main/d/debian-installer-utils/di-utils-mapdevfs_1.92+deb7u1_amd64.udeb
-builder 78 2012-06-28 04:50:35.000000000 +0200 ./pool/main/d/debianutils/debianutils_4.3.2_amd64.deb
-builder 60 2013-04-04 19:30:52.000000000 +0200 ./pool/main/d/debootstrap/debootstrap_1.0.48_all.deb
-builder 18 2013-04-04 19:30:52.000000000 +0200 ./pool/main/d/debootstrap/debootstrap-udeb_1.0.48_all.udeb
-builder 111 2012-06-30 21:02:48.000000000 +0200 ./pool/main/d/deborphan/deborphan_1.7.28.8_amd64.deb
-builder 36 2012-04-04 22:47:46.000000000 +0200 ./pool/main/d/debsecan/debsecan_0.4.16+nmu1_all.deb
-builder 635 2012-06-21 17:05:13.000000000 +0200 ./pool/main/d/debtags/debtags_1.10.1_amd64.deb
-builder 89 2012-06-02 19:17:20.000000000 +0200 ./pool/main/d/dee/libdee-1.0-4_1.0.10-3_amd64.deb
-builder 477 2012-08-15 20:10:36.000000000 +0200 ./pool/main/d/denemo/denemo_0.9.2-3_amd64.deb
-builder 9366 2012-08-15 20:10:36.000000000 +0200 ./pool/main/d/denemo/denemo-data_0.9.2-3_all.deb
-builder 991 2012-08-15 20:10:36.000000000 +0200 ./pool/main/d/denemo/denemo-doc_0.9.2-3_all.deb
-builder 855 2012-08-15 20:10:36.000000000 +0200 ./pool/main/d/denemo/ttf-denemo_0.9.2-3_all.deb
-builder 7888 2012-08-23 02:19:59.000000000 +0200 ./pool/main/d/desktop-base/desktop-base_7.0.3_all.deb
-builder 94 2012-06-28 12:17:47.000000000 +0200 ./pool/main/d/desktop-file-utils/desktop-file-utils_0.20-0.1_amd64.deb
-builder 78 2012-04-18 20:02:18.000000000 +0200 ./pool/main/d/desktop-profiles/desktop-profiles_1.4.15+nmu2_all.deb
-builder 15 2009-12-23 11:12:36.000000000 +0100 ./pool/main/d/devio/devio-udeb_1.2-1+b1_amd64.udeb
-builder 14 2008-06-28 22:47:06.000000000 +0200 ./pool/main/d/dhcping/dhcping_1.2-4_amd64.deb
-builder 225 2012-04-14 02:17:07.000000000 +0200 ./pool/main/d/dia/dia_0.97.2-8_amd64.deb
-builder 6178 2012-04-14 01:32:07.000000000 +0200 ./pool/main/d/dia/dia-common_0.97.2-8_all.deb
-builder 226 2012-04-14 02:17:07.000000000 +0200 ./pool/main/d/dia/dia-gnome_0.97.2-8_amd64.deb
-builder 928 2012-04-14 02:17:07.000000000 +0200 ./pool/main/d/dia/dia-libs_0.97.2-8_amd64.deb
-builder 316 2012-06-08 13:47:07.000000000 +0200 ./pool/main/d/dialog/dialog_1.1-20120215-2_amd64.deb
-builder 83 2012-05-21 09:17:08.000000000 +0200 ./pool/main/d/dictd/dict_1.12.0+dfsg-5_amd64.deb
-builder 295 2013-01-23 12:02:46.000000000 +0100 ./pool/main/d/dictionaries-common/dictionaries-common_1.12.11_all.deb
-builder 358 2012-04-29 21:47:16.000000000 +0200 ./pool/main/d/diffutils/diffutils_3.2-6_amd64.deb
-builder 7477 2012-11-24 19:28:17.000000000 +0100 ./pool/main/d/digikam/digikam_2.6.0-1+b2_amd64.deb
-builder 10692 2012-06-10 08:32:08.000000000 +0200 ./pool/main/d/digikam/digikam-data_2.6.0-1_all.deb
-builder 6881 2012-11-24 19:28:17.000000000 +0100 ./pool/main/d/digikam/kipi-plugins_2.6.0-1+b2_amd64.deb
-builder 7395 2012-06-10 08:32:08.000000000 +0200 ./pool/main/d/digikam/kipi-plugins-common_2.6.0-1_all.deb
-builder 23 2013-01-11 18:27:22.000000000 +0100 ./pool/main/d/ding-libs/libcollection2_0.1.3-2_amd64.deb
-builder 9 2013-01-11 18:27:22.000000000 +0100 ./pool/main/d/ding-libs/libdhash1_0.1.3-2_amd64.deb
-builder 17 2013-01-11 18:27:22.000000000 +0100 ./pool/main/d/ding-libs/libini-config2_0.1.3-2_amd64.deb
-builder 9 2013-01-11 18:27:22.000000000 +0100 ./pool/main/d/ding-libs/libpath-utils1_0.1.3-2_amd64.deb
-builder 7 2013-01-11 18:27:22.000000000 +0100 ./pool/main/d/ding-libs/libref-array1_0.1.3-2_amd64.deb
-builder 3889 2012-06-14 17:02:07.000000000 +0200 ./pool/main/d/ding/trans-de-en_1.7-2_all.deb
-builder 308 2012-02-07 09:47:09.000000000 +0100 ./pool/main/d/dirac/libdirac-decoder0_1.0.2-6_amd64.deb
-builder 380 2012-02-07 09:47:09.000000000 +0100 ./pool/main/d/dirac/libdirac-encoder0_1.0.2-6_amd64.deb
-builder 1176 2012-05-20 15:02:07.000000000 +0200 ./pool/main/d/directfb/libdirectfb-1.2-9_1.2.10.0-5_amd64.deb
-builder 906 2012-05-20 15:02:07.000000000 +0200 ./pool/main/d/directfb/libdirectfb-dev_1.2.10.0-5_amd64.deb
-builder 37 2012-05-20 15:02:07.000000000 +0200 ./pool/main/d/directfb/libdirectfb-extra_1.2.10.0-5_amd64.deb
-builder 418 2010-10-18 19:47:03.000000000 +0200 ./pool/main/d/discover-data/discover-data_2.2010.10.18_all.deb
-builder 43 2012-04-06 23:33:34.000000000 +0200 ./pool/main/d/discover/discover_2.1.2-5.2_amd64.deb
-builder 100 2012-04-06 23:33:34.000000000 +0200 ./pool/main/d/discover/libdiscover2_2.1.2-5.2_amd64.deb
-builder 63 2011-10-22 23:17:36.000000000 +0200 ./pool/main/d/distribute/python-pkg-resources_0.6.24-1_all.deb
-builder 726 2012-06-17 01:32:07.000000000 +0200 ./pool/main/d/djview4/djview4_4.9-2_amd64.deb
-builder 29 2012-06-17 01:32:07.000000000 +0200 ./pool/main/d/djview4/djview-plugin_4.9-2_amd64.deb
-builder 6 2012-06-17 01:32:07.000000000 +0200 ./pool/main/d/djview4/djvulibre-plugin_4.9-2_all.deb
-builder 35 2012-06-17 21:47:47.000000000 +0200 ./pool/main/d/djvulibre/djvulibre-desktop_3.5.25.3-1_all.deb
-builder 709 2012-06-17 21:47:47.000000000 +0200 ./pool/main/d/djvulibre/libdjvulibre21_3.5.25.3-1_amd64.deb
-builder 77 2012-06-17 21:47:47.000000000 +0200 ./pool/main/d/djvulibre/libdjvulibre-text_3.5.25.3-1_all.deb
-builder 76 2012-05-19 04:48:53.000000000 +0200 ./pool/main/d/dmidecode/dmidecode_2.11-9_amd64.deb
-builder 29 2012-05-19 04:48:53.000000000 +0200 ./pool/main/d/dmidecode/dmidecode-udeb_2.11-9_amd64.udeb
-builder 38 2012-09-10 19:48:59.000000000 +0200 ./pool/main/d/dmraid/dmraid_1.0.0.rc16-4.2_amd64.deb
-builder 11 2012-09-10 19:48:59.000000000 +0200 ./pool/main/d/dmraid/dmraid-udeb_1.0.0.rc16-4.2_amd64.udeb
-builder 108 2012-09-10 19:48:59.000000000 +0200 ./pool/main/d/dmraid/libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64.deb
-builder 79 2012-09-10 19:48:59.000000000 +0200 ./pool/main/d/dmraid/libdmraid1.0.0.rc16-udeb_1.0.0.rc16-4.2_amd64.udeb
-builder 320 2010-09-18 15:31:34.000000000 +0200 ./pool/main/d/dmz-cursor-theme/dmz-cursor-theme_0.4.3_all.deb
-builder 363 2013-02-10 23:28:28.000000000 +0100 ./pool/main/d/dnsmasq/dnsmasq-base_2.62-3+deb7u1_amd64.deb
-builder 340 2013-04-24 17:53:59.000000000 +0200 ./pool/main/d/docbook-xml/docbook-xml_4.5-7.2_all.deb
-builder 1605 2011-11-17 17:02:06.000000000 +0100 ./pool/main/d/docbook-xsl/docbook-xsl_1.76.1+dfsg-1_all.deb
-builder 326 2012-05-30 02:17:26.000000000 +0200 ./pool/main/d/dom4j/libdom4j-java_1.6.1+dfsg.2-6_all.deb
-builder 68 2012-06-30 21:03:07.000000000 +0200 ./pool/main/d/dosfstools/dosfstools_3.0.13-1_amd64.deb
-builder 18 2009-09-11 08:02:02.000000000 +0200 ./pool/main/d/dotconf/libdotconf1.0_1.0.13-3_amd64.deb
-builder 2800 2013-02-05 02:13:58.000000000 +0100 ./pool/main/d/dovecot/dovecot-core_2.1.7-7_amd64.deb
-builder 333 2013-02-05 02:13:58.000000000 +0100 ./pool/main/d/dovecot/dovecot-gssapi_2.1.7-7_amd64.deb
-builder 416 2013-02-05 02:13:58.000000000 +0100 ./pool/main/d/dovecot/dovecot-imapd_2.1.7-7_amd64.deb
-builder 2538 2013-03-18 07:01:05.000000000 +0100 ./pool/main/d/dpkg/dpkg_1.16.10_amd64.deb
-builder 1258 2013-03-18 07:01:05.000000000 +0100 ./pool/main/d/dpkg/dpkg-dev_1.16.10_all.deb
-builder 927 2013-03-18 07:01:05.000000000 +0100 ./pool/main/d/dpkg/libdpkg-perl_1.16.10_all.deb
-builder 2526 2012-05-23 23:51:20.000000000 +0200 ./pool/main/d/drgeo-doc/drgeo-doc_1.5-7_all.deb
-builder 808 2012-05-24 00:47:56.000000000 +0200 ./pool/main/d/drgeo/drgeo_1.1.0-10_amd64.deb
-builder 484 2010-04-18 18:04:40.000000000 +0200 ./pool/main/d/drpython/drpython_3.11.1-2_all.deb
-builder 967 2011-09-13 15:32:04.000000000 +0200 ./pool/main/d/dsdo/idanish_1.6.25-1.1_amd64.deb
-builder 420 2011-09-13 15:02:06.000000000 +0200 ./pool/main/d/dsdo/myspell-da_1.6.25-1.1_all.deb
-builder 802 2011-09-13 15:02:06.000000000 +0200 ./pool/main/d/dsdo/wdanish_1.6.25-1.1_all.deb
-builder 881 2012-04-07 17:08:12.000000000 +0200 ./pool/main/d/dutch/idutch_2.10-1_all.deb
-builder 799 2012-04-07 17:08:12.000000000 +0200 ./pool/main/d/dutch/myspell-nl_2.10-1_all.deb
-builder 246 2012-04-02 23:18:13.000000000 +0200 ./pool/main/d/dvdauthor/dvdauthor_0.7.0-1.1+b2_amd64.deb
-builder 100 2011-03-07 17:47:03.000000000 +0100 ./pool/main/d/dvd+rw-tools/dvd+rw-tools_7.1-10_amd64.deb
-builder 81 2011-03-07 17:47:03.000000000 +0100 ./pool/main/d/dvd+rw-tools/growisofs_7.1-10_amd64.deb
-builder 139 2012-01-02 22:47:21.000000000 +0100 ./pool/main/d/dvgrab/dvgrab_3.5-2_amd64.deb
-builder 43 2012-03-04 04:47:27.000000000 +0100 ./pool/main/d/dxflib/libdxflib-2.2.0.0_2.2.0.0-8_amd64.deb
-builder 193 2013-03-21 01:55:43.000000000 +0100 ./pool/main/e/e2fsprogs/e2fslibs_1.42.5-1.1_amd64.deb
-builder 959 2013-03-21 01:55:43.000000000 +0100 ./pool/main/e/e2fsprogs/e2fsprogs_1.42.5-1.1_amd64.deb
-builder 240 2013-03-21 01:55:43.000000000 +0100 ./pool/main/e/e2fsprogs/e2fsprogs-udeb_1.42.5-1.1_amd64.udeb
-builder 55 2013-03-21 01:55:43.000000000 +0100 ./pool/main/e/e2fsprogs/libcomerr2_1.42.5-1.1_amd64.deb
-builder 60 2013-03-21 01:55:43.000000000 +0100 ./pool/main/e/e2fsprogs/libss2_1.42.5-1.1_amd64.deb
-builder 270 2012-04-30 01:47:13.000000000 +0200 ./pool/main/e/easychem/easychem_0.6-7_amd64.deb
-builder 57 2012-05-29 23:20:20.000000000 +0200 ./pool/main/e/ed/ed_1.6-2_amd64.deb
-builder 4503 2012-05-09 20:17:19.000000000 +0200 ./pool/main/e/edict/edict_2012.05.09-1_all.deb
-builder 4 2012-09-20 12:29:11.000000000 +0200 ./pool/main/e/efi-reader/efi-reader_0.11_amd64.udeb
-builder 4238 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/libc6_2.13-38_amd64.deb
-builder 2526 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/libc6-dbg_2.13-38_amd64.deb
-builder 2598 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/libc6-dev_2.13-38_amd64.deb
-builder 915 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/libc6-udeb_2.13-38_amd64.udeb
-builder 1240 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/libc-bin_2.13-38_amd64.deb
-builder 219 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/libc-dev-bin_2.13-38_amd64.deb
-builder 10 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/libnss-dns-udeb_2.13-38_amd64.udeb
-builder 16 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/libnss-files-udeb_2.13-38_amd64.udeb
-builder 5579 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/locales_2.13-38_all.deb
-builder 147 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/multiarch-support_2.13-38_amd64.deb
-builder 208 2012-12-30 18:12:05.000000000 +0100 ./pool/main/e/eglibc/nscd_2.13-38_amd64.deb
-builder 61 2012-12-24 00:18:04.000000000 +0100 ./pool/main/e/eject/eject_2.1.5+deb1+cvs20081104-13_amd64.deb
-builder 31 2012-12-24 00:18:04.000000000 +0100 ./pool/main/e/eject/eject-udeb_2.1.5+deb1+cvs20081104-13_amd64.udeb
-builder 292 2012-11-12 21:11:19.000000000 +0100 ./pool/main/e/elfutils/libelf1_0.152-1+wheezy1_amd64.deb
-builder 3352 2012-09-09 20:51:45.000000000 +0200 ./pool/main/e/emacs23/emacs23_23.4+1-4_amd64.deb
-builder 257 2012-09-09 20:51:45.000000000 +0200 ./pool/main/e/emacs23/emacs23-bin-common_23.4+1-4_amd64.deb
-builder 18212 2012-09-09 20:51:45.000000000 +0200 ./pool/main/e/emacs23/emacs23-common_23.4+1-4_all.deb
-builder 2 2012-09-09 20:46:43.000000000 +0200 ./pool/main/e/emacs-defaults/emacs_45.0_all.deb
-builder 21 2013-01-10 04:09:08.000000000 +0100 ./pool/main/e/emacsen-common/emacsen-common_2.0.5_all.deb
-builder 1529 2013-02-02 14:14:56.000000000 +0100 ./pool/main/e/empathy/empathy_3.4.2.3-2_amd64.deb
-builder 2393 2013-02-02 14:14:56.000000000 +0100 ./pool/main/e/empathy/empathy-common_3.4.2.3-2_all.deb
-builder 1097 2013-02-02 14:14:56.000000000 +0100 ./pool/main/e/empathy/nautilus-sendto-empathy_3.4.2.3-2_amd64.deb
-builder 1871 2012-04-18 00:02:34.000000000 +0200 ./pool/main/e/enblend-enfuse/enblend_4.0+dfsg-4+b3_amd64.deb
-builder 2370 2012-04-18 00:02:34.000000000 +0200 ./pool/main/e/enblend-enfuse/enfuse_4.0+dfsg-4+b3_amd64.deb
-builder 75 2011-03-17 12:02:04.000000000 +0100 ./pool/main/e/enca/libenca0_1.13-4_amd64.deb
-builder 19 2011-12-21 19:32:05.000000000 +0100 ./pool/main/e/enchant/enchant_1.6.0-7_amd64.deb
-builder 84 2011-12-21 19:32:05.000000000 +0100 ./pool/main/e/enchant/libenchant1c2a_1.6.0-7_amd64.deb
-builder 2525 2012-08-05 21:17:14.000000000 +0200 ./pool/main/e/eog/eog_3.4.2-1+build1_amd64.deb
-builder 144 2012-06-21 14:17:49.000000000 +0200 ./pool/main/e/epdfview/epdfview_0.1.8-3_amd64.deb
-builder 16 2011-12-28 12:32:05.000000000 +0100 ./pool/main/e/epson-inkjet-printer-escpr/libescpr1_1.1.1-2_amd64.deb
-builder 72 2011-12-28 12:32:05.000000000 +0100 ./pool/main/e/epson-inkjet-printer-escpr/printer-driver-escpr_1.1.1-2_amd64.deb
-builder 45 2011-10-22 01:47:05.000000000 +0200 ./pool/main/e/esound/esound-common_0.2.41-10_all.deb
-builder 20 2012-01-27 14:17:21.000000000 +0100 ./pool/main/e/esound/libesd0_0.2.41-10+b1_amd64.deb
-builder 273 2012-02-06 19:32:54.000000000 +0100 ./pool/main/e/espa-nol/ispanish_1.11-4_all.deb
-builder 248 2012-02-06 19:32:54.000000000 +0100 ./pool/main/e/espa-nol/myspell-es_1.11-4_all.deb
-builder 786 2012-06-08 23:37:00.000000000 +0200 ./pool/main/e/espeak/espeak-data_1.46.02-2_amd64.deb
-builder 662 2012-06-08 23:37:00.000000000 +0200 ./pool/main/e/espeak/espeak-data-udeb_1.46.02-2_amd64.udeb
-builder 153 2012-06-08 23:37:00.000000000 +0200 ./pool/main/e/espeak/libespeak1_1.46.02-2_amd64.deb
-builder 200 2012-12-24 01:13:10.000000000 +0100 ./pool/main/e/espeakup/espeakup-udeb_0.71-13_amd64.udeb
-builder 10 2010-01-19 00:02:16.000000000 +0100 ./pool/main/e/etherwake/etherwake_1.09-3_amd64.deb
-builder 100 2012-07-19 06:02:39.000000000 +0200 ./pool/main/e/ethtool/ethtool_3.4.2-1_amd64.deb
-builder 621 2012-11-08 20:38:35.000000000 +0100 ./pool/main/e/evince/evince_3.4.0-3.1_amd64.deb
-builder 5037 2012-11-08 20:38:35.000000000 +0100 ./pool/main/e/evince/evince-common_3.4.0-3.1_all.deb
-builder 616 2012-11-08 20:38:35.000000000 +0100 ./pool/main/e/evince/evince-gtk_3.4.0-3.1_amd64.deb
-builder 488 2012-11-08 20:38:35.000000000 +0100 ./pool/main/e/evince/gir1.2-evince-3.0_3.4.0-3.1_amd64.deb
-builder 638 2012-11-08 20:38:35.000000000 +0100 ./pool/main/e/evince/libevdocument3-4_3.4.0-3.1_amd64.deb
-builder 556 2012-11-08 20:38:35.000000000 +0100 ./pool/main/e/evince/libevview3-3_3.4.0-3.1_amd64.deb
-builder 787 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/evolution-data-server_3.4.4-3_amd64.deb
-builder 1327 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/evolution-data-server-common_3.4.4-3_all.deb
-builder 758 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/libcamel-1.2-33_3.4.4-3_amd64.deb
-builder 421 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/libebackend-1.2-2_3.4.4-3_amd64.deb
-builder 490 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/libebook-1.2-13_3.4.4-3_amd64.deb
-builder 516 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/libecal-1.2-11_3.4.4-3_amd64.deb
-builder 462 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/libedata-book-1.2-13_3.4.4-3_amd64.deb
-builder 477 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/libedata-cal-1.2-15_3.4.4-3_amd64.deb
-builder 493 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/libedataserver-1.2-16_3.4.4-3_amd64.deb
-builder 489 2013-02-10 19:48:05.000000000 +0100 ./pool/main/e/evolution-data-server/libedataserverui-3.0-1_3.4.4-3_amd64.deb
-builder 1482 2013-03-26 01:10:42.000000000 +0100 ./pool/main/e/evolution/evolution_3.4.4-3_amd64.deb
-builder 8073 2013-03-26 01:10:42.000000000 +0100 ./pool/main/e/evolution/evolution-common_3.4.4-3_all.deb
-builder 946 2013-03-26 01:10:42.000000000 +0100 ./pool/main/e/evolution/evolution-plugins_3.4.4-3_amd64.deb
-builder 2513 2013-03-26 01:10:42.000000000 +0100 ./pool/main/e/evolution/libevolution_3.4.4-3_amd64.deb
-builder 104 2012-06-20 09:47:51.000000000 +0200 ./pool/main/e/evolution-webcal/evolution-webcal_2.32.0-2+b1_amd64.deb
-builder 457 2012-02-22 15:47:51.000000000 +0100 ./pool/main/e/exempi/libexempi3_2.2.0-1_amd64.deb
-builder 8 2013-01-02 19:46:31.000000000 +0100 ./pool/main/e/exim4/exim4_4.80-7_all.deb
-builder 1008 2013-01-02 20:06:33.000000000 +0100 ./pool/main/e/exim4/exim4-base_4.80-7_amd64.deb
-builder 467 2013-01-02 19:46:31.000000000 +0100 ./pool/main/e/exim4/exim4-config_4.80-7_all.deb
-builder 698 2013-01-02 20:06:33.000000000 +0100 ./pool/main/e/exim4/exim4-daemon-heavy_4.80-7_amd64.deb
-builder 641 2013-01-02 20:06:33.000000000 +0100 ./pool/main/e/exim4/exim4-daemon-light_4.80-7_amd64.deb
-builder 788 2012-05-06 14:47:21.000000000 +0200 ./pool/main/e/exiv2/libexiv2-12_0.23-1_amd64.deb
-builder 139 2012-04-04 10:48:32.000000000 +0200 ./pool/main/e/expat/libexpat1_2.1.0-1_amd64.deb
-builder 224 2012-04-04 10:48:32.000000000 +0200 ./pool/main/e/expat/libexpat1-dev_2.1.0-1_amd64.deb
-builder 175 2012-03-18 14:17:23.000000000 +0100 ./pool/main/f/faad2/libfaad2_2.7-8_amd64.deb
-builder 42 2011-03-14 22:23:06.000000000 +0100 ./pool/main/f/fairymax/fairymax_4.8q-2_amd64.deb
-builder 107 2012-06-07 01:17:30.000000000 +0200 ./pool/main/f/fakeroot/fakeroot_1.18.4-2_amd64.deb
-builder 29 2010-08-03 14:33:01.000000000 +0200 ./pool/main/f/fam/libfam0_2.7.0-17_amd64.deb
-builder 433 2012-04-08 01:32:23.000000000 +0200 ./pool/main/f/farstream/libfarstream-0.1-0_0.1.2-1_amd64.deb
-builder 61 2012-05-30 00:02:35.000000000 +0200 ./pool/main/f/feedparser/python-feedparser_5.1.2-1_all.deb
-builder 1034 2013-01-06 00:53:55.000000000 +0100 ./pool/main/f/festival/festival_2.1~release-5.1_amd64.deb
-builder 49 2010-03-15 10:32:44.000000000 +0100 ./pool/main/f/festival-freebsoft-utils/festival-freebsoft-utils_0.10-3_all.deb
-builder 861 2004-07-07 22:17:07.000000000 +0200 ./pool/main/f/festlex-cmu/festlex-cmu_1.4.0-6_all.deb
-builder 229 2004-05-13 17:47:02.000000000 +0200 ./pool/main/f/festlex-poslex/festlex-poslex_1.4.0-5_all.deb
-builder 4000 2004-07-07 09:17:03.000000000 +0200 ./pool/main/f/festvox-kallpc16k/festvox-kallpc16k_1.4.0-5_all.deb
-builder 1626 2012-08-05 21:47:29.000000000 +0200 ./pool/main/f/fftw3/libfftw3-3_3.3.2-3.1_amd64.deb
-builder 51 2012-06-30 21:03:23.000000000 +0200 ./pool/main/f/file/file_5.11-2_amd64.deb
-builder 198 2012-06-30 21:03:23.000000000 +0200 ./pool/main/f/file/libmagic1_5.11-2_amd64.deb
-builder 327 2012-06-20 00:33:30.000000000 +0200 ./pool/main/f/filelight/filelight_4.8.4-1_amd64.deb
-builder 1747 2012-05-15 00:02:22.000000000 +0200 ./pool/main/f/file-roller/file-roller_3.4.2-1_amd64.deb
-builder 679 2012-01-06 11:18:21.000000000 +0100 ./pool/main/f/findutils/findutils_4.4.2-4_amd64.deb
-builder 25 2013-04-30 02:08:32.000000000 +0200 ./pool/main/f/finish-install/finish-install_2.41wheezy1_all.udeb
-builder 21 2013-01-14 23:14:15.000000000 +0100 ./pool/main/f/firmware-free/firmware-linux-free_3.2_all.deb
-builder 174 2011-10-05 20:47:10.000000000 +0200 ./pool/main/f/flac/flac_1.2.1-6_amd64.deb
-builder 40 2011-10-05 20:47:10.000000000 +0200 ./pool/main/f/flac/libflac++6_1.2.1-6_amd64.deb
-builder 151 2011-10-05 20:47:10.000000000 +0200 ./pool/main/f/flac/libflac8_1.2.1-6_amd64.deb
-builder 222 2011-10-05 20:47:10.000000000 +0200 ./pool/main/f/flac/libflac-dev_1.2.1-6_amd64.deb
-builder 12749 2012-08-05 13:02:07.000000000 +0200 ./pool/main/f/flite/libflite1_1.4-release-6_amd64.deb
-builder 451 2012-06-19 05:03:05.000000000 +0200 ./pool/main/f/fltk1.1/libfltk1.1_1.1.10-14_amd64.deb
-builder 115780 2010-03-20 20:02:19.000000000 +0100 ./pool/main/f/fluid-soundfont/fluid-soundfont-gm_3.1-5_all.deb
-builder 49 2012-01-24 19:17:07.000000000 +0100 ./pool/main/f/fluidsynth/fluidsynth_1.1.5-2_amd64.deb
-builder 188 2012-01-24 19:17:07.000000000 +0100 ./pool/main/f/fluidsynth/libfluidsynth1_1.1.5-2_amd64.deb
-builder 215 2012-05-07 18:32:31.000000000 +0200 ./pool/main/f/folks/folks-common_0.6.9-1_all.deb
-builder 188 2012-06-20 08:19:38.000000000 +0200 ./pool/main/f/folks/gir1.2-folks-0.6_0.6.9-1+b1_amd64.deb
-builder 334 2012-06-20 08:19:38.000000000 +0200 ./pool/main/f/folks/libfolks25_0.6.9-1+b1_amd64.deb
-builder 250 2012-06-20 08:19:38.000000000 +0200 ./pool/main/f/folks/libfolks-eds25_0.6.9-1+b1_amd64.deb
-builder 259 2012-06-20 08:19:38.000000000 +0200 ./pool/main/f/folks/libfolks-telepathy25_0.6.9-1+b1_amd64.deb
-builder 340 2012-12-11 23:26:18.000000000 +0100 ./pool/main/f/fontconfig/fontconfig_2.9.0-7.1_amd64.deb
-builder 228 2012-12-11 23:26:18.000000000 +0100 ./pool/main/f/fontconfig/fontconfig-config_2.9.0-7.1_all.deb
-builder 293 2012-12-11 23:26:18.000000000 +0100 ./pool/main/f/fontconfig/libfontconfig1_2.9.0-7.1_amd64.deb
-builder 838 2012-12-11 23:26:18.000000000 +0100 ./pool/main/f/fontconfig/libfontconfig1-dev_2.9.0-7.1_amd64.deb
-builder 3678 2012-06-12 12:02:39.000000000 +0200 ./pool/main/f/fonts-arphic-bsmi00lp/fonts-arphic-bsmi00lp_2.10-12_all.deb
-builder 7 2012-06-12 12:02:39.000000000 +0200 ./pool/main/f/fonts-arphic-bsmi00lp/ttf-arphic-bsmi00lp_2.10-12_all.deb
-builder 1682 2012-06-12 12:19:00.000000000 +0200 ./pool/main/f/fonts-arphic-gbsn00lp/fonts-arphic-gbsn00lp_2.11-12_all.deb
-builder 7 2012-06-12 12:19:00.000000000 +0200 ./pool/main/f/fonts-arphic-gbsn00lp/ttf-arphic-gbsn00lp_2.11-12_all.deb
-builder 10035 2012-01-27 07:47:55.000000000 +0100 ./pool/main/f/fonts-arphic-ukai/fonts-arphic-ukai_0.2.20080216.2-3_all.deb
-builder 10 2012-01-27 07:47:55.000000000 +0100 ./pool/main/f/fonts-arphic-ukai/ttf-arphic-ukai_0.2.20080216.2-3_all.deb
-builder 7753 2012-02-16 09:47:08.000000000 +0100 ./pool/main/f/fonts-arphic-uming/fonts-arphic-uming_0.2.20080216.2-4_all.deb
-builder 10 2012-02-16 09:47:08.000000000 +0100 ./pool/main/f/fonts-arphic-uming/ttf-arphic-uming_0.2.20080216.2-4_all.deb
-builder 356 2012-03-09 08:33:05.000000000 +0100 ./pool/main/f/fonts-beng-extra/fonts-beng-extra_1.0-2_all.deb
-builder 3 2012-03-09 08:32:52.000000000 +0100 ./pool/main/f/fonts-beng/fonts-beng_1.1_all.deb
-builder 3 2012-03-09 08:32:52.000000000 +0100 ./pool/main/f/fonts-beng/ttf-bengali-fonts_1.1_all.deb
-builder 102 2012-06-11 20:32:08.000000000 +0200 ./pool/main/f/fonts-cantarell/fonts-cantarell_0.0.9-1_all.deb
-builder 1123 2012-03-08 08:02:30.000000000 +0100 ./pool/main/f/fonts-deva-extra/fonts-deva-extra_2.0-2_all.deb
-builder 3 2012-03-08 08:02:16.000000000 +0100 ./pool/main/f/fonts-deva/fonts-deva_1.1_all.deb
-builder 3 2012-03-08 08:02:16.000000000 +0100 ./pool/main/f/fonts-deva/ttf-devanagari-fonts_1.1_all.deb
-builder 4212 2012-03-28 23:48:27.000000000 +0200 ./pool/main/f/fonts-droid/fonts-droid_20111207+git-1_all.deb
-builder 607 2011-09-07 20:47:50.000000000 +0200 ./pool/main/f/fonts-dustin/fonts-dustin_20030517-9_all.deb
-builder 66 2011-10-08 20:17:21.000000000 +0200 ./pool/main/f/fonts-farsiweb/fonts-farsiweb-udeb_0.4.dfsg-11_all.udeb
-builder 5884 2012-05-22 00:32:29.000000000 +0200 ./pool/main/f/fonts-freefont/fonts-freefont-ttf_20120503-1_all.deb
-builder 375 2012-05-22 00:32:29.000000000 +0200 ./pool/main/f/fonts-freefont/fonts-freefont-udeb_20120503-1_all.udeb
-builder 116 2012-05-22 00:32:30.000000000 +0200 ./pool/main/f/fonts-freefont/ttf-freefont_20120503-1_all.deb
-builder 55 2012-02-20 22:32:06.000000000 +0100 ./pool/main/f/fonts-gubbi/fonts-gubbi_1.0-3_all.deb
-builder 50 2012-02-20 22:32:06.000000000 +0100 ./pool/main/f/fonts-gubbi/fonts-knda-udeb_1.0-3_all.udeb
-builder 193 2012-03-08 09:48:38.000000000 +0100 ./pool/main/f/fonts-gujr-extra/fonts-gujr-extra_1.0-2_all.deb
-builder 3 2012-03-08 09:48:20.000000000 +0100 ./pool/main/f/fonts-gujr/fonts-gujr_1.1_all.deb
-builder 2 2012-03-08 09:48:20.000000000 +0100 ./pool/main/f/fonts-gujr/ttf-gujarati-fonts_1.1_all.deb
-builder 52 2012-03-08 17:47:54.000000000 +0100 ./pool/main/f/fonts-guru-extra/fonts-guru-extra_2.0-2_all.deb
-builder 3 2012-03-08 17:47:44.000000000 +0100 ./pool/main/f/fonts-guru/fonts-guru_1.1_all.deb
-builder 3 2012-03-08 17:47:44.000000000 +0100 ./pool/main/f/fonts-guru/ttf-punjabi-fonts_1.1_all.deb
-builder 106 2011-10-05 22:50:48.000000000 +0200 ./pool/main/f/fonts-khmeros/fonts-khmeros-udeb_5.0-5_all.udeb
-builder 451 2012-03-08 17:48:18.000000000 +0100 ./pool/main/f/fonts-knda-extra/fonts-knda-extra_1.0-2_all.deb
-builder 3 2012-03-08 17:48:06.000000000 +0100 ./pool/main/f/fonts-knda/fonts-knda_1.1_all.deb
-builder 3 2012-03-08 17:48:06.000000000 +0100 ./pool/main/f/fonts-knda/ttf-kannada-fonts_1.1_all.deb
-builder 51 2011-10-04 00:02:16.000000000 +0200 ./pool/main/f/fonts-lao/fonts-lao-udeb_0.0.20060226-8_all.udeb
-builder 1293 2012-11-02 07:11:33.000000000 +0100 ./pool/main/f/fonts-liberation/fonts-liberation_1.07.2-6_all.deb
-builder 10 2012-11-02 07:11:33.000000000 +0100 ./pool/main/f/fonts-liberation/ttf-liberation_1.07.2-6_all.deb
-builder 3011 2011-10-24 11:04:20.000000000 +0200 ./pool/main/f/fonts-linex/fonts-linex_2.2-6_all.deb
-builder 4 2011-10-24 11:04:21.000000000 +0200 ./pool/main/f/fonts-linex/ttf-linex_2.2-6_all.deb
-builder 99 2012-05-12 20:02:40.000000000 +0200 ./pool/main/f/fonts-lklug-sinhala/fonts-lklug-sinhala-udeb_0.6-2_all.udeb
-builder 77 2012-03-05 20:50:06.000000000 +0100 ./pool/main/f/fonts-lohit-beng-assamese/fonts-lohit-beng-assamese_2.5.1-1_all.deb
-builder 77 2012-03-05 20:50:21.000000000 +0100 ./pool/main/f/fonts-lohit-beng-bengali/fonts-lohit-beng-bengali_2.5.1-1_all.deb
-builder 47 2012-03-05 20:50:36.000000000 +0100 ./pool/main/f/fonts-lohit-deva/fonts-lohit-deva_2.5.1-1_all.deb
-builder 37 2012-03-05 20:50:50.000000000 +0100 ./pool/main/f/fonts-lohit-gujr/fonts-lohit-gujr_2.5.1-1_all.deb
-builder 22 2012-03-05 20:51:06.000000000 +0100 ./pool/main/f/fonts-lohit-guru/fonts-lohit-guru_2.5.1-1_all.deb
-builder 57 2012-03-05 20:51:22.000000000 +0100 ./pool/main/f/fonts-lohit-knda/fonts-lohit-knda_2.5.1-1_all.deb
-builder 41 2012-03-05 20:51:40.000000000 +0100 ./pool/main/f/fonts-lohit-mlym/fonts-lohit-mlym_2.5.1-1_all.deb
-builder 57 2012-03-05 20:51:56.000000000 +0100 ./pool/main/f/fonts-lohit-orya/fonts-lohit-orya_2.5.1-1_all.deb
-builder 36 2012-06-05 19:36:25.000000000 +0200 ./pool/main/f/fonts-lohit-taml/fonts-lohit-taml_2.5.1-1_all.deb
-builder 66 2012-06-26 06:17:19.000000000 +0200 ./pool/main/f/fonts-lohit-telu/fonts-lohit-telu_2.5.1-2_all.deb
-builder 47 2012-06-26 06:17:19.000000000 +0200 ./pool/main/f/fonts-lohit-telu/fonts-telu-udeb_2.5.1-2_all.udeb
-builder 872 2011-10-24 11:04:32.000000000 +0200 ./pool/main/f/fonts-mgopen/fonts-mgopen_1.1-8_all.deb
-builder 4 2011-10-24 11:04:32.000000000 +0200 ./pool/main/f/fonts-mgopen/ttf-mgopen_1.1-8_all.deb
-builder 3 2012-03-08 19:32:19.000000000 +0100 ./pool/main/f/fonts-mlym/fonts-mlym_1.1_all.deb
-builder 3 2012-03-08 19:32:19.000000000 +0100 ./pool/main/f/fonts-mlym/ttf-malayalam-fonts_1.1_all.deb
-builder 164 2012-03-08 08:02:41.000000000 +0100 ./pool/main/f/fonts-nakula/fonts-nakula_1.0-2_all.deb
-builder 75 2011-12-16 11:32:17.000000000 +0100 ./pool/main/f/fonts-navilu/fonts-navilu_1.1-1_all.deb
-builder 83 2012-03-09 07:17:30.000000000 +0100 ./pool/main/f/fonts-orya-extra/fonts-orya-extra_2.0-2_all.deb
-builder 3 2012-03-09 07:17:16.000000000 +0100 ./pool/main/f/fonts-orya/fonts-orya_1.1_all.deb
-builder 3 2012-03-09 07:17:16.000000000 +0100 ./pool/main/f/fonts-orya/ttf-oriya-fonts_1.1_all.deb
-builder 166 2012-03-08 08:02:55.000000000 +0100 ./pool/main/f/fonts-sahadeva/fonts-sahadeva_1.0-2_all.deb
-builder 52 2012-09-15 19:22:01.000000000 +0200 ./pool/main/f/fonts-samyak/fonts-samyak-gujr_1.2.2-3_all.deb
-builder 26 2012-09-15 19:22:01.000000000 +0200 ./pool/main/f/fonts-samyak/fonts-samyak-taml_1.2.2-3_all.deb
-builder 21 2012-09-15 19:22:01.000000000 +0200 ./pool/main/f/fonts-samyak/fonts-taml-udeb_1.2.2-3_all.udeb
-builder 235 2012-02-26 20:02:34.000000000 +0100 ./pool/main/f/fonts-sil-abyssinica/fonts-sil-abyssinica-udeb_1.200-3_all.udeb
-builder 1031 2011-11-06 19:47:16.000000000 +0100 ./pool/main/f/fonts-sil-andika/fonts-sil-andika_1.002-2_all.deb
-builder 601 2011-11-01 23:32:47.000000000 +0100 ./pool/main/f/fonts-sil-doulos/fonts-sil-doulos_4.106-4_all.deb
-builder 9 2011-11-01 23:32:47.000000000 +0100 ./pool/main/f/fonts-sil-doulos/ttf-sil-doulos_4.106-4_all.deb
-builder 851 2011-11-25 06:32:06.000000000 +0100 ./pool/main/f/fonts-sil-gentium-basic/fonts-sil-gentium-basic_1.1-5_all.deb
-builder 8 2011-11-25 06:32:06.000000000 +0100 ./pool/main/f/fonts-sil-gentium-basic/ttf-sil-gentium-basic_1.1-5_all.deb
-builder 669 2011-11-05 13:17:04.000000000 +0100 ./pool/main/f/fonts-sil-gentium/fonts-sil-gentium_1.02-12_all.deb
-builder 129 2011-09-09 23:47:04.000000000 +0200 ./pool/main/f/fonts-sil-padauk/fonts-sil-padauk-udeb_2.61-4_all.udeb
-builder 115 2012-03-01 18:17:05.000000000 +0100 ./pool/main/f/fonts-sil-scheherazade/fonts-sil-scheherazade-udeb_1.001-8_all.udeb
-builder 254 2012-06-26 10:48:12.000000000 +0200 ./pool/main/f/fonts-smc/fonts-mlym-udeb_5.0.1-2_all.udeb
-builder 783 2012-06-26 10:48:12.000000000 +0200 ./pool/main/f/fonts-smc/fonts-smc_5.0.1-2_all.deb
-builder 745 2012-04-20 05:02:28.000000000 +0200 ./pool/main/f/fonts-stix/fonts-stix_1.1.0-1_all.deb
-builder 3 2012-09-16 15:49:08.000000000 +0200 ./pool/main/f/fonts-taml/fonts-taml_1.2_all.deb
-builder 3 2012-09-16 15:49:08.000000000 +0200 ./pool/main/f/fonts-taml/ttf-tamil-fonts_1.2_all.deb
-builder 213 2012-03-08 08:03:24.000000000 +0100 ./pool/main/f/fonts-telu-extra/fonts-telu-extra_2.0-2_all.deb
-builder 3 2012-03-08 08:03:09.000000000 +0100 ./pool/main/f/fonts-telu/fonts-telu_1.1_all.deb
-builder 3 2012-03-08 08:03:09.000000000 +0100 ./pool/main/f/fonts-telu/ttf-telugu-fonts_1.1_all.deb
-builder 557 2012-05-13 18:19:24.000000000 +0200 ./pool/main/f/fonts-tibetan-machine/fonts-tibetan-machine-udeb_1.901b-4_all.udeb
-builder 108 2012-08-07 19:02:08.000000000 +0200 ./pool/main/f/fonts-tlwg/fonts-thai-tlwg-udeb_0.5.0-5_all.udeb
-builder 210 2011-05-01 20:02:32.000000000 +0200 ./pool/main/f/fonts-ukij-uyghur/fonts-ukij-uyghur-udeb_20110217-2_all.udeb
-builder 2110 2013-04-01 02:18:06.000000000 +0200 ./pool/main/f/fonts-vlgothic/fonts-vlgothic_20120629-2_all.deb
-builder 20 2013-04-01 02:18:06.000000000 +0200 ./pool/main/f/fonts-vlgothic/ttf-vlgothic_20120629-2_all.deb
-builder 28 2012-05-25 08:32:19.000000000 +0200 ./pool/main/f/foo2zjs/foo2zjs_20120510dfsg0-1_all.deb
-builder 1114 2012-05-25 08:32:19.000000000 +0200 ./pool/main/f/foo2zjs/printer-driver-foo2zjs_20120510dfsg0-1_amd64.deb
-builder 308 2012-06-11 11:06:36.000000000 +0200 ./pool/main/f/foomatic-db-engine/foomatic-db-engine_4.0.8-3_amd64.deb
-builder 1242 2012-05-25 08:17:08.000000000 +0200 ./pool/main/f/foomatic-db/foomatic-db_20120523-1_all.deb
-builder 652 2012-05-25 08:17:08.000000000 +0200 ./pool/main/f/foomatic-db/foomatic-db-compressed-ppds_20120523-1_all.deb
-builder 160 2012-07-05 17:47:53.000000000 +0200 ./pool/main/f/foomatic-filters/foomatic-filters_4.0.17-1_amd64.deb
-builder 1471 2012-05-04 17:34:59.000000000 +0200 ./pool/main/f/fotoxx/fotoxx_11.11.1-1.1_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fpc-2.6.0_2.6.0-9_all.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fpc_2.6.0-9_all.deb
-builder 2435 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-compiler-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-compiler_2.6.0-9_amd64.deb
-builder 13904 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fpc-source-2.6.0_2.6.0-9_all.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fpc-source_2.6.0-9_all.deb
-builder 2115 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-docs-2.6.0_2.6.0-9_all.deb
-builder 14 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-docs_2.6.0-9_all.deb
-builder 1482 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-ide-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-ide_2.6.0-9_amd64.deb
-builder 1409 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-base-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-base_2.6.0-9_amd64.deb
-builder 1288 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-db-2.6.0_2.6.0-9_amd64.deb
-builder 6234 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-fcl-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-fcl_2.6.0-9_amd64.deb
-builder 484 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-fv-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-fv_2.6.0-9_amd64.deb
-builder 1665 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-gfx-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-gfx_2.6.0-9_amd64.deb
-builder 356 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-gnome1-2.6.0_2.6.0-9_amd64.deb
-builder 1577 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-gtk2-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-gtk2_2.6.0-9_amd64.deb
-builder 1017 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-gtk-2.6.0_2.6.0-9_amd64.deb
-builder 488 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-math-2.6.0_2.6.0-9_amd64.deb
-builder 1707 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-misc-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-misc_2.6.0-9_amd64.deb
-builder 216 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-multimedia-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-multimedia_2.6.0-9_amd64.deb
-builder 507 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-net-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-net_2.6.0-9_amd64.deb
-builder 2315 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-rtl-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-units-rtl_2.6.0-9_amd64.deb
-builder 4699 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-utils-2.6.0_2.6.0-9_amd64.deb
-builder 15 2013-04-14 23:50:38.000000000 +0200 ./pool/main/f/fpc/fp-utils_2.6.0-9_amd64.deb
-builder 6 2012-02-06 22:49:57.000000000 +0100 ./pool/main/f/fpconst/python-fpconst_0.7.2-5_all.deb
-builder 37 2012-06-25 18:17:36.000000000 +0200 ./pool/main/f/fping/fping_3.2-1_amd64.deb
-builder 112 2006-10-05 13:47:15.000000000 +0200 ./pool/main/f/freebirth/freebirth_0.3.2-8_amd64.deb
-builder 2254 2006-10-04 23:33:14.000000000 +0200 ./pool/main/f/freebirth/freebirth-data_0.3.2-8_all.deb
-builder 138 2012-07-14 00:32:23.000000000 +0200 ./pool/main/f/freeglut/freeglut3_2.6.0-4_amd64.deb
-builder 21 2011-08-30 23:02:13.000000000 +0200 ./pool/main/f/freehep-export/libfreehep-export-java_2.1.1-2_all.deb
-builder 120 2010-03-04 22:51:43.000000000 +0100 ./pool/main/f/freehep-graphics2d/libfreehep-graphics2d-java_2.1.1-3_all.deb
-builder 362 2012-02-16 17:32:07.000000000 +0100 ./pool/main/f/freehep-graphicsio-emf/libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all.deb
-builder 336 2012-02-11 22:03:27.000000000 +0100 ./pool/main/f/freehep-graphicsio/libfreehep-graphicsio-java_2.1.1-3_all.deb
-builder 70 2010-03-12 00:32:02.000000000 +0100 ./pool/main/f/freehep-graphicsio-pdf/libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all.deb
-builder 25 2010-03-13 18:02:13.000000000 +0100 ./pool/main/f/freehep-graphicsio-svg/libfreehep-graphicsio-svg-java_2.1.1-3_all.deb
-builder 102 2010-03-04 22:52:23.000000000 +0100 ./pool/main/f/freehep-graphicsio-tests/libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all.deb
-builder 60 2011-08-31 20:17:10.000000000 +0200 ./pool/main/f/freehep-io/libfreehep-io-java_2.0.2-4_all.deb
-builder 186 2010-03-04 22:52:40.000000000 +0100 ./pool/main/f/freehep-swing/libfreehep-swing-java_2.0.3-3_all.deb
-builder 47 2011-10-09 11:32:12.000000000 +0200 ./pool/main/f/freehep-util/libfreehep-util-java_2.0.2-5_all.deb
-builder 130 2010-03-11 18:47:40.000000000 +0100 ./pool/main/f/freehep-xml/libfreehep-xml-java_2.1.2+dfsg1-3_all.deb
-builder 290 2012-06-21 08:33:25.000000000 +0200 ./pool/main/f/freeipmi/freeipmi-common_1.1.5-3_all.deb
-builder 1535 2012-06-21 08:33:25.000000000 +0200 ./pool/main/f/freeipmi/freeipmi-tools_1.1.5-3_amd64.deb
-builder 1070 2012-06-21 08:33:25.000000000 +0200 ./pool/main/f/freeipmi/libfreeipmi12_1.1.5-3_amd64.deb
-builder 233 2012-06-21 08:33:25.000000000 +0200 ./pool/main/f/freeipmi/libipmiconsole2_1.1.5-3_amd64.deb
-builder 163 2012-06-21 08:33:25.000000000 +0200 ./pool/main/f/freeipmi/libipmidetect0_1.1.5-3_amd64.deb
-builder 2743 2012-02-06 03:49:56.000000000 +0100 ./pool/main/f/freemind/freemind_0.9.0+dfsg-2_all.deb
-builder 1061 2012-02-06 03:49:55.000000000 +0100 ./pool/main/f/freemind/freemind-doc_0.9.0+dfsg-2_all.deb
-builder 28290 2006-08-11 02:17:11.000000000 +0200 ./pool/main/f/freepats/freepats_20060219-1_all.deb
-builder 52 2013-01-28 12:18:24.000000000 +0100 ./pool/main/f/freerdp/freerdp-x11_1.0.1-1.1+deb7u2_amd64.deb
-builder 256 2013-01-28 12:18:24.000000000 +0100 ./pool/main/f/freerdp/libfreerdp1_1.0.1-1.1+deb7u2_amd64.deb
-builder 85 2013-01-28 12:18:24.000000000 +0100 ./pool/main/f/freerdp/libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64.deb
-builder 441 2012-12-28 22:08:29.000000000 +0100 ./pool/main/f/freetype/libfreetype6_2.4.9-1.1_amd64.deb
-builder 787 2012-12-28 22:08:29.000000000 +0100 ./pool/main/f/freetype/libfreetype6-dev_2.4.9-1.1_amd64.deb
-builder 350 2012-03-03 12:48:22.000000000 +0100 ./pool/main/f/frei0r/frei0r-plugins_1.1.22git20091109-1.2_amd64.deb
-builder 36 2012-04-01 00:18:08.000000000 +0200 ./pool/main/f/fribidi/libfribidi0_0.19.2-3_amd64.deb
-builder 17 2011-06-11 17:32:04.000000000 +0200 ./pool/main/f/ftplib/ftplib3_3.1-1-9_amd64.deb
-builder 71 2013-01-02 08:20:05.000000000 +0100 ./pool/main/f/fuse/fuse_2.9.0-2+deb7u1_amd64.deb
-builder 15 2013-01-02 08:20:05.000000000 +0100 ./pool/main/f/fuse/fuse-udeb_2.9.0-2+deb7u1_amd64.udeb
-builder 44 2013-01-02 08:20:05.000000000 +0100 ./pool/main/f/fuse/fuse-utils_2.9.0-2+deb7u1_all.deb
-builder 141 2013-01-02 08:20:05.000000000 +0100 ./pool/main/f/fuse/libfuse2_2.9.0-2+deb7u1_amd64.deb
-builder 64 2013-01-02 08:20:05.000000000 +0100 ./pool/main/f/fuse/libfuse2-udeb_2.9.0-2+deb7u1_amd64.udeb
-builder 135 2009-02-18 22:32:01.000000000 +0100 ./pool/main/g/galculator/galculator_1.3.4-1_amd64.deb
-builder 139 2010-03-22 14:47:33.000000000 +0100 ./pool/main/g/game-music-emu/libgme0_0.5.5-2_amd64.deb
-builder 30901 2012-02-27 08:02:26.000000000 +0100 ./pool/main/g/games-thumbnails/games-thumbnails_20120227_all.deb
-builder 3993 2012-06-11 12:50:02.000000000 +0200 ./pool/main/g/gavl/libgavl1_1.4.0-1_amd64.deb
-builder 949 2013-03-16 12:57:38.000000000 +0100 ./pool/main/g/gawk/gawk_4.0.1+dfsg-2.1_amd64.deb
-builder 604 2012-11-26 12:58:56.000000000 +0100 ./pool/main/g/gcalctool/gcalctool_6.4.2.1-3_amd64.deb
-builder 4715 2012-11-27 18:09:05.000000000 +0100 ./pool/main/g/gcc-4.6/cpp-4.6_4.6.3-14_amd64.deb
-builder 7154 2012-11-27 18:09:06.000000000 +0100 ./pool/main/g/gcc-4.6/gcc-4.6_4.6.3-14_amd64.deb
-builder 139 2012-11-27 18:09:05.000000000 +0100 ./pool/main/g/gcc-4.6/gcc-4.6-base_4.6.3-14_amd64.deb
-builder 5290 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/cpp-4.7_4.7.2-5_amd64.deb
-builder 7824 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/g++-4.7_4.7.2-5_amd64.deb
-builder 8102 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/gcc-4.7_4.7.2-5_amd64.deb
-builder 142 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/gcc-4.7-base_4.7.2-5_amd64.deb
-builder 43 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/libgcc1_4.7.2-5_amd64.deb
-builder 343 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/libgfortran3_4.7.2-5_amd64.deb
-builder 27 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/libgomp1_4.7.2-5_amd64.deb
-builder 36 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/libitm1_4.7.2-5_amd64.deb
-builder 123 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/libquadmath0_4.7.2-5_amd64.deb
-builder 325 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/libstdc++6_4.7.2-5_amd64.deb
-builder 1686 2013-01-06 23:01:43.000000000 +0100 ./pool/main/g/gcc-4.7/libstdc++6-4.7-dev_4.7.2-5_amd64.deb
-builder 17 2012-09-27 02:33:37.000000000 +0200 ./pool/main/g/gcc-defaults/cpp_4.7.2-1_amd64.deb
-builder 2 2012-09-27 02:33:37.000000000 +0200 ./pool/main/g/gcc-defaults/g++_4.7.2-1_amd64.deb
-builder 5 2012-09-27 02:33:37.000000000 +0200 ./pool/main/g/gcc-defaults/gcc_4.7.2-1_amd64.deb
-builder 2 2012-09-27 02:33:37.000000000 +0200 ./pool/main/g/gcc-defaults/gcj-jre-headless_4.7.2-1_amd64.deb
-builder 136 2012-09-27 02:33:37.000000000 +0200 ./pool/main/g/gcc-defaults/libgcj-common_4.6.3-8_all.deb
-builder 133 2013-01-06 18:40:42.000000000 +0100 ./pool/main/g/gcj-4.7/gcj-4.7-base_4.7.2-3_amd64.deb
-builder 52 2013-01-06 18:40:42.000000000 +0100 ./pool/main/g/gcj-4.7/gcj-4.7-jre-headless_4.7.2-3_amd64.deb
-builder 10242 2013-01-06 18:40:42.000000000 +0100 ./pool/main/g/gcj-4.7/gcj-4.7-jre-lib_4.7.2-3_all.deb
-builder 13301 2013-01-06 18:40:42.000000000 +0100 ./pool/main/g/gcj-4.7/libgcj13_4.7.2-3_amd64.deb
-builder 573 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris_12.01-1_amd64.deb
-builder 73679 2012-02-03 23:17:06.000000000 +0100 ./pool/main/g/gcompris/gcompris-data_12.01-1_all.deb
-builder 1030 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-cs_12.01-1_all.deb
-builder 460 2012-02-03 23:17:06.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-da_12.01-1_all.deb
-builder 439 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-de_12.01-1_all.deb
-builder 4618 2012-02-03 23:17:06.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-en_12.01-1_all.deb
-builder 1418 2012-02-03 23:17:07.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-es_12.01-1_all.deb
-builder 890 2012-02-03 23:17:06.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-eu_12.01-1_all.deb
-builder 1779 2012-02-03 23:17:06.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-fi_12.01-1_all.deb
-builder 4849 2012-02-03 23:17:07.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-fr_12.01-1_all.deb
-builder 671 2012-02-03 23:17:07.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-hu_12.01-1_all.deb
-builder 1325 2012-02-03 23:17:06.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-it_12.01-1_all.deb
-builder 2838 2012-02-03 23:17:06.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-mr_12.01-1_all.deb
-builder 1399 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-nb_12.01-1_all.deb
-builder 850 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-nl_12.01-1_all.deb
-builder 5523 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-pt_12.01-1_all.deb
-builder 713 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-ptbr_12.01-1_all.deb
-builder 1060 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-ru_12.01-1_all.deb
-builder 1019 2012-02-03 23:17:06.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-so_12.01-1_all.deb
-builder 1394 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-sv_12.01-1_all.deb
-builder 2466 2012-02-03 23:17:08.000000000 +0100 ./pool/main/g/gcompris/gcompris-sound-tr_12.01-1_all.deb
-builder 408 2012-08-07 14:32:14.000000000 +0200 ./pool/main/g/gconf/gconf2_3.2.5-1+build1_amd64.deb
-builder 1000 2012-08-07 14:32:14.000000000 +0200 ./pool/main/g/gconf/gconf2-common_3.2.5-1+build1_all.deb
-builder 399 2012-08-07 14:32:14.000000000 +0200 ./pool/main/g/gconf/gconf-service_3.2.5-1+build1_amd64.deb
-builder 349 2012-08-07 14:32:14.000000000 +0200 ./pool/main/g/gconf/gir1.2-gconf-2.0_3.2.5-1+build1_amd64.deb
-builder 409 2012-08-07 14:32:14.000000000 +0200 ./pool/main/g/gconf/libgconf-2-4_3.2.5-1+build1_amd64.deb
-builder 345 2012-08-07 14:32:14.000000000 +0200 ./pool/main/g/gconf/libgconf2-4_3.2.5-1+build1_amd64.deb
-builder 332 2012-05-20 02:05:10.000000000 +0200 ./pool/main/g/gcr/gcr_3.4.1-3_amd64.deb
-builder 122 2012-05-20 02:05:10.000000000 +0200 ./pool/main/g/gcr/gir1.2-gck-1_3.4.1-3_amd64.deb
-builder 131 2012-05-20 02:05:10.000000000 +0200 ./pool/main/g/gcr/gir1.2-gcr-3_3.4.1-3_amd64.deb
-builder 204 2012-05-20 02:05:10.000000000 +0200 ./pool/main/g/gcr/libgck-1-0_3.4.1-3_amd64.deb
-builder 514 2012-05-20 02:05:10.000000000 +0200 ./pool/main/g/gcr/libgcr-3-1_3.4.1-3_amd64.deb
-builder 114 2012-05-20 02:05:10.000000000 +0200 ./pool/main/g/gcr/libgcr-3-common_3.4.1-3_all.deb
-builder 2373 2013-01-27 20:46:56.000000000 +0100 ./pool/main/g/gdb/gdb_7.4.1+dfsg-0.1_amd64.deb
-builder 132 2013-01-27 20:46:56.000000000 +0100 ./pool/main/g/gdb/gdbserver_7.4.1+dfsg-0.1_amd64.deb
-builder 46 2012-06-10 12:02:25.000000000 +0200 ./pool/main/g/gdbm/libgdbm3_1.8.3-11_amd64.deb
-builder 40 2012-11-02 17:57:14.000000000 +0100 ./pool/main/g/gdebi/gdebi_0.8.7_all.deb
-builder 174 2012-11-02 17:57:14.000000000 +0100 ./pool/main/g/gdebi/gdebi-core_0.8.7_all.deb
-builder 807 2012-05-02 00:47:43.000000000 +0200 ./pool/main/g/gdis/gdis_0.90-4_amd64.deb
-builder 799 2012-05-02 00:47:43.000000000 +0200 ./pool/main/g/gdis/gdis-data_0.90-4_all.deb
-builder 17 2012-04-16 07:32:18.000000000 +0200 ./pool/main/g/gdk-pixbuf/gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64.deb
-builder 203 2012-04-16 07:32:18.000000000 +0200 ./pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-0_2.26.1-1_amd64.deb
-builder 575 2012-04-16 07:32:18.000000000 +0200 ./pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-0-udeb_2.26.1-1_amd64.udeb
-builder 486 2012-04-16 07:32:18.000000000 +0200 ./pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-common_2.26.1-1_all.deb
-builder 58 2012-04-16 07:32:18.000000000 +0200 ./pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-dev_2.26.1-1_amd64.deb
-builder 229 2012-05-03 03:19:31.000000000 +0200 ./pool/main/g/gecko-mediaplayer/gecko-mediaplayer_1.0.6-1_amd64.deb
-builder 1004 2012-05-24 18:47:43.000000000 +0200 ./pool/main/g/gedit/gedit_3.4.2-1_amd64.deb
-builder 3328 2012-05-24 18:47:43.000000000 +0200 ./pool/main/g/gedit/gedit-common_3.4.2-1_all.deb
-builder 1522 2012-04-23 01:17:21.000000000 +0200 ./pool/main/g/gedit-plugins/gedit-plugins_3.4.0-1_amd64.deb
-builder 765 2012-11-22 09:49:09.000000000 +0100 ./pool/main/g/gegl/libgegl-0.2-0_0.2.0-2+nmu1_amd64.deb
-builder 24 2011-12-03 16:33:11.000000000 +0100 ./pool/main/g/geoclue/geoclue_0.12.0-4_amd64.deb
-builder 10 2011-12-03 16:33:11.000000000 +0100 ./pool/main/g/geoclue/geoclue-hostip_0.12.0-4_amd64.deb
-builder 13 2011-12-03 16:33:11.000000000 +0100 ./pool/main/g/geoclue/geoclue-localnet_0.12.0-4_amd64.deb
-builder 11 2011-12-03 16:33:11.000000000 +0100 ./pool/main/g/geoclue/geoclue-manual_0.12.0-4_amd64.deb
-builder 10 2011-12-03 16:33:11.000000000 +0100 ./pool/main/g/geoclue/geoclue-yahoo_0.12.0-4_amd64.deb
-builder 37 2011-12-03 16:33:11.000000000 +0100 ./pool/main/g/geoclue/libgeoclue0_0.12.0-4_amd64.deb
-builder 14 2011-05-27 23:32:04.000000000 +0200 ./pool/main/g/geocode-glib/libgeocode-glib0_0.99.0-1_amd64.deb
-builder 5207 2012-06-21 17:08:12.000000000 +0200 ./pool/main/g/geogebra/geogebra_4.0.34.0+dfsg1-1_all.deb
-builder 1432 2013-02-13 11:44:10.000000000 +0100 ./pool/main/g/geoip-database/geoip-database_20130213-1_all.deb
-builder 121 2012-02-25 23:32:56.000000000 +0100 ./pool/main/g/geoip/libgeoip1_1.4.8+dfsg-3_amd64.deb
-builder 3685 2011-10-12 07:02:05.000000000 +0200 ./pool/main/g/geomview/geomview_1.9.4-3_amd64.deb
-builder 581 2011-10-12 07:02:05.000000000 +0200 ./pool/main/g/geomview/libgeomview-1.9.4_1.9.4-3_amd64.deb
-builder 615 2012-06-07 12:33:11.000000000 +0200 ./pool/main/g/gettext/autopoint_0.18.1.1-9_all.deb
-builder 1929 2012-06-07 12:33:11.000000000 +0200 ./pool/main/g/gettext/gettext_0.18.1.1-9_amd64.deb
-builder 151 2012-06-07 12:33:11.000000000 +0200 ./pool/main/g/gettext/gettext-base_0.18.1.1-9_amd64.deb
-builder 27 2012-06-07 12:33:11.000000000 +0200 ./pool/main/g/gettext/libasprintf0c2_0.18.1.1-9_amd64.deb
-builder 142 2012-06-07 12:33:11.000000000 +0200 ./pool/main/g/gettext/libgettextpo0_0.18.1.1-9_amd64.deb
-builder 52 2012-05-09 09:17:20.000000000 +0200 ./pool/main/g/gexiv2/libgexiv2-1_0.4.1-3_amd64.deb
-builder 1889 2011-11-27 20:33:29.000000000 +0100 ./pool/main/g/ghemical/ghemical_3.0.0-1_amd64.deb
-builder 79 2012-11-25 19:07:18.000000000 +0100 ./pool/main/g/ghostscript/ghostscript_9.05~dfsg-6.3_amd64.deb
-builder 59 2012-11-25 19:07:18.000000000 +0100 ./pool/main/g/ghostscript/ghostscript-cups_9.05~dfsg-6.3_amd64.deb
-builder 1802 2012-11-25 19:07:18.000000000 +0100 ./pool/main/g/ghostscript/libgs9_9.05~dfsg-6.3_amd64.deb
-builder 1931 2012-11-25 19:07:18.000000000 +0100 ./pool/main/g/ghostscript/libgs9-common_9.05~dfsg-6.3_all.deb
-builder 42 2012-10-20 14:57:31.000000000 +0200 ./pool/main/g/giflib/libgif4_4.1.6-10_amd64.deb
-builder 4588 2004-11-11 22:17:08.000000000 +0100 ./pool/main/g/gimp-data-extras/gimp-data-extras_2.0.1-3_all.deb
-builder 4143 2012-11-23 21:22:35.000000000 +0100 ./pool/main/g/gimp/gimp_2.8.2-2_amd64.deb
-builder 8072 2012-11-23 21:22:35.000000000 +0100 ./pool/main/g/gimp/gimp-data_2.8.2-2_all.deb
-builder 11 2011-04-21 11:47:04.000000000 +0200 ./pool/main/g/gimp-help/gimp-help-common_2.6.1-1_all.deb
-builder 32558 2011-04-21 11:47:04.000000000 +0200 ./pool/main/g/gimp-help/gimp-help-de_2.6.1-1_all.deb
-builder 29550 2011-04-21 11:47:03.000000000 +0200 ./pool/main/g/gimp-help/gimp-help-es_2.6.1-1_all.deb
-builder 28680 2011-04-21 11:47:04.000000000 +0200 ./pool/main/g/gimp-help/gimp-help-fr_2.6.1-1_all.deb
-builder 33286 2011-04-21 11:47:04.000000000 +0200 ./pool/main/g/gimp-help/gimp-help-it_2.6.1-1_all.deb
-builder 1519 2012-11-23 21:22:35.000000000 +0100 ./pool/main/g/gimp/libgimp2.0_2.8.2-2_amd64.deb
-builder 6527 2012-11-24 08:16:18.000000000 +0100 ./pool/main/g/git/git_1.7.10.4-1+wheezy1_amd64.deb
-builder 1049 2012-11-24 08:16:18.000000000 +0100 ./pool/main/g/git/git-man_1.7.10.4-1+wheezy1_all.deb
-builder 14 2013-01-03 01:47:07.000000000 +0100 ./pool/main/g/gjs/gjs_1.32.0-5_amd64.deb
-builder 229 2013-01-03 01:47:07.000000000 +0100 ./pool/main/g/gjs/libgjs0b_1.32.0-5_amd64.deb
-builder 83 2011-10-10 19:32:05.000000000 +0200 ./pool/main/g/gksu/gksu_2.0.2-6_amd64.deb
-builder 49 2009-11-01 13:03:06.000000000 +0100 ./pool/main/g/gle/libgle3_3.1.0-7_amd64.deb
-builder 138 2012-02-13 12:47:40.000000000 +0100 ./pool/main/g/glew/libglew1.7_1.7.0-3_amd64.deb
-builder 1795 2013-01-09 17:22:17.000000000 +0100 ./pool/main/g/glib2.0/libglib2.0-0_2.33.12+really2.32.4-5_amd64.deb
-builder 848 2013-01-09 17:22:17.000000000 +0100 ./pool/main/g/glib2.0/libglib2.0-bin_2.33.12+really2.32.4-5_amd64.deb
-builder 1570 2013-01-09 17:22:17.000000000 +0100 ./pool/main/g/glib2.0/libglib2.0-data_2.33.12+really2.32.4-5_all.deb
-builder 2003 2013-01-09 17:22:17.000000000 +0100 ./pool/main/g/glib2.0/libglib2.0-dev_2.33.12+really2.32.4-5_amd64.deb
-builder 479 2012-09-29 08:53:11.000000000 +0200 ./pool/main/g/glibmm2.4/libglibmm-2.4-1c2a_2.32.1-1_amd64.deb
-builder 57 2012-05-15 20:47:41.000000000 +0200 ./pool/main/g/glib-networking/glib-networking_2.32.3-1_amd64.deb
-builder 49 2012-05-15 20:47:41.000000000 +0200 ./pool/main/g/glib-networking/glib-networking-common_2.32.3-1_all.deb
-builder 14 2012-05-15 20:47:41.000000000 +0200 ./pool/main/g/glib-networking/glib-networking-services_2.32.3-1_amd64.deb
-builder 253 2012-06-23 01:18:06.000000000 +0200 ./pool/main/g/gmime/libgmime-2.6-0_2.6.10-1_amd64.deb
-builder 122 2012-06-23 00:47:29.000000000 +0200 ./pool/main/g/gmime/libgmime2.6-cil_2.6.10-1_all.deb
-builder 245 2012-06-02 01:03:06.000000000 +0200 ./pool/main/g/gmp/libgmp10_5.0.5+dfsg-2_amd64.deb
-builder 17 2012-04-30 05:47:07.000000000 +0200 ./pool/main/g/gmtk/libgmlib0_1.0.6-1_amd64.deb
-builder 41 2012-04-30 05:47:07.000000000 +0200 ./pool/main/g/gmtk/libgmtk0_1.0.6-1_amd64.deb
-builder 20 2012-04-30 05:47:07.000000000 +0200 ./pool/main/g/gmtk/libgmtk0-data_1.0.6-1_all.deb
-builder 138 2012-06-30 03:33:47.000000000 +0200 ./pool/main/g/gnash/browser-plugin-gnash_0.8.11~git20120629-1_amd64.deb
-builder 223 2012-06-30 03:33:47.000000000 +0200 ./pool/main/g/gnash/gnash_0.8.11~git20120629-1_amd64.deb
-builder 2601 2012-06-30 03:33:47.000000000 +0200 ./pool/main/g/gnash/gnash-common_0.8.11~git20120629-1_amd64.deb
-builder 217 2012-06-30 03:33:47.000000000 +0200 ./pool/main/g/gnash/klash_0.8.11~git20120629-1_amd64.deb
-builder 57 2012-06-30 03:33:47.000000000 +0200 ./pool/main/g/gnash/konqueror-plugin-gnash_0.8.11~git20120629-1_amd64.deb
-builder 27 2012-06-30 03:33:47.000000000 +0200 ./pool/main/g/gnash/mozilla-plugin-gnash_0.8.11~git20120629-1_all.deb
-builder 352 2012-06-28 15:03:42.000000000 +0200 ./pool/main/g/gnome-applets/gnome-applets_3.4.1-3_amd64.deb
-builder 9660 2012-06-28 15:03:42.000000000 +0200 ./pool/main/g/gnome-applets/gnome-applets-data_3.4.1-3_all.deb
-builder 8746 2012-05-15 17:09:05.000000000 +0200 ./pool/main/g/gnome-backgrounds/gnome-backgrounds_3.4.2-1_all.deb
-builder 190 2012-07-10 23:17:55.000000000 +0200 ./pool/main/g/gnome-bluetooth/gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64.deb
-builder 938 2012-07-10 23:17:55.000000000 +0200 ./pool/main/g/gnome-bluetooth/gnome-bluetooth_3.4.2-1_amd64.deb
-builder 242 2012-07-10 23:17:55.000000000 +0200 ./pool/main/g/gnome-bluetooth/libgnome-bluetooth10_3.4.2-1_amd64.deb
-builder 1383 2012-06-27 23:23:12.000000000 +0200 ./pool/main/g/gnome-chemistry-utils/gchempaint_0.12.12-1_amd64.deb
-builder 1148 2012-06-27 23:23:12.000000000 +0200 ./pool/main/g/gnome-chemistry-utils/libgcu0_0.12.12-1_amd64.deb
-builder 1871 2012-05-14 23:32:35.000000000 +0200 ./pool/main/g/gnome-color-manager/gnome-color-manager_3.4.2-1_amd64.deb
-builder 330 2012-06-20 11:07:50.000000000 +0200 ./pool/main/g/gnome-contacts/gnome-contacts_3.4.1-1+b1_amd64.deb
-builder 1808 2013-01-17 10:49:07.000000000 +0100 ./pool/main/g/gnome-control-center/gnome-control-center_3.4.3.1-2_amd64.deb
-builder 3710 2013-01-17 10:49:07.000000000 +0100 ./pool/main/g/gnome-control-center/gnome-control-center-data_3.4.3.1-2_all.deb
-builder 748 2012-05-14 19:48:18.000000000 +0200 ./pool/main/g/gnome-desktop3/gnome-desktop3-data_3.4.2-1_all.deb
-builder 165 2012-05-14 19:48:18.000000000 +0200 ./pool/main/g/gnome-desktop3/libgnome-desktop-3-2_3.4.2-1_amd64.deb
-builder 1638 2012-04-19 03:47:21.000000000 +0200 ./pool/main/g/gnome-dictionary/gnome-dictionary_3.4.0-2_amd64.deb
-builder 82 2012-04-19 03:47:21.000000000 +0200 ./pool/main/g/gnome-dictionary/libgdict-1.0-6_3.4.0-2_amd64.deb
-builder 324 2012-04-19 03:47:21.000000000 +0200 ./pool/main/g/gnome-dictionary/libgdict-common_3.4.0-2_all.deb
-builder 1442 2012-08-24 15:17:57.000000000 +0200 ./pool/main/g/gnome-disk-utility/gnome-disk-utility_3.0.2-3_amd64.deb
-builder 75 2012-08-24 15:17:57.000000000 +0200 ./pool/main/g/gnome-disk-utility/libgdu0_3.0.2-3_amd64.deb
-builder 96 2012-08-24 15:17:57.000000000 +0200 ./pool/main/g/gnome-disk-utility/libgdu-gtk0_3.0.2-3_amd64.deb
-builder 200 2012-11-26 15:49:24.000000000 +0100 ./pool/main/g/gnome-documents/gnome-documents_0.4.2-2_amd64.deb
-builder 62 2012-04-02 14:17:21.000000000 +0200 ./pool/main/g/gnome-font-viewer/gnome-font-viewer_3.4.0-2_amd64.deb
-builder 1912 2012-05-31 17:21:21.000000000 +0200 ./pool/main/g/gnome-games-extra-data/gnome-games-extra-data_3.2.0-4_all.deb
-builder 2172 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/glchess_3.4.2-3_amd64.deb
-builder 2224 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/glines_3.4.2-3_amd64.deb
-builder 1281 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnect_3.4.2-3_amd64.deb
-builder 2803 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnibbles_3.4.2-3_amd64.deb
-builder 974 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnobots2_3.4.2-3_amd64.deb
-builder 536 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnome-games_3.4.2-3_all.deb
-builder 1617 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnome-games-data_3.4.2-3_all.deb
-builder 1920 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnome-sudoku_3.4.2-3_all.deb
-builder 2252 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnomine_3.4.2-3_amd64.deb
-builder 1345 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnotravex_3.4.2-3_amd64.deb
-builder 911 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gnotski_3.4.2-3_amd64.deb
-builder 1785 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/gtali_3.4.2-3_amd64.deb
-builder 846 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/iagno_3.4.2-3_amd64.deb
-builder 592 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/lightsoff_3.4.2-3_amd64.deb
-builder 2526 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/mahjongg_3.4.2-3_amd64.deb
-builder 683 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/quadrapassel_3.4.2-3_amd64.deb
-builder 1316 2012-08-06 00:02:14.000000000 +0200 ./pool/main/g/gnome-games/swell-foop_3.4.2-3_amd64.deb
-builder 848 2012-04-01 06:48:49.000000000 +0200 ./pool/main/g/gnome-icon-theme-extras/gnome-icon-theme-extras_3.4.0-1_all.deb
-builder 9293 2012-04-01 06:48:26.000000000 +0200 ./pool/main/g/gnome-icon-theme/gnome-icon-theme_3.4.0-2_all.deb
-builder 157 2012-04-01 06:49:05.000000000 +0200 ./pool/main/g/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic_3.4.0-2_all.deb
-builder 21 2010-09-05 22:48:47.000000000 +0200 ./pool/main/g/gnome-js-common/gnome-js-common_0.1.2-1_all.deb
-builder 914 2012-08-19 22:12:02.000000000 +0200 ./pool/main/g/gnome-keyring/gnome-keyring_3.4.1-5_amd64.deb
-builder 246 2012-08-19 22:12:02.000000000 +0200 ./pool/main/g/gnome-keyring/libpam-gnome-keyring_3.4.1-5_amd64.deb
-builder 183 2011-08-20 01:32:30.000000000 +0200 ./pool/main/g/gnome-mag/gnome-mag_0.16.3-1_amd64.deb
-builder 40 2011-08-20 01:32:30.000000000 +0200 ./pool/main/g/gnome-mag/libgnome-mag2_0.16.3-1_amd64.deb
-builder 1601 2012-03-28 17:47:25.000000000 +0200 ./pool/main/g/gnome-media/gnome-media_3.4.0-1_amd64.deb
-builder 51 2012-11-26 14:19:10.000000000 +0100 ./pool/main/g/gnome-menus/gir1.2-gmenu-3.0_3.4.2-5_amd64.deb
-builder 161 2012-11-26 14:19:10.000000000 +0100 ./pool/main/g/gnome-menus/gnome-menus_3.4.2-5_amd64.deb
-builder 84 2012-11-26 14:19:10.000000000 +0100 ./pool/main/g/gnome-menus/libgnome-menu-3-0_3.4.2-5_amd64.deb
-builder 709 2007-04-04 11:32:01.000000000 +0200 ./pool/main/g/gnome-mime-data/gnome-mime-data_2.18.0-1_all.deb
-builder 451 2012-05-02 18:26:29.000000000 +0200 ./pool/main/g/gnome-mplayer/gnome-mplayer_1.0.6-1_amd64.deb
-builder 486 2012-04-18 18:47:16.000000000 +0200 ./pool/main/g/gnome-nettool/gnome-nettool_3.2.0-1_amd64.deb
-builder 13 2013-02-05 18:34:40.000000000 +0100 ./pool/main/g/gnome-online-accounts/gir1.2-goa-1.0_3.4.2-2_amd64.deb
-builder 78 2013-02-05 18:34:40.000000000 +0100 ./pool/main/g/gnome-online-accounts/gnome-online-accounts_3.4.2-2_amd64.deb
-builder 73 2013-02-05 18:34:40.000000000 +0100 ./pool/main/g/gnome-online-accounts/libgoa-1.0-0_3.4.2-2_amd64.deb
-builder 56 2013-02-05 18:34:40.000000000 +0100 ./pool/main/g/gnome-online-accounts/libgoa-1.0-common_3.4.2-2_all.deb
-builder 4547 2012-06-10 01:17:07.000000000 +0200 ./pool/main/g/gnome-orca/gnome-orca_3.4.2-2_all.deb
-builder 433 2012-08-05 17:17:08.000000000 +0200 ./pool/main/g/gnome-packagekit/gnome-packagekit_3.4.2-2_amd64.deb
-builder 3655 2012-08-05 17:17:08.000000000 +0200 ./pool/main/g/gnome-packagekit/gnome-packagekit-data_3.4.2-2_all.deb
-builder 207 2013-01-28 16:28:47.000000000 +0100 ./pool/main/g/gnome-panel/gir1.2-panelapplet-4.0_3.4.2.1-4_amd64.deb
-builder 564 2013-01-28 16:28:47.000000000 +0100 ./pool/main/g/gnome-panel/gnome-panel_3.4.2.1-4_amd64.deb
-builder 1391 2013-01-28 16:28:47.000000000 +0100 ./pool/main/g/gnome-panel/gnome-panel-data_3.4.2.1-4_all.deb
-builder 226 2013-01-28 16:28:47.000000000 +0100 ./pool/main/g/gnome-panel/libpanel-applet-4-0_3.4.2.1-4_amd64.deb
-builder 623 2012-04-19 03:47:38.000000000 +0200 ./pool/main/g/gnome-power-manager/gnome-power-manager_3.4.0-2_amd64.deb
-builder 42 2012-06-20 09:20:30.000000000 +0200 ./pool/main/g/gnome-python-desktop/python-rsvg_2.32.0+dfsg-2+b1_amd64.deb
-builder 76 2012-06-20 09:20:30.000000000 +0200 ./pool/main/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-2+b1_amd64.deb
-builder 86 2012-02-06 15:49:15.000000000 +0100 ./pool/main/g/gnome-python/python-gconf_2.28.1+dfsg-1_amd64.deb
-builder 422 2012-02-06 15:49:15.000000000 +0100 ./pool/main/g/gnome-python/python-gnome2_2.28.1+dfsg-1_amd64.deb
-builder 352 2012-04-15 16:50:04.000000000 +0200 ./pool/main/g/gnome-screensaver/gnome-screensaver_3.4.1-1_amd64.deb
-builder 170 2012-04-17 23:19:17.000000000 +0200 ./pool/main/g/gnome-screenshot/gnome-screenshot_3.4.1-1_amd64.deb
-builder 133 2013-04-10 14:24:51.000000000 +0200 ./pool/main/g/gnome-session/gnome-session_3.4.2.1-4_all.deb
-builder 225 2013-04-10 15:14:59.000000000 +0200 ./pool/main/g/gnome-session/gnome-session-bin_3.4.2.1-4_amd64.deb
-builder 268 2013-04-10 14:24:51.000000000 +0200 ./pool/main/g/gnome-session/gnome-session-common_3.4.2.1-4_all.deb
-builder 129 2013-04-10 14:24:51.000000000 +0200 ./pool/main/g/gnome-session/gnome-session-fallback_3.4.2.1-4_all.deb
-builder 913 2013-02-05 16:49:32.000000000 +0100 ./pool/main/g/gnome-settings-daemon/gnome-settings-daemon_3.4.2+git20121218.7c1322-3_amd64.deb
-builder 130 2013-03-03 18:13:32.000000000 +0100 ./pool/main/g/gnome-sharp2/libgconf2.0-cil_2.24.2-3_all.deb
-builder 112 2012-05-30 13:48:31.000000000 +0200 ./pool/main/g/gnome-shell-extensions/gnome-shell-extensions_3.4.0-2_all.deb
-builder 275 2013-02-09 14:44:23.000000000 +0100 ./pool/main/g/gnome-shell/gnome-shell_3.4.2-7_amd64.deb
-builder 651 2013-02-09 14:44:23.000000000 +0100 ./pool/main/g/gnome-shell/gnome-shell-common_3.4.2-7_all.deb
-builder 59 2012-03-26 00:50:40.000000000 +0200 ./pool/main/g/gnome-speech/libgnome-speech7_0.4.25-5_amd64.deb
-builder 75 2012-06-19 23:52:07.000000000 +0200 ./pool/main/g/gnome-sushi/gnome-sushi_0.4.1-3_amd64.deb
-builder 640 2012-11-01 16:15:18.000000000 +0100 ./pool/main/g/gnome-system-log/gnome-system-log_3.4.1-3_amd64.deb
-builder 2166 2012-09-15 13:40:59.000000000 +0200 ./pool/main/g/gnome-system-monitor/gnome-system-monitor_3.4.1-2+b1_amd64.deb
-builder 479 2012-10-24 12:40:19.000000000 +0200 ./pool/main/g/gnome-terminal/gnome-terminal_3.4.1.1-2_amd64.deb
-builder 1617 2012-10-24 12:40:19.000000000 +0200 ./pool/main/g/gnome-terminal/gnome-terminal-data_3.4.1.1-2_all.deb
-builder 497 2010-07-21 17:47:47.000000000 +0200 ./pool/main/g/gnome-themes/gnome-themes_2.30.2-1_all.deb
-builder 1664 2012-11-13 16:32:47.000000000 +0100 ./pool/main/g/gnome-themes-standard/gnome-accessibility-themes_3.4.2-2.1_all.deb
-builder 132 2012-11-13 16:32:47.000000000 +0100 ./pool/main/g/gnome-themes-standard/gnome-themes-standard_3.4.2-2.1_amd64.deb
-builder 1329 2012-11-13 16:32:47.000000000 +0100 ./pool/main/g/gnome-themes-standard/gnome-themes-standard-data_3.4.2-2.1_all.deb
-builder 101 2012-05-30 13:48:47.000000000 +0200 ./pool/main/g/gnome-tweak-tool/gnome-tweak-tool_3.4.0.1-2_all.deb
-builder 6265 2012-08-06 21:47:35.000000000 +0200 ./pool/main/g/gnome-user-docs/gnome-user-guide_3.4.2-1+build1_all.deb
-builder 860 2012-05-29 19:32:31.000000000 +0200 ./pool/main/g/gnome-user-share/gnome-user-share_3.0.2-1_amd64.deb
-builder 500 2013-04-28 20:21:36.000000000 +0200 ./pool/main/g/gnome-vfs/libgnomevfs2-0_2.24.4-2_amd64.deb
-builder 739 2013-04-28 20:21:36.000000000 +0200 ./pool/main/g/gnome-vfs/libgnomevfs2-common_2.24.4-2_all.deb
-builder 368 2013-04-28 20:21:36.000000000 +0200 ./pool/main/g/gnome-vfs/libgnomevfs2-extra_2.24.4-2_amd64.deb
-builder 64 2012-04-03 21:48:16.000000000 +0200 ./pool/main/g/gnome-video-effects/gnome-video-effects_0.4.0-1_all.deb
-builder 82 2011-02-09 16:02:58.000000000 +0100 ./pool/main/g/gnonlin/gstreamer0.10-gnonlin_0.10.17-2_amd64.deb
-builder 908 2011-09-28 07:47:26.000000000 +0200 ./pool/main/g/gnucap/gnucap_0.36~20091207-2_amd64.deb
-builder 1733 2012-03-07 20:32:13.000000000 +0100 ./pool/main/g/gnuchess-book/gnuchess-book_1.02-1_all.deb
-builder 209 2012-03-06 20:32:18.000000000 +0100 ./pool/main/g/gnuchess/gnuchess_6.0.2-1_amd64.deb
-builder 1666 2011-04-23 12:32:51.000000000 +0200 ./pool/main/g/gnugo/gnugo_3.8-5_amd64.deb
-builder 2231 2013-01-04 07:23:43.000000000 +0100 ./pool/main/g/gnupg2/gnupg2_2.0.19-2_amd64.deb
-builder 454 2013-01-04 07:23:43.000000000 +0100 ./pool/main/g/gnupg2/gnupg-agent_2.0.19-2_amd64.deb
-builder 2092 2009-05-27 20:47:01.000000000 +0200 ./pool/main/g/gnupg-doc/gnupg-doc_2003.04.06+dak1-1_all.deb
-builder 1907 2013-01-02 20:36:38.000000000 +0100 ./pool/main/g/gnupg/gnupg_1.4.12-7_amd64.deb
-builder 62 2013-01-02 20:36:38.000000000 +0100 ./pool/main/g/gnupg/gnupg-curl_1.4.12-7_amd64.deb
-builder 345 2013-01-02 20:36:38.000000000 +0100 ./pool/main/g/gnupg/gnupg-udeb_1.4.12-7_amd64.udeb
-builder 221 2013-01-02 20:36:38.000000000 +0100 ./pool/main/g/gnupg/gpgv_1.4.12-7_amd64.deb
-builder 127 2013-01-02 20:36:38.000000000 +0100 ./pool/main/g/gnupg/gpgv-udeb_1.4.12-7_amd64.udeb
-builder 21 2009-12-18 14:17:51.000000000 +0100 ./pool/main/g/gnupginterface/python-gnupginterface_0.3.2-9.1_all.deb
-builder 73 2012-05-08 20:33:12.000000000 +0200 ./pool/main/g/gnuplot/gnuplot_4.6.0-8_all.deb
-builder 957 2012-05-08 20:33:12.000000000 +0200 ./pool/main/g/gnuplot/gnuplot-nox_4.6.0-8_amd64.deb
-builder 1093 2012-05-08 20:33:12.000000000 +0200 ./pool/main/g/gnuplot/gnuplot-x11_4.6.0-8_amd64.deb
-builder 21 2012-04-19 15:33:25.000000000 +0200 ./pool/main/g/gobject-introspection/gir1.2-freedesktop_1.32.1-1_amd64.deb
-builder 168 2012-04-19 15:33:25.000000000 +0200 ./pool/main/g/gobject-introspection/gir1.2-glib-2.0_1.32.1-1_amd64.deb
-builder 105 2012-04-19 15:33:25.000000000 +0200 ./pool/main/g/gobject-introspection/libgirepository-1.0-1_1.32.1-1_amd64.deb
-builder 1834 2012-06-15 00:33:08.000000000 +0200 ./pool/main/g/goffice/libgoffice-0.8-8_0.8.17-1.2_amd64.deb
-builder 1291 2012-06-14 23:37:47.000000000 +0200 ./pool/main/g/goffice/libgoffice-0.8-8-common_0.8.17-1.2_all.deb
-builder 137 2010-05-27 21:02:03.000000000 +0200 ./pool/main/g/goocanvas/libgoocanvas3_0.15-1_amd64.deb
-builder 40 2010-05-27 20:17:03.000000000 +0200 ./pool/main/g/goocanvas/libgoocanvas-common_0.15-1_all.deb
-builder 259 2012-05-08 02:02:57.000000000 +0200 ./pool/main/g/goplay/goplay_0.5-1.1_amd64.deb
-builder 1739 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa_2.7.4-4.2_all.deb
-builder 117 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-help-de_2.7.4-4.2_all.deb
-builder 75 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-help-en_2.7.4-4.2_all.deb
-builder 81 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-help-fr_2.7.4-4.2_all.deb
-builder 63 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-help-nl_2.7.4-4.2_all.deb
-builder 61 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-dhcp_2.7.4-4.2_all.deb
-builder 11 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-dhcp-schema_2.7.4-4.2_all.deb
-builder 48 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-dns_2.7.4-4.2_all.deb
-builder 7 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-dns-schema_2.7.4-4.2_all.deb
-builder 550 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-goto_2.7.4-4.2_all.deb
-builder 42 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-ldapmanager_2.7.4-4.2_all.deb
-builder 65 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-samba_2.7.4-4.2_all.deb
-builder 38 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-sudo_2.7.4-4.2_all.deb
-builder 6 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-sudo-schema_2.7.4-4.2_all.deb
-builder 124 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-plugin-systems_2.7.4-4.2_all.deb
-builder 34 2013-02-07 22:10:13.000000000 +0100 ./pool/main/g/gosa/gosa-schema_2.7.4-4.2_all.deb
-builder 128 2012-05-02 23:23:07.000000000 +0200 ./pool/main/g/gperiodic/gperiodic_2.0.10-7_amd64.deb
-builder 341 2011-06-04 00:21:59.000000000 +0200 ./pool/main/g/gpgme1.0/libgpgme11_1.2.0-1.4_amd64.deb
-builder 96 2012-05-19 13:50:33.000000000 +0200 ./pool/main/g/gpicview/gpicview_0.2.3-2_amd64.deb
-builder 35 2012-06-10 23:34:02.000000000 +0200 ./pool/main/g/gpm/libgpm2_1.20.4-6_amd64.deb
-builder 4001 2011-10-23 20:32:28.000000000 +0200 ./pool/main/g/gpredict/gpredict_1.3-2_amd64.deb
-builder 223 2012-07-04 00:03:15.000000000 +0200 ./pool/main/g/gpsd/libgps20_3.6-4_amd64.deb
-builder 1147 2012-11-29 15:54:58.000000000 +0100 ./pool/main/g/gpsim/gpsim_0.26.1-2.1_amd64.deb
-builder 354 2009-03-17 22:02:13.000000000 +0100 ./pool/main/g/gputils/gputils_0.13.7-1_amd64.deb
-builder 2010 2009-03-17 22:02:13.000000000 +0100 ./pool/main/g/gputils/gputils-common_0.13.7-1_all.deb
-builder 217 2009-03-17 22:02:13.000000000 +0100 ./pool/main/g/gputils/gputils-doc_0.13.7-1_all.deb
-builder 945 2012-05-18 04:49:21.000000000 +0200 ./pool/main/g/grace/grace_5.1.22-13_amd64.deb
-builder 1289 2012-08-18 15:17:55.000000000 +0200 ./pool/main/g/graphicsmagick/libgraphicsmagick3_1.3.16-1.1_amd64.deb
-builder 61 2012-06-02 01:34:30.000000000 +0200 ./pool/main/g/graphite2/libgraphite2-2.0.0_1.1.3-1_amd64.deb
-builder 43 2012-01-17 22:03:12.000000000 +0100 ./pool/main/g/graphmonkey/graphmonkey_1.7-3_all.deb
-builder 164 2011-11-05 22:02:40.000000000 +0100 ./pool/main/g/graphthing/graphthing_1.3.2-3.1_amd64.deb
-builder 444 2012-05-13 15:03:01.000000000 +0200 ./pool/main/g/grep/grep_2.12-2_amd64.deb
-builder 168 2012-05-27 23:32:27.000000000 +0200 ./pool/main/g/grilo/libgrilo-0.1-0_0.1.19-1_amd64.deb
-builder 239 2012-05-28 00:34:02.000000000 +0200 ./pool/main/g/grilo-plugins/grilo-plugins-0.1_0.1.19-1_amd64.deb
-builder 19 2009-04-23 11:04:50.000000000 +0200 ./pool/main/g/gringotts/libgringotts2_1.2.10~pre3-1_amd64.deb
-builder 3509 2012-06-25 03:32:37.000000000 +0200 ./pool/main/g/groff/groff_1.21-9_amd64.deb
-builder 1126 2012-06-25 03:32:37.000000000 +0200 ./pool/main/g/groff/groff-base_1.21-9_amd64.deb
-builder 93 2013-04-29 02:47:16.000000000 +0200 ./pool/main/g/grub2/grub2-common_1.99-27+deb7u1_amd64.deb
-builder 1497 2013-04-29 02:47:16.000000000 +0200 ./pool/main/g/grub2/grub-common_1.99-27+deb7u1_amd64.deb
-builder 169 2013-04-29 02:47:16.000000000 +0200 ./pool/main/g/grub2/grub-mount-udeb_1.99-27+deb7u1_amd64.udeb
-builder 167 2013-04-29 02:47:16.000000000 +0200 ./pool/main/g/grub2/grub-pc_1.99-27+deb7u1_amd64.deb
-builder 624 2013-04-29 02:47:16.000000000 +0200 ./pool/main/g/grub2/grub-pc-bin_1.99-27+deb7u1_amd64.deb
-builder 903 2013-01-29 18:10:52.000000000 +0100 ./pool/main/g/grub/grub-legacy_0.97-67_amd64.deb
-builder 202 2013-01-31 19:57:26.000000000 +0100 ./pool/main/g/grub-installer/grub-installer_1.85_amd64.udeb
-builder 9 2012-11-23 20:42:31.000000000 +0100 ./pool/main/g/gsettings-desktop-schemas/gir1.2-gdesktopenums-3.0_3.4.2-3_amd64.deb
-builder 112 2012-11-23 20:42:31.000000000 +0100 ./pool/main/g/gsettings-desktop-schemas/gsettings-desktop-schemas_3.4.2-3_all.deb
-builder 3286 2010-05-30 17:34:29.000000000 +0200 ./pool/main/g/gsfonts/gsfonts_8.11+urwcyr1.0.7~pre44-4.2_all.deb
-builder 11 2011-03-03 11:17:09.000000000 +0100 ./pool/main/g/gsfonts-x11/gsfonts-x11_0.22_all.deb
-builder 1106 2012-12-15 22:41:07.000000000 +0100 ./pool/main/g/gsl/libgsl0ldbl_1.15+dfsg.2-2_amd64.deb
-builder 31 2013-02-22 22:48:50.000000000 +0100 ./pool/main/g/gssdp/libgssdp-1.0-3_0.12.2.1-2_amd64.deb
-builder 593 2012-02-04 21:47:57.000000000 +0100 ./pool/main/g/gst0.10-python/python-gst0.10_0.10.22-3_amd64.deb
-builder 102 2011-03-12 09:36:12.000000000 +0100 ./pool/main/g/gst-fluendo-mp3/gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64.deb
-builder 1931 2013-01-18 16:31:34.000000000 +0100 ./pool/main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad_0.10.23-7.1_amd64.deb
-builder 748 2013-01-18 16:31:34.000000000 +0100 ./pool/main/g/gst-plugins-bad0.10/libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64.deb
-builder 598 2012-12-04 12:29:37.000000000 +0100 ./pool/main/g/gst-plugins-base0.10/gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64.deb
-builder 584 2012-12-04 12:29:37.000000000 +0100 ./pool/main/g/gst-plugins-base0.10/gstreamer0.10-alsa_0.10.36-1.1_amd64.deb
-builder 1087 2012-12-04 12:29:37.000000000 +0100 ./pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base_0.10.36-1.1_amd64.deb
-builder 612 2012-12-04 12:29:37.000000000 +0100 ./pool/main/g/gst-plugins-base0.10/gstreamer0.10-x_0.10.36-1.1_amd64.deb
-builder 996 2012-12-04 12:29:37.000000000 +0100 ./pool/main/g/gst-plugins-base0.10/libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64.deb
-builder 698 2012-11-13 04:32:08.000000000 +0100 ./pool/main/g/gst-plugins-good0.10/gstreamer0.10-gconf_0.10.31-3+nmu1_amd64.deb
-builder 1940 2012-11-13 04:32:08.000000000 +0100 ./pool/main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64.deb
-builder 729 2012-11-13 04:32:08.000000000 +0100 ./pool/main/g/gst-plugins-good0.10/gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64.deb
-builder 483 2012-06-15 17:06:38.000000000 +0200 ./pool/main/g/gst-plugins-ugly0.10/gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64.deb
-builder 180 2012-04-23 09:33:08.000000000 +0200 ./pool/main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.13-5_amd64.deb
-builder 675 2013-04-22 22:07:21.000000000 +0200 ./pool/main/g/gstreamer0.10/gir1.2-gstreamer-0.10_0.10.36-1.2_amd64.deb
-builder 1705 2013-04-22 22:07:21.000000000 +0200 ./pool/main/g/gstreamer0.10/libgstreamer0.10-0_0.10.36-1.2_amd64.deb
-builder 202 2012-05-12 20:03:09.000000000 +0200 ./pool/main/g/gtans/gtans_1.99.0-2_amd64.deb
-builder 149 2012-03-26 19:32:24.000000000 +0200 ./pool/main/g/gtick/gtick_0.5.1-1_amd64.deb
-builder 580 2012-08-06 19:02:22.000000000 +0200 ./pool/main/g/gtk+2.0/gtk2-engines-pixbuf_2.24.10-2_amd64.deb
-builder 471 2012-08-06 19:02:22.000000000 +0200 ./pool/main/g/gtk+2.0/libgail18_2.24.10-2_amd64.deb
-builder 567 2012-08-06 19:02:22.000000000 +0200 ./pool/main/g/gtk+2.0/libgail-common_2.24.10-2_amd64.deb
-builder 2149 2012-08-06 19:02:22.000000000 +0200 ./pool/main/g/gtk+2.0/libgtk2.0-0_2.24.10-2_amd64.deb
-builder 1621 2012-08-06 19:02:22.000000000 +0200 ./pool/main/g/gtk+2.0/libgtk2.0-0-udeb_2.24.10-2_amd64.udeb
-builder 466 2012-08-06 19:02:22.000000000 +0200 ./pool/main/g/gtk+2.0/libgtk2.0-bin_2.24.10-2_amd64.deb
-builder 3009 2012-08-06 19:02:22.000000000 +0200 ./pool/main/g/gtk+2.0/libgtk2.0-common_2.24.10-2_all.deb
-builder 2930 2012-08-06 19:02:22.000000000 +0200 ./pool/main/g/gtk+2.0/libgtk2.0-dev_2.24.10-2_amd64.deb
-builder 503 2012-03-26 00:51:16.000000000 +0200 ./pool/main/g/gtk2-engines/gtk2-engines_2.20.2-2_amd64.deb
-builder 203 2013-01-31 18:42:20.000000000 +0100 ./pool/main/g/gtk+3.0/gir1.2-gtk-3.0_3.4.2-6_amd64.deb
-builder 61 2013-01-31 18:42:20.000000000 +0100 ./pool/main/g/gtk+3.0/libgail-3-0_3.4.2-6_amd64.deb
-builder 1755 2013-01-31 18:42:20.000000000 +0100 ./pool/main/g/gtk+3.0/libgtk-3-0_3.4.2-6_amd64.deb
-builder 1626 2013-01-31 18:42:20.000000000 +0100 ./pool/main/g/gtk+3.0/libgtk-3-0-udeb_3.4.2-6_amd64.udeb
-builder 54 2013-01-31 18:42:20.000000000 +0100 ./pool/main/g/gtk+3.0/libgtk-3-bin_3.4.2-6_amd64.deb
-builder 2592 2013-01-31 18:42:20.000000000 +0100 ./pool/main/g/gtk+3.0/libgtk-3-common_3.4.2-6_all.deb
-builder 134 2011-09-21 19:17:23.000000000 +0200 ./pool/main/g/gtkglext/libgtkglext1_1.2.0-2_amd64.deb
-builder 341 2012-10-22 15:29:07.000000000 +0200 ./pool/main/g/gtkhtml4.0/libgtkhtml-4.0-0_4.4.4-1_amd64.deb
-builder 360 2012-10-22 15:29:07.000000000 +0200 ./pool/main/g/gtkhtml4.0/libgtkhtml-4.0-common_4.4.4-1_all.deb
-builder 131 2012-10-22 15:29:07.000000000 +0200 ./pool/main/g/gtkhtml4.0/libgtkhtml-editor-4.0-0_4.4.4-1_amd64.deb
-builder 33 2012-07-29 05:32:07.000000000 +0200 ./pool/main/g/gtkimageview/libgtkimageview0_1.6.4+dfsg-0.1_amd64.deb
-builder 1168 2011-08-15 13:47:11.000000000 +0200 ./pool/main/g/gtkmm2.4/libgtkmm-2.4-1c2a_2.24.2-1_amd64.deb
-builder 881 2012-09-29 09:08:12.000000000 +0200 ./pool/main/g/gtkmm3.0/libgtkmm-3.0-1_3.4.2-1_amd64.deb
-builder 118 2012-02-03 18:32:34.000000000 +0100 ./pool/main/g/gtk-recordmydesktop/gtk-recordmydesktop_0.3.8-4.1_all.deb
-builder 183 2012-09-06 01:15:03.000000000 +0200 ./pool/main/g/gtk-sharp2/libglib2.0-cil_2.12.10-5_amd64.deb
-builder 749 2012-09-06 01:15:03.000000000 +0200 ./pool/main/g/gtk-sharp2/libgtk2.0-cil_2.12.10-5_amd64.deb
-builder 221 2010-08-16 19:47:17.000000000 +0200 ./pool/main/g/gtksourceview2/libgtksourceview2.0-0_2.10.4-1_amd64.deb
-builder 908 2010-08-16 19:47:17.000000000 +0200 ./pool/main/g/gtksourceview2/libgtksourceview2.0-common_2.10.4-1_all.deb
-builder 113 2012-05-15 20:33:41.000000000 +0200 ./pool/main/g/gtksourceview3/gir1.2-gtksource-3.0_3.4.2-1_amd64.deb
-builder 286 2012-05-15 20:33:41.000000000 +0200 ./pool/main/g/gtksourceview3/libgtksourceview-3.0-0_3.4.2-1_amd64.deb
-builder 1174 2012-05-15 20:33:41.000000000 +0200 ./pool/main/g/gtksourceview3/libgtksourceview-3.0-common_3.4.2-1_all.deb
-builder 29 2010-01-09 05:02:04.000000000 +0100 ./pool/main/g/gtkspell/libgtkspell0_2.0.16-1_amd64.deb
-builder 52 2013-01-26 19:13:42.000000000 +0100 ./pool/main/g/gtk-vnc/libgtk-vnc-2.0-0_0.5.0-3.1_amd64.deb
-builder 85 2013-01-26 19:13:42.000000000 +0100 ./pool/main/g/gtk-vnc/libgvnc-1.0-0_0.5.0-3.1_amd64.deb
-builder 214 2012-09-24 23:35:18.000000000 +0200 ./pool/main/g/gucharmap/gir1.2-gucharmap-2.90_3.4.1.1-2.1_amd64.deb
-builder 1358 2012-09-24 23:35:18.000000000 +0200 ./pool/main/g/gucharmap/gucharmap_3.4.1.1-2.1_amd64.deb
-builder 1109 2012-09-24 23:35:18.000000000 +0200 ./pool/main/g/gucharmap/libgucharmap-2-90-7_3.4.1.1-2.1_amd64.deb
-builder 634 2012-11-09 14:14:38.000000000 +0100 ./pool/main/g/guile-1.6/guile-1.6-libs_1.6.8-10.3_amd64.deb
-builder 19 2012-11-09 14:14:38.000000000 +0100 ./pool/main/g/guile-1.6/libguile-ltdl-1_1.6.8-10.3_amd64.deb
-builder 13 2012-03-18 16:48:30.000000000 +0100 ./pool/main/g/guile-1.8/guile-1.8_1.8.8+1-8_amd64.deb
-builder 745 2012-03-18 16:48:30.000000000 +0100 ./pool/main/g/guile-1.8/guile-1.8-libs_1.8.8+1-8_amd64.deb
-builder 2780 2012-03-18 22:48:12.000000000 +0100 ./pool/main/g/guile-2.0/guile-2.0-libs_2.0.5+1-3_amd64.deb
-builder 50 2012-09-02 18:58:08.000000000 +0200 ./pool/main/g/gupnp-av/libgupnp-av-1.0-2_0.10.3-1_amd64.deb
-builder 34 2012-03-21 23:17:23.000000000 +0100 ./pool/main/g/gupnp-dlna/libgupnp-dlna-1.0-2_0.6.6-1_amd64.deb
-builder 27 2011-12-16 17:47:53.000000000 +0100 ./pool/main/g/gupnp-igd/libgupnp-igd-1.0-4_0.2.1-2_amd64.deb
-builder 75 2012-09-02 18:53:06.000000000 +0200 ./pool/main/g/gupnp/libgupnp-1.0-4_0.18.4-1_amd64.deb
-builder 6802 2012-07-10 00:47:27.000000000 +0200 ./pool/main/g/gutenprint/foomatic-db-gutenprint_5.2.9-1_all.deb
-builder 58 2012-07-10 00:47:27.000000000 +0200 ./pool/main/g/gutenprint/ijsgutenprint_5.2.9-1_amd64.deb
-builder 1257 2012-07-10 00:47:27.000000000 +0200 ./pool/main/g/gutenprint/libgutenprint2_5.2.9-1_amd64.deb
-builder 412 2012-07-10 00:47:27.000000000 +0200 ./pool/main/g/gutenprint/printer-driver-gutenprint_5.2.9-1_amd64.deb
-builder 201 2013-02-05 15:59:28.000000000 +0100 ./pool/main/g/gvfs/gvfs_1.12.3-4_amd64.deb
-builder 349 2013-02-05 15:59:28.000000000 +0100 ./pool/main/g/gvfs/gvfs-backends_1.12.3-4_amd64.deb
-builder 155 2013-02-05 15:59:28.000000000 +0100 ./pool/main/g/gvfs/gvfs-bin_1.12.3-4_amd64.deb
-builder 535 2013-02-05 15:59:28.000000000 +0100 ./pool/main/g/gvfs/gvfs-common_1.12.3-4_all.deb
-builder 216 2013-02-05 15:59:28.000000000 +0100 ./pool/main/g/gvfs/gvfs-daemons_1.12.3-4_amd64.deb
-builder 136 2013-02-05 15:59:28.000000000 +0100 ./pool/main/g/gvfs/gvfs-fuse_1.12.3-4_amd64.deb
-builder 194 2013-02-05 15:59:28.000000000 +0100 ./pool/main/g/gvfs/gvfs-libs_1.12.3-4_amd64.deb
-builder 409 2011-02-25 11:02:07.000000000 +0100 ./pool/main/g/gvrng/gvrng_4.4-1_all.deb
-builder 2228 2012-06-28 20:03:31.000000000 +0200 ./pool/main/g/gwenview/gwenview_4.8.4-2_amd64.deb
-builder 117 2012-06-20 17:48:35.000000000 +0200 ./pool/main/g/gzip/gzip_1.5-1.1_amd64.deb
-builder 99 2012-03-25 01:33:17.000000000 +0100 ./pool/main/h/hal/libhal1_0.5.14-8_amd64.deb
-builder 496 2012-06-25 21:17:07.000000000 +0200 ./pool/main/h/hamster-applet/hamster-applet_2.91.3+git20120514.b9fec3e1-1_all.deb
-builder 62 2012-07-09 08:32:24.000000000 +0200 ./pool/main/h/hddtemp/hddtemp_0.3-beta15-52_amd64.deb
-builder 1398 2012-03-08 13:02:07.000000000 +0100 ./pool/main/h/hdf5/libhdf5-7_1.8.8-9_amd64.deb
-builder 110 2012-06-24 14:48:41.000000000 +0200 ./pool/main/h/hdparm/hdparm_9.39-1+b1_amd64.deb
-builder 242 2012-05-30 14:20:13.000000000 +0200 ./pool/main/h/heimdal/libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-builder 124 2012-05-30 14:20:13.000000000 +0200 ./pool/main/h/heimdal/libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-builder 54 2012-05-30 14:20:13.000000000 +0200 ./pool/main/h/heimdal/libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-builder 147 2012-05-30 14:20:13.000000000 +0200 ./pool/main/h/heimdal/libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-builder 256 2012-05-30 14:20:13.000000000 +0200 ./pool/main/h/heimdal/libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-builder 67 2012-05-30 14:20:13.000000000 +0200 ./pool/main/h/heimdal/libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-builder 98 2012-05-30 14:20:13.000000000 +0200 ./pool/main/h/heimdal/libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-builder 268 2012-04-14 20:33:39.000000000 +0200 ./pool/main/h/heirloom-mailx/heirloom-mailx_12.5-2_amd64.deb
-builder 12 2010-09-08 20:18:07.000000000 +0200 ./pool/main/h/hicolor-icon-theme/hicolor-icon-theme_0.12-1_all.deb
-builder 87 2012-03-03 23:19:10.000000000 +0100 ./pool/main/h/hippo-canvas/libhippocanvas-1-0_0.3.1-1.1_amd64.deb
-builder 43 2012-03-03 23:19:10.000000000 +0100 ./pool/main/h/hippo-canvas/python-hippocanvas_0.3.1-1.1_amd64.deb
-builder 15 2012-02-16 16:17:19.000000000 +0100 ./pool/main/h/hostname/hostname_3.11_amd64.deb
-builder 71 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/hpijs_3.12.6-3.1_all.deb
-builder 599 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/hpijs-ppds_3.12.6-3.1_all.deb
-builder 155 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/hplip_3.12.6-3.1_amd64.deb
-builder 6694 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/hplip-data_3.12.6-3.1_all.deb
-builder 177 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/libhpmud0_3.12.6-3.1_amd64.deb
-builder 197 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/libsane-hpaio_3.12.6-3.1_amd64.deb
-builder 373 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/printer-driver-hpcups_3.12.6-3.1_amd64.deb
-builder 416 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/printer-driver-hpijs_3.12.6-3.1_amd64.deb
-builder 771 2013-03-01 19:24:05.000000000 +0100 ./pool/main/h/hplip/printer-driver-postscript-hp_3.12.6-3.1_all.deb
-builder 686 2011-06-06 07:47:11.000000000 +0200 ./pool/main/h/hspell/hspell_1.1-2_amd64.deb
-builder 891 2011-06-06 07:47:11.000000000 +0200 ./pool/main/h/hspell/myspell-he_1.1-2_all.deb
-builder 910 2013-03-19 14:45:25.000000000 +0100 ./pool/main/h/hsqldb/libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all.deb
-builder 1927 2011-12-30 18:32:05.000000000 +0100 ./pool/main/h/htdig/htdig_3.2.0b6-12_amd64.deb
-builder 102 2010-05-23 21:32:40.000000000 +0200 ./pool/main/h/html2text/html2text_1.3.2a-15_amd64.deb
-builder 74 2012-02-19 10:19:22.000000000 +0100 ./pool/main/h/htop/htop_1.0.1-1_amd64.deb
-builder 1653 2012-06-17 15:17:43.000000000 +0200 ./pool/main/h/hugin/hugin_2011.4.0+dfsg-5_amd64.deb
-builder 9356 2012-06-17 13:51:17.000000000 +0200 ./pool/main/h/hugin/hugin-data_2011.4.0+dfsg-5_all.deb
-builder 4925 2012-06-17 15:17:43.000000000 +0200 ./pool/main/h/hugin/hugin-tools_2011.4.0+dfsg-5_amd64.deb
-builder 249 2012-07-09 22:47:58.000000000 +0200 ./pool/main/h/hunspell-en-us/hunspell-en-us_20070829-6_all.deb
-builder 171 2011-10-06 22:50:11.000000000 +0200 ./pool/main/h/hunspell/libhunspell-1.3-0_1.3.2-4_amd64.deb
-builder 3248 2011-05-17 11:09:38.000000000 +0200 ./pool/main/h/hunspell-se/hunspell-se_1.0~beta6.20081222-1.2_all.deb
-builder 377 2012-02-09 09:50:00.000000000 +0100 ./pool/main/h/hunspell-sv/hunspell-sv-se_1.51-1_all.deb
-builder 3 2012-02-09 09:50:00.000000000 +0100 ./pool/main/h/hunspell-sv/myspell-sv-se_1.51-1_all.deb
-builder 88 2012-07-08 02:47:15.000000000 +0200 ./pool/main/h/hwdata/hwdata_0.234-1_all.deb
-builder 24 2012-12-10 22:23:02.000000000 +0100 ./pool/main/h/hw-detect/disk-detect_1.92_all.udeb
-builder 13 2012-12-10 22:23:02.000000000 +0100 ./pool/main/h/hw-detect/driver-injection-disk-detect_1.92_all.udeb
-builder 30 2012-12-10 22:23:02.000000000 +0100 ./pool/main/h/hw-detect/ethdetect_1.92_all.udeb
-builder 46 2012-01-21 12:48:55.000000000 +0100 ./pool/main/h/hwinfo/hwinfo_16.0-2.2_amd64.deb
-builder 683 2012-01-21 12:48:55.000000000 +0100 ./pool/main/h/hwinfo/libhd16_16.0-2.2_amd64.deb
-builder 17955 2010-07-21 21:02:03.000000000 +0200 ./pool/main/h/hydrogen-drumkits/hydrogen-drumkits_0.9.3.20070703-3_all.deb
-builder 7365 2012-06-12 13:33:21.000000000 +0200 ./pool/main/h/hydrogen/hydrogen_0.9.6~beta2-1_amd64.deb
-builder 25 2012-04-20 01:02:35.000000000 +0200 ./pool/main/h/hyphen/libhyphen0_2.8.3-2_amd64.deb
-builder 1280 2011-09-13 08:47:05.000000000 +0200 ./pool/main/i/ibus-array/ibus-array_0.0.2-6_amd64.deb
-builder 56 2012-04-14 11:17:24.000000000 +0200 ./pool/main/i/ibus-chewing/ibus-chewing_1.3.10+clean-3_amd64.deb
-builder 12 2012-06-28 20:35:10.000000000 +0200 ./pool/main/i/ibus-client-clutter/ibus-clutter_0.0+git20090728.a936bacf-5_amd64.deb
-builder 434 2012-11-17 15:26:33.000000000 +0100 ./pool/main/i/ibus/ibus_1.4.1-9_amd64.deb
-builder 162 2012-11-17 15:26:33.000000000 +0100 ./pool/main/i/ibus/ibus-gtk_1.4.1-9_amd64.deb
-builder 162 2012-11-17 15:26:33.000000000 +0100 ./pool/main/i/ibus/ibus-gtk3_1.4.1-9_amd64.deb
-builder 258 2012-11-17 15:26:33.000000000 +0100 ./pool/main/i/ibus/libibus-1.0-0_1.4.1-9_amd64.deb
-builder 183 2012-11-17 15:26:33.000000000 +0100 ./pool/main/i/ibus/python-ibus_1.4.1-9_all.deb
-builder 57 2012-05-17 09:48:01.000000000 +0200 ./pool/main/i/ibus-qt/ibus-qt4_1.3.1-2.1_amd64.deb
-builder 128 2012-05-17 09:48:01.000000000 +0200 ./pool/main/i/ibus-qt/libibus-qt1_1.3.1-2.1_amd64.deb
-builder 4 2011-09-27 17:18:26.000000000 +0200 ./pool/main/i/ibus-table-chinese/ibus-table-cangjie_1.3.4-1_all.deb
-builder 1103 2011-09-27 17:18:26.000000000 +0200 ./pool/main/i/ibus-table-chinese/ibus-table-cangjie3_1.3.4-1_all.deb
-builder 2452 2011-09-27 17:18:26.000000000 +0200 ./pool/main/i/ibus-table-chinese/ibus-table-cangjie5_1.3.4-1_all.deb
-builder 1884 2011-09-27 17:18:26.000000000 +0200 ./pool/main/i/ibus-table-chinese/ibus-table-cangjie-big_1.3.4-1_all.deb
-builder 217 2012-06-06 03:32:39.000000000 +0200 ./pool/main/i/ibus-table/ibus-table_1.3.9.20110827-2_all.deb
-builder 18568 2013-01-16 02:11:40.000000000 +0100 ./pool/main/i/icedove/icedove_10.0.12-1_amd64.deb
-builder 361 2012-10-29 01:47:52.000000000 +0100 ./pool/main/i/icedove-l10n/icedove-l10n-ca_10.0.10-1_all.deb
-builder 363 2012-10-29 01:47:52.000000000 +0100 ./pool/main/i/icedove-l10n/icedove-l10n-de_10.0.10-1_all.deb
-builder 351 2012-10-29 01:47:52.000000000 +0100 ./pool/main/i/icedove-l10n/icedove-l10n-el_10.0.10-1_all.deb
-builder 297 2012-10-29 01:47:52.000000000 +0100 ./pool/main/i/icedove-l10n/icedove-l10n-es-es_10.0.10-1_all.deb
-builder 360 2012-10-29 01:47:52.000000000 +0100 ./pool/main/i/icedove-l10n/icedove-l10n-fr_10.0.10-1_all.deb
-builder 294 2012-10-29 01:47:52.000000000 +0100 ./pool/main/i/icedove-l10n/icedove-l10n-it_10.0.10-1_all.deb
-builder 91 2013-04-17 11:50:43.000000000 +0200 ./pool/main/i/icedtea-web/icedtea-6-plugin_1.3.2-1_amd64.deb
-builder 1 2013-04-17 11:50:43.000000000 +0200 ./pool/main/i/icedtea-web/icedtea6-plugin_6b21.3.2-1_all.deb
-builder 19 2013-04-17 11:50:43.000000000 +0200 ./pool/main/i/icedtea-web/icedtea-netx_1.3.2-1_amd64.deb
-builder 620 2013-04-17 11:50:43.000000000 +0200 ./pool/main/i/icedtea-web/icedtea-netx-common_1.3.2-1_all.deb
-builder 1157 2013-01-08 23:55:48.000000000 +0100 ./pool/main/i/iceweasel/libmozjs10d_10.0.12esr-1_amd64.deb
-builder 9435 2013-01-08 23:55:48.000000000 +0100 ./pool/main/i/iceweasel/xulrunner-10.0_10.0.12esr-1_amd64.deb
-builder 5740 2011-08-30 23:02:52.000000000 +0200 ./pool/main/i/icu4j/libicu4j-java_4.2.1.1-1_all.deb
-builder 4623 2013-03-21 16:42:26.000000000 +0100 ./pool/main/i/icu/libicu48_4.8.1.1-12_amd64.deb
-builder 213 2011-03-29 21:19:10.000000000 +0200 ./pool/main/i/ifrench/ifrench_1.4-26_all.deb
-builder 205 2011-03-29 21:19:10.000000000 +0200 ./pool/main/i/ifrench/myspell-fr_1.4-26_all.deb
-builder 42 2012-06-03 19:21:08.000000000 +0200 ./pool/main/i/iftop/iftop_1.0~pre2-3_amd64.deb
-builder 64 2013-04-12 12:23:44.000000000 +0200 ./pool/main/i/ifupdown/ifupdown_0.7.8_amd64.deb
-builder 434 2012-06-07 18:32:37.000000000 +0200 ./pool/main/i/igerman98/ingerman_20120607-1_all.deb
-builder 434 2012-06-07 18:32:37.000000000 +0200 ./pool/main/i/igerman98/iswiss_20120607-1_all.deb
-builder 376 2012-06-07 18:32:37.000000000 +0200 ./pool/main/i/igerman98/myspell-de-at_20120607-1_all.deb
-builder 376 2012-06-07 18:32:37.000000000 +0200 ./pool/main/i/igerman98/myspell-de-ch_20120607-1_all.deb
-builder 372 2012-06-07 18:32:37.000000000 +0200 ./pool/main/i/igerman98/myspell-de-de_20120607-1_all.deb
-builder 896 2012-06-07 18:32:37.000000000 +0200 ./pool/main/i/igerman98/wngerman_20120607-1_all.deb
-builder 328 2011-05-18 00:32:26.000000000 +0200 ./pool/main/i/iitalian/iitalian_2.3-3_amd64.deb
-builder 20 2011-08-29 23:47:41.000000000 +0200 ./pool/main/i/ijs/libijs-0.35_0.35-8_amd64.deb
-builder 121 2012-04-01 11:48:18.000000000 +0200 ./pool/main/i/ilmbase/libilmbase6_1.0.1-4_amd64.deb
-builder 279 2012-11-06 01:33:50.000000000 +0100 ./pool/main/i/imagemagick/imagemagick_6.7.7.10-5_amd64.deb
-builder 126 2012-11-06 01:33:50.000000000 +0100 ./pool/main/i/imagemagick/imagemagick-common_6.7.7.10-5_all.deb
-builder 231 2012-11-06 01:33:50.000000000 +0100 ./pool/main/i/imagemagick/libmagick++5_6.7.7.10-5_amd64.deb
-builder 2035 2012-11-06 01:33:50.000000000 +0100 ./pool/main/i/imagemagick/libmagickcore5_6.7.7.10-5_amd64.deb
-builder 452 2012-11-06 01:33:50.000000000 +0100 ./pool/main/i/imagemagick/libmagickwand5_6.7.7.10-5_amd64.deb
-builder 250 2012-11-06 01:33:50.000000000 +0100 ./pool/main/i/imagemagick/perlmagick_6.7.7.10-5_amd64.deb
-builder 253 2012-04-29 21:02:13.000000000 +0200 ./pool/main/i/imlib2/libimlib2_1.4.5-1_amd64.deb
-builder 19 2013-02-22 17:28:37.000000000 +0100 ./pool/main/i/im-switch/im-switch_1.23_all.deb
-builder 90 2013-04-17 03:45:31.000000000 +0200 ./pool/main/i/initramfs-tools/initramfs-tools_0.109.1_all.deb
-builder 24195 2012-12-29 23:10:27.000000000 +0100 ./pool/main/i/inkscape/inkscape_0.48.3.1-1.3_amd64.deb
-builder 64 2012-11-23 23:02:46.000000000 +0100 ./pool/main/i/insserv/insserv_1.14.0-5_amd64.deb
-builder 19 2012-12-11 06:09:14.000000000 +0100 ./pool/main/i/installation-report/installation-report_2.49_all.deb
-builder 58 2012-12-11 06:09:14.000000000 +0100 ./pool/main/i/installation-report/save-logs_2.49_all.udeb
-builder 31 2006-10-01 23:21:37.000000000 +0200 ./pool/main/i/intltool-debian/intltool-debian_0.35.0+20060710.1_all.deb
-builder 30 2011-12-29 04:17:27.000000000 +0100 ./pool/main/i/iotop/iotop_0.4.4-4_amd64.deb
-builder 1070 2012-05-21 08:33:57.000000000 +0200 ./pool/main/i/ipolish/myspell-pl_20120520-1_all.deb
-builder 449 2013-03-02 16:05:48.000000000 +0100 ./pool/main/i/iproute/iproute_20120521-3+b3_amd64.deb
-builder 396 2013-03-01 17:23:54.000000000 +0100 ./pool/main/i/iptables/iptables_1.4.14-3.1_amd64.deb
-builder 25 2011-04-13 01:11:14.000000000 +0200 ./pool/main/i/iputils/iputils-arping_20101006-1+b1_amd64.deb
-builder 58 2011-04-13 01:11:14.000000000 +0200 ./pool/main/i/iputils/iputils-ping_20101006-1+b1_amd64.deb
-builder 33 2011-04-13 01:11:14.000000000 +0200 ./pool/main/i/iputils/iputils-tracepath_20101006-1+b1_amd64.deb
-builder 775 2013-02-18 19:23:59.000000000 +0100 ./pool/main/i/isc-dhcp/isc-dhcp-client_4.2.2.dfsg.1-5+deb70u3_amd64.deb
-builder 587 2013-02-18 19:23:59.000000000 +0100 ./pool/main/i/isc-dhcp/isc-dhcp-client-udeb_4.2.2.dfsg.1-5+deb70u3_amd64.udeb
-builder 832 2013-02-18 19:23:59.000000000 +0100 ./pool/main/i/isc-dhcp/isc-dhcp-common_4.2.2.dfsg.1-5+deb70u3_amd64.deb
-builder 912 2013-02-18 19:23:59.000000000 +0100 ./pool/main/i/isc-dhcp/isc-dhcp-server_4.2.2.dfsg.1-5+deb70u3_amd64.deb
-builder 870 2013-02-18 19:23:59.000000000 +0100 ./pool/main/i/isc-dhcp/isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u3_amd64.deb
-builder 2020 2013-02-22 15:08:28.000000000 +0100 ./pool/main/i/iso-codes/iso-codes_3.41-1_all.deb
-builder 972 2011-09-05 13:47:35.000000000 +0200 ./pool/main/i/ispell-czech/myspell-cs_20040229-5.1_all.deb
-builder 1050 2011-09-06 07:02:33.000000000 +0200 ./pool/main/i/ispell-fi/ifinnish-large_0.7-18_amd64.deb
-builder 328 2011-09-06 07:02:33.000000000 +0200 ./pool/main/i/ispell-fi/myspell-fi_0.7-18_all.deb
-builder 184 2012-12-12 09:17:26.000000000 +0100 ./pool/main/i/ispell/iamerican_3.3.02-6_all.deb
-builder 184 2012-12-12 09:17:26.000000000 +0100 ./pool/main/i/ispell/ibritish_3.3.02-6_all.deb
-builder 32 2012-12-12 09:17:26.000000000 +0100 ./pool/main/i/ispell/ienglish-common_3.3.02-6_all.deb
-builder 171 2012-12-12 10:12:30.000000000 +0100 ./pool/main/i/ispell/ispell_3.3.02-6_amd64.deb
-builder 368 2009-12-28 23:06:07.000000000 +0100 ./pool/main/i/ispell-lt/myspell-lt_1.2.1-3_all.deb
-builder 166 2012-06-18 17:48:58.000000000 +0200 ./pool/main/i/ispell.pt/iportuguese_20120604-1_all.deb
-builder 51 2012-05-16 02:34:25.000000000 +0200 ./pool/main/i/iw/iw_3.4-1_amd64.deb
-builder 699 2012-11-27 22:04:49.000000000 +0100 ./pool/main/j/jackd2/jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64.deb
-builder 73 2012-11-27 22:04:49.000000000 +0100 ./pool/main/j/jackd2/jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64.deb
-builder 205 2012-11-27 22:04:49.000000000 +0100 ./pool/main/j/jackd2/libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64.deb
-builder 2 2010-06-29 17:34:57.000000000 +0200 ./pool/main/j/jackd-defaults/jackd_5_all.deb
-builder 1548 2012-06-20 19:18:05.000000000 +0200 ./pool/main/j/jas/libjas-java_2.4.3938-2_all.deb
-builder 156 2012-01-04 20:36:19.000000000 +0100 ./pool/main/j/jasper/libjasper1_1.900.1-13_amd64.deb
-builder 588 2011-08-31 00:47:10.000000000 +0200 ./pool/main/j/jas-plotter/libjas-plotter-java_2.2.6+dfsg1-2_all.deb
-builder 31 2013-04-16 01:18:26.000000000 +0200 ./pool/main/j/java-atk-wrapper/libatk-wrapper-java_0.30.4-3_all.deb
-builder 32 2013-04-16 01:18:26.000000000 +0200 ./pool/main/j/java-atk-wrapper/libatk-wrapper-java-jni_0.30.4-3_amd64.deb
-builder 1 2012-02-26 15:54:12.000000000 +0100 ./pool/main/j/java-common/default-jre_1.6-47_amd64.deb
-builder 8 2012-02-26 15:54:12.000000000 +0100 ./pool/main/j/java-common/default-jre-headless_1.6-47_amd64.deb
-builder 65 2012-02-26 15:54:12.000000000 +0100 ./pool/main/j/java-common/java-common_0.47_all.deb
-builder 2066 2011-12-23 18:47:13.000000000 +0100 ./pool/main/j/javahelp2/javahelp2_2.0.05.ds1-6_all.deb
-builder 4 2009-08-26 18:06:29.000000000 +0200 ./pool/main/j/javascript-common/javascript-common_7_all.deb
-builder 11 2012-03-18 20:33:15.000000000 +0100 ./pool/main/j/java-wrappers/java-wrappers_0.1.25_all.deb
-builder 1174 2012-01-09 22:47:47.000000000 +0100 ./pool/main/j/jaxme/libjaxme-java_0.5.2+dfsg-6_all.deb
-builder 51 2012-02-10 18:07:52.000000000 +0100 ./pool/main/j/jbig2dec/libjbig2dec0_0.11+20120125-1_amd64.deb
-builder 32 2012-04-09 11:51:35.000000000 +0200 ./pool/main/j/jbigkit/libjbig0_2.0-2_amd64.deb
-builder 247 2011-12-02 12:48:43.000000000 +0100 ./pool/main/j/jfsutils/jfsutils-udeb_1.1.15-2_amd64.udeb
-builder 110 2011-11-26 20:52:34.000000000 +0100 ./pool/main/j/jfugue/libjfugue-java_4.0.3-3_all.deb
-builder 30 2011-06-16 17:17:44.000000000 +0200 ./pool/main/j/jigit/libjte1_1.19-1_amd64.deb
-builder 134 2012-06-19 09:17:46.000000000 +0200 ./pool/main/j/jimtcl/libjim0debian2_0.73-3_amd64.deb
-builder 68 2012-06-15 06:32:07.000000000 +0200 ./pool/main/j/jline/libjline-java_1.0-2_all.deb
-builder 482 2012-06-21 13:20:13.000000000 +0200 ./pool/main/j/jovie/jovie_4.8.4-2_amd64.deb
-builder 23 2012-06-08 20:19:14.000000000 +0200 ./pool/main/j/joystick/inputattach_1.4.3-1_amd64.deb
-builder 79 2012-11-15 21:28:09.000000000 +0100 ./pool/main/j/jquery/libjs-jquery_1.7.2+dfsg-1_all.deb
-builder 24 2012-12-15 01:49:52.000000000 +0100 ./pool/main/j/json-c/libjson0_0.10-1.2_amd64.deb
-builder 82 2011-11-17 16:06:09.000000000 +0100 ./pool/main/j/json-glib/gir1.2-json-1.0_0.14.2-1_amd64.deb
-builder 137 2011-11-17 16:06:09.000000000 +0100 ./pool/main/j/json-glib/libjson-glib-1.0-0_0.14.2-1_amd64.deb
-builder 467 2012-05-01 06:32:36.000000000 +0200 ./pool/main/j/jtidy/libjtidy-java_7+svn20110807-4_all.deb
-builder 213 2012-06-19 21:19:19.000000000 +0200 ./pool/main/j/junit4/junit4_4.10-3_all.deb
-builder 105 2011-08-07 19:02:20.000000000 +0200 ./pool/main/j/junit/junit_3.8.2-8_all.deb
-builder 1377 2011-12-19 22:44:03.000000000 +0100 ./pool/main/j/jxplorer/jxplorer_3.2.2~rc1+dfsg-3_all.deb
-builder 663 2012-08-23 23:36:46.000000000 +0200 ./pool/main/k/k3b/k3b_2.0.2-6_amd64.deb
-builder 4768 2012-08-23 23:36:46.000000000 +0200 ./pool/main/k/k3b/k3b-data_2.0.2-6_all.deb
-builder 1903 2012-08-23 23:36:46.000000000 +0200 ./pool/main/k/k3b/k3b-i18n_2.0.2-6_all.deb
-builder 939 2012-08-23 23:36:46.000000000 +0200 ./pool/main/k/k3b/libk3b6_2.0.2-6_amd64.deb
-builder 68 2012-08-23 23:36:46.000000000 +0200 ./pool/main/k/k3b/libk3b6-extracodecs_2.0.2-6_amd64.deb
-builder 43 2012-06-21 18:47:49.000000000 +0200 ./pool/main/k/kaccessible/kaccessible_4.8.4-3_amd64.deb
-builder 30 2012-06-09 21:02:54.000000000 +0200 ./pool/main/k/kactivities/libkactivities6_4.8.4-1_amd64.deb
-builder 117 2012-06-09 21:02:54.000000000 +0200 ./pool/main/k/kactivities/libkactivities-bin_4.8.4-1_amd64.deb
-builder 124 2012-06-22 11:32:27.000000000 +0200 ./pool/main/k/kalgebra/kalgebra_4.8.4-1_amd64.deb
-builder 388 2012-06-22 11:32:27.000000000 +0200 ./pool/main/k/kalgebra/kalgebra-common_4.8.4-1_amd64.deb
-builder 752 2012-06-17 05:06:21.000000000 +0200 ./pool/main/k/kalzium/kalzium_4.8.4-1_amd64.deb
-builder 3876 2012-06-17 03:17:53.000000000 +0200 ./pool/main/k/kalzium/kalzium-data_4.8.4-1_all.deb
-builder 50 2012-08-27 14:33:28.000000000 +0200 ./pool/main/k/kamera/kamera_4.8.4-2_amd64.deb
-builder 639 2012-06-17 02:47:41.000000000 +0200 ./pool/main/k/kanagram/kanagram_4.8.4-1_amd64.deb
-builder 551 2012-05-11 00:35:53.000000000 +0200 ./pool/main/k/kanjidic/kanjidic_2012.05.09-1_all.deb
-builder 859 2012-06-10 15:09:51.000000000 +0200 ./pool/main/k/kate/kate_4.8.4-1_amd64.deb
-builder 1404 2012-06-10 15:09:51.000000000 +0200 ./pool/main/k/kate/kate-data_4.8.4-1_all.deb
-builder 154 2012-06-10 15:09:51.000000000 +0200 ./pool/main/k/kate/katepart_4.8.4-1_amd64.deb
-builder 80 2012-06-10 15:09:51.000000000 +0200 ./pool/main/k/kate/kwrite_4.8.4-1_amd64.deb
-builder 171 2012-06-10 15:09:51.000000000 +0200 ./pool/main/k/kate/libkateinterfaces4_4.8.4-1_amd64.deb
-builder 926 2012-06-10 15:09:51.000000000 +0200 ./pool/main/k/kate/libkatepartinterfaces4_4.8.4-1_amd64.deb
-builder 447 2012-04-29 10:48:58.000000000 +0200 ./pool/main/k/kbd/kbd_1.15.3-9_amd64.deb
-builder 945 2012-06-17 17:10:07.000000000 +0200 ./pool/main/k/kbruch/kbruch_4.8.4-1_amd64.deb
-builder 183 2012-06-20 12:17:40.000000000 +0200 ./pool/main/k/kcalc/kcalc_4.8.4-2_amd64.deb
-builder 84 2012-06-20 12:17:51.000000000 +0200 ./pool/main/k/kcharselect/kcharselect_4.8.4-2_amd64.deb
-builder 2782 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/kdelibs5-data_4.8.4-4_all.deb
-builder 951 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/kdelibs5-plugins_4.8.4-4_amd64.deb
-builder 212 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/kdelibs-bin_4.8.4-4_amd64.deb
-builder 189 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/kdoctools_4.8.4-4_amd64.deb
-builder 111 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkcmutils4_4.8.4-4_amd64.deb
-builder 318 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkde3support4_4.8.4-4_amd64.deb
-builder 58 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkdeclarative5_4.8.4-4_amd64.deb
-builder 901 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkdecore5_4.8.4-4_amd64.deb
-builder 71 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkdesu5_4.8.4-4_amd64.deb
-builder 1267 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkdeui5_4.8.4-4_amd64.deb
-builder 81 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkdewebkit5_4.8.4-4_amd64.deb
-builder 86 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkdnssd4_4.8.4-4_amd64.deb
-builder 61 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkemoticons4_4.8.4-4_amd64.deb
-builder 233 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkfile4_4.8.4-4_amd64.deb
-builder 1859 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkhtml5_4.8.4-4_amd64.deb
-builder 58 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkidletime4_4.8.4-4_amd64.deb
-builder 66 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkimproxy4_4.8.4-4_amd64.deb
-builder 819 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkio5_4.8.4-4_amd64.deb
-builder 252 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkjsapi4_4.8.4-4_amd64.deb
-builder 316 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkjsembed4_4.8.4-4_amd64.deb
-builder 50 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkmediaplayer4_4.8.4-4_amd64.deb
-builder 150 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libknewstuff2-4_4.8.4-4_amd64.deb
-builder 166 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libknewstuff3-4_4.8.4-4_amd64.deb
-builder 60 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libknotifyconfig4_4.8.4-4_amd64.deb
-builder 49 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkntlm4_4.8.4-4_amd64.deb
-builder 136 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkparts4_4.8.4-4_amd64.deb
-builder 49 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkprintutils4_4.8.4-4_amd64.deb
-builder 54 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkpty4_4.8.4-4_amd64.deb
-builder 77 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkrosscore4_4.8.4-4_amd64.deb
-builder 73 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkrossui4_4.8.4-4_amd64.deb
-builder 114 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libktexteditor4_4.8.4-4_amd64.deb
-builder 101 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkunitconversion4_4.8.4-4_amd64.deb
-builder 43 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libkutils4_4.8.4-4_amd64.deb
-builder 231 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libnepomuk4_4.8.4-4_amd64.deb
-builder 126 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libnepomukquery4a_4.8.4-4_amd64.deb
-builder 105 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libnepomukutils4_4.8.4-4_amd64.deb
-builder 879 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libplasma3_4.8.4-4_amd64.deb
-builder 253 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libsolid4_4.8.4-4_amd64.deb
-builder 66 2012-10-26 01:29:23.000000000 +0200 ./pool/main/k/kde4libs/libthreadweaver4_4.8.4-4_amd64.deb
-builder 9 2012-12-19 22:20:24.000000000 +0100 ./pool/main/k/kdeadmin/kcron_4.8.4-3_all.deb
-builder 190 2012-12-19 22:20:24.000000000 +0100 ./pool/main/k/kdeadmin/kde-config-cron_4.8.4-3_amd64.deb
-builder 192 2012-12-19 22:20:24.000000000 +0100 ./pool/main/k/kdeadmin/kuser_4.8.4-3_amd64.deb
-builder 3258 2013-01-26 19:43:50.000000000 +0100 ./pool/main/k/kdeartwork/kde-icons-mono_4.8.4-5_all.deb
-builder 111727 2013-01-26 19:43:50.000000000 +0100 ./pool/main/k/kdeartwork/kdewallpapers_4.8.4-5_all.deb
-builder 490 2013-01-26 19:43:50.000000000 +0100 ./pool/main/k/kdeartwork/kscreensaver_4.8.4-5_amd64.deb
-builder 143 2013-01-26 19:43:50.000000000 +0100 ./pool/main/k/kdeartwork/kscreensaver-xsavers_4.8.4-5_amd64.deb
-builder 1507 2013-01-26 19:43:50.000000000 +0100 ./pool/main/k/kdeartwork/plasma-desktopthemes-artwork_4.8.4-5_all.deb
-builder 1170 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/dolphin_4.8.4-2_amd64.deb
-builder 17 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/kde-baseapps_4.8.4-2_all.deb
-builder 283 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/kde-baseapps-bin_4.8.4-2_amd64.deb
-builder 192 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/kde-baseapps-data_4.8.4-2_all.deb
-builder 98 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/kdepasswd_4.8.4-2_amd64.deb
-builder 98 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/kfind_4.8.4-2_amd64.deb
-builder 408 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/konq-plugins_4.8.4-2_amd64.deb
-builder 1098 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/konqueror_4.8.4-2_amd64.deb
-builder 113 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/konqueror-nsplugins_4.8.4-2_amd64.deb
-builder 79 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/libkonq5abi1_4.8.4-2_amd64.deb
-builder 41 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/libkonq5-templates_4.8.4-2_all.deb
-builder 45 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/libkonq-common_4.8.4-2_amd64.deb
-builder 24 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/libkonqsidebarplugin4a_4.8.4-2_amd64.deb
-builder 150 2012-10-19 23:38:42.000000000 +0200 ./pool/main/k/kde-baseapps/plasma-widget-folderview_4.8.4-2_amd64.deb
-builder 4207 2012-10-20 20:28:57.000000000 +0200 ./pool/main/k/kdegames/ktuberling_4.8.4-3_amd64.deb
-builder 329 2012-10-20 20:28:57.000000000 +0200 ./pool/main/k/kdegames/libkdegames5a_4.8.4-3_amd64.deb
-builder 12 2012-06-17 15:18:12.000000000 +0200 ./pool/main/k/kdegraphics-strigi-analyzer/kdegraphics-strigi-analyzer_4.8.4-1_amd64.deb
-builder 36 2012-06-20 15:50:42.000000000 +0200 ./pool/main/k/kdegraphics-thumbnailers/kdegraphics-thumbnailers_4.8.4-1_amd64.deb
-builder 8099 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-ca_4.8.4-2_all.deb
-builder 11762 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-da_4.8.4-2_all.deb
-builder 31704 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-de_4.8.4-2_all.deb
-builder 3670 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-el_4.8.4-2_all.deb
-builder 18852 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-es_4.8.4-2_all.deb
-builder 30364 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-fr_4.8.4-2_all.deb
-builder 1141 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-he_4.8.4-2_all.deb
-builder 8976 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-it_4.8.4-2_all.deb
-builder 1636 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-ja_4.8.4-2_all.deb
-builder 1302 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-lv_4.8.4-2_all.deb
-builder 2000 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-nb_4.8.4-2_all.deb
-builder 14325 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-nl_4.8.4-2_all.deb
-builder 1371 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-nn_4.8.4-2_all.deb
-builder 24109 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-ptbr_4.8.4-2_all.deb
-builder 13245 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-sv_4.8.4-2_all.deb
-builder 1798 2012-06-24 11:47:42.000000000 +0200 ./pool/main/k/kde-l10n/kde-l10n-zhtw_4.8.4-2_all.deb
-builder 451 2012-06-30 00:18:29.000000000 +0200 ./pool/main/k/kdemultimedia/dragonplayer_4.8.4-2_amd64.deb
-builder 741 2012-06-30 00:18:29.000000000 +0200 ./pool/main/k/kdemultimedia/juk_4.8.4-2_amd64.deb
-builder 125 2012-06-30 00:18:29.000000000 +0200 ./pool/main/k/kdemultimedia/kdemultimedia-kio-plugins_4.8.4-2_amd64.deb
-builder 614 2012-06-30 00:18:29.000000000 +0200 ./pool/main/k/kdemultimedia/kmix_4.8.4-2_amd64.deb
-builder 226 2012-06-30 00:18:29.000000000 +0200 ./pool/main/k/kdemultimedia/kscd_4.8.4-2_amd64.deb
-builder 202 2012-06-30 00:18:29.000000000 +0200 ./pool/main/k/kdemultimedia/libkcddb4_4.8.4-2_amd64.deb
-builder 51 2012-06-30 00:18:29.000000000 +0200 ./pool/main/k/kdemultimedia/mplayerthumbs_4.8.4-2_amd64.deb
-builder 6727 2012-09-15 14:11:04.000000000 +0200 ./pool/main/k/kdenetwork/kopete_4.8.4-1+b1_amd64.deb
-builder 451 2012-09-15 14:11:04.000000000 +0200 ./pool/main/k/kdenetwork/krdc_4.8.4-1+b1_amd64.deb
-builder 436 2012-09-15 14:11:04.000000000 +0200 ./pool/main/k/kdenetwork/krfb_4.8.4-1+b1_amd64.deb
-builder 348 2012-09-15 14:11:04.000000000 +0200 ./pool/main/k/kdenetwork/libkopete4_4.8.4-1+b1_amd64.deb
-builder 1547 2012-06-02 20:18:49.000000000 +0200 ./pool/main/k/kdenlive/kdenlive_0.9.2-2_amd64.deb
-builder 4960 2012-06-02 20:18:49.000000000 +0200 ./pool/main/k/kdenlive/kdenlive-data_0.9.2-2_all.deb
-builder 4610 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/akregator_4.4.11.1+l10n-3+b1_amd64.deb
-builder 627 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/kaddressbook_4.4.11.1+l10n-3+b1_amd64.deb
-builder 5602 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/kmail_4.4.11.1+l10n-3+b1_amd64.deb
-builder 7463 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/knode_4.4.11.1+l10n-3+b1_amd64.deb
-builder 363 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/knotes_4.4.11.1+l10n-3+b1_amd64.deb
-builder 3726 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/korganizer_4.4.11.1+l10n-3+b1_amd64.deb
-builder 781 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/libkdepim4_4.4.11.1+l10n-3+b1_amd64.deb
-builder 483 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/libkleo4_4.4.11.1+l10n-3+b1_amd64.deb
-builder 196 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/libkpgp4_4.4.11.1+l10n-3+b1_amd64.deb
-builder 70 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/libksieve4_4.4.11.1+l10n-3+b1_amd64.deb
-builder 79 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/libmessagecore4_4.4.11.1+l10n-3+b1_amd64.deb
-builder 331 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/libmessagelist4_4.4.11.1+l10n-3+b1_amd64.deb
-builder 86 2012-09-15 14:51:12.000000000 +0200 ./pool/main/k/kdepim/libmimelib4_4.4.11.1+l10n-3+b1_amd64.deb
-builder 229 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/kdepimlibs-kio-plugins_4.8.4-2_amd64.deb
-builder 329 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libakonadi-contact4_4.8.4-2_amd64.deb
-builder 17 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libakonadi-kabc4_4.8.4-2_amd64.deb
-builder 22 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libakonadi-kcal4_4.8.4-2_amd64.deb
-builder 724 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libakonadi-kde4_4.8.4-2_amd64.deb
-builder 99 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libakonadi-kmime4_4.8.4-2_amd64.deb
-builder 122 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libgpgme++2_4.8.4-2_amd64.deb
-builder 274 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkabc4_4.8.4-2_amd64.deb
-builder 334 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkcal4_4.8.4-2_amd64.deb
-builder 240 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkcalcore4_4.8.4-2_amd64.deb
-builder 117 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkcalutils4_4.8.4-2_amd64.deb
-builder 135 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkholidays4_4.8.4-2_amd64.deb
-builder 153 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkimap4_4.8.4-2_amd64.deb
-builder 82 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkldap4_4.8.4-2_amd64.deb
-builder 162 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkmime4_4.8.4-2_amd64.deb
-builder 42 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkontactinterface4_4.8.4-2_amd64.deb
-builder 64 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkpimidentities4_4.8.4-2_amd64.deb
-builder 36 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkpimtextedit4_4.8.4-2_amd64.deb
-builder 43 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkpimutils4_4.8.4-2_amd64.deb
-builder 69 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libkresources4_4.8.4-2_amd64.deb
-builder 53 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libktnef4_4.8.4-2_amd64.deb
-builder 144 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libmailtransport4_4.8.4-2_amd64.deb
-builder 22 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libmicroblog4_4.8.4-2_amd64.deb
-builder 23 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libqgpgme1_4.8.4-2_amd64.deb
-builder 177 2012-12-16 16:48:45.000000000 +0100 ./pool/main/k/kdepimlibs/libsyndication4_4.8.4-2_amd64.deb
-builder 1007 2012-12-16 17:28:51.000000000 +0100 ./pool/main/k/kdepim-runtime/kdepim-runtime_4.4.11.1-6_amd64.deb
-builder 9 2012-06-09 21:04:33.000000000 +0200 ./pool/main/k/kdeplasma-addons/kdeplasma-addons_4.8.4-1_all.deb
-builder 115 2012-09-15 14:41:09.000000000 +0200 ./pool/main/k/kdeplasma-addons/plasma-containments-addons_4.8.4-1+b2_amd64.deb
-builder 220 2012-09-15 14:41:09.000000000 +0200 ./pool/main/k/kdeplasma-addons/plasma-dataengines-addons_4.8.4-1+b2_amd64.deb
-builder 176 2012-09-15 14:41:09.000000000 +0200 ./pool/main/k/kdeplasma-addons/plasma-runners-addons_4.8.4-1+b2_amd64.deb
-builder 193 2012-09-15 14:41:09.000000000 +0200 ./pool/main/k/kdeplasma-addons/plasma-wallpapers-addons_4.8.4-1+b2_amd64.deb
-builder 512 2012-09-15 14:41:09.000000000 +0200 ./pool/main/k/kdeplasma-addons/plasma-widget-lancelot_4.8.4-1+b2_amd64.deb
-builder 1464 2012-09-15 14:41:09.000000000 +0200 ./pool/main/k/kdeplasma-addons/plasma-widgets-addons_4.8.4-1+b2_amd64.deb
-builder 19 2012-10-25 00:22:04.000000000 +0200 ./pool/main/k/kde-runtime/kdebase-runtime_4.8.4-2_all.deb
-builder 2057 2012-10-25 00:22:04.000000000 +0200 ./pool/main/k/kde-runtime/kde-runtime_4.8.4-2_amd64.deb
-builder 4446 2012-10-25 00:22:04.000000000 +0200 ./pool/main/k/kde-runtime/kde-runtime-data_4.8.4-2_all.deb
-builder 320 2012-10-25 00:22:04.000000000 +0200 ./pool/main/k/kde-runtime/khelpcenter4_4.8.4-2_amd64.deb
-builder 380 2012-10-25 00:22:04.000000000 +0200 ./pool/main/k/kde-runtime/plasma-scriptengine-javascript_4.8.4-2_amd64.deb
-builder 63 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/libkasten1controllers1_4.8.4+dfsg-1_amd64.deb
-builder 51 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/libkasten1core1_4.8.4+dfsg-1_amd64.deb
-builder 65 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/libkasten1gui1_4.8.4+dfsg-1_amd64.deb
-builder 281 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/libkasten1okteta1controllers1_4.8.4+dfsg-1_amd64.deb
-builder 30 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/libkasten1okteta1core1_4.8.4+dfsg-1_amd64.deb
-builder 59 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/libkasten1okteta1gui1_4.8.4+dfsg-1_amd64.deb
-builder 56 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/libokteta1core1_4.8.4+dfsg-1_amd64.deb
-builder 76 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/libokteta1gui1_4.8.4+dfsg-1_amd64.deb
-builder 2132 2013-01-30 18:33:54.000000000 +0100 ./pool/main/k/kdesdk/umbrello_4.8.4+dfsg-1_amd64.deb
-builder 1706 2012-06-23 00:03:52.000000000 +0200 ./pool/main/k/kdevelop/kdevelop_4.3.1-3+b1_amd64.deb
-builder 4801 2012-05-21 13:56:06.000000000 +0200 ./pool/main/k/kdevelop/kdevelop-data_4.3.1-3_all.deb
-builder 3066 2012-05-20 13:33:44.000000000 +0200 ./pool/main/k/kdevplatform/kdevplatform5-libs_1.3.1-2_amd64.deb
-builder 114 2012-05-20 13:33:44.000000000 +0200 ./pool/main/k/kdevplatform/libsublime5_1.3.1-2_amd64.deb
-builder 44808 2012-06-09 21:18:51.000000000 +0200 ./pool/main/k/kde-wallpapers/kde-wallpapers_4.8.4-1_all.deb
-builder 30965 2012-06-09 21:18:51.000000000 +0200 ./pool/main/k/kde-wallpapers/kde-wallpapers-default_4.8.4-1_all.deb
-builder 462 2012-06-19 11:07:18.000000000 +0200 ./pool/main/k/kdewebdev/kfilereplace_4.8.4-1_amd64.deb
-builder 311 2012-06-19 11:07:17.000000000 +0200 ./pool/main/k/kdewebdev/kommander_4.8.4-1_amd64.deb
-builder 54 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/freespacenotifier_4.8.4-6_amd64.deb
-builder 311 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kde-style-oxygen_4.8.4-6_amd64.deb
-builder 3200 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kde-window-manager_4.8.4-6_amd64.deb
-builder 36 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kde-workspace_4.8.4-6_all.deb
-builder 2088 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kde-workspace-bin_4.8.4-6_amd64.deb
-builder 16545 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kde-workspace-data_4.8.4-6_all.deb
-builder 58 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kde-workspace-kgreet-plugins_4.8.4-6_amd64.deb
-builder 1823 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kdm_4.8.4-6_amd64.deb
-builder 470 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kinfocenter_4.8.4-6_amd64.deb
-builder 118 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/klipper_4.8.4-6_amd64.deb
-builder 268 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/kmenuedit_4.8.4-6_amd64.deb
-builder 226 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/ksysguard_4.8.4-6_amd64.deb
-builder 80 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/ksysguardd_4.8.4-6_amd64.deb
-builder 68 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libkdecorations4_4.8.4-6_amd64.deb
-builder 42 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libkephal4abi1_4.8.4-6_amd64.deb
-builder 44 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libkscreensaver5_4.8.4-6_amd64.deb
-builder 56 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libksgrd4_4.8.4-6_amd64.deb
-builder 61 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libksignalplotter4_4.8.4-6_amd64.deb
-builder 76 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libkwineffects1abi3_4.8.4-6_amd64.deb
-builder 73 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libkwinglutils1_4.8.4-6_amd64.deb
-builder 79 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libkworkspace4abi1_4.8.4-6_amd64.deb
-builder 95 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libplasmaclock4abi3_4.8.4-6_amd64.deb
-builder 157 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libplasmagenericshell4_4.8.4-6_amd64.deb
-builder 40 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libplasma-geolocation-interface4_4.8.4-6_amd64.deb
-builder 62 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libprocesscore4abi1_4.8.4-6_amd64.deb
-builder 109 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libprocessui4a_4.8.4-6_amd64.deb
-builder 86 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libsolidcontrol4abi2_4.8.4-6_amd64.deb
-builder 45 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libsolidcontrolifaces4abi2_4.8.4-6_amd64.deb
-builder 144 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libtaskmanager4abi3_4.8.4-6_amd64.deb
-builder 40 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/libweather-ion6_4.8.4-6_amd64.deb
-builder 568 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/plasma-dataengines-workspace_4.8.4-6_amd64.deb
-builder 814 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/plasma-desktop_4.8.4-6_amd64.deb
-builder 46 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/plasma-scriptengine-python_4.8.4-6_all.deb
-builder 40 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/plasma-scriptengine-ruby_4.8.4-6_all.deb
-builder 34 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/plasma-scriptengines_4.8.4-6_all.deb
-builder 84 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/plasma-scriptengine-webkit_4.8.4-6_amd64.deb
-builder 509 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/plasma-widgets-workspace_4.8.4-6_amd64.deb
-builder 248 2013-01-21 17:54:46.000000000 +0100 ./pool/main/k/kde-workspace/systemsettings_4.8.4-6_amd64.deb
-builder 292 2012-06-20 02:48:28.000000000 +0200 ./pool/main/k/kdf/kdf_4.8.4-1_amd64.deb
-builder 25 2012-01-19 06:32:25.000000000 +0100 ./pool/main/k/kerberos-configs/krb5-config_2.3_all.deb
-builder 86 2012-01-31 17:32:43.000000000 +0100 ./pool/main/k/kexec-tools/kexec-tools_2.0.3-1_amd64.deb
-builder 62 2012-01-31 17:32:43.000000000 +0100 ./pool/main/k/kexec-tools/kexec-tools-udeb_2.0.3-1_amd64.udeb
-builder 36 2012-06-30 00:19:10.000000000 +0200 ./pool/main/k/keyutils/keyutils_1.5.5-3_amd64.deb
-builder 9 2012-06-30 00:19:10.000000000 +0200 ./pool/main/k/keyutils/libkeyutils1_1.5.5-3_amd64.deb
-builder 73 2012-06-27 01:33:36.000000000 +0200 ./pool/main/k/kfloppy/kfloppy_4.8.4-1_amd64.deb
-builder 83 2012-06-17 01:02:28.000000000 +0200 ./pool/main/k/kgeography/kgeography_4.8.4-1_amd64.deb
-builder 5917 2012-06-17 00:18:06.000000000 +0200 ./pool/main/k/kgeography/kgeography-data_4.8.4-1_all.deb
-builder 892 2012-11-29 20:45:28.000000000 +0100 ./pool/main/k/kgpg/kgpg_4.8.4-4_amd64.deb
-builder 875 2012-06-17 02:03:00.000000000 +0200 ./pool/main/k/khangman/khangman_4.8.4-1_amd64.deb
-builder 4 2012-06-22 23:18:06.000000000 +0200 ./pool/main/k/kickseed/initrd-kickseed_0.58_all.udeb
-builder 11 2012-06-22 23:18:06.000000000 +0200 ./pool/main/k/kickseed/kickseed-common_0.58_all.udeb
-builder 1811 2012-06-19 11:09:05.000000000 +0200 ./pool/main/k/kig/kig_4.8.4-1_amd64.deb
-builder 24 2012-01-18 10:34:08.000000000 +0100 ./pool/main/k/killer/killer_0.90-8_all.deb
-builder 20 2011-05-04 14:13:34.000000000 +0200 ./pool/main/k/kingston-update-notifier/update-notifier-kde_1.2.4_amd64.deb
-builder 4594 2012-01-14 13:32:07.000000000 +0100 ./pool/main/k/kino/kino_1.3.4-1.3_amd64.deb
-builder 15100 2012-06-21 08:34:17.000000000 +0200 ./pool/main/k/kiten/kiten_4.8.4-1_amd64.deb
-builder 93 2012-06-21 08:34:17.000000000 +0200 ./pool/main/k/kiten/libkiten4abi1_4.8.4-1_amd64.deb
-builder 51 2012-06-17 17:11:58.000000000 +0200 ./pool/main/k/klettres/klettres_4.8.4-1_amd64.deb
-builder 2622 2012-06-17 17:11:58.000000000 +0200 ./pool/main/k/klettres/klettres-data_4.8.4-1_all.deb
-builder 188 2012-11-12 18:05:46.000000000 +0100 ./pool/main/k/klibc/klibc-utils_2.0.1-3.1_amd64.deb
-builder 24 2012-11-12 18:05:46.000000000 +0100 ./pool/main/k/klibc/klibc-utils-floppy-udeb_2.0.1-3.1_amd64.udeb
-builder 56 2012-11-12 18:05:46.000000000 +0100 ./pool/main/k/klibc/libklibc_2.0.1-3.1_amd64.deb
-builder 109 2012-06-21 18:32:50.000000000 +0200 ./pool/main/k/kmag/kmag_4.8.4-3_amd64.deb
-builder 60 2013-04-07 19:17:20.000000000 +0200 ./pool/main/k/kmod/kmod_9-3_amd64.deb
-builder 46 2013-04-07 19:17:20.000000000 +0200 ./pool/main/k/kmod/libkmod2_9-3_amd64.deb
-builder 44 2013-04-07 19:17:20.000000000 +0200 ./pool/main/k/kmod/libkmod2-udeb_9-3_amd64.udeb
-builder 2 2013-04-07 18:52:18.000000000 +0200 ./pool/main/k/kmod/module-init-tools_9-3_all.deb
-builder 56 2012-06-21 18:48:03.000000000 +0200 ./pool/main/k/kmousetool/kmousetool_4.8.4-3_amd64.deb
-builder 409 2012-06-21 19:04:27.000000000 +0200 ./pool/main/k/kmouth/kmouth_4.8.4-3_amd64.deb
-builder 859 2012-06-29 15:34:19.000000000 +0200 ./pool/main/k/kmplot/kmplot_4.8.4-2_amd64.deb
-builder 344 2012-12-08 13:29:29.000000000 +0100 ./pool/main/k/konsole/konsole_4.8.4-2_amd64.deb
-builder 994 2011-12-04 17:37:37.000000000 +0100 ./pool/main/k/konversation/konversation_1.4-1_amd64.deb
-builder 3986 2011-12-04 17:37:37.000000000 +0100 ./pool/main/k/konversation/konversation-data_1.4-1_all.deb
-builder 227 2012-06-18 03:19:37.000000000 +0200 ./pool/main/k/korundum/ruby-kde4_4.8.4-1_amd64.deb
-builder 39 2012-06-18 03:19:37.000000000 +0200 ./pool/main/k/korundum/ruby-plasma_4.8.4-1_amd64.deb
-builder 181 2012-03-20 20:47:18.000000000 +0100 ./pool/main/k/krb5-appl/krb5-clients_1.0.1-4_amd64.deb
-builder 369 2011-11-03 20:36:36.000000000 +0100 ./pool/main/k/krb5-auth-dialog/krb5-auth-dialog_3.2.1-1_amd64.deb
-builder 1214 2012-06-26 18:49:21.000000000 +0200 ./pool/main/k/kremotecontrol/kremotecontrol_4.8.4-3_amd64.deb
-builder 161 2012-06-16 18:49:49.000000000 +0200 ./pool/main/k/kross-interpreters/krosspython_4.8.4-1_amd64.deb
-builder 119 2012-06-16 23:47:49.000000000 +0200 ./pool/main/k/kruler/kruler_4.8.4-1_amd64.deb
-builder 327 2012-06-19 01:03:13.000000000 +0200 ./pool/main/k/ksnapshot/ksnapshot_4.8.4-1_amd64.deb
-builder 1089 2012-06-16 15:18:07.000000000 +0200 ./pool/main/k/kstars/kstars_4.8.4-1_amd64.deb
-builder 13270 2012-06-16 15:18:07.000000000 +0200 ./pool/main/k/kstars/kstars-data_4.8.4-1_all.deb
-builder 185 2012-06-18 23:33:34.000000000 +0200 ./pool/main/k/ktimer/ktimer_4.8.4-1_amd64.deb
-builder 174 2012-06-17 17:12:14.000000000 +0200 ./pool/main/k/ktouch/ktouch_4.8.4-1_amd64.deb
-builder 1750 2012-06-17 17:12:14.000000000 +0200 ./pool/main/k/ktouch/ktouch-data_4.8.4-1_all.deb
-builder 277 2012-06-17 01:33:33.000000000 +0200 ./pool/main/k/kturtle/kturtle_4.8.4-1_amd64.deb
-builder 324 2012-11-27 22:54:54.000000000 +0100 ./pool/main/k/kwallet/kwalletmanager_4.8.4-3_amd64.deb
-builder 1293 2012-06-20 12:02:46.000000000 +0200 ./pool/main/k/kwordquiz/kwordquiz_4.8.4-1_amd64.deb
-builder 44 2012-05-07 21:49:03.000000000 +0200 ./pool/main/liba/libaacs/libaacs0_0.4.0-1_amd64.deb
-builder 9 2012-06-21 09:50:07.000000000 +0200 ./pool/main/liba/libaio/libaio1_0.3.109-3_amd64.deb
-builder 3 2012-06-21 09:50:07.000000000 +0200 ./pool/main/liba/libaio/libaio1-udeb_0.3.109-3_amd64.udeb
-builder 51 2010-07-29 03:17:25.000000000 +0200 ./pool/main/liba/libalgorithm-diff-perl/libalgorithm-diff-perl_1.19.02-2_all.deb
-builder 13 2011-11-15 01:19:04.000000000 +0100 ./pool/main/liba/libalgorithm-diff-xs-perl/libalgorithm-diff-xs-perl_0.04-2+b1_amd64.deb
-builder 14 2010-07-30 18:48:31.000000000 +0200 ./pool/main/liba/libalgorithm-merge-perl/libalgorithm-merge-perl_0.08-2_all.deb
-builder 44 2012-06-02 14:19:08.000000000 +0200 ./pool/main/liba/libao/libao4_1.1.0-2_amd64.deb
-builder 12 2012-06-02 14:19:08.000000000 +0200 ./pool/main/liba/libao/libao-common_1.1.0-2_amd64.deb
-builder 25 2012-05-29 09:03:17.000000000 +0200 ./pool/main/liba/libapache-mod-auth-kerb/libapache2-mod-auth-kerb_5.4-2_amd64.deb
-builder 83 2012-04-16 23:20:05.000000000 +0200 ./pool/main/liba/libapt-pkg-perl/libapt-pkg-perl_0.1.26+b1_amd64.deb
-builder 297 2013-04-21 02:36:51.000000000 +0200 ./pool/main/liba/libarchive/libarchive12_3.0.4-3+nmu1_amd64.deb
-builder 71 2012-06-17 19:52:07.000000000 +0200 ./pool/main/liba/libart-lgpl/libart-2.0-2_2.3.21-2_amd64.deb
-builder 58 2012-02-14 02:18:57.000000000 +0100 ./pool/main/liba/libass/libass4_0.10.0-3_amd64.deb
-builder 35 2012-02-05 04:01:45.000000000 +0100 ./pool/main/liba/libassuan/libassuan0_2.0.3-1_amd64.deb
-builder 14 2011-08-10 00:17:24.000000000 +0200 ./pool/main/liba/libasyncns/libasyncns0_0.8-4_amd64.deb
-builder 27 2012-05-23 09:03:35.000000000 +0200 ./pool/main/liba/libatasmart/libatasmart4_0.19-1_amd64.deb
-builder 16 2008-04-05 13:47:09.000000000 +0200 ./pool/main/liba/libaudio-scrobbler-perl/libaudio-scrobbler-perl_0.01-2.1_all.deb
-builder 24 2013-02-18 03:07:52.000000000 +0100 ./pool/main/liba/libavc1394/libavc1394-0_0.5.4-2_amd64.deb
-builder 136 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/ffmpeg_0.8.6-1_amd64.deb
-builder 2446 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/libavcodec53_0.8.6-1_amd64.deb
-builder 68 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/libavdevice53_0.8.6-1_amd64.deb
-builder 113 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/libavfilter2_0.8.6-1_amd64.deb
-builder 455 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/libavformat53_0.8.6-1_amd64.deb
-builder 356 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/libav-tools_0.8.6-1_amd64.deb
-builder 92 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/libavutil51_0.8.6-1_amd64.deb
-builder 88 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/libpostproc52_0.8.6-1_amd64.deb
-builder 119 2013-03-24 19:58:09.000000000 +0100 ./pool/main/liba/libav/libswscale2_0.8.6-1_amd64.deb
-builder 30 2012-12-20 01:50:57.000000000 +0100 ./pool/main/libb/libbinio/libbinio1ldbl_1.4+dfsg1-1_amd64.deb
-builder 85 2012-03-21 01:48:09.000000000 +0100 ./pool/main/libb/libbluray/libbluray1_0.2.2-1_amd64.deb
-builder 326 2010-04-05 21:28:09.000000000 +0200 ./pool/main/libb/libbonobo/libbonobo2-0_2.24.3-1_amd64.deb
-builder 320 2010-04-05 14:20:30.000000000 +0200 ./pool/main/libb/libbonobo/libbonobo2-common_2.24.3-1_all.deb
-builder 241 2010-04-06 02:21:15.000000000 +0200 ./pool/main/libb/libbonoboui/libbonoboui2-0_2.24.3-1_amd64.deb
-builder 392 2010-04-05 18:30:41.000000000 +0200 ./pool/main/libb/libbonoboui/libbonoboui2-common_2.24.3-1_all.deb
-builder 14 2011-07-26 19:17:15.000000000 +0200 ./pool/main/libb/libbs2b/libbs2b0_3.1.0+dfsg-2_amd64.deb
-builder 58 2012-06-27 11:23:18.000000000 +0200 ./pool/main/libb/libbsd/libbsd0_0.4.2-1_amd64.deb
-builder 23 2012-06-27 11:23:18.000000000 +0200 ./pool/main/libb/libbsd/libbsd0-udeb_0.4.2-1_amd64.udeb
-builder 152 2012-07-12 08:17:07.000000000 +0200 ./pool/main/libb/libburn/libburn4_1.2.2-2_amd64.deb
-builder 386 2012-04-06 23:48:35.000000000 +0200 ./pool/main/libc/libcaca/libcaca0_0.99.beta18-1_amd64.deb
-builder 982 2012-04-06 23:48:35.000000000 +0200 ./pool/main/libc/libcaca/libcaca-dev_0.99.beta18-1_amd64.deb
-builder 125 2012-04-08 14:17:15.000000000 +0200 ./pool/main/libc/libcairo-perl/libcairo-perl_1.090-2_amd64.deb
-builder 38 2012-11-26 16:19:26.000000000 +0100 ./pool/main/libc/libcanberra/libcanberra0_0.28-6_amd64.deb
-builder 15 2012-11-26 16:19:26.000000000 +0100 ./pool/main/libc/libcanberra/libcanberra-gtk0_0.28-6_amd64.deb
-builder 15 2012-11-26 16:19:26.000000000 +0100 ./pool/main/libc/libcanberra/libcanberra-gtk3-0_0.28-6_amd64.deb
-builder 17 2012-11-26 16:19:26.000000000 +0100 ./pool/main/libc/libcanberra/libcanberra-gtk3-module_0.28-6_amd64.deb
-builder 17 2012-11-26 16:19:26.000000000 +0100 ./pool/main/libc/libcanberra/libcanberra-gtk-module_0.28-6_amd64.deb
-builder 18 2012-11-26 16:19:26.000000000 +0100 ./pool/main/libc/libcanberra/libcanberra-pulse_0.28-6_amd64.deb
-builder 14 2012-08-11 14:32:38.000000000 +0200 ./pool/main/libc/libcap2/libcap2_2.22-1.2_amd64.deb
-builder 21 2012-08-11 14:32:38.000000000 +0200 ./pool/main/libc/libcap2/libcap2-bin_2.22-1.2_amd64.deb
-builder 11 2012-08-11 14:32:38.000000000 +0200 ./pool/main/libc/libcap2/libpam-cap_2.22-1.2_amd64.deb
-builder 13 2012-06-16 23:08:18.000000000 +0200 ./pool/main/libc/libcap-ng/libcap-ng0_0.6.6-2_amd64.deb
-builder 49 2012-06-30 05:08:59.000000000 +0200 ./pool/main/libc/libcdaudio/libcdaudio1_0.99.12p2-12_amd64.deb
-builder 54 2011-04-30 11:47:20.000000000 +0200 ./pool/main/libc/libcddb/libcddb2_1.3.2-3_amd64.deb
-builder 174 2012-06-14 11:33:31.000000000 +0200 ./pool/main/libc/libcdio/libcdio13_0.83-4_amd64.deb
-builder 131 2012-06-14 11:33:31.000000000 +0200 ./pool/main/libc/libcdio/libcdio-cdda1_0.83-4_amd64.deb
-builder 130 2012-06-14 11:33:31.000000000 +0200 ./pool/main/libc/libcdio/libcdio-paranoia1_0.83-4_amd64.deb
-builder 135 2012-06-14 11:33:31.000000000 +0200 ./pool/main/libc/libcdio/libiso9660-8_0.83-4_amd64.deb
-builder 230 2012-08-14 18:07:56.000000000 +0200 ./pool/main/libc/libchamplain/libchamplain-0.12-0_0.12.3-1_amd64.deb
-builder 134 2012-08-14 18:07:56.000000000 +0200 ./pool/main/libc/libchamplain/libchamplain-gtk-0.12-0_0.12.3-1_amd64.deb
-builder 64 2012-04-17 07:18:00.000000000 +0200 ./pool/main/libc/libchewing/libchewing3_0.3.3-4_amd64.deb
-builder 1926 2012-04-17 07:18:00.000000000 +0200 ./pool/main/libc/libchewing/libchewing3-data_0.3.3-4_amd64.deb
-builder 26 2009-09-20 21:47:58.000000000 +0200 ./pool/main/libc/libclass-accessor-perl/libclass-accessor-perl_0.34-1_all.deb
-builder 12 2011-11-24 19:02:05.000000000 +0100 ./pool/main/libc/libclass-isa-perl/libclass-isa-perl_0.36-3_all.deb
-builder 13 2012-02-13 09:49:56.000000000 +0100 ./pool/main/libc/libclass-load-perl/libclass-load-perl_0.17-1_all.deb
-builder 55 2012-04-06 20:19:57.000000000 +0200 ./pool/main/libc/libcmis/libcmis-0.2-0_0.1.0-1+b1_amd64.deb
-builder 190 2012-05-25 02:17:26.000000000 +0200 ./pool/main/libc/libcommons-codec-java/libcommons-codec-java_1.6-1_all.deb
-builder 588 2011-08-07 02:02:17.000000000 +0200 ./pool/main/libc/libcommons-collections3-java/libcommons-collections3-java_3.2.1-5_all.deb
-builder 220 2012-07-09 03:02:07.000000000 +0200 ./pool/main/libc/libcommons-compress-java/libcommons-compress-java_1.4.1-2_all.deb
-builder 165 2011-08-07 02:17:12.000000000 +0200 ./pool/main/libc/libcommons-digester-java/libcommons-digester-java_1.8.1-3_all.deb
-builder 111 2012-01-07 02:02:24.000000000 +0100 ./pool/main/libc/libcommons-logging-java/libcommons-logging-java_1.1.1-9_all.deb
-builder 70 2011-02-15 16:47:04.000000000 +0100 ./pool/main/libc/libconfig-general-perl/libconfig-general-perl_2.50-1_all.deb
-builder 54 2012-06-05 23:41:36.000000000 +0200 ./pool/main/libc/libconfig-inifiles-perl/libconfig-inifiles-perl_2.75-1_all.deb
-builder 46 2012-06-30 20:24:29.000000000 +0200 ./pool/main/libc/libconfig/libconfig++9_1.4.8-5_amd64.deb
-builder 14 2011-03-26 17:51:08.000000000 +0100 ./pool/main/libc/libconfig-tiny-perl/libconfig-tiny-perl_2.14-1_all.deb
-builder 46 2012-06-10 17:46:43.000000000 +0200 ./pool/main/libc/libconvert-asn1-perl/libconvert-asn1-perl_0.26-1_all.deb
-builder 131 2012-11-26 15:04:20.000000000 +0100 ./pool/main/libc/libcroco/libcroco3_0.6.6-2_amd64.deb
-builder 12 2011-11-15 02:07:59.000000000 +0100 ./pool/main/libc/libcrypt-openssl-random-perl/libcrypt-openssl-random-perl_0.04-1+b4_amd64.deb
-builder 11 2011-08-30 19:32:17.000000000 +0200 ./pool/main/libc/libcrypt-passwdmd5-perl/libcrypt-passwdmd5-perl_1.3-10_all.deb
-builder 14 2009-09-16 02:47:09.000000000 +0200 ./pool/main/libc/libcrypt-smbhash-perl/libcrypt-smbhash-perl_0.12-3_all.deb
-builder 26 2010-05-15 11:36:22.000000000 +0200 ./pool/main/libc/libcue/libcue1_1.4.0-1_amd64.deb
-builder 19 2010-01-17 13:50:29.000000000 +0100 ./pool/main/libd/libdaemon/libdaemon0_0.14-2_amd64.deb
-builder 11 2011-05-13 00:04:54.000000000 +0200 ./pool/main/libd/libdata-optlist-perl/libdata-optlist-perl_0.107-1_all.deb
-builder 2803 2012-06-02 18:48:55.000000000 +0200 ./pool/main/libd/libdate-manip-perl/libdate-manip-perl_6.32-1_all.deb
-builder 28 2011-12-22 08:32:19.000000000 +0100 ./pool/main/libd/libdatrie/libdatrie1_0.2.5-3_amd64.deb
-builder 215 2012-10-31 08:37:30.000000000 +0100 ./pool/main/libd/libdbd-pg-perl/libdbd-pg-perl_2.19.2-2_amd64.deb
-builder 31 2012-04-14 18:02:52.000000000 +0200 ./pool/main/libd/libdbi/libdbi1_0.8.4-6_amd64.deb
-builder 877 2012-06-07 13:02:56.000000000 +0200 ./pool/main/libd/libdbi-perl/libdbi-perl_1.622-1_amd64.deb
-builder 1391 2011-08-07 13:17:50.000000000 +0200 ./pool/main/libd/libdb-je-java/libdb-je-java_3.3.98-1_all.deb
-builder 92 2011-09-01 15:47:21.000000000 +0200 ./pool/main/libd/libdbusmenu-qt/libdbusmenu-qt2_0.9.0-1_amd64.deb
-builder 117 2012-03-11 10:32:07.000000000 +0100 ./pool/main/libd/libdc1394-22/libdc1394-22_2.2.0-2_amd64.deb
-builder 111 2011-10-06 13:17:17.000000000 +0200 ./pool/main/libd/libdca/libdca0_0.0.5-5_amd64.deb
-builder 111 2011-10-06 13:17:17.000000000 +0200 ./pool/main/libd/libdca/libdca-dev_0.0.5-5_amd64.deb
-builder 14 2011-10-06 13:17:17.000000000 +0200 ./pool/main/libd/libdca/libdts-dev_0.0.5-5_amd64.deb
-builder 13 2011-07-25 23:56:04.000000000 +0200 ./pool/main/libd/libdigest-hmac-perl/libdigest-hmac-perl_1.03+dfsg-1_all.deb
-builder 21 2011-11-15 02:36:38.000000000 +0100 ./pool/main/libd/libdigest-md4-perl/libdigest-md4-perl_1.5.dfsg-2+b2_amd64.deb
-builder 13 2012-02-14 02:03:37.000000000 +0100 ./pool/main/libd/libdiscid/libdiscid0_0.2.2-3_amd64.deb
-builder 103 2012-04-19 21:02:48.000000000 +0200 ./pool/main/libd/libdmapsharing/libdmapsharing-3.0-2_2.9.15-1_amd64.deb
-builder 60 2013-04-28 23:01:48.000000000 +0200 ./pool/main/libd/libdmtx/libdmtx0a_0.7.2-2+build1_amd64.deb
-builder 449 2013-01-06 13:05:02.000000000 +0100 ./pool/main/libd/libdrm/libdrm2_2.4.40-1~deb7u2_amd64.deb
-builder 486 2013-01-06 13:05:02.000000000 +0100 ./pool/main/libd/libdrm/libdrm-intel1_2.4.40-1~deb7u2_amd64.deb
-builder 438 2013-01-06 13:05:02.000000000 +0100 ./pool/main/libd/libdrm/libdrm-nouveau1a_2.4.40-1~deb7u2_amd64.deb
-builder 447 2013-01-06 13:05:02.000000000 +0100 ./pool/main/libd/libdrm/libdrm-radeon1_2.4.40-1~deb7u2_amd64.deb
-builder 46 2011-12-05 01:32:46.000000000 +0100 ./pool/main/libd/libdvbpsi/libdvbpsi7_0.2.2-1_amd64.deb
-builder 44 2012-06-30 00:22:18.000000000 +0200 ./pool/main/libd/libdvdnav/libdvdnav4_4.2.0+20120524-2_amd64.deb
-builder 55 2012-06-30 01:23:17.000000000 +0200 ./pool/main/libd/libdvdread/libdvdread4_4.2.0+20120521-2_amd64.deb
-builder 81 2012-12-17 17:42:01.000000000 +0100 ./pool/main/libd/libdv/libdv4_1.0.0-6_amd64.deb
-builder 63 2012-02-14 12:17:16.000000000 +0100 ./pool/main/libe/libebml/libebml3_1.2.2-2_amd64.deb
-builder 72 2012-06-01 03:48:46.000000000 +0200 ./pool/main/libe/libedit/libedit2_2.11-20080614-5_amd64.deb
-builder 27 2012-01-17 09:48:34.000000000 +0100 ./pool/main/libe/libemail-address-perl/libemail-address-perl_1.895-1_all.deb
-builder 17 2008-04-06 00:17:08.000000000 +0200 ./pool/main/libe/libemail-find-perl/libemail-find-perl_0.10-dfsg-1.1_all.deb
-builder 21 2012-04-07 17:23:48.000000000 +0200 ./pool/main/libe/libemail-valid-perl/libemail-valid-perl_0.190-1_all.deb
-builder 14 2012-02-12 14:49:16.000000000 +0100 ./pool/main/libe/libencode-locale-perl/libencode-locale-perl_1.03-1_all.deb
-builder 74 2012-01-31 07:47:21.000000000 +0100 ./pool/main/libe/libepc/libepc-1.0-3_0.4.4-1_amd64.deb
-builder 44 2012-01-31 07:47:21.000000000 +0100 ./pool/main/libe/libepc/libepc-common_0.4.4-1_all.deb
-builder 39 2012-01-31 07:47:21.000000000 +0100 ./pool/main/libe/libepc/libepc-ui-1.0-3_0.4.4-1_amd64.deb
-builder 205 2012-06-21 11:18:04.000000000 +0200 ./pool/main/libe/libept/libept1.4.12_1.0.9_amd64.deb
-builder 24 2007-12-02 19:17:04.000000000 +0100 ./pool/main/libe/liberror-perl/liberror-perl_0.17-1_all.deb
-builder 169 2012-06-03 03:03:58.000000000 +0200 ./pool/main/libe/libevent/libevent-2.0-5_2.0.19-stable-3_amd64.deb
-builder 39 2012-02-13 03:49:37.000000000 +0100 ./pool/main/libe/libev/libev4_4.11-1_amd64.deb
-builder 571 2012-07-17 23:03:17.000000000 +0200 ./pool/main/libe/libexif/libexif12_0.6.20-3_amd64.deb
-builder 9 2009-07-22 19:47:27.000000000 +0200 ./pool/main/libe/libexporter-lite-perl/libexporter-lite-perl_0.02-2_all.deb
-builder 17 2012-04-05 23:48:03.000000000 +0200 ./pool/main/libe/libexttextcat/libexttextcat0_3.2.0-2_amd64.deb
-builder 165 2012-04-05 23:48:03.000000000 +0200 ./pool/main/libe/libexttextcat/libexttextcat-data_3.2.0-2_all.deb
-builder 4 2012-05-28 21:17:06.000000000 +0200 ./pool/main/libf/libfakekey/libfakekey0-udeb_0.1-7_amd64.udeb
-builder 42 2011-11-15 02:50:00.000000000 +0100 ./pool/main/libf/libfcgi-perl/libfcgi-perl_0.74-1+b1_amd64.deb
-builder 1658 2012-06-28 17:25:50.000000000 +0200 ./pool/main/libf/libffado/libffado2_2.0.99+svn2171-2_amd64.deb
-builder 25 2011-10-12 21:47:10.000000000 +0200 ./pool/main/libf/libffi/libffi5_3.0.10-3_amd64.deb
-builder 20 2011-10-12 21:47:10.000000000 +0200 ./pool/main/libf/libffi/libffi5-udeb_3.0.10-3_amd64.udeb
-builder 11 2010-02-24 18:36:12.000000000 +0100 ./pool/main/libf/libfile-basedir-perl/libfile-basedir-perl_0.03-1_all.deb
-builder 21 2008-12-07 23:47:12.000000000 +0100 ./pool/main/libf/libfile-copy-recursive-perl/libfile-copy-recursive-perl_0.38-1_all.deb
-builder 19 2011-09-17 12:02:57.000000000 +0200 ./pool/main/libf/libfile-desktopentry-perl/libfile-desktopentry-perl_0.04-3_all.deb
-builder 17 2012-06-12 18:05:01.000000000 +0200 ./pool/main/libf/libfile-fcntllock-perl/libfile-fcntllock-perl_0.14-2_amd64.deb
-builder 11 2012-02-16 09:48:07.000000000 +0100 ./pool/main/libf/libfile-listing-perl/libfile-listing-perl_6.04-1_all.deb
-builder 51 2012-01-05 19:03:22.000000000 +0100 ./pool/main/libf/libfile-mimeinfo-perl/libfile-mimeinfo-perl_0.16-1_all.deb
-builder 14 2011-11-15 04:08:47.000000000 +0100 ./pool/main/libf/libfilesys-df-perl/libfilesys-df-perl_0.92-4+b1_amd64.deb
-builder 62 2013-01-06 01:39:00.000000000 +0100 ./pool/main/libf/libfm/libfm1_0.1.17-2.1_amd64.deb
-builder 98 2013-01-06 01:39:00.000000000 +0100 ./pool/main/libf/libfm/libfm-data_0.1.17-2.1_all.deb
-builder 98 2013-01-06 01:39:00.000000000 +0100 ./pool/main/libf/libfm/libfm-gtk1_0.1.17-2.1_amd64.deb
-builder 15 2013-01-06 01:39:00.000000000 +0100 ./pool/main/libf/libfm/libfm-gtk-bin_0.1.17-2.1_amd64.deb
-builder 15 2008-06-04 22:47:04.000000000 +0200 ./pool/main/libf/libfont-afm-perl/libfont-afm-perl_1.20-1_all.deb
-builder 24 2012-03-25 22:54:40.000000000 +0200 ./pool/main/libf/libfontenc/libfontenc1_1.1.1-1_amd64.deb
-builder 21 2012-04-06 18:48:51.000000000 +0200 ./pool/main/libf/libftdi/libftdi1_0.20-1+b1_amd64.deb
-builder 75 2012-06-19 11:33:39.000000000 +0200 ./pool/main/libg/libgadu/libgadu3_1.11.2-1_amd64.deb
-builder 137 2012-12-27 01:59:36.000000000 +0100 ./pool/main/libg/libgc/libgc1c2_7.1-9.1_amd64.deb
-builder 292 2013-02-24 19:29:59.000000000 +0100 ./pool/main/libg/libgcrypt11/libgcrypt11_1.5.0-5_amd64.deb
-builder 207 2013-02-24 19:29:59.000000000 +0100 ./pool/main/libg/libgcrypt11/libgcrypt11-udeb_1.5.0-5_amd64.udeb
-builder 224 2012-05-14 11:22:24.000000000 +0200 ./pool/main/libg/libgd2/libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64.deb
-builder 227 2012-05-14 11:22:24.000000000 +0200 ./pool/main/libg/libgd2/libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64.deb
-builder 192 2012-04-02 18:19:11.000000000 +0200 ./pool/main/libg/libgdata/gir1.2-gdata-0.0_0.12.0-1_amd64.deb
-builder 397 2012-04-02 18:19:11.000000000 +0200 ./pool/main/libg/libgdata/libgdata13_0.12.0-1_amd64.deb
-builder 258 2012-04-02 18:19:11.000000000 +0200 ./pool/main/libg/libgdata/libgdata-common_0.12.0-1_all.deb
-builder 169 2012-04-21 11:18:19.000000000 +0200 ./pool/main/libg/libgdiplus/libgdiplus_2.10-3+b1_amd64.deb
-builder 23 2012-05-30 23:25:41.000000000 +0200 ./pool/main/libg/libgee/gir1.2-gee-1.0_0.6.4-2_amd64.deb
-builder 125 2012-05-30 23:25:41.000000000 +0200 ./pool/main/libg/libgee/libgee2_0.6.4-2_amd64.deb
-builder 23 2011-10-29 00:03:18.000000000 +0200 ./pool/main/libg/libgetopt-java/libgetopt-java_1.0.13-4_all.deb
-builder 503 2011-11-28 20:05:54.000000000 +0100 ./pool/main/libg/libghemical/libghemical5_3.0.0-2_amd64.deb
-builder 163 2011-11-28 20:05:54.000000000 +0100 ./pool/main/libg/libghemical/libghemical-data_3.0.0-2_all.deb
-builder 121 2011-12-07 11:18:40.000000000 +0100 ./pool/main/libg/libgksu/libgksu2-0_2.0.13~pre1-6_amd64.deb
-builder 87 2009-04-04 09:18:14.000000000 +0200 ./pool/main/libg/libglade2/libglade2-0_2.6.4-1_amd64.deb
-builder 387 2012-05-24 09:38:57.000000000 +0200 ./pool/main/libg/libglib-perl/libglib-perl_1.260-1_amd64.deb
-builder 109 2012-10-14 19:59:32.000000000 +0200 ./pool/main/libg/libgnomecanvas/libgnomecanvas2-0_2.30.3-1.2_amd64.deb
-builder 131 2012-10-14 19:59:32.000000000 +0200 ./pool/main/libg/libgnomecanvas/libgnomecanvas2-common_2.30.3-1.2_all.deb
-builder 14 2012-03-27 21:50:03.000000000 +0200 ./pool/main/libg/libgnomekbd/gir1.2-gkbd-3.0_3.4.0.2-1_amd64.deb
-builder 14 2012-03-27 21:50:03.000000000 +0200 ./pool/main/libg/libgnomekbd/gkbd-capplet_3.4.0.2-1_amd64.deb
-builder 59 2012-03-27 21:50:03.000000000 +0200 ./pool/main/libg/libgnomekbd/libgnomekbd7_3.4.0.2-1_amd64.deb
-builder 108 2012-03-27 21:50:03.000000000 +0200 ./pool/main/libg/libgnomekbd/libgnomekbd-common_3.4.0.2-1_all.deb
-builder 37 2012-04-19 20:47:37.000000000 +0200 ./pool/main/libg/libgnome-keyring/gir1.2-gnomekeyring-1.0_3.4.1-1_amd64.deb
-builder 92 2012-04-19 20:47:37.000000000 +0200 ./pool/main/libg/libgnome-keyring/libgnome-keyring0_3.4.1-1_amd64.deb
-builder 59 2012-04-19 20:47:37.000000000 +0200 ./pool/main/libg/libgnome-keyring/libgnome-keyring-common_3.4.1-1_all.deb
-builder 465 2013-04-28 20:31:36.000000000 +0200 ./pool/main/libg/libgnome/libgnome2-0_2.32.1-3_amd64.deb
-builder 895 2013-04-28 20:31:36.000000000 +0200 ./pool/main/libg/libgnome/libgnome2-common_2.32.1-3_all.deb
-builder 261 2011-10-14 02:32:29.000000000 +0200 ./pool/main/libg/libgnome-media-profiles/libgnome-media-profiles-3.0-0_3.0.0-1_amd64.deb
-builder 371 2011-09-05 12:32:47.000000000 +0200 ./pool/main/libg/libgnomeui/libgnomeui-0_2.24.5-2_amd64.deb
-builder 844 2011-09-05 12:03:56.000000000 +0200 ./pool/main/libg/libgnomeui/libgnomeui-common_2.24.5-2_all.deb
-builder 111 2010-05-09 12:47:26.000000000 +0200 ./pool/main/libg/libgnu-regexp-java/libgnu-regexp-java_1.1.4-4_all.deb
-builder 77 2012-08-18 05:11:40.000000000 +0200 ./pool/main/libg/libgpg-error/libgpg-error0_1.10-3.1_amd64.deb
-builder 6 2012-08-18 05:11:40.000000000 +0200 ./pool/main/libg/libgpg-error/libgpg-error0-udeb_1.10-3.1_amd64.udeb
-builder 1052 2012-04-22 20:17:53.000000000 +0200 ./pool/main/libg/libgphoto2/libgphoto2-2_2.4.14-2_amd64.deb
-builder 739 2012-04-22 19:48:58.000000000 +0200 ./pool/main/libg/libgphoto2/libgphoto2-l10n_2.4.14-2_all.deb
-builder 154 2012-04-22 20:17:53.000000000 +0200 ./pool/main/libg/libgphoto2/libgphoto2-port0_2.4.14-2_amd64.deb
-builder 271 2012-10-15 16:06:35.000000000 +0200 ./pool/main/libg/libgpod/libgpod4_0.8.2-7_amd64.deb
-builder 166 2012-10-15 16:06:35.000000000 +0200 ./pool/main/libg/libgpod/libgpod4-nogtk_0.8.2-7_amd64.deb
-builder 108 2012-10-15 16:06:35.000000000 +0200 ./pool/main/libg/libgpod/libgpod-common_0.8.2-7_amd64.deb
-builder 166 2012-03-18 15:51:45.000000000 +0100 ./pool/main/libg/libgsf/libgsf-1-114_1.14.21-2.1_amd64.deb
-builder 97 2012-03-18 15:51:45.000000000 +0100 ./pool/main/libg/libgsf/libgsf-1-common_1.14.21-2.1_all.deb
-builder 30 2012-04-12 19:47:29.000000000 +0200 ./pool/main/libg/libgsm/libgsm1_1.0.13-4_amd64.deb
-builder 27 2012-06-08 07:47:57.000000000 +0200 ./pool/main/libg/libgssglue/libgssglue1_0.4-2_amd64.deb
-builder 1023 2012-05-27 02:50:02.000000000 +0200 ./pool/main/libg/libgtk2-perl/libgtk2-perl_1.244-1_amd64.deb
-builder 56 2012-04-13 20:38:54.000000000 +0200 ./pool/main/libg/libgtop2/gir1.2-gtop-2.0_2.28.4-3_amd64.deb
-builder 72 2012-04-13 20:38:54.000000000 +0200 ./pool/main/libg/libgtop2/libgtop2-7_2.28.4-3_amd64.deb
-builder 117 2012-04-13 20:38:54.000000000 +0200 ./pool/main/libg/libgtop2/libgtop2-common_2.28.4-3_all.deb
-builder 12 2011-12-20 22:18:04.000000000 +0100 ./pool/main/libg/libguess/libguess1_1.1-1_amd64.deb
-builder 20 2012-06-25 15:17:33.000000000 +0200 ./pool/main/libg/libgusb/libgusb2_0.1.3-5_amd64.deb
-builder 55 2012-08-07 00:17:42.000000000 +0200 ./pool/main/libg/libgweather/libgweather-3-0_3.4.1-1+build1_amd64.deb
-builder 14419 2012-08-07 00:17:42.000000000 +0200 ./pool/main/libg/libgweather/libgweather-common_3.4.1-1+build1_all.deb
-builder 60 2012-04-13 20:02:47.000000000 +0200 ./pool/main/libg/libgxps/libgxps2_0.2.2-2_amd64.deb
-builder 334 2012-02-04 16:28:01.000000000 +0100 ./pool/main/libh/libhamcrest-java/libhamcrest-java_1.2-2_all.deb
-builder 42 2011-07-26 17:33:37.000000000 +0200 ./pool/main/libh/libhtml-format-perl/libhtml-format-perl_2.10-1_all.deb
-builder 24 2012-04-04 13:50:50.000000000 +0200 ./pool/main/libh/libhtml-form-perl/libhtml-form-perl_6.03-1_all.deb
-builder 16 2008-04-06 00:17:19.000000000 +0200 ./pool/main/libh/libhtml-fromtext-perl/libhtml-fromtext-perl_2.05-5.1_all.deb
-builder 112 2012-04-01 18:49:27.000000000 +0200 ./pool/main/libh/libhtml-parser-perl/libhtml-parser-perl_3.69-2_amd64.deb
-builder 14 2008-04-12 16:47:02.000000000 +0200 ./pool/main/libh/libhtml-tagset-perl/libhtml-tagset-perl_3.20-2_all.deb
-builder 71 2012-04-04 22:50:43.000000000 +0200 ./pool/main/libh/libhtml-template-perl/libhtml-template-perl_2.91-1_all.deb
-builder 220 2012-06-30 18:32:59.000000000 +0200 ./pool/main/libh/libhtml-tree-perl/libhtml-tree-perl_5.02-1_all.deb
-builder 23 2011-03-28 22:38:10.000000000 +0200 ./pool/main/libh/libhttp-cookies-perl/libhttp-cookies-perl_6.00-2_all.deb
-builder 17 2012-02-19 23:18:13.000000000 +0100 ./pool/main/libh/libhttp-daemon-perl/libhttp-daemon-perl_6.01-1_all.deb
-builder 11 2012-04-13 17:02:16.000000000 +0200 ./pool/main/libh/libhttp-date-perl/libhttp-date-perl_6.02-1_all.deb
-builder 77 2012-02-19 23:18:28.000000000 +0100 ./pool/main/libh/libhttp-message-perl/libhttp-message-perl_6.03-1_all.deb
-builder 14 2011-03-28 22:38:20.000000000 +0200 ./pool/main/libh/libhttp-negotiate-perl/libhttp-negotiate-perl_6.00-2_all.deb
-builder 35 2011-12-22 03:47:50.000000000 +0100 ./pool/main/libi/libibverbs/libibverbs1_1.1.6-1_amd64.deb
-builder 233 2012-05-13 12:30:20.000000000 +0200 ./pool/main/libi/libical/libical0_0.48-2_amd64.deb
-builder 62 2012-04-10 20:48:55.000000000 +0200 ./pool/main/libi/libice/libice6_1.0.8-2_amd64.deb
-builder 73 2012-04-10 20:48:55.000000000 +0200 ./pool/main/libi/libice/libice-dev_1.0.8-2_amd64.deb
-builder 40 2007-01-20 18:17:01.000000000 +0100 ./pool/main/libi/libid3tag/libid3tag0_0.15.1b-10_amd64.deb
-builder 125 2011-06-03 23:48:37.000000000 +0200 ./pool/main/libi/libidl/libidl0_0.8.14-0.2_amd64.deb
-builder 175 2012-05-30 15:47:40.000000000 +0200 ./pool/main/libi/libidn/libidn11_1.25-2_amd64.deb
-builder 34 2009-03-10 11:47:17.000000000 +0100 ./pool/main/libi/libiec61883/libiec61883-0_1.2.0-0.1_amd64.deb
-builder 31 2011-07-21 17:48:49.000000000 +0200 ./pool/main/libi/libieee1284/libieee1284-3_0.2.11-10_amd64.deb
-builder 40 2011-04-10 09:36:26.000000000 +0200 ./pool/main/libi/libifp/libifp4_1.0.0.2-5_amd64.deb
-builder 2572 2011-07-15 23:02:54.000000000 +0200 ./pool/main/libi/libimage-exiftool-perl/libimage-exiftool-perl_8.60-2_all.deb
-builder 58 2012-03-18 16:49:06.000000000 +0100 ./pool/main/libi/libimobiledevice/libimobiledevice2_1.1.1-4_amd64.deb
-builder 23 2012-03-25 22:56:45.000000000 +0200 ./pool/main/libi/libindi/libindi0b_0.9.1-2_amd64.deb
-builder 8 2012-03-25 22:56:45.000000000 +0200 ./pool/main/libi/libindi/libindi-data_0.9.1-2_all.deb
-builder 948 2012-02-17 00:03:09.000000000 +0100 ./pool/main/libi/libint/libint1_1.1.4-1_amd64.deb
-builder 192 2011-04-09 10:47:39.000000000 +0200 ./pool/main/libi/libiodbc2/libiodbc2_3.52.7-2_amd64.deb
-builder 24 2011-04-15 20:02:38.000000000 +0200 ./pool/main/libi/libio-multiplex-perl/libio-multiplex-perl_1.13-1_all.deb
-builder 40 2011-11-15 04:16:36.000000000 +0100 ./pool/main/libi/libio-pty-perl/libio-pty-perl_1.08-1+b2_amd64.deb
-builder 17 2011-12-09 21:50:38.000000000 +0100 ./pool/main/libi/libio-socket-inet6-perl/libio-socket-inet6-perl_2.69-2_all.deb
-builder 24 2012-07-08 23:17:35.000000000 +0200 ./pool/main/libi/libio-socket-ip-perl/libio-socket-ip-perl_0.16-2_all.deb
-builder 67 2012-10-27 18:38:47.000000000 +0200 ./pool/main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_1.76-2_all.deb
-builder 12 2006-11-17 16:17:04.000000000 +0100 ./pool/main/libi/libio-string-perl/libio-string-perl_1.08-2_all.deb
-builder 108 2012-08-31 19:28:48.000000000 +0200 ./pool/main/libi/libipc-run-perl/libipc-run-perl_0.92-1_all.deb
-builder 34 2010-02-11 18:17:34.000000000 +0100 ./pool/main/libi/libipc-shareable-perl/libipc-shareable-perl_0.60-8_all.deb
-builder 32 2012-06-26 01:48:43.000000000 +0200 ./pool/main/libi/libiptcdata/libiptcdata0_1.0.4-3_amd64.deb
-builder 152 2012-04-03 16:51:12.000000000 +0200 ./pool/main/libi/libisofs/libisofs6_1.2.2-1_amd64.deb
-builder 198 2011-05-04 01:36:17.000000000 +0200 ./pool/main/libj/libjaxen-java/libjaxen-java_1.1.3-1_all.deb
-builder 440 2011-11-19 17:18:00.000000000 +0100 ./pool/main/libj/libjaxp1.3-java/libjaxp1.3-java_1.3.05-2_all.deb
-builder 31 2006-08-11 18:02:05.000000000 +0200 ./pool/main/libj/libjcode-pm-perl/libjcode-pm-perl_2.06-1_amd64.deb
-builder 448 2011-04-25 15:47:29.000000000 +0200 ./pool/main/libj/libjcommon-java/libjcommon-java_1.0.16-2_all.deb
-builder 148 2011-11-20 18:48:15.000000000 +0100 ./pool/main/libj/libjdom1-java/libjdom1-java_1.1.2+dfsg-2_all.deb
-builder 1403 2011-04-25 15:47:40.000000000 +0200 ./pool/main/libj/libjfreechart-java/libjfreechart-java_1.0.13-4_all.deb
-builder 114 2011-09-02 23:13:13.000000000 +0200 ./pool/main/libj/libjgoodies-forms-java/libjgoodies-forms-java_1.3.0-2_all.deb
-builder 356 2011-10-24 23:32:27.000000000 +0200 ./pool/main/libj/libjibx1.1-java/libjibx1.1-java_1.1.6a-3_all.deb
-builder 940 2011-12-19 22:44:37.000000000 +0100 ./pool/main/libj/libjlatexmath-java/libjlatexmath-java_0.9.7-1_all.deb
-builder 131 2012-01-29 20:32:49.000000000 +0100 ./pool/main/libj/libjpeg8/libjpeg8_8d-1_amd64.deb
-builder 237 2012-01-29 20:32:49.000000000 +0100 ./pool/main/libj/libjpeg8/libjpeg8-dev_8d-1_amd64.deb
-builder 87 2012-01-29 20:32:49.000000000 +0100 ./pool/main/libj/libjpeg8/libjpeg-progs_8d-1_amd64.deb
-builder 46 2011-08-26 11:35:32.000000000 +0200 ./pool/main/libk/libkate/libkate1_0.4.1-1_amd64.deb
-builder 302 2012-06-18 01:07:00.000000000 +0200 ./pool/main/libk/libkdcraw/libkdcraw20_4.8.4-1_amd64.deb
-builder 43 2012-06-18 00:03:06.000000000 +0200 ./pool/main/libk/libkdcraw/libkdcraw-data_4.8.4-1_all.deb
-builder 20 2012-06-16 12:32:56.000000000 +0200 ./pool/main/libk/libkdeedu/kdeedu-kvtml-data_4.8.4-1_all.deb
-builder 82 2012-06-16 12:32:56.000000000 +0200 ./pool/main/libk/libkdeedu/libkdeedu-data_4.8.4-1_all.deb
-builder 112 2012-06-16 12:32:56.000000000 +0200 ./pool/main/libk/libkdeedu/libkeduvocdocument4_4.8.4-1_amd64.deb
-builder 225 2012-06-18 01:07:58.000000000 +0200 ./pool/main/libk/libkexiv2/libkexiv2-10_4.8.4-1_amd64.deb
-builder 74 2012-06-18 00:03:24.000000000 +0200 ./pool/main/libk/libkexiv2/libkexiv2-data_4.8.4-1_all.deb
-builder 37 2012-06-18 01:08:26.000000000 +0200 ./pool/main/libk/libkipi/libkipi8_4.8.4-1_amd64.deb
-builder 41 2012-06-18 00:03:40.000000000 +0200 ./pool/main/libk/libkipi/libkipi-data_4.8.4-1_all.deb
-builder 96 2012-06-17 03:04:12.000000000 +0200 ./pool/main/libk/libksane/libksane0_4.8.4-1_amd64.deb
-builder 6 2012-06-17 02:20:18.000000000 +0200 ./pool/main/libk/libksane/libksane-data_4.8.4-1_all.deb
-builder 106 2011-06-19 14:33:44.000000000 +0200 ./pool/main/libk/libksba/libksba8_1.2.0-2_amd64.deb
-builder 113 2012-07-18 06:17:07.000000000 +0200 ./pool/main/libl/liblastfm/liblastfm0_0.4.0~git20090710-2_amd64.deb
-builder 34 2011-04-21 09:02:35.000000000 +0200 ./pool/main/libl/liblinear/liblinear1_1.8+dfsg-1_amd64.deb
-builder 20 2011-04-21 09:02:35.000000000 +0200 ./pool/main/libl/liblinear/liblinear-tools_1.8+dfsg-1_amd64.deb
-builder 52 2011-11-15 04:19:05.000000000 +0100 ./pool/main/libl/liblist-moreutils-perl/liblist-moreutils-perl_0.33-1+b1_amd64.deb
-builder 20 2011-11-15 04:19:27.000000000 +0100 ./pool/main/libl/liblocale-gettext-perl/liblocale-gettext-perl_1.05-7+b1_amd64.deb
-builder 16 2012-12-12 00:31:26.000000000 +0100 ./pool/main/libl/liblockfile/liblockfile1_1.09-5_amd64.deb
-builder 19 2012-12-12 00:31:26.000000000 +0100 ./pool/main/libl/liblockfile/liblockfile-bin_1.09-5_amd64.deb
-builder 68 2012-05-30 17:32:07.000000000 +0200 ./pool/main/libl/liblog-dispatch-perl/liblog-dispatch-perl_2.32-1_all.deb
-builder 430 2010-07-21 11:00:55.000000000 +0200 ./pool/main/libl/liblog-log4perl-perl/liblog-log4perl-perl_1.29-1_all.deb
-builder 44 2011-03-12 16:52:13.000000000 +0100 ./pool/main/libl/liblo/liblo7_0.26~repack-7_amd64.deb
-builder 68 2012-02-26 21:50:57.000000000 +0100 ./pool/main/libl/liblouis/liblouis2_2.4.1-1_amd64.deb
-builder 1045 2012-02-26 21:50:57.000000000 +0100 ./pool/main/libl/liblouis/liblouis-data_2.4.1-1_all.deb
-builder 19 2012-02-26 21:50:57.000000000 +0100 ./pool/main/libl/liblouis/python-louis_2.4.1-1_amd64.deb
-builder 30 2012-06-04 19:18:53.000000000 +0200 ./pool/main/libl/liblqr/liblqr-1-0_0.4.1-2_amd64.deb
-builder 24 2011-05-09 16:50:34.000000000 +0200 ./pool/main/libl/liblrdf/liblrdf0_0.4.0-5_amd64.deb
-builder 22 2012-02-17 17:20:27.000000000 +0100 ./pool/main/libl/liblwp-mediatypes-perl/liblwp-mediatypes-perl_6.02-1_all.deb
-builder 8 2012-02-20 19:34:04.000000000 +0100 ./pool/main/libl/liblwp-protocol-https-perl/liblwp-protocol-https-perl_6.03-1_all.deb
-builder 10 2012-06-08 23:42:34.000000000 +0200 ./pool/main/libl/liblwp-useragent-determined-perl/liblwp-useragent-determined-perl_1.06-1_all.deb
-builder 66 2011-10-29 23:17:21.000000000 +0200 ./pool/main/libm/libmaa/libmaa3_1.3.1-1_amd64.deb
-builder 77 2012-01-22 23:47:58.000000000 +0100 ./pool/main/libm/libmad/libmad0_0.15.1b-7_amd64.deb
-builder 89 2012-01-22 23:47:58.000000000 +0100 ./pool/main/libm/libmad/libmad0-dev_0.15.1b-7_amd64.deb
-builder 240 2012-06-25 17:24:11.000000000 +0200 ./pool/main/libm/libmail-imapclient-perl/libmail-imapclient-perl_3.31-2_all.deb
-builder 26 2008-08-26 23:32:02.000000000 +0200 ./pool/main/libm/libmail-sendmail-perl/libmail-sendmail-perl_0.79.16-1_all.deb
-builder 96 2012-06-16 08:02:08.000000000 +0200 ./pool/main/libm/libmailtools-perl/libmailtools-perl_2.09-1_all.deb
-builder 27 2009-08-15 00:08:45.000000000 +0200 ./pool/main/libm/libmath-calc-units-perl/libmath-calc-units-perl_1.07-1_all.deb
-builder 168 2012-02-14 19:47:38.000000000 +0100 ./pool/main/libm/libmatroska/libmatroska5_1.3.0-2_amd64.deb
-builder 82 2009-08-17 00:32:18.000000000 +0200 ./pool/main/libm/libmcrypt/libmcrypt4_2.5.8-3.1_amd64.deb
-builder 115 2012-06-05 20:34:01.000000000 +0200 ./pool/main/libm/libmemcached/libmemcached10_1.0.8-1_amd64.deb
-builder 167 2012-12-21 17:01:06.000000000 +0100 ./pool/main/libm/libmikmod/libmikmod2_3.1.12-5_amd64.deb
-builder 271 2012-12-21 17:01:06.000000000 +0100 ./pool/main/libm/libmikmod/libmikmod2-dev_3.1.12-5_amd64.deb
-builder 20 2011-06-23 21:38:21.000000000 +0200 ./pool/main/libm/libmimic/libmimic0_1.0.4-2.1_amd64.deb
-builder 40 2012-02-14 11:33:06.000000000 +0100 ./pool/main/libm/libmms/libmms0_0.6.2-3_amd64.deb
-builder 230 2011-09-16 18:47:05.000000000 +0200 ./pool/main/libm/libmng/libmng1_1.0.10-3_amd64.deb
-builder 179 2012-04-09 18:18:09.000000000 +0200 ./pool/main/libm/libmodplug/libmodplug1_0.8.8.4-3_amd64.deb
-builder 28 2012-04-09 18:18:09.000000000 +0200 ./pool/main/libm/libmodplug/libmodplug-dev_0.8.8.4-3_all.deb
-builder 13 2012-02-13 09:50:20.000000000 +0100 ./pool/main/libm/libmodule-implementation-perl/libmodule-implementation-perl_0.06-1_all.deb
-builder 18 2012-02-17 10:05:42.000000000 +0100 ./pool/main/libm/libmodule-runtime-perl/libmodule-runtime-perl_0.013-1_all.deb
-builder 38 2012-04-02 21:17:25.000000000 +0200 ./pool/main/libm/libmowgli/libmowgli2_1.0.0-1_amd64.deb
-builder 36 2012-06-21 11:18:21.000000000 +0200 ./pool/main/libm/libmpc/libmpcdec6_0.1~r459-4_amd64.deb
-builder 270 2012-05-14 00:10:25.000000000 +0200 ./pool/main/libm/libmsn/libmsn0.3_4.2-2_amd64.deb
-builder 181 2013-02-17 23:52:29.000000000 +0100 ./pool/main/libm/libmtp/libmtp9_1.1.3-35-g0ece104-5_amd64.deb
-builder 62 2013-02-17 23:52:29.000000000 +0100 ./pool/main/libm/libmtp/libmtp-common_1.1.3-35-g0ece104-5_all.deb
-builder 43 2013-02-17 23:52:29.000000000 +0100 ./pool/main/libm/libmtp/libmtp-runtime_1.1.3-35-g0ece104-5_amd64.deb
-builder 133 2012-04-02 19:47:30.000000000 +0200 ./pool/main/libm/libmusicbrainz3/libmusicbrainz3-6_3.0.2-2.1_amd64.deb
-builder 186 2012-06-08 20:04:09.000000000 +0200 ./pool/main/libm/libmusicbrainz5/libmusicbrainz5-0_5.0.1-2_amd64.deb
-builder 58 2011-12-23 13:02:41.000000000 +0100 ./pool/main/libn/libnagios-plugin-perl/libnagios-plugin-perl_0.36-1_all.deb
-builder 9 2011-09-08 23:03:36.000000000 +0200 ./pool/main/libn/libnatpmp/libnatpmp1_20110808-3_amd64.deb
-builder 16 2012-05-01 18:18:45.000000000 +0200 ./pool/main/libn/libnet-cidr-perl/libnet-cidr-perl_0.15-1_all.deb
-builder 46 2011-06-25 07:48:15.000000000 +0200 ./pool/main/libn/libnet-daemon-perl/libnet-daemon-perl_0.48-1_all.deb
-builder 215 2011-11-15 20:03:28.000000000 +0100 ./pool/main/libn/libnet-dbus-perl/libnet-dbus-perl_1.0.0-1+b1_amd64.deb
-builder 291 2011-11-15 04:24:08.000000000 +0100 ./pool/main/libn/libnet-dns-perl/libnet-dns-perl_0.66-2+b2_amd64.deb
-builder 12 2011-04-20 19:20:26.000000000 +0200 ./pool/main/libn/libnet-domain-tld-perl/libnet-domain-tld-perl_1.69-1_all.deb
-builder 37 2012-06-03 09:03:21.000000000 +0200 ./pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3_1.0.1-1_amd64.deb
-builder 24 2012-06-02 15:48:56.000000000 +0200 ./pool/main/libn/libnet-http-perl/libnet-http-perl_6.03-2_all.deb
-builder 29 2011-05-12 22:49:02.000000000 +0200 ./pool/main/libn/libnet-ip-perl/libnet-ip-perl_1.25-3_all.deb
-builder 381 2012-02-08 00:52:15.000000000 +0100 ./pool/main/libn/libnet-ldap-perl/libnet-ldap-perl_0.4400-1_all.deb
-builder 21 2011-11-15 05:23:16.000000000 +0100 ./pool/main/libn/libnet-libidn-perl/libnet-libidn-perl_0.12.ds-1+b3_amd64.deb
-builder 60 2011-10-17 17:33:50.000000000 +0200 ./pool/main/libn/libnet/libnet1_1.1.4-2.1_amd64.deb
-builder 30 2012-03-25 22:57:48.000000000 +0200 ./pool/main/libn/libnet-netmask-perl/libnet-netmask-perl_1.9016-1_all.deb
-builder 205 2012-06-25 17:24:42.000000000 +0200 ./pool/main/libn/libnet-server-perl/libnet-server-perl_2.006-1_all.deb
-builder 11 2010-03-09 18:17:48.000000000 +0100 ./pool/main/libn/libnet-smtp-tls-perl/libnet-smtp-tls-perl_0.12-1_all.deb
-builder 112 2011-08-24 18:32:34.000000000 +0200 ./pool/main/libn/libnet-snmp-perl/libnet-snmp-perl_6.0.1-2_all.deb
-builder 327 2012-06-03 02:08:52.000000000 +0200 ./pool/main/libn/libnet-ssleay-perl/libnet-ssleay-perl_1.48-1+b1_amd64.deb
-builder 15 2013-01-01 20:14:23.000000000 +0100 ./pool/main/libn/libnfnetlink/libnfnetlink0_1.0.0-1.1_amd64.deb
-builder 38 2012-06-09 11:05:48.000000000 +0200 ./pool/main/libn/libnfsidmap/libnfsidmap2_0.25-4_amd64.deb
-builder 25 2012-04-08 00:35:35.000000000 +0200 ./pool/main/libn/libnice/gstreamer0.10-nice_0.1.2-1_amd64.deb
-builder 104 2012-04-08 00:35:35.000000000 +0200 ./pool/main/libn/libnice/libnice10_0.1.2-1_amd64.deb
-builder 56 2012-06-30 20:25:32.000000000 +0200 ./pool/main/libn/libnl3/libnl-3-200_3.2.7-4_amd64.deb
-builder 36 2012-06-30 20:25:32.000000000 +0200 ./pool/main/libn/libnl3/libnl-3-200-udeb_3.2.7-4_amd64.udeb
-builder 20 2012-06-30 20:25:32.000000000 +0200 ./pool/main/libn/libnl3/libnl-genl-3-200_3.2.7-4_amd64.deb
-builder 8 2012-06-30 20:25:32.000000000 +0200 ./pool/main/libn/libnl3/libnl-genl-3-200-udeb_3.2.7-4_amd64.udeb
-builder 121 2012-06-30 20:25:32.000000000 +0200 ./pool/main/libn/libnl3/libnl-route-3-200_3.2.7-4_amd64.deb
-builder 139 2011-07-01 01:02:40.000000000 +0200 ./pool/main/libn/libnl/libnl1_1.1-7_amd64.deb
-builder 31 2012-03-27 23:48:32.000000000 +0200 ./pool/main/libn/libnotify/libnotify4_0.7.5-1_amd64.deb
-builder 24 2012-03-27 23:48:32.000000000 +0200 ./pool/main/libn/libnotify/libnotify-bin_0.7.5-1_amd64.deb
-builder 1164 2012-03-25 22:58:14.000000000 +0200 ./pool/main/libn/libnova/libnova-0.14-0_0.14.0-2_amd64.deb
-builder 14 2012-01-17 22:18:50.000000000 +0100 ./pool/main/libn/libnss-myhostname/libnss-myhostname_0.3-4_amd64.deb
-builder 20 2012-09-21 14:32:12.000000000 +0200 ./pool/main/libo/liboauth/liboauth0_0.9.4-3.1_amd64.deb
-builder 59 2012-04-17 08:18:18.000000000 +0200 ./pool/main/libo/libofa/libofa0_0.9.3-5_amd64.deb
-builder 21 2012-06-08 21:49:09.000000000 +0200 ./pool/main/libo/libogg/libogg0_1.3.0-4_amd64.deb
-builder 93 2012-06-08 21:49:09.000000000 +0200 ./pool/main/libo/libogg/libogg-dev_1.3.0-4_amd64.deb
-builder 39 2010-04-29 15:32:23.000000000 +0200 ./pool/main/libo/liboggz/liboggz2_1.1.1-1_amd64.deb
-builder 34 2012-05-02 23:58:13.000000000 +0200 ./pool/main/libo/liboglappth/liboglappth2_1.0.0-2_amd64.deb
-builder 153 2010-08-18 10:33:24.000000000 +0200 ./pool/main/libo/liboil/liboil0.3_0.3.17-2_amd64.deb
-builder 142 2008-01-07 18:32:05.000000000 +0100 ./pool/main/libo/libonig/libonig2_5.9.1-1_amd64.deb
-builder 24 2009-06-22 11:33:28.000000000 +0200 ./pool/main/libo/libopenobex/libopenobex1_1.5-2_amd64.deb
-builder 148 2012-04-06 18:50:00.000000000 +0200 ./pool/main/libo/libopenraw/libopenraw1_0.0.9-3+b1_amd64.deb
-builder 52 2012-05-27 18:51:46.000000000 +0200 ./pool/main/libo/libotf/libotf0_0.9.12-2_amd64.deb
-builder 77 2012-08-07 13:02:16.000000000 +0200 ./pool/main/libo/libotr/libotr2_3.2.1-1_amd64.deb
-builder 14 2012-03-19 21:54:35.000000000 +0100 ./pool/main/libp/libpackage-deprecationmanager-perl/libpackage-deprecationmanager-perl_0.13-1_all.deb
-builder 20 2011-09-30 17:47:42.000000000 +0200 ./pool/main/libp/libpackage-stash-perl/libpackage-stash-perl_0.33-1_all.deb
-builder 20 2011-11-15 05:25:35.000000000 +0100 ./pool/main/libp/libpackage-stash-xs-perl/libpackage-stash-xs-perl_0.24-1+b1_amd64.deb
-builder 88 2012-06-03 06:04:41.000000000 +0200 ./pool/main/libp/libpam-krb5/libpam-krb5_4.6-1_amd64.deb
-builder 221 2011-11-15 17:45:14.000000000 +0100 ./pool/main/libp/libpango-perl/libpango-perl_1.222-1+b1_amd64.deb
-builder 246 2013-04-28 09:40:19.000000000 +0200 ./pool/main/libp/libpano13/libpano13-2_2.9.18+dfsg-5_amd64.deb
-builder 93 2013-04-28 09:40:19.000000000 +0200 ./pool/main/libp/libpano13/libpano13-bin_2.9.18+dfsg-5_amd64.deb
-builder 22 2012-05-09 21:32:26.000000000 +0200 ./pool/main/libp/libpaper/libpaper1_1.1.24+nmu2_amd64.deb
-builder 18 2012-05-09 21:32:26.000000000 +0200 ./pool/main/libp/libpaper/libpaper-utils_1.1.24+nmu2_amd64.deb
-builder 26 2011-11-17 23:33:13.000000000 +0100 ./pool/main/libp/libparams-classify-perl/libparams-classify-perl_0.013-4_amd64.deb
-builder 26 2012-03-24 19:33:01.000000000 +0100 ./pool/main/libp/libparams-util-perl/libparams-util-perl_1.07-1_amd64.deb
-builder 66 2012-02-12 15:51:45.000000000 +0100 ./pool/main/libp/libparams-validate-perl/libparams-validate-perl_1.06-1_amd64.deb
-builder 61 2011-04-04 20:05:30.000000000 +0200 ./pool/main/libp/libparse-debianchangelog-perl/libparse-debianchangelog-perl_1.2.0-1_all.deb
-builder 169 2012-04-13 00:47:23.000000000 +0200 ./pool/main/libp/libparse-recdescent-perl/libparse-recdescent-perl_1.967009+dfsg-1_all.deb
-builder 139 2012-06-13 23:50:20.000000000 +0200 ./pool/main/libp/libpcap/libpcap0.8_1.3.0-1_amd64.deb
-builder 46 2012-04-22 12:33:01.000000000 +0200 ./pool/main/libp/libpciaccess/libpciaccess0_0.13.1-2_amd64.deb
-builder 104 2012-04-01 00:02:44.000000000 +0200 ./pool/main/libp/libpeas/gir1.2-peas-1.0_1.4.0-2_amd64.deb
-builder 168 2012-04-01 00:02:44.000000000 +0200 ./pool/main/libp/libpeas/libpeas-1.0-0_1.4.0-2_amd64.deb
-builder 145 2012-04-01 00:02:44.000000000 +0200 ./pool/main/libp/libpeas/libpeas-common_1.4.0-2_all.deb
-builder 39 2012-03-03 11:03:07.000000000 +0100 ./pool/main/libp/libpipeline/libpipeline1_1.2.1-1_amd64.deb
-builder 27 2012-01-13 22:07:32.000000000 +0100 ./pool/main/libp/libplist/libplist1_1.8-1_amd64.deb
-builder 36 2009-02-12 14:02:03.000000000 +0100 ./pool/main/libp/libplrpc-perl/libplrpc-perl_0.2020-2_all.deb
-builder 186 2012-04-09 05:32:48.000000000 +0200 ./pool/main/libp/libpng/libpng12-0_1.2.49-1_amd64.deb
-builder 261 2012-04-09 05:32:48.000000000 +0200 ./pool/main/libp/libpng/libpng12-dev_1.2.49-1_amd64.deb
-builder 610 2012-04-21 12:34:03.000000000 +0200 ./pool/main/libp/libpodofo/libpodofo0.9.0_0.9.0-1.1+b1_amd64.deb
-builder 35 2013-02-05 09:49:11.000000000 +0100 ./pool/main/libp/libproxy/libproxy0_0.3.1-6_amd64.deb
-builder 10 2013-02-05 09:49:11.000000000 +0100 ./pool/main/libp/libproxy/libproxy-tools_0.3.1-6_amd64.deb
-builder 83 2012-09-30 19:27:57.000000000 +0200 ./pool/main/libp/libpst/libpst4_0.6.54-4.1_amd64.deb
-builder 4 2011-11-11 19:02:38.000000000 +0100 ./pool/main/libp/libpthread-stubs/libpthread-stubs0_0.3-3_amd64.deb
-builder 4 2011-11-11 19:02:38.000000000 +0100 ./pool/main/libp/libpthread-stubs/libpthread-stubs0-dev_0.3-3_amd64.deb
-builder 1 2011-11-11 19:02:38.000000000 +0100 ./pool/main/libp/libpthread-stubs/libpthread-stubs0-udeb_0.3-3_amd64.udeb
-builder 768 2012-06-17 15:05:22.000000000 +0200 ./pool/main/libq/libqalculate/libqalculate5_0.9.7-8_amd64.deb
-builder 141 2012-06-17 15:05:22.000000000 +0200 ./pool/main/libq/libqalculate/libqalculate5-data_0.9.7-8_all.deb
-builder 351 2012-05-21 20:29:29.000000000 +0200 ./pool/main/libq/libquicktime/libquicktime2_1.2.4-3_amd64.deb
-builder 20 2012-04-25 10:50:56.000000000 +0200 ./pool/main/libq/libquvi/libquvi7_0.4.1-1_amd64.deb
-builder 38 2012-09-28 10:26:54.000000000 +0200 ./pool/main/libq/libquvi-scripts/libquvi-scripts_0.4.8-3_all.deb
-builder 49 2012-06-03 23:49:27.000000000 +0200 ./pool/main/libr/libraw1394/libraw1394-11_2.0.9-1_amd64.deb
-builder 334 2012-05-27 12:34:03.000000000 +0200 ./pool/main/libr/libraw/libraw5_0.14.6-2_amd64.deb
-builder 20 2012-06-11 20:20:05.000000000 +0200 ./pool/main/libr/libreadonly-perl/libreadonly-perl_1.03-4_all.deb
-builder 11 2011-11-15 05:27:53.000000000 +0100 ./pool/main/libr/libreadonly-xs-perl/libreadonly-xs-perl_1.04-2+b3_amd64.deb
-builder 2033 2012-04-16 17:33:13.000000000 +0200 ./pool/main/libr/librecad/librecad_1.0.2+nolibs-1_amd64.deb
-builder 2509 2012-04-16 17:02:18.000000000 +0200 ./pool/main/libr/librecad/librecad-data_1.0.2+nolibs-1_all.deb
-builder 166 2011-12-11 17:02:45.000000000 +0100 ./pool/main/libr/libregexp-common-perl/libregexp-common-perl_2011121001-1_all.deb
-builder 35 2011-08-16 22:49:31.000000000 +0200 ./pool/main/libr/libregexp-java/libregexp-java_1.5-3_all.deb
-builder 129 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/fonts-opensymbol_102.2+LibO3.5.4+dfsg-4_all.deb
-builder 49 2012-11-21 14:11:38.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice_3.5.4+dfsg-4_amd64.deb
-builder 1878 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-base_3.5.4+dfsg-4_amd64.deb
-builder 670 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-base-core_3.5.4+dfsg-4_amd64.deb
-builder 5007 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-calc_3.5.4+dfsg-4_amd64.deb
-builder 18119 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-common_3.5.4+dfsg-4_all.deb
-builder 27666 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-core_3.5.4+dfsg-4_amd64.deb
-builder 2502 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-draw_3.5.4+dfsg-4_amd64.deb
-builder 55 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-emailmerge_3.5.4+dfsg-4_all.deb
-builder 5806 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-filter-binfilter_3.5.4+dfsg-4_amd64.deb
-builder 156 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-filter-mobiledev_3.5.4+dfsg-4_all.deb
-builder 98 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-gnome_3.5.4+dfsg-4_amd64.deb
-builder 231 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-gtk_3.5.4+dfsg-4_amd64.deb
-builder 5815 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-da_3.5.4+dfsg-4_all.deb
-builder 6073 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-de_3.5.4+dfsg-4_all.deb
-builder 6771 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-el_3.5.4+dfsg-4_all.deb
-builder 5958 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-es_3.5.4+dfsg-4_all.deb
-builder 5997 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-fr_3.5.4+dfsg-4_all.deb
-builder 5903 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-it_3.5.4+dfsg-4_all.deb
-builder 7871 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-ja_3.5.4+dfsg-4_all.deb
-builder 5849 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-pt-br_3.5.4+dfsg-4_all.deb
-builder 5840 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-sv_3.5.4+dfsg-4_all.deb
-builder 7336 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-help-zh-tw_3.5.4+dfsg-4_all.deb
-builder 607 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-impress_3.5.4+dfsg-4_amd64.deb
-builder 3100 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-java-common_3.5.4+dfsg-4_all.deb
-builder 125 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-kde_3.5.4+dfsg-4_amd64.deb
-builder 481 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-ca_3.5.4+dfsg-4_all.deb
-builder 1342 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-da_3.5.4+dfsg-4_all.deb
-builder 1318 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-de_3.5.4+dfsg-4_all.deb
-builder 459 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-el_3.5.4+dfsg-4_all.deb
-builder 411 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-en-za_3.5.4+dfsg-4_all.deb
-builder 1322 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-es_3.5.4+dfsg-4_all.deb
-builder 1303 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-fr_3.5.4+dfsg-4_all.deb
-builder 430 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-he_3.5.4+dfsg-4_all.deb
-builder 1318 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-it_3.5.4+dfsg-4_all.deb
-builder 1377 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-ja_3.5.4+dfsg-4_all.deb
-builder 424 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-nb_3.5.4+dfsg-4_all.deb
-builder 1348 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-nl_3.5.4+dfsg-4_all.deb
-builder 427 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-nn_3.5.4+dfsg-4_all.deb
-builder 1311 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-pt-br_3.5.4+dfsg-4_all.deb
-builder 1289 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-sv_3.5.4+dfsg-4_all.deb
-builder 1342 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-l10n-zh-tw_3.5.4+dfsg-4_all.deb
-builder 360 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-math_3.5.4+dfsg-4_amd64.deb
-builder 754 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-report-builder-bin_3.5.4+dfsg-4_amd64.deb
-builder 2042 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-style-crystal_3.5.4+dfsg-4_all.deb
-builder 1633 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-style-galaxy_3.5.4+dfsg-4_all.deb
-builder 2017 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-style-oxygen_3.5.4+dfsg-4_all.deb
-builder 1682 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-style-tango_3.5.4+dfsg-4_all.deb
-builder 6252 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/libreoffice-writer_3.5.4+dfsg-4_amd64.deb
-builder 255 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/python-uno_3.5.4+dfsg-4_amd64.deb
-builder 603 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/uno-libs3_3.5.4+dfsg-4_amd64.deb
-builder 1979 2012-11-21 14:11:39.000000000 +0100 ./pool/main/libr/libreoffice/ure_3.5.4+dfsg-4_amd64.deb
-builder 36 2012-06-25 13:04:00.000000000 +0200 ./pool/main/libr/librest/librest-0.7-0_0.7.12-3_amd64.deb
-builder 17 2012-06-25 13:04:00.000000000 +0200 ./pool/main/libr/librest/librest-extras-0.7-0_0.7.12-3_amd64.deb
-builder 249 2012-04-17 17:38:21.000000000 +0200 ./pool/main/libr/librsvg/librsvg2-2_2.36.1-1_amd64.deb
-builder 172 2012-04-17 17:38:21.000000000 +0200 ./pool/main/libr/librsvg/librsvg2-bin_2.36.1-1_amd64.deb
-builder 159 2012-04-17 17:38:21.000000000 +0200 ./pool/main/libr/librsvg/librsvg2-common_2.36.1-1_amd64.deb
-builder 71 2012-02-09 14:49:00.000000000 +0100 ./pool/main/libr/librsync/librsync1_0.9.7-9_amd64.deb
-builder 1320 2012-06-18 12:05:13.000000000 +0200 ./pool/main/libs/libsamplerate/libsamplerate0_0.1.8-5_amd64.deb
-builder 145 2012-07-06 01:17:12.000000000 +0200 ./pool/main/libs/libsbsms/libsbsms10_2.0.1-1_amd64.deb
-builder 216 2012-06-21 15:50:35.000000000 +0200 ./pool/main/libs/libsdl1.2/libsdl1.2debian_1.2.15-5_amd64.deb
-builder 884 2012-06-21 15:50:35.000000000 +0200 ./pool/main/libs/libsdl1.2/libsdl1.2-dev_1.2.15-5_amd64.deb
-builder 89 2012-06-10 08:47:07.000000000 +0200 ./pool/main/libs/libselinux/libselinux1_2.1.9-5_amd64.deb
-builder 100 2012-06-10 09:02:07.000000000 +0200 ./pool/main/libs/libsemanage/libsemanage1_2.1.6-6_amd64.deb
-builder 23 2012-06-10 09:02:07.000000000 +0200 ./pool/main/libs/libsemanage/libsemanage-common_2.1.6-6_all.deb
-builder 133 2012-04-01 01:06:59.000000000 +0200 ./pool/main/libs/libsepol/libsepol1_2.1.4-3_amd64.deb
-builder 45 2008-10-11 20:17:04.000000000 +0200 ./pool/main/libs/libsexy/libsexy2_0.1.11-2+b1_amd64.deb
-builder 40 2012-02-15 18:47:16.000000000 +0100 ./pool/main/libs/libshout/libshout3_2.2.2-8_amd64.deb
-builder 79 2008-01-18 23:32:03.000000000 +0100 ./pool/main/libs/libsidplay/libsidplay1_1.36.59-5_amd64.deb
-builder 42 2012-06-20 17:11:01.000000000 +0200 ./pool/main/libs/libsigc++-2.0/libsigc++-2.0-0c2a_2.2.10-0.2_amd64.deb
-builder 29 2011-04-08 23:47:40.000000000 +0200 ./pool/main/libs/libsigsegv/libsigsegv2_2.9-4_amd64.deb
-builder 26 2010-06-02 21:59:33.000000000 +0200 ./pool/main/libs/libsmf/libsmf0_1.3-2_amd64.deb
-builder 148 2013-02-25 21:28:13.000000000 +0100 ./pool/main/libs/libsmi/libsmi2ldbl_0.4.8+dfsg2-7_amd64.deb
-builder 34 2012-04-10 20:49:23.000000000 +0200 ./pool/main/libs/libsm/libsm6_1.2.1-2_amd64.deb
-builder 37 2012-04-10 20:49:23.000000000 +0200 ./pool/main/libs/libsm/libsm-dev_1.2.1-2_amd64.deb
-builder 235 2012-06-18 12:05:31.000000000 +0200 ./pool/main/libs/libsndfile/libsndfile1_1.0.25-5_amd64.deb
-builder 117 2012-06-18 12:05:31.000000000 +0200 ./pool/main/libs/libsndfile/sndfile-programs_1.0.25-5_amd64.deb
-builder 139 2013-03-26 00:00:34.000000000 +0100 ./pool/main/libs/libsocialweb/libsocialweb0_0.25.20-2.1_amd64.deb
-builder 21 2013-03-26 00:00:34.000000000 +0100 ./pool/main/libs/libsocialweb/libsocialweb-client2_0.25.20-2.1_amd64.deb
-builder 60 2013-03-26 00:00:34.000000000 +0100 ./pool/main/libs/libsocialweb/libsocialweb-common_0.25.20-2.1_all.deb
-builder 9 2013-03-26 00:00:34.000000000 +0100 ./pool/main/libs/libsocialweb/libsocialweb-service_0.25.20-2.1_amd64.deb
-builder 26 2011-11-15 05:31:46.000000000 +0100 ./pool/main/libs/libsocket6-perl/libsocket6-perl_0.23-1+b2_amd64.deb
-builder 62 2012-04-17 21:05:48.000000000 +0200 ./pool/main/libs/libsoup2.4/gir1.2-soup-2.4_2.38.1-2_amd64.deb
-builder 217 2012-04-17 21:05:48.000000000 +0200 ./pool/main/libs/libsoup2.4/libsoup2.4-1_2.38.1-2_amd64.deb
-builder 48 2012-04-17 21:05:48.000000000 +0200 ./pool/main/libs/libsoup2.4/libsoup-gnome2.4-1_2.38.1-2_amd64.deb
-builder 50 2012-08-15 12:39:47.000000000 +0200 ./pool/main/libs/libspectre/libspectre1_0.2.7-2_amd64.deb
-builder 8 2010-07-05 16:48:07.000000000 +0200 ./pool/main/libs/libspnav/libspnav0_0.2.2-1_amd64.deb
-builder 131 2012-08-15 07:14:32.000000000 +0200 ./pool/main/libs/libssh2/libssh2-1_1.4.2-1.1_amd64.deb
-builder 128 2013-02-05 01:18:53.000000000 +0100 ./pool/main/libs/libssh/libssh-4_0.5.4-1_amd64.deb
-builder 11 2012-03-02 00:47:18.000000000 +0100 ./pool/main/libs/libsub-install-perl/libsub-install-perl_0.926-1_all.deb
-builder 10 2011-11-15 05:33:28.000000000 +0100 ./pool/main/libs/libsub-name-perl/libsub-name-perl_0.05-1+b2_amd64.deb
-builder 123 2012-06-17 20:07:50.000000000 +0200 ./pool/main/libs/libsvm/libsvm-tools_3.12-1_amd64.deb
-builder 21 2011-07-31 20:18:28.000000000 +0200 ./pool/main/libs/libswitch-perl/libswitch-perl_2.16-2_all.deb
-builder 12 2008-03-12 21:47:25.000000000 +0100 ./pool/main/libs/libsys-hostname-long-perl/libsys-hostname-long-perl_1.4-2_all.deb
-builder 50 2011-08-30 20:02:19.000000000 +0200 ./pool/main/libt/libtablelayout-java/libtablelayout-java_20090826-2_all.deb
-builder 24 2012-06-23 01:19:10.000000000 +0200 ./pool/main/libt/libtar/libtar0_1.2.16-1_amd64.deb
-builder 67 2012-06-07 18:32:52.000000000 +0200 ./pool/main/libt/libtasn1-3/libtasn1-3_2.13-2_amd64.deb
-builder 41 2007-09-08 18:02:03.000000000 +0200 ./pool/main/libt/libtcd/libtcd0_2.2.2-1_amd64.deb
-builder 32 2011-11-15 05:36:23.000000000 +0100 ./pool/main/libt/libterm-readkey-perl/libterm-readkey-perl_2.30-4+b2_amd64.deb
-builder 11 2011-11-15 14:54:56.000000000 +0100 ./pool/main/libt/libtext-charwidth-perl/libtext-charwidth-perl_0.04-7+b1_amd64.deb
-builder 18 2011-11-28 05:48:53.000000000 +0100 ./pool/main/libt/libtext-iconv-perl/libtext-iconv-perl_1.7-5_amd64.deb
-builder 27 2011-11-15 06:43:28.000000000 +0100 ./pool/main/libt/libtext-unaccent-perl/libtext-unaccent-perl_1.08-1+b3_amd64.deb
-builder 9 2009-06-10 01:17:04.000000000 +0200 ./pool/main/libt/libtext-wrapi18n-perl/libtext-wrapi18n-perl_0.06-7_all.deb
-builder 42 2012-08-10 13:02:22.000000000 +0200 ./pool/main/libt/libthai/libthai0_0.1.18-2_amd64.deb
-builder 151 2012-08-10 13:02:22.000000000 +0200 ./pool/main/libt/libthai/libthai-data_0.1.18-2_all.deb
-builder 389 2012-05-11 17:12:40.000000000 +0200 ./pool/main/libt/libtheora/libtheora0_1.1.1+dfsg.1-3.1_amd64.deb
-builder 50 2010-03-18 19:03:10.000000000 +0100 ./pool/main/libt/libticables/libticables2-1_1.2.0-2_amd64.deb
-builder 123 2009-06-19 15:47:14.000000000 +0200 ./pool/main/libt/libticalcs/libticalcs2-7_1.1.3+dfsg1-1_amd64.deb
-uilder 17 2012-09-15 18:31:43.000000000 +0200 ./pool/main/libt/libticonv/libticonv3_1.1.0-1.1_amd64.deb
-uilder 12 2002-09-07 15:32:12.000000000 +0200 ./pool/main/libt/libtie-ixhash-perl/libtie-ixhash-perl_1.21-2_all.deb
-uilder 70 2009-06-17 14:49:59.000000000 +0200 ./pool/main/libt/libtifiles/libtifiles2-5_1.1.1-1_amd64.deb
-uilder 41 2010-01-14 22:43:30.000000000 +0100 ./pool/main/libt/libtimedate-perl/libtimedate-perl_1.2000-1_all.deb
-uilder 87 2011-07-10 23:18:18.000000000 +0200 ./pool/main/libt/libtirpc/libtirpc1_0.2.2-5_amd64.deb
-uilder 64 2011-01-31 09:32:21.000000000 +0100 ./pool/main/libt/libtommath/libtommath0_0.42.0-1_amd64.deb
-uilder 344 2012-06-16 02:18:29.000000000 +0200 ./pool/main/libt/libtool/libltdl7_2.4.2-1.1_amd64.deb
-uilder 18 2011-08-31 20:49:35.000000000 +0200 ./pool/main/libt/libtry-tiny-perl/libtry-tiny-perl_0.11-1_all.deb
-uilder 78 2011-11-15 15:11:10.000000000 +0100 ./pool/main/libu/libunicode-map8-perl/libunicode-map8-perl_0.13+dfsg-3+b2_amd64.deb
-uilder 441 2011-11-15 06:45:10.000000000 +0100 ./pool/main/libu/libunicode-map-perl/libunicode-map-perl_0.112-10+b3_amd64.deb
-uilder 16 2006-10-04 00:21:12.000000000 +0200 ./pool/main/libu/libunicode-maputf8-perl/libunicode-maputf8-perl_1.11-2_all.deb
-uilder 133 2012-01-29 13:09:48.000000000 +0100 ./pool/main/libu/libunicode-string-perl/libunicode-string-perl_2.09-5_amd64.deb
-uilder 52 2011-09-29 01:34:13.000000000 +0200 ./pool/main/libu/libunique3/libunique-3.0-0_3.0.2-1_amd64.deb
-uilder 425 2011-10-26 23:47:26.000000000 +0200 ./pool/main/libu/libunistring/libunistring0_0.9.3-5_amd64.deb
-uilder 177 2013-02-01 22:43:47.000000000 +0100 ./pool/main/libu/libupnp/libupnp6_1.6.17-1.2_amd64.deb
-uilder 99 2012-03-27 18:33:01.000000000 +0200 ./pool/main/libu/liburi-perl/liburi-perl_1.60-1_all.deb
-uilder 23 2012-10-02 22:22:18.000000000 +0200 ./pool/main/libu/libusb/libusb-0.1-4_0.1.12-20+nmu1_amd64.deb
-uilder 13 2012-10-02 22:22:18.000000000 +0200 ./pool/main/libu/libusb/libusb-0.1-udeb_0.1.12-20+nmu1_amd64.udeb
-uilder 40 2012-06-04 23:49:14.000000000 +0200 ./pool/main/libu/libusbx/libusb-1.0-0_1.0.11-1_amd64.deb
-uilder 23 2012-06-04 23:49:14.000000000 +0200 ./pool/main/libu/libusbx/libusb-1.0-0-udeb_1.0.11-1_amd64.udeb
-uilder 8 2011-02-21 13:47:17.000000000 +0100 ./pool/main/libu/libutempter/libutempter0_1.1.5-4_amd64.deb
-uilder 10 2012-10-14 18:19:11.000000000 +0200 ./pool/main/libu/libuuid-perl/libuuid-perl_0.02-5_amd64.deb
-uilder 40 2012-03-18 19:33:07.000000000 +0100 ./pool/main/libv/libva/libva1_1.0.15-4_amd64.deb
-uilder 18 2012-03-18 19:33:07.000000000 +0100 ./pool/main/libv/libva/libva-x11-1_1.0.15-4_amd64.deb
-uilder 31 2012-08-16 02:46:02.000000000 +0200 ./pool/main/libv/libvdpau/libvdpau1_0.4.1-7_amd64.deb
-uilder 11 2011-11-28 16:35:00.000000000 +0100 ./pool/main/libv/libverto/libverto1_0.2.2-1_amd64.deb
-uilder 6 2011-11-28 16:35:00.000000000 +0100 ./pool/main/libv/libverto/libverto-libev1_0.2.2-1_amd64.deb
-uilder 183 2012-05-31 23:03:43.000000000 +0200 ./pool/main/libv/libvisio/libvisio-0.0-0_0.0.17-1_amd64.deb
-uilder 139 2012-06-30 01:25:48.000000000 +0200 ./pool/main/libv/libvisual/libvisual-0.4-0_0.4.0-5_amd64.deb
-uilder 144 2012-03-10 00:17:56.000000000 +0100 ./pool/main/libv/libvisual-plugins/libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64.deb
-uilder 270 2012-05-06 14:50:46.000000000 +0200 ./pool/main/libv/libvncserver/libvncserver0_0.9.9+dfsg-1_amd64.deb
-uilder 116 2012-10-21 15:55:52.000000000 +0200 ./pool/main/libv/libvoikko/libvoikko1_3.5-1.1_amd64.deb
-uilder 107 2012-05-07 14:21:14.000000000 +0200 ./pool/main/libv/libvorbis/libvorbis0a_1.3.2-1.3_amd64.deb
-uilder 465 2012-05-07 14:21:14.000000000 +0200 ./pool/main/libv/libvorbis/libvorbis-dev_1.3.2-1.3_amd64.deb
-uilder 140 2012-05-07 14:21:14.000000000 +0200 ./pool/main/libv/libvorbis/libvorbisenc2_1.3.2-1.3_amd64.deb
-uilder 25 2012-05-07 14:21:14.000000000 +0200 ./pool/main/libv/libvorbis/libvorbisfile3_1.3.2-1.3_amd64.deb
-uilder 283 2012-05-14 11:23:15.000000000 +0200 ./pool/main/libv/libvpx/libvpx1_1.1.0-1_amd64.deb
-uilder 18 2012-09-29 13:18:46.000000000 +0200 ./pool/main/libw/libwacom/libwacom2_0.6-1_amd64.deb
-uilder 10 2012-09-29 13:18:46.000000000 +0200 ./pool/main/libw/libwacom/libwacom-common_0.6-1_all.deb
-uilder 112 2013-04-03 05:35:21.000000000 +0200 ./pool/main/libw/libwebp/libwebp2_0.1.3-3+nmu1_amd64.deb
-uilder 189 2013-02-21 23:27:26.000000000 +0100 ./pool/main/libw/libwmf/libwmf0.2-7_0.2.8.4-10.3_amd64.deb
-uilder 37 2013-02-21 23:27:26.000000000 +0100 ./pool/main/libw/libwmf/libwmf-bin_0.2.8.4-10.3_amd64.deb
-uilder 60 2012-05-14 20:04:13.000000000 +0200 ./pool/main/libw/libwnck3/gir1.2-wnck-3.0_3.4.2-1_amd64.deb
-uilder 154 2012-05-14 20:04:13.000000000 +0200 ./pool/main/libw/libwnck3/libwnck-3-0_3.4.2-1_amd64.deb
-uilder 405 2012-05-14 20:04:13.000000000 +0200 ./pool/main/libw/libwnck3/libwnck-3-common_3.4.2-1_all.deb
-uilder 133 2011-10-15 22:50:53.000000000 +0200 ./pool/main/libw/libwnck/libwnck22_2.30.7-1_amd64.deb
-uilder 353 2011-10-15 21:32:29.000000000 +0200 ./pool/main/libw/libwnck/libwnck-common_2.30.7-1_all.deb
-uilder 370 2012-03-16 14:34:38.000000000 +0100 ./pool/main/libw/libwpd/libwpd-0.9-9_0.9.4-3_amd64.deb
-uilder 91 2011-10-04 23:06:50.000000000 +0200 ./pool/main/libw/libwpg/libwpg-0.2-2_0.2.1-1_amd64.deb
-uilder 197 2012-05-31 23:03:59.000000000 +0200 ./pool/main/libw/libwps/libwps-0.2-2_0.2.7-1_amd64.deb
-uilder 199 2012-02-19 23:39:39.000000000 +0100 ./pool/main/libw/libwww-perl/libwww-perl_6.04-1_all.deb
-uilder 14 2011-03-16 14:03:59.000000000 +0100 ./pool/main/libw/libwww-robotrules-perl/libwww-robotrules-perl_6.01-1_all.deb
-uilder 159 2012-06-05 19:36:52.000000000 +0200 ./pool/main/libx/libx11-protocol-perl/libx11-protocol-perl_0.56-4_all.deb
-uilder 84 2012-06-09 01:20:22.000000000 +0200 ./pool/main/libx/libx86/libx86-1_1.1+ds1-10_amd64.deb
-uilder 3281 2011-12-05 22:58:24.000000000 +0100 ./pool/main/libx/libxalan2-java/libxalan2-java_2.7.1-7_all.deb
-uilder 19 2012-04-09 19:02:54.000000000 +0200 ./pool/main/libx/libxau/libxau6_1.0.7-1_amd64.deb
-uilder 22 2012-04-09 19:02:54.000000000 +0200 ./pool/main/libx/libxau/libxau-dev_1.0.7-1_amd64.deb
-uilder 221 2012-04-12 14:03:16.000000000 +0200 ./pool/main/libx/libxaw/libxaw7_1.0.10-2_amd64.deb
-uilder 17 2011-06-11 15:18:21.000000000 +0200 ./pool/main/libx/libxcomposite/libxcomposite1_0.4.3-2_amd64.deb
-uilder 20 2011-06-11 15:18:21.000000000 +0200 ./pool/main/libx/libxcomposite/libxcomposite-dev_0.4.3-2_amd64.deb
-uilder 14 2011-06-11 15:49:21.000000000 +0200 ./pool/main/libx/libxdamage/libxdamage1_1.1.3-2_amd64.deb
-uilder 14 2011-06-11 15:49:21.000000000 +0200 ./pool/main/libx/libxdamage/libxdamage-dev_1.1.3-2_amd64.deb
-uilder 26 2012-04-14 18:47:20.000000000 +0200 ./pool/main/libx/libxdmcp/libxdmcp6_1.1.1-1_amd64.deb
-uilder 42 2012-04-14 18:47:20.000000000 +0200 ./pool/main/libx/libxdmcp/libxdmcp-dev_1.1.1-1_amd64.deb
-uilder 1334 2012-05-18 07:02:36.000000000 +0200 ./pool/main/libx/libxerces2-java/libxerces2-java_2.11.0-6_all.deb
-uilder 158 2012-05-03 20:19:40.000000000 +0200 ./pool/main/libx/libxfont/libxfont1_1.4.5-2_amd64.deb
-uilder 80 2012-04-21 00:18:42.000000000 +0200 ./pool/main/libx/libxkbfile/libxkbfile1_1.0.8-1_amd64.deb
-uilder 14 2012-02-22 03:49:40.000000000 +0100 ./pool/main/libx/libxklavier/gir1.2-xkl-1.0_5.2.1-1_amd64.deb
-uilder 54 2012-02-22 03:49:40.000000000 +0100 ./pool/main/libx/libxklavier/libxklavier16_5.2.1-1_amd64.deb
-uilder 87 2012-02-06 05:18:09.000000000 +0100 ./pool/main/libx/libxml++2.6/libxml++2.6-2_2.34.2-1_amd64.deb
-uilder 884 2013-03-06 21:41:59.000000000 +0100 ./pool/main/libx/libxml2/libxml2_2.8.0+dfsg1-7+nmu1_amd64.deb
-uilder 95 2013-03-06 21:41:59.000000000 +0100 ./pool/main/libx/libxml2/libxml2-utils_2.8.0+dfsg1-7+nmu1_amd64.deb
-uilder 374 2013-03-06 21:41:59.000000000 +0100 ./pool/main/libx/libxml2/python-libxml2_2.8.0+dfsg1-7+nmu1_amd64.deb
-uilder 90 2011-11-28 06:05:11.000000000 +0100 ./pool/main/libx/libxml-commons-resolver1.1-java/libxml-commons-resolver1.1-java_1.2-7_all.deb
-uilder 403 2012-06-21 20:33:29.000000000 +0200 ./pool/main/libx/libxml-libxml-perl/libxml-libxml-perl_2.0001+dfsg-1_amd64.deb
-uilder 15 2006-11-17 23:19:36.000000000 +0100 ./pool/main/libx/libxml-namespacesupport-perl/libxml-namespacesupport-perl_1.09-3_all.deb
-uilder 272 2011-11-15 15:19:20.000000000 +0100 ./pool/main/libx/libxml-parser-perl/libxml-parser-perl_2.41-1+b1_amd64.deb
-uilder 23 2011-09-13 23:33:01.000000000 +0200 ./pool/main/libx/libxml-sax-base-perl/libxml-sax-base-perl_1.07-1_all.deb
-uilder 13 2011-09-15 21:03:24.000000000 +0200 ./pool/main/libx/libxml-sax-expat-perl/libxml-sax-expat-perl_0.40-2_all.deb
-uilder 67 2012-06-01 20:48:57.000000000 +0200 ./pool/main/libx/libxml-sax-perl/libxml-sax-perl_0.99+dfsg-2_all.deb
-uilder 73 2012-06-23 23:08:08.000000000 +0200 ./pool/main/libx/libxml-simple-perl/libxml-simple-perl_2.20-1_all.deb
-uilder 185 2011-10-01 18:47:29.000000000 +0200 ./pool/main/libx/libxml-twig-perl/libxml-twig-perl_3.39-1_all.deb
-uilder 39 2011-10-16 17:04:34.000000000 +0200 ./pool/main/libx/libxml-xpathengine-perl/libxml-xpathengine-perl_0.13-1_all.deb
-uilder 66 2012-04-21 11:02:44.000000000 +0200 ./pool/main/libx/libxmu/libxmu6_1.1.1-1_amd64.deb
-uilder 24 2012-04-21 11:02:44.000000000 +0200 ./pool/main/libx/libxmu/libxmuu1_1.1.1-1_amd64.deb
-uilder 49 2012-04-21 11:34:16.000000000 +0200 ./pool/main/libx/libxpm/libxpm4_3.5.10-1_amd64.deb
-uilder 144 2011-08-18 21:17:15.000000000 +0200 ./pool/main/libx/libxpp2-java/libxpp2-java_2.1.10-7_all.deb
-uilder 341 2011-08-18 21:17:28.000000000 +0200 ./pool/main/libx/libxpp3-java/libxpp3-java_1.1.4c-2_all.deb
-uilder 248 2013-03-26 20:58:27.000000000 +0100 ./pool/main/libx/libxslt/libxslt1.1_1.1.26-14.1_amd64.deb
-uilder 116 2013-03-26 20:58:27.000000000 +0100 ./pool/main/libx/libxslt/xsltproc_1.1.26-14.1_amd64.deb
-uilder 18 2012-04-22 09:48:11.000000000 +0200 ./pool/main/libx/libxss/libxss1_1.2.2-1_amd64.deb
-uilder 10 2012-04-24 17:32:40.000000000 +0200 ./pool/main/libx/libxtst/libxtst6-udeb_1.2.1-1_amd64.udeb
-uilder 56 2011-12-31 02:17:12.000000000 +0100 ./pool/main/liby/libyaml/libyaml-0-2_0.1.4-2_amd64.deb
-uilder 74 2012-02-16 16:32:08.000000000 +0100 ./pool/main/liby/libyaml-syck-perl/libyaml-syck-perl_1.20-1_amd64.deb
-uilder 31 2011-12-25 05:17:17.000000000 +0100 ./pool/main/l/lacheck/lacheck_1.26-14_amd64.deb
-uilder 41 2010-06-29 21:18:43.000000000 +0200 ./pool/main/l/ladspa-sdk/ladspa-sdk_1.13-1_amd64.deb
-uilder 395 2012-03-17 19:05:18.000000000 +0100 ./pool/main/l/lame/libmp3lame0_3.99.5+repack1-3_amd64.deb
-uilder 4918 2013-03-26 00:10:37.000000000 +0100 ./pool/main/l/lapack/liblapack3_3.4.1+dfsg-1_amd64.deb
-uilder 6 2008-08-04 15:02:06.000000000 +0200 ./pool/main/l/laptop-detect/laptop-detect_0.13.7_amd64.deb
-uilder 110 2013-01-27 09:00:07.000000000 +0100 ./pool/main/l/laptop-mode-tools/laptop-mode-tools_1.61-2_all.deb
-uilder 2519 2012-06-28 11:36:33.000000000 +0200 ./pool/main/l/latex-beamer/latex-beamer_3.10-2_all.deb
-uilder 596 2012-06-12 17:37:48.000000000 +0200 ./pool/main/l/latex-xcolor/latex-xcolor_2.11-1.1_all.deb
-uilder 20 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lazarus-0.9.30.4_0.9.30.4-6_all.deb
-uilder 20 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lazarus_0.9.30.4-6_all.deb
-uilder 2935 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lazarus-doc-0.9.30.4_0.9.30.4-6_all.deb
-uilder 5875 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lazarus-ide-0.9.30.4_0.9.30.4-6_amd64.deb
-uilder 6428 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64.deb
-uilder 13726 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lazarus-src-0.9.30.4_0.9.30.4-6_all.deb
-uilder 20 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lcl-0.9.30.4_0.9.30.4-6_amd64.deb
-uilder 1302 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64.deb
-uilder 28413 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lcl-units-0.9.30.4_0.9.30.4-6_amd64.deb
-uilder 5313 2013-03-06 00:14:14.000000000 +0100 ./pool/main/l/lazarus/lcl-utils-0.9.30.4_0.9.30.4-6_amd64.deb
-uilder 141 2012-05-27 19:25:18.000000000 +0200 ./pool/main/l/lcms2/liblcms2-2_2.2+git20110628-2.2_amd64.deb
-uilder 111 2012-08-26 16:41:40.000000000 +0200 ./pool/main/l/lcms/liblcms1_1.19.dfsg-1.2_amd64.deb
-uilder 14 2012-12-10 23:33:36.000000000 +0100 ./pool/main/l/ldap2zone/ldap2zone_0.2-3.1_amd64.deb
-uilder 77 2013-01-24 20:19:28.000000000 +0100 ./pool/main/l/ldapvi/ldapvi_1.7-9_amd64.deb
-uilder 152 2012-04-19 17:06:24.000000000 +0200 ./pool/main/l/ldb/libldb1_1.1.6-1_amd64.deb
-uilder 178 2012-07-13 20:32:07.000000000 +0200 ./pool/main/l/ldm/ldm_2.2.11-2_amd64.deb
-uilder 61 2012-07-13 20:02:07.000000000 +0200 ./pool/main/l/ldm/ldm-server_2.2.11-2_all.deb
-uilder 191 2012-07-13 19:02:07.000000000 +0200 ./pool/main/l/ldm-themes/ldm-themes_12.07.1_all.deb
-uilder 113 2012-03-26 06:20:20.000000000 +0200 ./pool/main/l/leafpad/leafpad_0.8.18.1-3_amd64.deb
-uilder 67 2012-01-22 06:02:14.000000000 +0100 ./pool/main/l/lensfun/liblensfun0_0.2.5-2_amd64.deb
-uilder 49 2012-01-22 06:02:14.000000000 +0100 ./pool/main/l/lensfun/liblensfun-data_0.2.5-2_all.deb
-uilder 132 2012-06-10 19:09:15.000000000 +0200 ./pool/main/l/less/less_444-4_amd64.deb
-uilder 693 2012-07-25 19:32:07.000000000 +0200 ./pool/main/l/lesstif2/lesstif2_0.95.2-1.1_amd64.deb
-uilder 54 2012-06-22 08:47:58.000000000 +0200 ./pool/main/l/lightdm-gtk-greeter/lightdm-gtk-greeter_1.1.6-2_amd64.deb
-uilder 33 2012-10-11 21:22:33.000000000 +0200 ./pool/main/l/lightdm/liblightdm-gobject-1-0_1.2.2-4_amd64.deb
-uilder 128 2012-10-11 21:22:33.000000000 +0200 ./pool/main/l/lightdm/lightdm_1.2.2-4_amd64.deb
-uilder 88 2012-12-11 06:44:15.000000000 +0100 ./pool/main/l/lilo-installer/lilo-installer_1.41_amd64.udeb
-uilder 294 2012-04-15 15:33:16.000000000 +0200 ./pool/main/l/lilo/lilo_23.2-4_amd64.deb
-uilder 1723 2013-02-05 23:00:01.000000000 +0100 ./pool/main/l/lilypond/lilypond_2.14.2-4_amd64.deb
-uilder 1911 2013-02-05 23:00:00.000000000 +0100 ./pool/main/l/lilypond/lilypond-data_2.14.2-4_all.deb
-uilder 112 2011-09-30 21:18:31.000000000 +0200 ./pool/main/l/lingot/lingot_0.9.1-2_amd64.deb
-uilder 503 2012-06-26 23:11:19.000000000 +0200 ./pool/main/l/links2/links_2.7-1_amd64.deb
-uilder 172 2012-06-24 15:04:23.000000000 +0200 ./pool/main/l/linphone/libmediastreamer1_3.5.2-10_amd64.deb
-uilder 76 2012-06-24 15:04:23.000000000 +0200 ./pool/main/l/linphone/libortp8_3.5.2-10_amd64.deb
-uilder 72 2012-09-22 16:34:39.000000000 +0200 ./pool/main/l/linux-atm/libatm1_2.5.1-1.5_amd64.deb
-uilder 34 2012-03-04 20:18:14.000000000 +0100 ./pool/main/l/linux-base/linux-base_3.5_all.deb
-uilder 214 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/btrfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 6 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/crc-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 10 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/crypto-dm-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 42 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/crypto-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 9 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/efi-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 7 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/event-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 31 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/ext2-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 91 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/ext3-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 167 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/ext4-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 47 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/firewire-core-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 28 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/floppy-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 32 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/fuse-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 30 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/hyperv-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 12 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/i2c-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 99 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/irda-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 72 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/jfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 5 2012-10-07 21:17:21.000000000 +0200 ./pool/main/l/linux-latest/linux-headers-amd64_3.2+46_amd64.deb
-uilder 6 2012-10-07 21:17:21.000000000 +0200 ./pool/main/l/linux-latest/linux-image-amd64_3.2+46_amd64.deb
-uilder 11 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/loop-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 221 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/md-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 34 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/mmc-core-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 11 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/multipath-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 8 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/nbd-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 1433 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/nic-extra-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 143 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/nic-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 128 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/nic-pcmcia-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 17 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/nic-shared-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 110 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/nic-usb-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 1644 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/nic-wireless-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 72 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/ntfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 85 2009-12-23 02:47:33.000000000 +0100 ./pool/main/l/linux-ntfs/ntfsprogs-udeb_2.0.0-1+b1_amd64.udeb
-uilder 46 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/pata-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 8 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/pcmcia-storage-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 7 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/plip-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 31 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/ppp-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 6 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/qnx4-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 91 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/reiserfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 1044 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/scsi-extra-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 1021 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/sound-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 14 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/squashfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 233 2012-06-24 05:32:48.000000000 +0200 ./pool/main/l/linux-tools/linux-kbuild-3.2_3.2.17-1_amd64.deb
-uilder 36 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/udf-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 28 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/ufs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 6 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/uinput-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 22 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/virtio-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 235 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/xfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 10 2013-03-26 09:56:52.000000000 +0100 ./pool/main/l/linux/zlib-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-uilder 36 2011-03-07 10:20:09.000000000 +0100 ./pool/main/l/lirc/liblircclient0_0.9.0~pre1-1_amd64.deb
-uilder 570 2011-03-07 10:20:09.000000000 +0100 ./pool/main/l/lirc/lirc_0.9.0~pre1-1_amd64.deb
-uilder 166 2011-07-21 22:49:34.000000000 +0200 ./pool/main/l/lmemory/lmemory_0.6c-6_amd64.deb
-uilder 3968 2012-06-28 00:49:50.000000000 +0200 ./pool/main/l/lmms/lmms_0.4.10-2.3_amd64.deb
-uilder 5561 2012-06-28 00:06:20.000000000 +0200 ./pool/main/l/lmms/lmms-common_0.4.10-2.3_all.deb
-uilder 18317 2012-08-16 14:37:09.000000000 +0200 ./pool/main/l/lmodern/lmodern_2.004.2-1_all.deb
-uilder 54 2012-06-03 17:23:49.000000000 +0200 ./pool/main/l/lm-sensors/libsensors4_3.3.2-2_amd64.deb
-uilder 52 2011-12-29 23:32:06.000000000 +0100 ./pool/main/l/localization-config/localization-config_1.07+nmu1_all.deb
-uilder 3 2011-12-29 23:32:06.000000000 +0100 ./pool/main/l/localization-config/localization-config-udeb_1.07+nmu1_all.udeb
-uilder 11 2012-12-02 18:46:20.000000000 +0100 ./pool/main/l/lockfile-progs/lockfile-progs_0.1.17_amd64.deb
-uilder 50 2012-05-17 15:42:19.000000000 +0200 ./pool/main/l/logrotate/logrotate_3.8.1-4_amd64.deb
-uilder 58 2013-02-03 17:16:41.000000000 +0100 ./pool/main/l/loudmouth/libloudmouth1-0_1.4.3-9_amd64.deb
-uilder 2 2013-01-02 22:41:52.000000000 +0100 ./pool/main/l/lowmem/lowmem_1.38_all.udeb
-uilder 313 2009-12-04 00:48:36.000000000 +0100 ./pool/main/l/lp-solve/lp-solve_5.5.0.13-7_amd64.deb
-uilder 26 2012-11-05 12:17:46.000000000 +0100 ./pool/main/l/lsb/lsb-base_4.1+Debian8_all.deb
-uilder 26 2012-11-05 12:17:46.000000000 +0100 ./pool/main/l/lsb/lsb-release_4.1+Debian8_all.deb
-uilder 262 2012-06-30 11:11:16.000000000 +0200 ./pool/main/l/lshw/lshw_02.16-1_amd64.deb
-uilder 309 2012-04-25 09:02:51.000000000 +0200 ./pool/main/l/lsof/lsof_4.86+dfsg-1_amd64.deb
-uilder 35 2012-06-14 04:48:37.000000000 +0200 ./pool/main/l/lsscsi/lsscsi_0.26-2_amd64.deb
-uilder 396 2012-06-10 21:24:43.000000000 +0200 ./pool/main/l/ltsp-docs/ltsp-docs_1.1-1_all.deb
-uilder 30 2012-04-02 11:38:01.000000000 +0200 ./pool/main/l/ltspfs/ltspfs_1.1-2_amd64.deb
-uilder 16 2012-04-02 11:07:33.000000000 +0200 ./pool/main/l/ltspfs/ltspfsd_1.1-2_all.deb
-uilder 32 2012-04-02 11:38:01.000000000 +0200 ./pool/main/l/ltspfs/ltspfsd-core_1.1-2_amd64.deb
-uilder 132 2013-03-25 19:55:03.000000000 +0100 ./pool/main/l/ltsp/ltsp-client_5.4.2-6_amd64.deb
-uilder 222 2013-03-25 19:55:03.000000000 +0100 ./pool/main/l/ltsp/ltsp-client-core_5.4.2-6_amd64.deb
-uilder 243 2013-03-25 19:25:00.000000000 +0100 ./pool/main/l/ltsp/ltsp-server_5.4.2-6_all.deb
-uilder 133 2013-03-25 19:25:00.000000000 +0100 ./pool/main/l/ltsp/ltsp-server-standalone_5.4.2-6_all.deb
-uilder 176 2012-07-23 12:02:08.000000000 +0200 ./pool/main/l/lua5.1/liblua5.1-0_5.1.5-4_amd64.deb
-uilder 2381 2012-07-03 02:47:29.000000000 +0200 ./pool/main/l/luatex/luatex_0.70.1.20120524-3_amd64.deb
-uilder 5664 2011-09-19 22:48:24.000000000 +0200 ./pool/main/l/lucene2/liblucene2-java_2.9.4+ds1-4_all.deb
-uilder 67 2013-03-24 22:13:28.000000000 +0100 ./pool/main/l/lvm2/dmsetup_1.02.74-7_amd64.deb
-uilder 21 2013-03-24 22:13:28.000000000 +0100 ./pool/main/l/lvm2/dmsetup-udeb_1.02.74-7_amd64.udeb
-uilder 128 2013-03-24 22:13:28.000000000 +0100 ./pool/main/l/lvm2/libdevmapper1.02.1_1.02.74-7_amd64.deb
-uilder 71 2013-03-24 22:13:28.000000000 +0100 ./pool/main/l/lvm2/libdevmapper1.02.1-udeb_1.02.74-7_amd64.udeb
-uilder 32 2013-03-24 22:13:28.000000000 +0100 ./pool/main/l/lvm2/libdevmapper-event1.02.1_1.02.74-7_amd64.deb
-uilder 336 2013-03-24 22:13:28.000000000 +0100 ./pool/main/l/lvm2/liblvm2app2.2_2.02.95-7_amd64.deb
-uilder 571 2013-03-24 22:13:28.000000000 +0100 ./pool/main/l/lvm2/lvm2_2.02.95-7_amd64.deb
-uilder 288 2013-03-24 22:13:28.000000000 +0100 ./pool/main/l/lvm2/lvm2-udeb_2.02.95-7_amd64.udeb
-uilder 167 2012-12-21 14:35:41.000000000 +0100 ./pool/main/l/lvmcfg/lvmcfg-utils_1.29_all.udeb
-uilder 72 2012-05-20 21:42:29.000000000 +0200 ./pool/main/l/lxappearance/lxappearance_0.5.2-1_amd64.deb
-uilder 797 2012-05-18 17:16:59.000000000 +0200 ./pool/main/l/lxde-common/lxde-common_0.5.5-6_all.deb
-uilder 4377 2012-04-17 10:52:47.000000000 +0200 ./pool/main/l/lxde-icon-theme/lxde-icon-theme_0.5.0-1_all.deb
-uilder 3 2012-11-29 16:00:03.000000000 +0100 ./pool/main/l/lxde-metapackages/lxde_4+nmu1_all.deb
-uilder 3 2012-11-29 16:00:03.000000000 +0100 ./pool/main/l/lxde-metapackages/lxde-core_4+nmu1_all.deb
-uilder 54 2012-05-20 02:42:18.000000000 +0200 ./pool/main/l/lxinput/lxinput_0.3.2-1_amd64.deb
-uilder 43 2012-04-20 13:19:37.000000000 +0200 ./pool/main/l/lxmenu-data/lxmenu-data_0.1.2-2_all.deb
-uilder 118 2012-03-12 06:52:47.000000000 +0100 ./pool/main/l/lxmusic/lxmusic_0.4.4+git20100802-3_amd64.deb
-uilder 423 2012-06-11 13:34:04.000000000 +0200 ./pool/main/l/lxpanel/lxpanel_0.5.10-1_amd64.deb
-uilder 19 2012-05-18 20:34:29.000000000 +0200 ./pool/main/l/lxpolkit/lxpolkit_0.1.0-4_amd64.deb
-uilder 42 2012-05-19 13:52:56.000000000 +0200 ./pool/main/l/lxrandr/lxrandr_0.1.2-3_amd64.deb
-uilder 33 2012-05-19 14:10:26.000000000 +0200 ./pool/main/l/lxsession-edit/lxsession-edit_0.2.0-3_amd64.deb
-uilder 57 2012-07-08 01:20:27.000000000 +0200 ./pool/main/l/lxsession/lxsession_0.4.6.1-4_amd64.deb
-uilder 32 2012-05-19 13:53:36.000000000 +0200 ./pool/main/l/lxshortcut/lxshortcut_0.1.2-3_amd64.deb
-uilder 80 2012-05-19 14:12:15.000000000 +0200 ./pool/main/l/lxterminal/lxterminal_0.1.11-4_amd64.deb
-uilder 164 2012-06-01 09:33:55.000000000 +0200 ./pool/main/l/lyx/fonts-lyx_2.0.3-3_all.deb
-uilder 57 2011-11-10 06:47:04.000000000 +0100 ./pool/main/l/lzo2/liblzo2-2_2.06-1_amd64.deb
-uilder 532 2012-05-25 17:09:35.000000000 +0200 ./pool/main/m/m17n-contrib/m17n-contrib_1.1.13-2_all.deb
-uilder 1810 2012-05-25 17:33:12.000000000 +0200 ./pool/main/m/m17n-db/m17n-db_1.6.3-2_all.deb
-uilder 269 2012-05-28 02:48:44.000000000 +0200 ./pool/main/m/m17n-lib/libm17n-0_1.6.3-2_amd64.deb
-uilder 487 2011-10-24 23:04:34.000000000 +0200 ./pool/main/m/m2300w/printer-driver-m2300w_0.51-7_amd64.deb
-uilder 254 2012-05-07 17:04:35.000000000 +0200 ./pool/main/m/m4/m4_1.4.16-3_amd64.deb
-uilder 1080 2012-01-12 13:02:46.000000000 +0100 ./pool/main/m/magyarispell/myspell-hu_1.2+repack-2_all.deb
-uilder 387 2012-04-14 21:18:56.000000000 +0200 ./pool/main/m/make-dfsg/make_3.81-8.2_amd64.deb
-uilder 13 2012-03-07 11:34:46.000000000 +0100 ./pool/main/m/makepasswd/makepasswd_1.10-8_all.deb
-uilder 58 2012-12-07 16:47:55.000000000 +0100 ./pool/main/m/mako/python-mako_0.7.0-1.1_all.deb
-uilder 60 2011-12-05 20:38:22.000000000 +0100 ./pool/main/m/maloc/libmaloc1_0.2-2.3_amd64.deb
-uilder 1037 2012-06-19 01:05:20.000000000 +0200 ./pool/main/m/man-db/man-db_2.6.2-1_amd64.deb
-uilder 646 2011-01-31 01:17:12.000000000 +0100 ./pool/main/m/manpages-es-extra/manpages-es-extra_0.8a-17_all.deb
-uilder 1514 2011-01-31 01:17:03.000000000 +0100 ./pool/main/m/manpages-es/manpages-es_1.55-10_all.deb
-uilder 1541 2013-02-26 21:55:10.000000000 +0100 ./pool/main/m/manpages-fr-extra/manpages-fr-extra_20130226_all.deb
-uilder 718 2012-11-29 23:15:40.000000000 +0100 ./pool/main/m/manpages-fr/manpages-fr_3.44d1p1-1_all.deb
-uilder 777 2012-11-16 20:59:37.000000000 +0100 ./pool/main/m/manpages/manpages_3.44-1_all.deb
-uilder 1697 2012-11-16 20:59:37.000000000 +0100 ./pool/main/m/manpages/manpages-dev_3.44-1_all.deb
-uilder 962 2012-09-25 18:38:52.000000000 +0200 ./pool/main/m/marble/libmarblewidget13_4.8.4-3_amd64.deb
-uilder 319 2012-09-25 18:38:52.000000000 +0200 ./pool/main/m/marble/marble_4.8.4-3_amd64.deb
-uilder 14316 2012-09-25 18:38:52.000000000 +0200 ./pool/main/m/marble/marble-data_4.8.4-3_all.deb
-uilder 481 2012-09-25 18:38:52.000000000 +0200 ./pool/main/m/marble/marble-plugins_4.8.4-3_amd64.deb
-uilder 15 2011-07-20 20:17:55.000000000 +0200 ./pool/main/m/markupsafe/python-markupsafe_0.15-1_amd64.deb
-uilder 21 2012-06-23 00:05:19.000000000 +0200 ./pool/main/m/matchbox-keyboard/matchbox-keyboard-udeb_0.1+svn20080916-9+b1_amd64.udeb
-uilder 33 2012-06-23 00:05:44.000000000 +0200 ./pool/main/m/matchbox-window-manager/matchbox-window-manager-udeb_1.2-osso21-1+b1_amd64.udeb
-uilder 3929 2012-03-03 01:02:12.000000000 +0100 ./pool/main/m/mathpiper/mathpiper_0.81f+svn4469+dfsg3-1_all.deb
-uilder 506 2010-05-18 20:48:26.000000000 +0200 ./pool/main/m/mathwar/mathwar_0.2.5-2+b1_amd64.deb
-uilder 2632 2012-06-10 19:15:02.000000000 +0200 ./pool/main/m/matplotlib/python-matplotlib_1.1.1~rc2-1_amd64.deb
-uilder 2009 2012-06-10 19:15:01.000000000 +0200 ./pool/main/m/matplotlib/python-matplotlib-data_1.1.1~rc2-1_all.deb
-uilder 89 2012-03-23 23:32:50.000000000 +0100 ./pool/main/m/mawk/mawk_1.3.3-17_amd64.deb
-uilder 9 2012-06-23 00:19:18.000000000 +0200 ./pool/main/m/mbr/mbr-udeb_1.1.11-5+b1_amd64.udeb
-uilder 460 2012-10-05 02:41:36.000000000 +0200 ./pool/main/m/mc/mc_4.8.3-10_amd64.deb
-uilder 1061 2012-10-05 02:41:36.000000000 +0200 ./pool/main/m/mc/mc-data_4.8.3-10_all.deb
-uilder 29 2012-04-24 01:48:18.000000000 +0200 ./pool/main/m/mcp-plugins/mcp-plugins_0.4.0-2_amd64.deb
-uilder 544 2013-01-24 14:34:13.000000000 +0100 ./pool/main/m/mdadm/mdadm_3.2.5-5_amd64.deb
-uilder 191 2013-01-24 14:34:13.000000000 +0100 ./pool/main/m/mdadm/mdadm-udeb_3.2.5-5_amd64.udeb
-uilder 150 2012-12-11 18:25:21.000000000 +0100 ./pool/main/m/mdcfg/mdcfg-utils_1.40_all.udeb
-uilder 18 2009-07-16 22:06:28.000000000 +0200 ./pool/main/m/mdetect/mdetect_0.5.2.3_amd64.deb
-uilder 12 2007-08-14 00:17:05.000000000 +0200 ./pool/main/m/mdns-scan/mdns-scan_0.5-1_amd64.deb
-uilder 92 2011-05-29 14:47:53.000000000 +0200 ./pool/main/m/meanwhile/libmeanwhile1_1.0.2-4_amd64.deb
-uilder 37 2012-05-30 11:49:44.000000000 +0200 ./pool/main/m/media-player-info/media-player-info_17-1_all.deb
-uilder 45 2012-12-11 22:05:58.000000000 +0100 ./pool/main/m/media-retriever/load-media_1.28_all.udeb
-uilder 16 2012-12-11 22:05:58.000000000 +0100 ./pool/main/m/media-retriever/media-retriever_1.28_all.udeb
-uilder 283 2011-11-13 19:20:35.000000000 +0100 ./pool/main/m/memtest86+/memtest86+_4.20-1.1_amd64.deb
-uilder 51 2012-05-20 21:44:50.000000000 +0200 ./pool/main/m/menu-cache/libmenu-cache1_0.3.3-1_amd64.deb
-uilder 469 2011-11-16 22:12:14.000000000 +0100 ./pool/main/m/menu/menu_2.1.46_amd64.deb
-uilder 5 2010-01-17 22:48:57.000000000 +0100 ./pool/main/m/menu-xdg/menu-xdg_0.5_all.deb
-uilder 30 2012-02-15 22:20:50.000000000 +0100 ./pool/main/m/mesa-demos/mesa-utils_8.0.1-2+b3_amd64.deb
-uilder 264 2012-12-20 00:50:48.000000000 +0100 ./pool/main/m/metacity/libmetacity-private0a_2.34.3-4_amd64.deb
-uilder 425 2012-12-20 00:50:48.000000000 +0100 ./pool/main/m/metacity/metacity_2.34.3-4_amd64.deb
-uilder 858 2012-12-20 00:50:48.000000000 +0100 ./pool/main/m/metacity/metacity-common_2.34.3-4_all.deb
-uilder 21 2012-11-26 15:19:23.000000000 +0100 ./pool/main/m/meta-gnome3/gnome_3.4+7_amd64.deb
-uilder 21 2012-11-26 15:19:23.000000000 +0100 ./pool/main/m/meta-gnome3/gnome-core_3.4+7_amd64.deb
-uilder 20 2012-11-26 15:19:23.000000000 +0100 ./pool/main/m/meta-gnome3/gnome-desktop-environment_3.4+7_all.deb
-uilder 12 2013-04-19 01:25:11.000000000 +0200 ./pool/main/m/meta-kde/kdeaccessibility_4.8.4+5.77+deb7u1_all.deb
-uilder 12 2013-04-19 01:25:11.000000000 +0200 ./pool/main/m/meta-kde/kdeedu_4.8.4+5.77+deb7u1_all.deb
-uilder 12 2013-04-19 01:25:11.000000000 +0200 ./pool/main/m/meta-kde/kdegraphics-strigi-plugins_4.8.4+5.77+deb7u1_all.deb
-uilder 12 2013-04-19 01:25:11.000000000 +0200 ./pool/main/m/meta-kde/kde-plasma-desktop_77+deb7u1_amd64.deb
-uilder 12 2013-04-19 01:25:11.000000000 +0200 ./pool/main/m/meta-kde/kde-standard_77+deb7u1_all.deb
-uilder 12 2013-04-19 01:25:11.000000000 +0200 ./pool/main/m/meta-kde/kdeutils_4.8.4+5.77+deb7u1_all.deb
-uilder 104 2012-01-26 06:47:07.000000000 +0100 ./pool/main/m/mhash/libmhash2_0.9.9.9-1.1_amd64.deb
-uilder 20 2012-06-22 23:51:08.000000000 +0200 ./pool/main/m/mii-diag/mii-diag_2.11-3+b1_amd64.deb
-uilder 8 2012-06-22 23:51:08.000000000 +0200 ./pool/main/m/mii-diag/mii-diag-udeb_2.11-3+b1_amd64.udeb
-uilder 35 2012-02-12 22:09:04.000000000 +0100 ./pool/main/m/mime-support/mime-support_3.52-1_all.deb
-uilder 48 2011-11-09 16:32:04.000000000 +0100 ./pool/main/m/min12xxw/printer-driver-min12xxw_0.0.9-6_amd64.deb
-uilder 18 2012-02-17 16:48:53.000000000 +0100 ./pool/main/m/minissdpd/minissdpd_1.1.20120121-1_amd64.deb
-uilder 38 2011-03-11 12:17:45.000000000 +0100 ./pool/main/m/miniupnpc/libminiupnpc5_1.5-2_amd64.deb
-uilder 109 2010-09-25 10:32:33.000000000 +0200 ./pool/main/m/mlocate/mlocate_0.23.1-1_amd64.deb
-uilder 161 2012-09-01 13:15:14.000000000 +0200 ./pool/main/m/mlt/libmlt++3_0.8.0-4_amd64.deb
-uilder 643 2012-09-01 13:15:14.000000000 +0200 ./pool/main/m/mlt/libmlt5_0.8.0-4_amd64.deb
-uilder 430 2012-09-01 13:15:14.000000000 +0200 ./pool/main/m/mlt/libmlt-data_0.8.0-4_all.deb
-uilder 136 2012-09-01 13:15:14.000000000 +0200 ./pool/main/m/mlt/melt_0.8.0-4_amd64.deb
-uilder 237 2012-09-01 13:15:14.000000000 +0200 ./pool/main/m/mlt/python-mlt5_0.8.0-4_amd64.deb
-uilder 50 2012-07-10 08:47:51.000000000 +0200 ./pool/main/m/mobile-broadband-provider-info/mobile-broadband-provider-info_20120708-1_all.deb
-uilder 15 2011-07-27 00:36:09.000000000 +0200 ./pool/main/m/mod-dnssd/libapache2-mod-dnssd_0.6-3_amd64.deb
-uilder 342 2012-09-06 17:11:05.000000000 +0200 ./pool/main/m/modemmanager/modemmanager_0.5.2.0-2_amd64.deb
-uilder 251 2012-01-23 02:32:32.000000000 +0100 ./pool/main/m/mono-addins/libmono-addins0.2-cil_0.6.2-2_all.deb
-uilder 76 2012-01-23 02:32:32.000000000 +0100 ./pool/main/m/mono-addins/libmono-addins-gui0.2-cil_0.6.2-2_all.deb
-uilder 39 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-cairo4.0-cil_2.10.8.1-8_all.deb
-uilder 991 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-corlib4.0-cil_2.10.8.1-8_all.deb
-uilder 28 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-i18n4.0-cil_2.10.8.1-8_all.deb
-uilder 36 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-i18n-west4.0-cil_2.10.8.1-8_all.deb
-uilder 91 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-posix4.0-cil_2.10.8.1-8_all.deb
-uilder 132 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-security4.0-cil_2.10.8.1-8_all.deb
-uilder 73 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-sharpzip4.84-cil_2.10.8.1-8_all.deb
-uilder 656 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-system4.0-cil_2.10.8.1-8_all.deb
-uilder 67 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-system-configuration4.0-cil_2.10.8.1-8_all.deb
-uilder 283 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-system-core4.0-cil_2.10.8.1-8_all.deb
-uilder 171 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-system-drawing4.0-cil_2.10.8.1-8_all.deb
-uilder 69 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-system-security4.0-cil_2.10.8.1-8_all.deb
-uilder 437 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/libmono-system-xml4.0-cil_2.10.8.1-8_all.deb
-uilder 28 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/mono-4.0-gac_2.10.8.1-8_all.deb
-uilder 22 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/mono-gac_2.10.8.1-8_all.deb
-uilder 1573 2013-03-03 19:33:41.000000000 +0100 ./pool/main/m/mono/mono-runtime_2.10.8.1-8_amd64.deb
-uilder 573 2012-05-03 00:19:19.000000000 +0200 ./pool/main/m/mopac7/libmopac7-1gf_1.15-5_amd64.deb
-uilder 12 2008-05-08 05:32:04.000000000 +0200 ./pool/main/m/mountfloppy/mountfloppy_0.16_all.udeb
-uilder 2 2012-11-24 21:18:37.000000000 +0100 ./pool/main/m/mountmedia/mountmedia_0.22_all.udeb
-uilder 1963 2012-05-15 20:21:10.000000000 +0200 ./pool/main/m/mousetweaks/mousetweaks_3.4.2-1_amd64.deb
-uilder 1341 2012-10-25 22:09:01.000000000 +0200 ./pool/main/m/mozjs/libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64.deb
-uilder 15 2012-01-10 22:47:25.000000000 +0100 ./pool/main/m/mozvoikko/xul-ext-mozvoikko_2.0.1-1_all.deb
-uilder 40 2011-10-09 00:33:27.000000000 +0200 ./pool/main/m/mpclib/libmpc2_0.9-4_amd64.deb
-uilder 57 2007-12-16 17:47:03.000000000 +0100 ./pool/main/m/mpeg2dec/libmpeg2-4_0.4.1-3_amd64.deb
-uilder 526 2012-05-09 08:02:47.000000000 +0200 ./pool/main/m/mpfr4/libmpfr4_3.1.0-5_amd64.deb
-uilder 155 2012-09-05 17:29:18.000000000 +0200 ./pool/main/m/mpg123/libmpg123-0_1.14.4-1_amd64.deb
-uilder 56 2012-05-01 09:32:08.000000000 +0200 ./pool/main/m/mpg321/mpg321_0.3.2-1.1_amd64.deb
-uilder 3 2011-12-04 22:16:00.000000000 +0100 ./pool/main/m/mpi-defaults/mpi-default-bin_1.0.1_amd64.deb
-uilder 1147 2012-06-15 17:11:37.000000000 +0200 ./pool/main/m/mplayer2/mplayer2_2.0-554-gf63dbad-1+b1_amd64.deb
-uilder 3168 2012-03-24 12:18:22.000000000 +0100 ./pool/main/m/mpqc/libsc7_2.3.1-14_amd64.deb
-uilder 306 2012-03-24 12:18:22.000000000 +0100 ./pool/main/m/mpqc/libsc-data_2.3.1-14_all.deb
-uilder 122 2012-03-24 12:18:22.000000000 +0100 ./pool/main/m/mpqc/mpqc_2.3.1-14_amd64.deb
-uilder 28 2010-07-30 12:07:07.000000000 +0200 ./pool/main/m/mpt-status/mpt-status_1.2.0-7_amd64.deb
-uilder 10 2012-12-04 01:23:32.000000000 +0100 ./pool/main/m/mscompress/mscompress_0.3-4_amd64.deb
-uilder 23 2012-03-02 23:02:17.000000000 +0100 ./pool/main/m/mtdev/libmtdev1_1.1.2-1_amd64.deb
-uilder 11 2012-03-02 23:02:17.000000000 +0100 ./pool/main/m/mtdev/libmtdev1-udeb_1.1.2-1_amd64.udeb
-uilder 195 2012-06-16 19:06:21.000000000 +0200 ./pool/main/m/mtools/mtools_4.0.17-1_amd64.deb
-uilder 707 2012-04-21 13:34:13.000000000 +0200 ./pool/main/m/mtpaint/mtpaint_3.40-1+b1_amd64.deb
-uilder 44 2012-04-16 00:17:43.000000000 +0200 ./pool/main/m/mtr/mtr-tiny_0.82-3_amd64.deb
-uilder 32 2012-05-29 11:14:21.000000000 +0200 ./pool/main/m/multipath-tools/kpartx_0.4.9+git0.4dfdaf2b-6_amd64.deb
-uilder 205 2012-05-29 11:14:21.000000000 +0200 ./pool/main/m/multipath-tools/multipath-tools_0.4.9+git0.4dfdaf2b-6_amd64.deb
-uilder 16 2012-05-29 11:14:21.000000000 +0200 ./pool/main/m/multipath-tools/multipath-tools-boot_0.4.9+git0.4dfdaf2b-6_all.deb
-uilder 126 2012-05-29 11:14:21.000000000 +0200 ./pool/main/m/multipath-tools/multipath-udeb_0.4.9+git0.4dfdaf2b-6_amd64.udeb
-uilder 198 2013-04-16 16:29:41.000000000 +0200 ./pool/main/m/munin/munin_2.0.6-4_all.deb
-uilder 93 2013-04-16 16:29:41.000000000 +0200 ./pool/main/m/munin/munin-common_2.0.6-4_all.deb
-uilder 209 2013-04-16 16:29:41.000000000 +0200 ./pool/main/m/munin/munin-doc_2.0.6-4_all.deb
-uilder 127 2013-04-16 16:29:41.000000000 +0200 ./pool/main/m/munin/munin-node_2.0.6-4_all.deb
-uilder 298 2013-04-16 16:29:41.000000000 +0200 ./pool/main/m/munin/munin-plugins-core_2.0.6-4_all.deb
-uilder 152 2013-04-16 16:29:41.000000000 +0200 ./pool/main/m/munin/munin-plugins-extra_2.0.6-4_all.deb
-uilder 150 2012-03-28 05:49:11.000000000 +0200 ./pool/main/m/muparser/libmuparser2_2.1.0-3_amd64.deb
-uilder 234 2012-07-07 20:32:17.000000000 +0200 ./pool/main/m/mutter/gir1.2-mutter-3.0_3.4.1-5_amd64.deb
-uilder 552 2012-07-07 20:32:17.000000000 +0200 ./pool/main/m/mutter/libmutter0_3.4.1-5_amd64.deb
-uilder 1439 2012-07-07 20:32:17.000000000 +0200 ./pool/main/m/mutter/mutter-common_3.4.1-5_all.deb
-uilder 567 2012-05-16 17:33:14.000000000 +0200 ./pool/main/m/mx/libmx-1.0-2_1.4.6-1_amd64.deb
-uilder 318 2012-05-16 17:33:14.000000000 +0200 ./pool/main/m/mx/libmx-bin_1.4.6-1_amd64.deb
-uilder 394 2012-05-16 16:56:06.000000000 +0200 ./pool/main/m/mx/libmx-common_1.4.6-1_all.deb
-uilder 1504 2011-12-22 13:02:19.000000000 +0100 ./pool/main/m/myspell-el-gr/myspell-el-gr_0.8-1.1_all.deb
-uilder 30 2011-04-06 00:21:06.000000000 +0200 ./pool/main/m/myspell-ku/myspell-ku_0.20.0-2_all.deb
-uilder 1314 2011-09-14 18:19:15.000000000 +0200 ./pool/main/m/myspell-pt-br/myspell-pt-br_20110527-2_all.deb
-uilder 157 2011-09-14 18:19:27.000000000 +0200 ./pool/main/m/myspell.pt/myspell-pt-pt_20091013-4_all.deb
-uilder 602 2012-05-08 11:35:03.000000000 +0200 ./pool/main/m/myspell-sk/myspell-sk_0.5.5a-2.3_all.deb
-uilder 1154 2012-01-12 12:48:45.000000000 +0100 ./pool/main/m/myspell-sl/myspell-sl_1.0-5_all.deb
-uilder 946 2012-12-07 16:32:52.000000000 +0100 ./pool/main/m/mythes-it/mythes-it_2.0.7.gh.deb1-4.1_all.deb
-uilder 9 2011-12-21 22:04:46.000000000 +0100 ./pool/main/m/mythes/libmythes-1.2-0_1.2.2-1_amd64.deb
-uilder 2 2013-01-27 19:41:41.000000000 +0100 ./pool/main/n/nagios3/nagios3_3.4.1-3_amd64.deb
-uilder 1923 2013-01-27 19:41:41.000000000 +0100 ./pool/main/n/nagios3/nagios3-cgi_3.4.1-3_amd64.deb
-uilder 79 2013-01-27 19:41:41.000000000 +0100 ./pool/main/n/nagios3/nagios3-common_3.4.1-3_all.deb
-uilder 280 2013-01-27 19:41:41.000000000 +0100 ./pool/main/n/nagios3/nagios3-core_3.4.1-3_amd64.deb
-uilder 2056 2010-04-10 07:47:03.000000000 +0200 ./pool/main/n/nagios-images/nagios-images_0.7_all.deb
-uilder 20 2013-03-09 08:58:24.000000000 +0100 ./pool/main/n/nagios-nrpe/nagios-nrpe-plugin_2.13-3_amd64.deb
-uilder 41 2013-03-09 08:58:24.000000000 +0100 ./pool/main/n/nagios-nrpe/nagios-nrpe-server_2.13-3_amd64.deb
-uilder 300 2012-07-02 19:47:14.000000000 +0200 ./pool/main/n/nagios-plugins-contrib/nagios-plugins-contrib_4.20120702_amd64.deb
-uilder 22 2012-06-28 00:06:56.000000000 +0200 ./pool/main/n/nagios-plugins/nagios-plugins_1.4.16-1_all.deb
-uilder 970 2012-06-28 01:04:46.000000000 +0200 ./pool/main/n/nagios-plugins/nagios-plugins-basic_1.4.16-1_amd64.deb
-uilder 197 2012-06-28 01:04:46.000000000 +0200 ./pool/main/n/nagios-plugins/nagios-plugins-common_1.4.16-1_amd64.deb
-uilder 430 2012-06-28 01:04:46.000000000 +0200 ./pool/main/n/nagios-plugins/nagios-plugins-standard_1.4.16-1_amd64.deb
-uilder 573 2012-06-23 00:06:56.000000000 +0200 ./pool/main/n/nano/nano_2.2.6-1+b1_amd64.deb
-uilder 85 2012-04-19 18:03:21.000000000 +0200 ./pool/main/n/nas/libaudio2_1.9.3-5_amd64.deb
-uilder 263 2012-08-06 22:48:49.000000000 +0200 ./pool/main/n/nautilus/libnautilus-extension1a_3.4.2-1+build1_amd64.deb
-uilder 803 2012-08-06 22:48:50.000000000 +0200 ./pool/main/n/nautilus/nautilus_3.4.2-1+build1_amd64.deb
-uilder 1918 2012-08-06 22:48:49.000000000 +0200 ./pool/main/n/nautilus/nautilus-data_3.4.2-1+build1_all.deb
-uilder 202 2012-06-20 09:21:34.000000000 +0200 ./pool/main/n/nautilus-sendto/nautilus-sendto_3.0.3-2+b1_amd64.deb
-uilder 62 2012-12-20 22:24:08.000000000 +0100 ./pool/main/n/nbd/nbd-client_3.2-2_amd64.deb
-uilder 73 2012-12-20 22:24:08.000000000 +0100 ./pool/main/n/nbd/nbd-server_3.2-2_amd64.deb
-uilder 585 2012-05-17 14:44:40.000000000 +0200 ./pool/main/n/ncftp/ncftp_3.2.5-1.1_amd64.deb
-uilder 111 2012-06-27 18:48:13.000000000 +0200 ./pool/main/n/ncurses/libncurses5_5.9-10_amd64.deb
-uilder 138 2012-06-27 18:48:13.000000000 +0200 ./pool/main/n/ncurses/libncursesw5_5.9-10_amd64.deb
-uilder 269 2012-06-27 18:48:13.000000000 +0200 ./pool/main/n/ncurses/libtinfo5_5.9-10_amd64.deb
-uilder 194 2012-06-27 18:04:38.000000000 +0200 ./pool/main/n/ncurses/ncurses-base_5.9-10_all.deb
-uilder 328 2012-06-27 18:48:13.000000000 +0200 ./pool/main/n/ncurses/ncurses-bin_5.9-10_amd64.deb
-uilder 589 2012-06-27 18:04:38.000000000 +0200 ./pool/main/n/ncurses/ncurses-term_5.9-10_all.deb
-uilder 8 2012-06-23 00:07:09.000000000 +0200 ./pool/main/n/ndisc6/ndisc6-udeb_1.0.1-1+b1_amd64.udeb
-uilder 8 2012-06-23 00:07:09.000000000 +0200 ./pool/main/n/ndisc6/rdnssd-udeb_1.0.1-1+b1_amd64.udeb
-uilder 139 2012-04-09 15:33:19.000000000 +0200 ./pool/main/n/neon27/libneon27-gnutls_0.29.6-3_amd64.deb
-uilder 20 2012-05-14 01:53:29.000000000 +0200 ./pool/main/n/netbase/netbase_5.0_all.deb
-uilder 206 2012-02-20 00:47:31.000000000 +0100 ./pool/main/n/netbeans/libnb-org-openide-util-java_7.0.1+dfsg1-5_all.deb
-uilder 93 2012-02-20 00:47:31.000000000 +0100 ./pool/main/n/netbeans/libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all.deb
-uilder 70 2012-06-12 18:06:49.000000000 +0200 ./pool/main/n/netcat/netcat-traditional_1.10-40_amd64.deb
-uilder 348 2012-09-15 19:57:08.000000000 +0200 ./pool/main/n/netcdf/libnetcdfc7_4.1.3-6+b1_amd64.deb
-uilder 416 2013-04-07 22:07:37.000000000 +0200 ./pool/main/n/netcfg/netcfg_1.108_amd64.udeb
-uilder 14 2009-09-07 18:19:33.000000000 +0200 ./pool/main/n/netkit-rwho/rwho_0.17-12_amd64.deb
-uilder 19 2009-09-07 18:19:33.000000000 +0200 ./pool/main/n/netkit-rwho/rwhod_0.17-12_amd64.deb
-uilder 19 2010-09-24 20:03:00.000000000 +0200 ./pool/main/n/netkit-tftp/tftp_0.17-18_amd64.deb
-uilder 93 2012-04-18 00:18:57.000000000 +0200 ./pool/main/n/netpbm-free/libnetpbm10_10.0-15+b1_amd64.deb
-uilder 1318 2012-04-18 00:18:57.000000000 +0200 ./pool/main/n/netpbm-free/netpbm_10.0-15+b1_amd64.deb
-uilder 2194 2012-11-24 14:22:16.000000000 +0100 ./pool/main/n/net-snmp/libsnmp15_5.4.3~dfsg-2.7_amd64.deb
-uilder 1076 2012-11-24 14:22:16.000000000 +0100 ./pool/main/n/net-snmp/libsnmp-base_5.4.3~dfsg-2.7_all.deb
-uilder 1025 2012-11-24 14:22:16.000000000 +0100 ./pool/main/n/net-snmp/snmp_5.4.3~dfsg-2.7_amd64.deb
-uilder 146 2012-11-16 21:24:37.000000000 +0100 ./pool/main/n/nettle/libnettle4_2.4-3_amd64.deb
-uilder 338 2012-09-07 10:02:14.000000000 +0200 ./pool/main/n/net-tools/net-tools_1.60-24.2_amd64.deb
-uilder 81 2013-03-30 17:27:21.000000000 +0100 ./pool/main/n/network-console/network-console_1.43_amd64.udeb
-uilder 2276 2012-06-19 01:36:21.000000000 +0200 ./pool/main/n/networkmanagement/plasma-widget-networkmanagement_0.9.0.3-1_amd64.deb
-uilder 106 2013-01-30 02:41:58.000000000 +0100 ./pool/main/n/network-manager-applet/libnm-gtk0_0.9.4.1-5_amd64.deb
-uilder 56 2013-01-30 02:41:58.000000000 +0100 ./pool/main/n/network-manager-applet/libnm-gtk-common_0.9.4.1-5_all.deb
-uilder 809 2013-01-30 02:41:58.000000000 +0100 ./pool/main/n/network-manager-applet/network-manager-gnome_0.9.4.1-5_amd64.deb
-uilder 253 2013-01-30 22:19:26.000000000 +0100 ./pool/main/n/network-manager/gir1.2-networkmanager-1.0_0.9.4.0-10_amd64.deb
-uilder 289 2013-01-30 22:19:26.000000000 +0100 ./pool/main/n/network-manager/libnm-glib4_0.9.4.0-10_amd64.deb
-uilder 234 2013-01-30 22:19:26.000000000 +0100 ./pool/main/n/network-manager/libnm-glib-vpn1_0.9.4.0-10_amd64.deb
-uilder 325 2013-01-30 22:19:26.000000000 +0100 ./pool/main/n/network-manager/libnm-util2_0.9.4.0-10_amd64.deb
-uilder 847 2013-01-30 22:19:26.000000000 +0100 ./pool/main/n/network-manager/network-manager_0.9.4.0-10_amd64.deb
-uilder 32 2012-03-24 23:49:44.000000000 +0100 ./pool/main/n/network-manager-openvpn/network-manager-openvpn_0.9.4.0-1_amd64.deb
-uilder 28 2012-03-25 00:06:43.000000000 +0100 ./pool/main/n/network-manager-pptp/network-manager-pptp_0.9.4.0-2_amd64.deb
-uilder 27 2012-03-25 00:20:46.000000000 +0100 ./pool/main/n/network-manager-vpnc/network-manager-vpnc_0.9.4.0-1_amd64.deb
-uilder 76 2013-02-25 20:33:11.000000000 +0100 ./pool/main/n/newt/libnewt0.52_0.52.14-11.1_amd64.deb
-uilder 34 2013-02-25 20:33:11.000000000 +0100 ./pool/main/n/newt/whiptail_0.52.14-11.1_amd64.deb
-uilder 285 2012-07-11 00:02:16.000000000 +0200 ./pool/main/n/nfs-utils/nfs-common_1.2.6-3_amd64.deb
-uilder 152 2012-07-11 00:02:16.000000000 +0200 ./pool/main/n/nfs-utils/nfs-kernel-server_1.2.6-3_amd64.deb
-uilder 10 2008-04-14 09:02:13.000000000 +0200 ./pool/main/n/ng-utils/ng-utils_0.7-1_amd64.deb
-uilder 240 2008-01-20 23:02:11.000000000 +0100 ./pool/main/n/nictools-pci/nictools-pci_1.3.8-1.2_amd64.deb
-uilder 3631 2012-12-29 22:05:21.000000000 +0100 ./pool/main/n/nmap/nmap_6.00-0.3_amd64.deb
-uilder 71 2012-12-12 06:57:02.000000000 +0100 ./pool/main/n/nobootloader/nobootloader_1.38_all.udeb
-uilder 13281 2012-09-25 21:24:05.000000000 +0200 ./pool/main/n/norwegian/aspell-no_2.0.10-5.1_amd64.deb
-uilder 3854 2012-09-25 21:24:05.000000000 +0200 ./pool/main/n/norwegian/inorwegian_2.0.10-5.1_amd64.deb
-uilder 1157 2012-09-25 21:24:05.000000000 +0200 ./pool/main/n/norwegian/myspell-nb_2.0.10-5.1_all.deb
-uilder 700 2012-09-25 21:24:05.000000000 +0200 ./pool/main/n/norwegian/myspell-nn_2.0.10-5.1_all.deb
-uilder 3103 2012-09-25 21:24:05.000000000 +0200 ./pool/main/n/norwegian/wnorwegian_2.0.10-5.1_all.deb
-uilder 51 2012-09-29 08:38:11.000000000 +0200 ./pool/main/n/notification-daemon/notification-daemon_0.7.6-1_amd64.deb
-uilder 20 2011-08-02 23:47:30.000000000 +0200 ./pool/main/n/notify-python/python-notify_0.1.1-3_amd64.deb
-uilder 12 2012-07-20 10:47:13.000000000 +0200 ./pool/main/n/nspr/libnspr4-0d_4.9.2-1_amd64.deb
-uilder 137 2012-07-20 10:47:13.000000000 +0200 ./pool/main/n/nspr/libnspr4_4.9.2-1_amd64.deb
-uilder 20 2013-03-17 15:12:45.000000000 +0100 ./pool/main/n/nss/libnss3-1d_3.14.3-1_amd64.deb
-uilder 1038 2013-03-17 15:12:45.000000000 +0100 ./pool/main/n/nss/libnss3_3.14.3-1_amd64.deb
-uilder 27 2011-09-10 09:32:12.000000000 +0200 ./pool/main/n/nss-mdns/libnss-mdns_0.10-3.2_amd64.deb
-uilder 63 2012-12-09 16:42:51.000000000 +0100 ./pool/main/n/nss-pam-ldapd/libnss-ldapd_0.8.10-4_amd64.deb
-uilder 49 2012-12-09 16:42:51.000000000 +0100 ./pool/main/n/nss-pam-ldapd/libpam-ldapd_0.8.10-4_amd64.deb
-uilder 167 2012-12-09 16:42:51.000000000 +0100 ./pool/main/n/nss-pam-ldapd/nslcd_0.8.10-4_amd64.deb
-uilder 606 2012-08-04 17:47:44.000000000 +0200 ./pool/main/n/ntfs-3g/ntfs-3g_2012.1.15AR.5-2.1_amd64.deb
-uilder 176 2012-08-04 17:47:44.000000000 +0200 ./pool/main/n/ntfs-3g/ntfs-3g-udeb_2012.1.15AR.5-2.1_amd64.udeb
-uilder 549 2012-05-12 12:19:39.000000000 +0200 ./pool/main/n/ntp/ntp_4.2.6.p5+dfsg-2_amd64.deb
-uilder 81 2012-05-12 12:19:39.000000000 +0200 ./pool/main/n/ntp/ntpdate_4.2.6.p5+dfsg-2_amd64.deb
-uilder 32 2012-01-10 21:53:05.000000000 +0100 ./pool/main/n/ntrack/libntrack0_016-1.1_amd64.deb
-uilder 31 2012-01-10 21:53:05.000000000 +0100 ./pool/main/n/ntrack/libntrack-qt4-1_016-1.1_amd64.deb
-uilder 30 2012-01-10 21:53:06.000000000 +0100 ./pool/main/n/ntrack/ntrack-module-libnl-0_016-1.1_amd64.deb
-uilder 10 2011-07-30 01:03:15.000000000 +0200 ./pool/main/n/nullidentd/nullidentd_1.0-5_amd64.deb
-uilder 33 2012-07-01 11:08:44.000000000 +0200 ./pool/main/n/numactl/libnuma1_2.0.8~rc4-1_amd64.deb
-uilder 11 2012-05-15 08:47:59.000000000 +0200 ./pool/main/n/numlockx/numlockx_1.2-4_amd64.deb
-uilder 101 2010-01-24 13:47:25.000000000 +0100 ./pool/main/n/nvram-wakeup/nvram-wakeup_1.1-1_amd64.deb
-uilder 147 2012-04-23 08:02:14.000000000 +0200 ./pool/main/o/obconf/obconf_2.0.3+20110805+debian-1_amd64.deb
-uilder 94 2012-04-03 21:05:24.000000000 +0200 ./pool/main/o/obex-data-server/obex-data-server_0.4.5-1+b3_amd64.deb
-uilder 78 2012-06-20 09:22:28.000000000 +0200 ./pool/main/o/obexd/obexd-client_0.46-1+b1_amd64.deb
-uilder 127 2012-06-26 23:16:57.000000000 +0200 ./pool/main/o/ocaml/ocaml-base_3.12.1-4_amd64.deb
-uilder 648 2012-06-26 23:16:57.000000000 +0200 ./pool/main/o/ocaml/ocaml-base-nox_3.12.1-4_amd64.deb
-uilder 135 2012-04-24 22:54:52.000000000 +0200 ./pool/main/o/ocrad/ocrad_0.22~rc1-2_amd64.deb
-uilder 202 2012-11-29 00:08:36.000000000 +0100 ./pool/main/o/okular/libokularcore1_4.8.4-3+b1_amd64.deb
-uilder 995 2012-11-29 00:08:36.000000000 +0100 ./pool/main/o/okular/okular_4.8.4-3+b1_amd64.deb
-uilder 7 2012-11-05 22:38:31.000000000 +0100 ./pool/main/o/oldsys-preseed/oldsys-preseed_3.13_amd64.udeb
-uilder 183 2012-06-02 17:24:24.000000000 +0200 ./pool/main/o/openal-soft/libopenal1_1.14-4_amd64.deb
-uilder 11 2012-06-02 17:24:24.000000000 +0200 ./pool/main/o/openal-soft/libopenal-data_1.14-4_all.deb
-uilder 3955 2012-06-30 20:53:53.000000000 +0200 ./pool/main/o/openbabel/libopenbabel4_2.3.1+dfsg-4_amd64.deb
-uilder 279 2012-06-30 20:53:53.000000000 +0200 ./pool/main/o/openbabel/openbabel_2.3.1+dfsg-4_amd64.deb
-uilder 76 2013-03-27 17:05:27.000000000 +0100 ./pool/main/o/openbox/libobrender27_3.5.0-7_amd64.deb
-uilder 65 2013-03-27 17:05:27.000000000 +0100 ./pool/main/o/openbox/libobt0_3.5.0-7_amd64.deb
-uilder 330 2013-03-27 17:05:27.000000000 +0100 ./pool/main/o/openbox/openbox_3.5.0-7_amd64.deb
-uilder 230 2007-10-02 22:47:20.000000000 +0200 ./pool/main/o/openbox-themes/openbox-themes_1.0.2_all.deb
-uilder 38 2012-05-21 02:07:22.000000000 +0200 ./pool/main/o/openbsd-inetd/openbsd-inetd_0.20091229-2_amd64.deb
-uilder 6 2012-06-06 13:48:29.000000000 +0200 ./pool/main/o/openclipart/openclipart_0.18+dfsg-14_all.deb
-uilder 8900 2012-06-06 13:48:29.000000000 +0200 ./pool/main/o/openclipart/openclipart-libreoffice_0.18+dfsg-14_all.deb
-uilder 125469 2012-06-06 13:48:29.000000000 +0200 ./pool/main/o/openclipart/openclipart-png_0.18+dfsg-14_all.deb
-uilder 38913 2012-06-06 13:48:29.000000000 +0200 ./pool/main/o/openclipart/openclipart-svg_0.18+dfsg-14_all.deb
-uilder 99 2012-03-18 19:33:35.000000000 +0100 ./pool/main/o/opencore-amr/libopencore-amrnb0_0.1.3-2_amd64.deb
-uilder 51 2012-03-18 19:33:35.000000000 +0100 ./pool/main/o/opencore-amr/libopencore-amrwb0_0.1.3-2_amd64.deb
-uilder 258 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-calib3d2.3_2.3.1-11_amd64.deb
-uilder 157 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-contrib2.3_2.3.1-11_amd64.deb
-uilder 707 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-core2.3_2.3.1-11_amd64.deb
-uilder 371 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-features2d2.3_2.3.1-11_amd64.deb
-uilder 150 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-flann2.3_2.3.1-11_amd64.deb
-uilder 121 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-highgui2.3_2.3.1-11_amd64.deb
-uilder 692 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-imgproc2.3_2.3.1-11_amd64.deb
-uilder 313 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-legacy2.3_2.3.1-11_amd64.deb
-uilder 217 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-ml2.3_2.3.1-11_amd64.deb
-uilder 186 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-objdetect2.3_2.3.1-11_amd64.deb
-uilder 116 2012-06-28 06:20:40.000000000 +0200 ./pool/main/o/opencv/libopencv-video2.3_2.3.1-11_amd64.deb
-uilder 243 2012-07-07 09:47:08.000000000 +0200 ./pool/main/o/openexr/libopenexr6_1.6.1-6_amd64.deb
-uilder 224 2012-06-27 19:50:09.000000000 +0200 ./pool/main/o/open-iscsi/open-iscsi-udeb_2.0.873-3_amd64.udeb
-uilder 787 2013-04-25 15:10:49.000000000 +0200 ./pool/main/o/openjdk-6/icedtea-6-jre-cacao_6b27-1.12.5-1_amd64.deb
-uilder 585 2013-04-25 15:10:49.000000000 +0200 ./pool/main/o/openjdk-6/icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64.deb
-uilder 232 2013-04-25 15:10:49.000000000 +0200 ./pool/main/o/openjdk-6/openjdk-6-jre_6b27-1.12.5-1_amd64.deb
-uilder 24868 2013-04-25 15:10:49.000000000 +0200 ./pool/main/o/openjdk-6/openjdk-6-jre-headless_6b27-1.12.5-1_amd64.deb
-uilder 5997 2013-04-25 15:10:49.000000000 +0200 ./pool/main/o/openjdk-6/openjdk-6-jre-lib_6b27-1.12.5-1_all.deb
-uilder 84 2012-10-16 01:49:13.000000000 +0200 ./pool/main/o/openjpeg/libopenjpeg2_1.3+dfsg-4.6_amd64.deb
-uilder 337 2013-04-23 17:00:56.000000000 +0200 ./pool/main/o/openldap/ldap-utils_2.4.31-1+nmu2_amd64.deb
-uilder 238 2013-04-23 17:00:56.000000000 +0200 ./pool/main/o/openldap/libldap-2.4-2_2.4.31-1+nmu2_amd64.deb
-uilder 1727 2013-04-23 17:00:56.000000000 +0200 ./pool/main/o/openldap/slapd_2.4.31-1+nmu2_amd64.deb
-uilder 1403 2012-05-18 17:18:29.000000000 +0200 ./pool/main/o/openmpi/libopenmpi1.3_1.4.5-1_amd64.deb
-uilder 163 2012-05-18 17:18:29.000000000 +0200 ./pool/main/o/openmpi/openmpi-bin_1.4.5-1_amd64.deb
-uilder 95 2012-05-18 17:18:29.000000000 +0200 ./pool/main/o/openmpi/openmpi-checkpoint_1.4.5-1_amd64.deb
-uilder 99 2012-05-18 14:19:25.000000000 +0200 ./pool/main/o/openmpi/openmpi-common_1.4.5-1_all.deb
-uilder 32 2012-07-09 22:48:24.000000000 +0200 ./pool/main/o/openoffice.org-dictionaries/hyphen-de_3.3.0-4_all.deb
-uilder 13 2012-07-09 22:48:24.000000000 +0200 ./pool/main/o/openoffice.org-dictionaries/hyphen-fr_3.3.0-4_all.deb
-uilder 247 2012-07-09 22:48:24.000000000 +0200 ./pool/main/o/openoffice.org-dictionaries/myspell-en-gb_3.3.0-4_all.deb
-uilder 228 2012-07-09 22:48:24.000000000 +0200 ./pool/main/o/openoffice.org-dictionaries/myspell-en-us_3.3.0-4_all.deb
-uilder 357 2012-07-09 22:48:24.000000000 +0200 ./pool/main/o/openoffice.org-dictionaries/myspell-it_3.3.0-4_all.deb
-uilder 5024 2012-07-09 22:48:24.000000000 +0200 ./pool/main/o/openoffice.org-dictionaries/mythes-en-us_3.3.0-4_all.deb
-uilder 1811 2012-07-09 22:48:24.000000000 +0200 ./pool/main/o/openoffice.org-dictionaries/mythes-fr_3.3.0-4_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openclipart-openoffice.org_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-base_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-calc_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-draw_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-filter-binfilter_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-filter-mobiledev_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-gnome_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-gtk_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-da_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-de_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-el_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-es_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-fr_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-it_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-ja_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-pt-br_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-sv_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-help-zh-tw_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-hyphenation-de_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-hyphenation-fr_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-impress_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-java-common_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-kde_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-ca_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-da_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-de_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-el_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-en-za_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-es_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-fr_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-he_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-it_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-ja_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-nb_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-nl_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-nn_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-pt-br_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-sv_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-l10n-zh-tw_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-math_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-style-crystal_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-thesaurus-de_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-thesaurus-de-ch_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-thesaurus-en-us_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-thesaurus-fr_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-thesaurus-it_3.4.0~ooo340m1-7_all.deb
-uilder 119 2012-07-21 02:17:27.000000000 +0200 ./pool/main/o/openoffice.org/openoffice.org-writer_3.4.0~ooo340m1-7_all.deb
-uilder 18857 2012-05-29 11:38:47.000000000 +0200 ./pool/main/o/openshot/openshot_1.4.2-1.1_all.deb
-uilder 7132 2012-05-29 11:38:48.000000000 +0200 ./pool/main/o/openshot/openshot-doc_1.4.2-1.1_all.deb
-uilder 50 2012-02-06 23:20:54.000000000 +0100 ./pool/main/o/openslp-dfsg/libslp1_1.2.1-9_amd64.deb
-uilder 1792 2012-09-22 02:43:31.000000000 +0200 ./pool/main/o/openssh-blacklist/openssh-blacklist_0.4.1+nmu1_all.deb
-uilder 1793 2012-09-22 02:43:31.000000000 +0200 ./pool/main/o/openssh-blacklist/openssh-blacklist-extra_0.4.1+nmu1_all.deb
-uilder 1001 2013-02-08 23:33:03.000000000 +0100 ./pool/main/o/openssh/openssh-client_6.0p1-4_amd64.deb
-uilder 182 2013-02-08 23:33:04.000000000 +0100 ./pool/main/o/openssh/openssh-client-udeb_6.0p1-4_amd64.udeb
-uilder 332 2013-02-08 23:33:03.000000000 +0100 ./pool/main/o/openssh/openssh-server_6.0p1-4_amd64.deb
-uilder 196 2013-02-08 23:33:04.000000000 +0100 ./pool/main/o/openssh/openssh-server-udeb_6.0p1-4_amd64.udeb
-uilder 2 2013-02-08 22:37:51.000000000 +0100 ./pool/main/o/openssh/ssh_6.0p1-4_all.deb
-uilder 591 2013-03-18 20:52:45.000000000 +0100 ./pool/main/o/openssl/libcrypto1.0.0-udeb_1.0.1e-2_amd64.udeb
-uilder 1191 2013-03-18 20:52:45.000000000 +0100 ./pool/main/o/openssl/libssl1.0.0_1.0.1e-2_amd64.deb
-uilder 683 2013-03-18 20:52:45.000000000 +0100 ./pool/main/o/openssl/openssl_1.0.1e-2_amd64.deb
-uilder 3649 2012-12-18 17:34:16.000000000 +0100 ./pool/main/o/openthesaurus/mythes-de_20120516-2_all.deb
-uilder 3645 2012-12-18 17:34:16.000000000 +0100 ./pool/main/o/openthesaurus/mythes-de-ch_20120516-2_all.deb
-uilder 492 2012-03-23 11:32:49.000000000 +0100 ./pool/main/o/openvpn/openvpn_2.2.1-8_amd64.deb
-uilder 150 2013-04-12 03:58:00.000000000 +0200 ./pool/main/o/opus/libopus0_0.9.14+20120615-1+nmu1_amd64.deb
-uilder 274 2011-10-20 06:02:53.000000000 +0200 ./pool/main/o/orbit2/liborbit2_2.14.19-0.1_amd64.deb
-uilder 175 2012-04-26 10:47:37.000000000 +0200 ./pool/main/o/orc/liborc-0.4-0_0.4.16-2_amd64.deb
-uilder 507 2012-01-14 19:47:41.000000000 +0100 ./pool/main/o/oregano/oregano_0.70-1_amd64.deb
-uilder 735 2011-07-31 14:04:17.000000000 +0200 ./pool/main/o/osmo/osmo_0.2.10+svn922-2+b1_amd64.deb
-uilder 30 2013-04-28 17:11:09.000000000 +0200 ./pool/main/o/os-prober/os-prober_1.58_amd64.deb
-uilder 14 2013-04-28 17:11:09.000000000 +0200 ./pool/main/o/os-prober/os-prober-udeb_1.58_amd64.udeb
-uilder 5 2012-03-05 18:04:34.000000000 +0100 ./pool/main/o/oss-compat/oss-compat_2_amd64.deb
-uilder 2942 2012-08-05 13:33:00.000000000 +0200 ./pool/main/o/oxygencursors/oxygencursors_0.0.2012-06-kde4.8-2.1_all.deb
-uilder 29144 2012-06-09 21:22:00.000000000 +0200 ./pool/main/o/oxygen-icons/oxygen-icon-theme_4.8.4-1_all.deb
-uilder 52 2012-04-17 20:20:13.000000000 +0200 ./pool/main/p/p11-kit/libp11-kit0_0.12-3_amd64.deb
-uilder 1537 2012-01-08 17:49:01.000000000 +0100 ./pool/main/p/p7zip/p7zip-full_9.20.1~dfsg.1-4_amd64.deb
-uilder 139 2013-02-14 17:16:50.000000000 +0100 ./pool/main/p/packagekit/libpackagekit-glib2-14_0.7.6-3_amd64.deb
-uilder 751 2013-02-14 17:16:50.000000000 +0100 ./pool/main/p/packagekit/packagekit_0.7.6-3_amd64.deb
-uilder 125 2013-02-14 17:16:50.000000000 +0100 ./pool/main/p/packagekit/packagekit-backend-aptcc_0.7.6-3_amd64.deb
-uilder 68 2013-02-14 17:16:50.000000000 +0100 ./pool/main/p/packagekit/packagekit-tools_0.7.6-3_amd64.deb
-uilder 29 2013-02-14 17:16:50.000000000 +0100 ./pool/main/p/packagekit/python-packagekit_0.7.6-3_all.deb
-uilder 125 2012-05-04 18:19:09.000000000 +0200 ./pool/main/p/pam/libpam0g_1.1.3-7.1_amd64.deb
-uilder 82 2012-05-04 18:19:09.000000000 +0200 ./pool/main/p/pam/libpam-cracklib_1.1.3-7.1_amd64.deb
-uilder 341 2012-05-04 18:19:09.000000000 +0200 ./pool/main/p/pam/libpam-modules_1.1.3-7.1_amd64.deb
-uilder 110 2012-05-04 18:19:09.000000000 +0200 ./pool/main/p/pam/libpam-modules-bin_1.1.3-7.1_amd64.deb
-uilder 223 2012-05-04 18:19:09.000000000 +0200 ./pool/main/p/pam/libpam-runtime_1.1.3-7.1_all.deb
-uilder 26 2012-04-13 07:17:07.000000000 +0200 ./pool/main/p/pam-python/libpam-python_1.0.2-1_amd64.deb
-uilder 14 2012-03-09 00:03:08.000000000 +0100 ./pool/main/p/pam-tmpdir/libpam-tmpdir_0.09_amd64.deb
-uilder 148 2012-03-31 22:57:23.000000000 +0200 ./pool/main/p/pango1.0/gir1.2-pango-1.0_1.30.0-1_amd64.deb
-uilder 451 2012-03-31 22:57:23.000000000 +0200 ./pool/main/p/pango1.0/libpango1.0-0_1.30.0-1_amd64.deb
-uilder 608 2012-03-31 22:57:23.000000000 +0200 ./pool/main/p/pango1.0/libpango1.0-dev_1.30.0-1_amd64.deb
-uilder 67 2011-11-17 02:05:18.000000000 +0100 ./pool/main/p/pangomm/libpangomm-1.4-1_2.28.4-1_amd64.deb
-uilder 241 2012-01-16 17:48:22.000000000 +0100 ./pool/main/p/parcellite/parcellite_1.0.2~rc5-1_amd64.deb
-uilder 378 2012-06-20 12:20:09.000000000 +0200 ./pool/main/p/parley/parley_4.8.4-1_amd64.deb
-uilder 4406 2012-06-20 11:15:54.000000000 +0200 ./pool/main/p/parley/parley-data_4.8.4-1_all.deb
-uilder 6 2012-10-20 19:13:38.000000000 +0200 ./pool/main/p/partconf/partconf-find-partitions_1.40_amd64.udeb
-uilder 340 2013-01-07 14:13:01.000000000 +0100 ./pool/main/p/parted/libparted0debian1_2.3-12_amd64.deb
-uilder 167 2013-01-07 14:13:01.000000000 +0100 ./pool/main/p/parted/libparted0-udeb_2.3-12_amd64.udeb
-uilder 25 2013-01-07 14:13:01.000000000 +0100 ./pool/main/p/parted/parted-udeb_2.3-12_amd64.udeb
-uilder 6 2012-06-16 07:47:48.000000000 +0200 ./pool/main/p/partman-auto-crypto/partman-auto-crypto_19_all.udeb
-uilder 69 2012-12-12 07:17:04.000000000 +0100 ./pool/main/p/partman-auto-lvm/partman-auto-lvm_47_all.udeb
-uilder 83 2012-12-12 07:57:11.000000000 +0100 ./pool/main/p/partman-auto/partman-auto_106_amd64.udeb
-uilder 20 2012-06-16 07:47:59.000000000 +0200 ./pool/main/p/partman-auto-raid/partman-auto-raid_21_all.udeb
-uilder 151 2013-03-30 17:47:25.000000000 +0100 ./pool/main/p/partman-base/partman-base_165_amd64.udeb
-uilder 4 2013-03-30 17:47:25.000000000 +0100 ./pool/main/p/partman-base/partman-utils_165_amd64.udeb
-uilder 161 2012-11-05 07:12:32.000000000 +0100 ./pool/main/p/partman-basicfilesystems/partman-basicfilesystems_77_all.udeb
-uilder 21 2013-03-30 17:37:22.000000000 +0100 ./pool/main/p/partman-basicmethods/partman-basicmethods_52_all.udeb
-uilder 6 2012-11-05 07:17:32.000000000 +0100 ./pool/main/p/partman-btrfs/partman-btrfs_10_all.udeb
-uilder 289 2013-03-30 18:27:32.000000000 +0100 ./pool/main/p/partman-crypto/partman-crypto_57_amd64.udeb
-uilder 2 2013-03-30 17:42:23.000000000 +0100 ./pool/main/p/partman-crypto/partman-crypto-dm_57_all.udeb
-uilder 33 2013-03-30 18:17:29.000000000 +0100 ./pool/main/p/partman-efi/partman-efi_36_amd64.udeb
-uilder 83 2012-11-10 17:10:43.000000000 +0100 ./pool/main/p/partman-ext3/partman-ext3_74_all.udeb
-uilder 26 2012-12-12 07:47:09.000000000 +0100 ./pool/main/p/partman-jfs/partman-jfs_38_all.udeb
-uilder 302 2012-10-20 19:48:48.000000000 +0200 ./pool/main/p/partman-lvm/partman-lvm_82_all.udeb
-uilder 197 2012-10-16 13:15:19.000000000 +0200 ./pool/main/p/partman-md/partman-md_64_all.udeb
-uilder 2 2010-11-12 14:02:27.000000000 +0100 ./pool/main/p/partman-multipath/partman-multipath_3_all.udeb
-uilder 52 2012-12-18 09:13:38.000000000 +0100 ./pool/main/p/partman-nbd/partman-nbd_0.18_amd64.udeb
-uilder 206 2013-03-30 18:27:31.000000000 +0100 ./pool/main/p/partman-partitioning/partman-partitioning_91_amd64.udeb
-uilder 6 2012-06-15 17:12:46.000000000 +0200 ./pool/main/p/partman-reiserfs/partman-reiserfs_53_all.udeb
-uilder 117 2013-03-30 18:37:33.000000000 +0100 ./pool/main/p/partman-target/partman-target_82_all.udeb
-uilder 22 2012-10-21 19:17:23.000000000 +0200 ./pool/main/p/partman-ufs/partman-ufs_14_all.udeb
-uilder 6 2012-06-15 17:34:40.000000000 +0200 ./pool/main/p/partman-xfs/partman-xfs_50_all.udeb
-uilder 119 2012-01-25 15:57:08.000000000 +0100 ./pool/main/p/patch/patch_2.6.1-3_amd64.deb
-uilder 153 2012-05-20 00:18:24.000000000 +0200 ./pool/main/p/pavucontrol/pavucontrol_1.0-1_amd64.deb
-uilder 58 2012-11-20 00:08:24.000000000 +0100 ./pool/main/p/pciutils/libpci3_3.1.9-6_amd64.deb
-uilder 20 2012-11-20 00:08:24.000000000 +0100 ./pool/main/p/pciutils/libpci3-udeb_3.1.9-6_amd64.udeb
-uilder 273 2012-11-20 00:08:24.000000000 +0100 ./pool/main/p/pciutils/pciutils_3.1.9-6_amd64.deb
-uilder 161 2012-11-20 00:08:24.000000000 +0100 ./pool/main/p/pciutils/pciutils-udeb_3.1.9-6_amd64.udeb
-uilder 153 2012-04-15 21:33:56.000000000 +0200 ./pool/main/p/pcmanfm/pcmanfm_0.9.10-3_amd64.deb
-uilder 32 2012-06-25 18:03:55.000000000 +0200 ./pool/main/p/pcmciautils/pcmciautils_018-8_amd64.deb
-uilder 14 2012-06-25 18:03:55.000000000 +0200 ./pool/main/p/pcmciautils/pcmciautils-udeb_018-8_amd64.udeb
-uilder 237 2012-05-02 00:32:50.000000000 +0200 ./pool/main/p/pcre3/libpcre3_8.30-5_amd64.deb
-uilder 341 2012-05-02 00:32:50.000000000 +0200 ./pool/main/p/pcre3/libpcre3-dev_8.30-5_amd64.deb
-uilder 123 2012-05-02 00:32:50.000000000 +0200 ./pool/main/p/pcre3/libpcrecpp0_8.30-5_amd64.deb
-uilder 56 2012-06-26 21:33:22.000000000 +0200 ./pool/main/p/pcsc-lite/libpcsclite1_1.8.4-1_amd64.deb
-uilder 75 2013-04-12 10:28:33.000000000 +0200 ./pool/main/p/perl/libcgi-fast-perl_5.14.2-21_all.deb
-uilder 2 2013-04-12 10:28:33.000000000 +0200 ./pool/main/p/perl/libperl5.14_5.14.2-21_amd64.deb
-uilder 4322 2013-04-12 10:28:33.000000000 +0200 ./pool/main/p/perl/perl_5.14.2-21_amd64.deb
-uilder 1502 2013-04-12 10:28:33.000000000 +0200 ./pool/main/p/perl/perl-base_5.14.2-21_amd64.deb
-uilder 3362 2013-04-12 10:28:33.000000000 +0200 ./pool/main/p/perl/perl-modules_5.14.2-21_all.deb
-uilder 121 2012-03-09 12:03:00.000000000 +0100 ./pool/main/p/pexpect/python-pexpect_2.4-1_all.deb
-uilder 5561 2011-04-06 05:17:27.000000000 +0200 ./pool/main/p/pgf/pgf_2.10-1_all.deb
-uilder 79 2012-08-18 15:17:55.000000000 +0200 ./pool/main/p/phonon-backend-vlc/phonon-backend-vlc_0.6.0-1_amd64.deb
-uilder 141 2013-01-26 16:12:50.000000000 +0100 ./pool/main/p/phonon/libphonon4_4.6.0.0-3_amd64.deb
-uilder 15 2013-01-26 16:12:50.000000000 +0100 ./pool/main/p/phonon/phonon_4.6.0.0-3_amd64.deb
-uilder 2602 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/libapache2-mod-php5_5.4.4-14_amd64.deb
-uilder 2601 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/libapache2-mod-php5filter_5.4.4-14_amd64.deb
-uilder 1 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5_5.4.4-14_all.deb
-uilder 2497 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-cli_5.4.4-14_amd64.deb
-uilder 574 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-common_5.4.4-14_amd64.deb
-uilder 29 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-curl_5.4.4-14_amd64.deb
-uilder 35 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-gd_5.4.4-14_amd64.deb
-uilder 35 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-imap_5.4.4-14_amd64.deb
-uilder 22 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-ldap_5.4.4-14_amd64.deb
-uilder 16 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-mcrypt_5.4.4-14_amd64.deb
-uilder 79 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-mysql_5.4.4-14_amd64.deb
-uilder 6 2013-03-04 15:50:23.000000000 +0100 ./pool/main/p/php5/php5-recode_5.4.4-14_amd64.deb
-uilder 235 2012-05-25 18:33:28.000000000 +0200 ./pool/main/p/pianobooster/pianobooster_0.6.4-3.1_amd64.deb
-uilder 1412 2013-02-13 16:04:35.000000000 +0100 ./pool/main/p/pidgin/libpurple0_2.10.6-3_amd64.deb
-uilder 114 2013-02-13 16:04:35.000000000 +0100 ./pool/main/p/pidgin/libpurple-bin_2.10.6-3_all.deb
-uilder 592 2013-02-13 16:04:35.000000000 +0100 ./pool/main/p/pidgin/pidgin_2.10.6-3_amd64.deb
-uilder 4359 2013-02-13 16:04:35.000000000 +0100 ./pool/main/p/pidgin/pidgin-data_2.10.6-3_all.deb
-uilder 74 2011-02-16 21:41:36.000000000 +0100 ./pool/main/p/pinentry/pinentry-gtk2_0.8.1-1_amd64.deb
-uilder 2252 2012-06-12 11:43:58.000000000 +0200 ./pool/main/p/pitivi/pitivi_0.15.2-0.1_all.deb
-uilder 417 2013-02-18 20:19:03.000000000 +0100 ./pool/main/p/pixman/libpixman-1-0_0.26.0-4_amd64.deb
-uilder 447 2013-02-18 20:19:03.000000000 +0100 ./pool/main/p/pixman/libpixman-1-dev_0.26.0-4_amd64.deb
-uilder 49 2011-09-12 06:02:11.000000000 +0200 ./pool/main/p/pkcs11-helper/libpkcs11-helper1_1.09-1_amd64.deb
-uilder 59 2011-05-15 15:33:24.000000000 +0200 ./pool/main/p/pkg-config/pkg-config_0.26-1_amd64.deb
-uilder 21 2012-08-22 21:59:23.000000000 +0200 ./pool/main/p/pkg-kde-tools/libdlrestrictions1_0.15.3_amd64.deb
-uilder 11 2012-12-12 21:54:11.000000000 +0100 ./pool/main/p/pkgsel/pkgsel_0.37_all.udeb
-uilder 96 2011-11-01 22:06:28.000000000 +0100 ./pool/main/p/planets/planets_0.1.13-13_all.deb
-uilder 479 2012-03-21 19:33:19.000000000 +0100 ./pool/main/p/planner/planner_0.14.6-1_amd64.deb
-uilder 896 2012-03-21 19:33:19.000000000 +0100 ./pool/main/p/planner/planner-data_0.14.6-1_all.deb
-uilder 2759 2012-03-21 19:33:19.000000000 +0100 ./pool/main/p/planner/planner-doc_0.14.6-1_all.deb
-uilder 913 2012-03-08 00:09:49.000000000 +0100 ./pool/main/p/plotutils/libplot2c2_2.6-3_amd64.deb
-uilder 125 2012-01-16 16:17:21.000000000 +0100 ./pool/main/p/pm-utils/pm-utils_1.4.1-9_all.deb
-uilder 12 2012-02-01 19:33:55.000000000 +0100 ./pool/main/p/pnm2ppa/pnm2ppa_1.13-4_all.deb
-uilder 213 2012-02-01 19:33:55.000000000 +0100 ./pool/main/p/pnm2ppa/printer-driver-pnm2ppa_1.13-4_amd64.deb
-uilder 219 2011-12-29 17:47:34.000000000 +0100 ./pool/main/p/po-debconf/po-debconf_1.0.16+nmu2_all.deb
-uilder 15 2012-12-20 18:58:53.000000000 +0100 ./pool/main/p/policykit-1/gir1.2-polkit-1.0_0.105-3_amd64.deb
-uilder 88 2012-01-28 23:06:08.000000000 +0100 ./pool/main/p/policykit-1-gnome/policykit-1-gnome_0.105-2_amd64.deb
-uilder 25 2012-12-20 18:58:53.000000000 +0100 ./pool/main/p/policykit-1/libpolkit-agent-1-0_0.105-3_amd64.deb
-uilder 49 2012-12-20 18:58:53.000000000 +0100 ./pool/main/p/policykit-1/libpolkit-backend-1-0_0.105-3_amd64.deb
-uilder 49 2012-12-20 18:58:53.000000000 +0100 ./pool/main/p/policykit-1/libpolkit-gobject-1-0_0.105-3_amd64.deb
-uilder 65 2012-12-20 18:58:53.000000000 +0100 ./pool/main/p/policykit-1/policykit-1_0.105-3_amd64.deb
-uilder 55 2011-06-23 12:33:06.000000000 +0200 ./pool/main/p/polkit-kde-1/polkit-kde-1_0.99.0-3_amd64.deb
-uilder 75 2011-12-31 13:34:57.000000000 +0100 ./pool/main/p/polkit-qt-1/libpolkit-qt-1-1_0.103.0-1_amd64.deb
-uilder 1445 2012-08-04 05:02:50.000000000 +0200 ./pool/main/p/poppler-data/poppler-data_0.4.5-10_all.deb
-uilder 1084 2013-03-25 22:05:20.000000000 +0100 ./pool/main/p/poppler/libpoppler19_0.18.4-6_amd64.deb
-uilder 104 2013-03-25 22:05:20.000000000 +0100 ./pool/main/p/poppler/libpoppler-glib8_0.18.4-6_amd64.deb
-uilder 138 2013-03-25 22:05:20.000000000 +0100 ./pool/main/p/poppler/libpoppler-qt4-3_0.18.4-6_amd64.deb
-uilder 159 2013-03-25 22:05:20.000000000 +0100 ./pool/main/p/poppler/poppler-utils_0.18.4-6_amd64.deb
-uilder 56 2012-05-31 00:04:45.000000000 +0200 ./pool/main/p/popt/libpopt0_1.16-7_amd64.deb
-uilder 19 2012-05-31 00:04:45.000000000 +0200 ./pool/main/p/popt/libpopt0-udeb_1.16-7_amd64.udeb
-uilder 67 2012-09-28 00:51:02.000000000 +0200 ./pool/main/p/popularity-contest/popularity-contest_1.56_all.deb
-uilder 75 2011-12-08 00:33:22.000000000 +0100 ./pool/main/p/portaudio19/libportaudio2_19+svn20111121-1_amd64.deb
-uilder 25 2012-12-14 10:58:58.000000000 +0100 ./pool/main/p/portmidi/libportmidi0_184-2.1_amd64.deb
-uilder 67 2011-04-18 00:51:25.000000000 +0200 ./pool/main/p/portsmf/libportsmf0_0.1~svn20101010-3_amd64.deb
-uilder 515 2013-04-04 15:35:06.000000000 +0200 ./pool/main/p/postgresql-9.1/libpq5_9.1.9-1_amd64.deb
-uilder 3536 2013-04-04 15:35:06.000000000 +0200 ./pool/main/p/postgresql-9.1/postgresql-9.1_9.1.9-1_amd64.deb
-uilder 1353 2013-04-04 15:35:06.000000000 +0200 ./pool/main/p/postgresql-9.1/postgresql-client-9.1_9.1.9-1_amd64.deb
-uilder 42 2013-01-09 17:22:17.000000000 +0100 ./pool/main/p/postgresql-common/postgresql_9.1+134wheezy3_all.deb
-uilder 42 2013-01-09 17:22:17.000000000 +0100 ./pool/main/p/postgresql-common/postgresql-client_9.1+134wheezy3_all.deb
-uilder 62 2013-01-09 17:22:17.000000000 +0100 ./pool/main/p/postgresql-common/postgresql-client-common_134wheezy3_all.deb
-uilder 135 2013-01-09 17:22:17.000000000 +0100 ./pool/main/p/postgresql-common/postgresql-common_134wheezy3_all.deb
-uilder 12 2009-12-02 19:06:35.000000000 +0100 ./pool/main/p/powermgmt-base/powermgmt-base_1.31_amd64.deb
-uilder 170 2013-04-21 01:56:48.000000000 +0200 ./pool/main/p/powertop/powertop_2.0-0.3_amd64.deb
-uilder 49 2011-04-23 17:10:45.000000000 +0200 ./pool/main/p/pppoeconf/pppoeconf_1.20_all.deb
-uilder 374 2012-06-23 00:08:07.000000000 +0200 ./pool/main/p/ppp/ppp_2.4.5-5.1+b1_amd64.deb
-uilder 111 2012-06-23 00:08:07.000000000 +0200 ./pool/main/p/ppp/ppp-udeb_2.4.5-5.1+b1_amd64.udeb
-uilder 51 2012-03-19 22:33:48.000000000 +0100 ./pool/main/p/pptp-linux/pptp-linux_1.7.2-7_amd64.deb
-uilder 30 2013-01-10 07:49:24.000000000 +0100 ./pool/main/p/preseed/network-preseed_1.58_all.udeb
-uilder 36 2012-06-26 20:20:17.000000000 +0200 ./pool/main/p/printer-applet/printer-applet_4.8.4-1_all.deb
-uilder 2 2012-04-17 08:18:31.000000000 +0200 ./pool/main/p/printing-metas/printer-driver-all_0.20120416_all.deb
-uilder 16 2011-12-05 17:55:23.000000000 +0100 ./pool/main/p/prison/libprison0_1.0+dfsg-1_amd64.deb
-uilder 54 2009-05-15 13:02:02.000000000 +0200 ./pool/main/p/procinfo/procinfo_2.0.304-1_amd64.deb
-uilder 154 2012-06-06 23:20:57.000000000 +0200 ./pool/main/p/procmail/procmail_3.22-20_amd64.deb
-uilder 57 2013-03-28 12:07:39.000000000 +0100 ./pool/main/p/procps/libprocps0_3.3.3-3_amd64.deb
-uilder 247 2013-03-28 12:07:39.000000000 +0100 ./pool/main/p/procps/procps_3.3.3-3_amd64.deb
-uilder 451 2008-07-20 02:56:55.000000000 +0200 ./pool/main/p/prosper/prosper_1.00.4+cvs.2007.05.01-4_all.deb
-uilder 40 2011-06-29 16:47:13.000000000 +0200 ./pool/main/p/ps2eps/ps2eps_1.68-1_amd64.deb
-uilder 132 2013-02-02 08:09:08.000000000 +0100 ./pool/main/p/psmisc/psmisc_22.19-1+deb7u1_amd64.deb
-uilder 387 2012-04-03 21:33:42.000000000 +0200 ./pool/main/p/pstoedit/libpstoedit0c2a_3.60-2+b1_amd64.deb
-uilder 136 2012-04-03 21:33:42.000000000 +0200 ./pool/main/p/pstoedit/pstoedit_3.60-2+b1_amd64.deb
-uilder 74 2012-08-25 12:39:22.000000000 +0200 ./pool/main/p/psutils/psutils_1.17.dfsg-1_amd64.deb
-uilder 82 2010-05-12 19:50:41.000000000 +0200 ./pool/main/p/pth/libpth20_2.0.7-16_amd64.deb
-uilder 33 2012-07-14 03:17:23.000000000 +0200 ./pool/main/p/ptouch-driver/printer-driver-ptouch_1.3-4_amd64.deb
-uilder 227 2013-04-24 22:34:20.000000000 +0200 ./pool/main/p/pulseaudio/libpulse0_2.0-6.1_amd64.deb
-uilder 77 2013-04-24 22:34:20.000000000 +0200 ./pool/main/p/pulseaudio/libpulse-dev_2.0-6.1_amd64.deb
-uilder 24 2013-04-24 22:34:20.000000000 +0200 ./pool/main/p/pulseaudio/libpulse-mainloop-glib0_2.0-6.1_amd64.deb
-uilder 849 2013-04-24 22:34:20.000000000 +0200 ./pool/main/p/pulseaudio/pulseaudio_2.0-6.1_amd64.deb
-uilder 41 2013-04-24 22:34:20.000000000 +0200 ./pool/main/p/pulseaudio/pulseaudio-esound-compat_2.0-6.1_amd64.deb
-uilder 28 2013-04-24 22:34:20.000000000 +0200 ./pool/main/p/pulseaudio/pulseaudio-module-x11_2.0-6.1_amd64.deb
-uilder 74 2013-04-24 22:34:20.000000000 +0200 ./pool/main/p/pulseaudio/pulseaudio-utils_2.0-6.1_amd64.deb
-uilder 30 2011-10-25 12:02:33.000000000 +0200 ./pool/main/p/pxljr/printer-driver-pxljr_1.3+repack0-2_amd64.deb
-uilder 3 2012-11-18 01:33:31.000000000 +0100 ./pool/main/p/pyatspi/python-pyatspi2_2.5.3+dfsg-3_all.deb
-uilder 30 2012-11-18 01:33:31.000000000 +0100 ./pool/main/p/pyatspi/python-pyatspi_2.5.3+dfsg-3_all.deb
-uilder 83 2011-04-16 01:04:32.000000000 +0200 ./pool/main/p/pycairo/python-cairo_1.8.8-1+b2_amd64.deb
-uilder 86 2012-02-11 17:51:50.000000000 +0100 ./pool/main/p/pycurl/python-pycurl_7.19.0-5_amd64.deb
-uilder 2849 2013-01-15 04:34:43.000000000 +0100 ./pool/main/p/pygame/python-pygame_1.9.1release+dfsg-8_amd64.deb
-uilder 543 2012-03-13 19:21:27.000000000 +0100 ./pool/main/p/pygobject-2/python-gobject-2_2.28.6-10_amd64.deb
-uilder 506 2013-02-21 23:32:27.000000000 +0100 ./pool/main/p/pygobject/python-gi_3.2.2-2_amd64.deb
-uilder 162 2013-02-21 23:32:27.000000000 +0100 ./pool/main/p/pygobject/python-gi-cairo_3.2.2-2_amd64.deb
-uilder 159 2013-02-21 23:32:27.000000000 +0100 ./pool/main/p/pygobject/python-gobject_3.2.2-2_all.deb
-uilder 109 2011-09-30 20:34:49.000000000 +0200 ./pool/main/p/pygoocanvas/python-pygoocanvas_0.14.1-1+b3_amd64.deb
-uilder 45 2013-01-19 13:28:20.000000000 +0100 ./pool/main/p/pygtk/python-glade2_2.24.0-3+b1_amd64.deb
-uilder 1764 2013-01-19 13:28:20.000000000 +0100 ./pool/main/p/pygtk/python-gtk2_2.24.0-3+b1_amd64.deb
-uilder 144 2011-05-30 12:33:45.000000000 +0200 ./pool/main/p/pygtksourceview/python-gtksourceview2_2.10.1-2_amd64.deb
-uilder 12948 2012-06-17 07:18:21.000000000 +0200 ./pool/main/p/pykde4/python-kde4_4.8.4-1_amd64.deb
-uilder 7435 2012-05-02 20:53:25.000000000 +0200 ./pool/main/p/pymol/pymol_1.5.0.1-2_amd64.deb
-uilder 109 2011-04-16 03:48:42.000000000 +0200 ./pool/main/p/pyorbit/python-pyorbit_2.24.0-6+b1_amd64.deb
-uilder 64 2012-07-21 06:32:46.000000000 +0200 ./pool/main/p/pyparsing/python-pyparsing_1.5.6+dfsg1-2_all.deb
-uilder 78 2011-05-08 20:54:42.000000000 +0200 ./pool/main/p/pyserial/python-serial_2.5-2.1_all.deb
-uilder 3218 2010-04-05 13:41:05.000000000 +0200 ./pool/main/p/pysycache/pysycache_3.1-3_all.deb
-uilder 287 2010-04-05 13:41:04.000000000 +0200 ./pool/main/p/pysycache/pysycache-buttons-ice_3.1-3_all.deb
-uilder 1499 2010-04-05 13:41:04.000000000 +0200 ./pool/main/p/pysycache/pysycache-click-dinosaurs_3.1-3_all.deb
-uilder 521 2010-04-05 13:41:05.000000000 +0200 ./pool/main/p/pysycache/pysycache-dblclick-appleandpear_3.1-3_all.deb
-uilder 942 2010-04-05 13:41:04.000000000 +0200 ./pool/main/p/pysycache/pysycache-i18n_3.1-3_all.deb
-uilder 2391 2010-04-05 13:41:04.000000000 +0200 ./pool/main/p/pysycache/pysycache-images_3.1-3_all.deb
-uilder 1525 2010-04-05 13:41:05.000000000 +0200 ./pool/main/p/pysycache/pysycache-move-animals_3.1-3_all.deb
-uilder 10341 2010-04-05 13:41:05.000000000 +0200 ./pool/main/p/pysycache/pysycache-puzzle-cartoons_3.1-3_all.deb
-uilder 725 2010-04-05 13:41:05.000000000 +0200 ./pool/main/p/pysycache/pysycache-sounds_3.1-3_all.deb
-uilder 2451 2013-01-26 16:52:59.000000000 +0100 ./pool/main/p/python2.6/python2.6_2.6.8-1.1_amd64.deb
-uilder 1511 2013-01-26 16:52:59.000000000 +0100 ./pool/main/p/python2.6/python2.6-minimal_2.6.8-1.1_amd64.deb
-uilder 1180 2013-01-02 16:26:05.000000000 +0100 ./pool/main/p/python2.7/libpython2.7_2.7.3-6_amd64.deb
-uilder 2666 2013-01-02 16:26:05.000000000 +0100 ./pool/main/p/python2.7/python2.7_2.7.3-6_amd64.deb
-uilder 1741 2013-01-02 16:26:05.000000000 +0100 ./pool/main/p/python2.7/python2.7-minimal_2.7.3-6_amd64.deb
-uilder 312 2013-03-14 21:39:23.000000000 +0100 ./pool/main/p/python-apt/python-apt_0.8.8.2_amd64.deb
-uilder 113 2013-03-14 21:39:23.000000000 +0100 ./pool/main/p/python-apt/python-apt-common_0.8.8.2_all.deb
-uilder 638 2011-05-05 14:19:41.000000000 +0200 ./pool/main/p/python-box2d/python-box2d_2.0.2+svn20100109.244-1+b1_amd64.deb
-uilder 47 2011-04-14 17:10:18.000000000 +0200 ./pool/main/p/python-central/python-central_0.6.17_all.deb
-uilder 13 2011-04-30 18:35:39.000000000 +0200 ./pool/main/p/python-cjson/python-cjson_1.0.5-4+b1_amd64.deb
-uilder 115 2012-12-17 20:52:22.000000000 +0100 ./pool/main/p/python-cups/python-cups_1.9.48-1.1_amd64.deb
-uilder 20 2010-04-26 12:17:36.000000000 +0200 ./pool/main/p/python-daemon/python-daemon_1.5.5-1_all.deb
-uilder 55 2012-07-06 16:47:33.000000000 +0200 ./pool/main/p/python-dateutil/python-dateutil_1.5+dfsg-0.1_all.deb
-uilder 9 2012-04-16 12:19:03.000000000 +0200 ./pool/main/p/python-debianbts/python-debianbts_1.11_all.deb
-uilder 60 2011-08-04 08:17:59.000000000 +0200 ./pool/main/p/python-debian/python-debian_0.1.21_all.deb
-uilder 21 2012-04-23 20:48:32.000000000 +0200 ./pool/main/p/python-decorator/python-decorator_3.3.3-1_all.deb
-uilder 177 2013-02-08 22:32:51.000000000 +0100 ./pool/main/p/python-defaults/python_2.7.3-4_all.deb
-uilder 42 2013-02-08 22:32:51.000000000 +0100 ./pool/main/p/python-defaults/python-minimal_2.7.3-4_all.deb
-uilder 12 2012-06-11 14:34:58.000000000 +0200 ./pool/main/p/python-defer/python-defer_1.0.6-2_all.deb
-uilder 34 2012-05-01 11:20:04.000000000 +0200 ./pool/main/p/python-easygui/python-easygui_0.96-3_all.deb
-uilder 345 2010-07-24 18:47:21.000000000 +0200 ./pool/main/p/python-elements/python-elements_0.13+svn20090823.230+dfsg-2_all.deb
-uilder 61 2012-05-27 12:20:57.000000000 +0200 ./pool/main/p/python-httplib2/python-httplib2_0.7.4-2_all.deb
-uilder 446 2011-07-09 12:30:05.000000000 +0200 ./pool/main/p/python-imaging/python-imaging_1.1.7-4_amd64.deb
-uilder 37 2011-07-09 12:30:05.000000000 +0200 ./pool/main/p/python-imaging/python-imaging-tk_1.1.7-4_amd64.deb
-uilder 9 2010-07-01 18:17:13.000000000 +0200 ./pool/main/p/python-lockfile/python-lockfile_0.8-2_all.deb
-uilder 2571 2013-02-27 11:11:08.000000000 +0100 ./pool/main/p/python-numpy/python-numpy_1.6.2-1.2_amd64.deb
-uilder 118 2011-06-21 17:33:19.000000000 +0200 ./pool/main/p/python-pmw/python-pmw_1.3.2-6_all.deb
-uilder 141 2012-02-27 01:17:53.000000000 +0100 ./pool/main/p/python-pyalsa/python-pyalsa_1.0.25-1_amd64.deb
-uilder 63 2012-07-16 22:47:39.000000000 +0200 ./pool/main/p/python-pylibacl/python-pylibacl_0.5.1-1.1_amd64.deb
-uilder 68 2012-06-24 10:51:51.000000000 +0200 ./pool/main/p/python-pysqlite2/python-pysqlite2_2.6.3-3_amd64.deb
-uilder 46 2012-07-16 22:48:17.000000000 +0200 ./pool/main/p/python-pyxattr/python-pyxattr_0.5.1-1.1_amd64.deb
-uilder 6110 2012-07-25 01:02:07.000000000 +0200 ./pool/main/p/python-qt4/python-qt4_4.9.3-4_amd64.deb
-uilder 32 2012-07-25 01:02:07.000000000 +0200 ./pool/main/p/python-qt4/python-qt4-dbus_4.9.3-4_amd64.deb
-uilder 70 2011-04-17 22:38:34.000000000 +0200 ./pool/main/p/python-reportlab/python-renderpm_2.5-1.1_amd64.deb
-uilder 559 2011-04-17 22:38:34.000000000 +0200 ./pool/main/p/python-reportlab/python-reportlab_2.5-1.1_all.deb
-uilder 65 2011-04-17 22:38:34.000000000 +0200 ./pool/main/p/python-reportlab/python-reportlab-accel_2.5-1.1_amd64.deb
-uilder 126 2008-12-16 15:32:01.000000000 +0100 ./pool/main/p/python-soappy/python-soappy_0.12.0-4_all.deb
-uilder 16 2012-03-21 16:18:40.000000000 +0100 ./pool/main/p/python-stdlib-extensions/python-gdbm_2.7.3-1_amd64.deb
-uilder 50 2012-03-21 16:18:40.000000000 +0100 ./pool/main/p/python-stdlib-extensions/python-tk_2.7.3-1_amd64.deb
-uilder 33 2012-06-30 20:32:50.000000000 +0200 ./pool/main/p/python-support/python-support_1.0.15_all.deb
-uilder 39 2012-06-07 15:18:44.000000000 +0200 ./pool/main/p/python-tz/python-tz_2012c-1_all.deb
-uilder 38 2012-03-15 15:54:36.000000000 +0100 ./pool/main/p/python-xklavier/python-xklavier_0.4-4_amd64.deb
-uilder 33 2011-12-03 16:47:14.000000000 +0100 ./pool/main/p/pyudev/python-pyudev_0.13-1_all.deb
-uilder 36 2012-12-22 12:43:19.000000000 +0100 ./pool/main/p/pyxdg/python-xdg_0.19-5_all.deb
-uilder 393 2012-06-04 12:20:29.000000000 +0200 ./pool/main/q/qca2/libqca2_2.0.3-4_amd64.deb
-uilder 118 2012-06-24 19:34:32.000000000 +0200 ./pool/main/q/qca2-plugin-ossl/libqca2-plugin-ossl_2.0.0~beta3-2_amd64.deb
-uilder 8 2011-10-12 17:32:25.000000000 +0200 ./pool/main/q/qcad/qcad_2.0.5.0-1+090318.1-2_all.deb
-uilder 150 2012-03-03 17:19:52.000000000 +0100 ./pool/main/q/qdbm/libqdbm14_1.8.78-2_amd64.deb
-uilder 61 2011-06-23 12:33:47.000000000 +0200 ./pool/main/q/qimageblitz/libqimageblitz4_0.0.6-4_amd64.deb
-uilder 600 2012-06-22 01:27:03.000000000 +0200 ./pool/main/q/qjackctl/qjackctl_0.3.9-2_amd64.deb
-uilder 58 2012-11-08 13:27:51.000000000 +0100 ./pool/main/q/qjson/libqjson0_0.7.1-7_amd64.deb
-uilder 36 2012-04-02 05:33:50.000000000 +0200 ./pool/main/q/qrencode/libqrencode3_3.3.0-2_amd64.deb
-uilder 143 2010-06-10 14:32:48.000000000 +0200 ./pool/main/q/qstat/qstat_2.11-3_amd64.deb
-uilder 277 2011-08-25 11:49:02.000000000 +0200 ./pool/main/q/qsynth/qsynth_0.3.6-2_amd64.deb
-uilder 46 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-dbus_4.8.2+dfsg-11_amd64.deb
-uilder 1079 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-declarative_4.8.2+dfsg-11_amd64.deb
-uilder 3560 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-designer_4.8.2+dfsg-11_amd64.deb
-uilder 233 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-help_4.8.2+dfsg-11_amd64.deb
-uilder 556 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-network_4.8.2+dfsg-11_amd64.deb
-uilder 329 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-opengl_4.8.2+dfsg-11_amd64.deb
-uilder 1047 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-qt3support_4.8.2+dfsg-11_amd64.deb
-uilder 796 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-script_4.8.2+dfsg-11_amd64.deb
-uilder 252 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-scripttools_4.8.2+dfsg-11_amd64.deb
-uilder 134 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-sql_4.8.2+dfsg-11_amd64.deb
-uilder 69 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-sql-mysql_4.8.2+dfsg-11_amd64.deb
-uilder 63 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-sql-sqlite_4.8.2+dfsg-11_amd64.deb
-uilder 173 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-svg_4.8.2+dfsg-11_amd64.deb
-uilder 98 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-test_4.8.2+dfsg-11_amd64.deb
-uilder 128 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-xml_4.8.2+dfsg-11_amd64.deb
-uilder 1024 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqt4-xmlpatterns_4.8.2+dfsg-11_amd64.deb
-uilder 2055 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqtcore4_4.8.2+dfsg-11_amd64.deb
-uilder 214 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqtdbus4_4.8.2+dfsg-11_amd64.deb
-uilder 3952 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/libqtgui4_4.8.2+dfsg-11_amd64.deb
-uilder 68 2013-02-06 01:15:21.000000000 +0100 ./pool/main/q/qt4-x11/qdbus_4.8.2+dfsg-11_amd64.deb
-uilder 14 2012-05-02 11:00:05.000000000 +0200 ./pool/main/q/qt-assistant-compat/libqtassistantclient4_4.6.3-4_amd64.deb
-uilder 860 2012-05-02 08:47:36.000000000 +0200 ./pool/main/q/qtmobility/libqtlocation1_1.2.0-3_amd64.deb
-uilder 186 2012-06-17 21:05:43.000000000 +0200 ./pool/main/q/qtruby/libqtruby4shared2_4.8.4-1_amd64.deb
-uilder 849 2012-06-17 21:05:43.000000000 +0200 ./pool/main/q/qtruby/ruby-qt4_4.8.4-1_amd64.deb
-uilder 57 2012-06-17 21:05:43.000000000 +0200 ./pool/main/q/qtruby/ruby-qt4-webkit_4.8.4-1_amd64.deb
-uilder 990 2012-05-01 19:33:36.000000000 +0200 ./pool/main/q/qtscriptgenerator/libqtscript4-core_0.2.0-1_amd64.deb
-uilder 4233 2012-05-01 19:33:36.000000000 +0200 ./pool/main/q/qtscriptgenerator/libqtscript4-gui_0.2.0-1_amd64.deb
-uilder 430 2012-05-01 19:33:36.000000000 +0200 ./pool/main/q/qtscriptgenerator/libqtscript4-network_0.2.0-1_amd64.deb
-uilder 197 2012-05-01 19:33:36.000000000 +0200 ./pool/main/q/qtscriptgenerator/libqtscript4-sql_0.2.0-1_amd64.deb
-uilder 274 2012-05-01 19:33:36.000000000 +0200 ./pool/main/q/qtscriptgenerator/libqtscript4-uitools_0.2.0-1_amd64.deb
-uilder 201 2012-05-01 19:33:36.000000000 +0200 ./pool/main/q/qtscriptgenerator/libqtscript4-xml_0.2.0-1_amd64.deb
-uilder 5685 2012-11-19 01:56:00.000000000 +0100 ./pool/main/q/qtwebkit/libqtwebkit4_2.2.1-5_amd64.deb
-uilder 39 2011-01-17 01:03:04.000000000 +0100 ./pool/main/r/radiusclient-ng/libradiusclient-ng2_0.5.6-1.1_amd64.deb
-uilder 236 2011-10-05 01:32:33.000000000 +0200 ./pool/main/r/raidutils/dpt-i2o-raidutils_0.0.6-19_amd64.deb
-uilder 196 2012-09-08 07:43:22.000000000 +0200 ./pool/main/r/raptor2/libraptor2-0_2.0.8-2_amd64.deb
-uilder 221 2012-06-25 19:37:36.000000000 +0200 ./pool/main/r/raptor/libraptor1_1.4.21-7.1_amd64.deb
-uilder 72 2010-07-04 17:47:02.000000000 +0200 ./pool/main/r/rarian/librarian0_0.8.1-5_amd64.deb
-uilder 127 2010-07-04 17:47:02.000000000 +0200 ./pool/main/r/rarian/rarian-compat_0.8.1-5_amd64.deb
-uilder 23 2010-07-04 17:47:02.000000000 +0200 ./pool/main/r/rarian/scrollkeeper_0.8.1-5_all.deb
-uilder 1638 2012-01-07 00:18:37.000000000 +0100 ./pool/main/r/rasmol/rasmol_2.7.5.2-1_amd64.deb
-uilder 240 2012-05-15 11:41:41.000000000 +0200 ./pool/main/r/rasqal/librasqal3_0.9.29-1_amd64.deb
-uilder 9 2011-10-25 12:02:55.000000000 +0200 ./pool/main/r/rastertosag-gdi/printer-driver-sag-gdi_0.1-3_all.deb
-uilder 7 2012-05-30 12:05:04.000000000 +0200 ./pool/main/r/rdate/rdate-udeb_1.2-5_amd64.udeb
-uilder 163 2012-02-08 18:47:19.000000000 +0100 ./pool/main/r/rdesktop/rdesktop_1.7.1-1_amd64.deb
-uilder 199 2012-01-04 22:24:34.000000000 +0100 ./pool/main/r/rdiff-backup/rdiff-backup_1.2.8-7_amd64.deb
-uilder 39 2012-01-09 20:50:00.000000000 +0100 ./pool/main/r/readahead-fedora/readahead-fedora_1.5.6-4_amd64.deb
-uilder 147 2012-12-31 00:57:48.000000000 +0100 ./pool/main/r/readline5/libreadline5_5.2+dfsg-1_amd64.deb
-uilder 163 2012-12-30 23:57:42.000000000 +0100 ./pool/main/r/readline6/libreadline6_6.2+dfsg-0.1_amd64.deb
-uilder 32 2012-12-30 23:57:42.000000000 +0100 ./pool/main/r/readline6/readline-common_6.2+dfsg-0.1_all.deb
-uilder 762 2012-06-06 13:49:14.000000000 +0200 ./pool/main/r/recode/librecode0_3.6-20_amd64.deb
-uilder 207 2012-06-06 13:49:14.000000000 +0200 ./pool/main/r/recode/recode_3.6-20_amd64.deb
-uilder 57 2010-07-20 21:02:03.000000000 +0200 ./pool/main/r/recordmydesktop/recordmydesktop_0.3.8.1+svn602-1+b1_amd64.deb
-uilder 127 2012-06-09 18:51:07.000000000 +0200 ./pool/main/r/redland/librdf0_1.0.15-1+b1_amd64.deb
-uilder 78 2009-03-07 12:17:14.000000000 +0100 ./pool/main/r/reiserfsprogs/mkreiserfs-udeb_3.6.21-1_amd64.udeb
-uilder 316 2009-03-07 12:17:14.000000000 +0100 ./pool/main/r/reiserfsprogs/reiserfsprogs-udeb_3.6.21-1_amd64.udeb
-uilder 134 2013-03-16 15:23:06.000000000 +0100 ./pool/main/r/reportbug/python-reportbug_6.4.4_all.deb
-uilder 124 2013-03-16 15:23:06.000000000 +0100 ./pool/main/r/reportbug/reportbug_6.4.4_all.deb
-uilder 132 2012-10-22 06:38:48.000000000 +0200 ./pool/main/r/rescue/rescue-mode_1.35_all.udeb
-uilder 68 2012-06-20 00:03:31.000000000 +0200 ./pool/main/r/resolvconf/resolvconf_1.67_all.deb
-uilder 8 2010-02-08 10:56:49.000000000 +0100 ./pool/main/r/rfkill/rfkill_0.4-1_amd64.deb
-uilder 1038 2012-02-14 00:05:25.000000000 +0100 ./pool/main/r/rhino/librhino-java_1.7R3-5_all.deb
-uilder 361 2012-07-28 05:32:21.000000000 +0200 ./pool/main/r/rhythmbox/gir1.2-rb-3.0_2.97-2.1_amd64.deb
-uilder 833 2012-07-28 05:32:21.000000000 +0200 ./pool/main/r/rhythmbox/librhythmbox-core6_2.97-2.1_amd64.deb
-uilder 381 2012-07-28 05:32:21.000000000 +0200 ./pool/main/r/rhythmbox/rhythmbox_2.97-2.1_amd64.deb
-uilder 5203 2012-07-28 04:47:25.000000000 +0200 ./pool/main/r/rhythmbox/rhythmbox-data_2.97-2.1_all.deb
-uilder 334 2012-07-28 05:32:21.000000000 +0200 ./pool/main/r/rhythmbox/rhythmbox-plugin-cdrecorder_2.97-2.1_amd64.deb
-uilder 814 2012-07-28 05:32:21.000000000 +0200 ./pool/main/r/rhythmbox/rhythmbox-plugins_2.97-2.1_amd64.deb
-uilder 1025 2012-06-16 18:21:14.000000000 +0200 ./pool/main/r/rocs/rocs_4.8.4-1_amd64.deb
-uilder 8413 2012-05-14 00:52:15.000000000 +0200 ./pool/main/r/rosegarden/rosegarden_12.04-1_amd64.deb
-uilder 45 2012-06-15 17:36:38.000000000 +0200 ./pool/main/r/rpcbind/rpcbind_0.2.0-8_amd64.deb
-uilder 1076 2013-01-06 15:25:21.000000000 +0100 ./pool/main/r/rpm/librpm3_4.10.0-5+deb7u1_amd64.deb
-uilder 964 2013-01-06 15:25:21.000000000 +0100 ./pool/main/r/rpm/librpmbuild3_4.10.0-5+deb7u1_amd64.deb
-uilder 974 2013-01-06 15:25:21.000000000 +0100 ./pool/main/r/rpm/librpmio3_4.10.0-5+deb7u1_amd64.deb
-uilder 905 2013-01-06 15:25:21.000000000 +0100 ./pool/main/r/rpm/librpmsign1_4.10.0-5+deb7u1_amd64.deb
-uilder 902 2013-01-06 15:25:21.000000000 +0100 ./pool/main/r/rpm/rpm2cpio_4.10.0-5+deb7u1_amd64.deb
-uilder 1042 2013-01-06 15:25:21.000000000 +0100 ./pool/main/r/rpm/rpm_4.10.0-5+deb7u1_amd64.deb
-uilder 920 2013-01-06 15:25:21.000000000 +0100 ./pool/main/r/rpm/rpm-common_4.10.0-5+deb7u1_amd64.deb
-uilder 315 2012-08-02 09:32:11.000000000 +0200 ./pool/main/r/rrdtool/librrd4_1.4.7-2_amd64.deb
-uilder 113 2012-08-02 09:32:11.000000000 +0200 ./pool/main/r/rrdtool/librrds-perl_1.4.7-2_amd64.deb
-uilder 451 2012-08-02 09:32:11.000000000 +0200 ./pool/main/r/rrdtool/rrdtool_1.4.7-2_amd64.deb
-uilder 360 2012-12-02 16:16:00.000000000 +0100 ./pool/main/r/rsync/rsync_3.0.9-4_amd64.deb
-uilder 534 2013-03-05 23:14:05.000000000 +0100 ./pool/main/r/rsyslog/rsyslog_5.8.11-3_amd64.deb
-uilder 1083 2013-03-05 23:14:05.000000000 +0100 ./pool/main/r/rsyslog/rsyslog-doc_5.8.11-3_all.deb
-uilder 43 2012-01-18 01:17:50.000000000 +0100 ./pool/main/r/rtaudio/librtaudio4_4.0.10~ds0-2_amd64.deb
-uilder 36 2011-07-28 17:18:28.000000000 +0200 ./pool/main/r/rtkit/rtkit_0.10-2_amd64.deb
-uilder 15 2012-02-05 20:10:25.000000000 +0100 ./pool/main/r/rtmidi/librtmidi1_1.0.15~ds0-2_amd64.deb
-uilder 61 2012-01-08 12:48:29.000000000 +0100 ./pool/main/r/rtmpdump/librtmp0_2.4+20111222.git4e06e21-1_amd64.deb
-uilder 74 2012-05-29 14:50:25.000000000 +0200 ./pool/main/r/rubberband/librubberband2_1.3-1.3_amd64.deb
-uilder 12 2012-05-29 14:50:25.000000000 +0200 ./pool/main/r/rubberband/rubberband-cli_1.3-1.3_amd64.deb
-uilder 2040 2013-03-12 09:09:44.000000000 +0100 ./pool/main/r/ruby1.8/libruby1.8_1.8.7.358-7_amd64.deb
-uilder 313 2013-03-12 09:09:44.000000000 +0100 ./pool/main/r/ruby1.8/ruby1.8_1.8.7.358-7_amd64.deb
-uilder 4313 2013-03-09 07:38:21.000000000 +0100 ./pool/main/r/ruby1.9.1/libruby1.9.1_1.9.3.194-8.1_amd64.deb
-uilder 204 2013-03-09 07:38:21.000000000 +0100 ./pool/main/r/ruby1.9.1/ruby1.9.1_1.9.3.194-8.1_amd64.deb
-uilder 7 2013-02-23 16:05:20.000000000 +0100 ./pool/main/r/ruby-defaults/ruby_1.9.3_all.deb
-uilder 514 2012-02-12 16:18:53.000000000 +0100 ./pool/main/r/rus-ispell/myspell-ru_0.99g5-18_all.deb
-uilder 907 2012-09-16 20:04:29.000000000 +0200 ./pool/main/r/rygel/rygel_0.14.3-2_amd64.deb
-uilder 332 2012-09-16 20:04:29.000000000 +0200 ./pool/main/r/rygel/rygel-playbin_0.14.3-2_amd64.deb
-uilder 348 2012-09-16 20:04:29.000000000 +0200 ./pool/main/r/rygel/rygel-preferences_0.14.3-2_amd64.deb
-uilder 386 2012-09-16 20:04:29.000000000 +0200 ./pool/main/r/rygel/rygel-tracker_0.14.3-2_amd64.deb
-uilder 546 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/libnss-winbind_3.6.6-6_amd64.deb
-uilder 100 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/libpam-winbind_3.6.6-6_amd64.deb
-uilder 1502 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/libsmbclient_3.6.6-6_amd64.deb
-uilder 94 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/libwbclient0_3.6.6-6_amd64.deb
-uilder 4215 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/samba_3.6.6-6_amd64.deb
-uilder 236 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/samba-common_3.6.6-6_all.deb
-uilder 3449 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/samba-common-bin_3.6.6-6_amd64.deb
-uilder 5745 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/smbclient_3.6.6-6_amd64.deb
-uilder 2540 2013-04-16 00:33:04.000000000 +0200 ./pool/main/s/samba/winbind_3.6.6-6_amd64.deb
-uilder 65 2011-06-25 09:56:52.000000000 +0200 ./pool/main/s/sane-backends-extras/libsane-extras_1.0.22.2_amd64.deb
-uilder 13 2011-06-25 09:56:52.000000000 +0200 ./pool/main/s/sane-backends-extras/libsane-extras-common_1.0.22.2_amd64.deb
-uilder 1880 2012-09-17 17:01:20.000000000 +0200 ./pool/main/s/sane-backends/libsane_1.0.22-7.4_amd64.deb
-uilder 706 2012-09-17 17:01:20.000000000 +0200 ./pool/main/s/sane-backends/libsane-common_1.0.22-7.4_amd64.deb
-uilder 194 2012-09-17 17:01:20.000000000 +0200 ./pool/main/s/sane-backends/sane-utils_1.0.22-7.4_amd64.deb
-uilder 116 2009-11-14 11:33:21.000000000 +0100 ./pool/main/s/sane-frontends/sane_1.0.14-9_amd64.deb
-uilder 323 2012-04-26 08:32:22.000000000 +0200 ./pool/main/s/schroedinger/libschroedinger-1.0-0_1.0.11-2_amd64.deb
-uilder 85 2012-08-27 07:02:34.000000000 +0200 ./pool/main/s/scim-canna/scim-canna_1.0.0-4.2_amd64.deb
-uilder 484 2012-06-13 05:48:29.000000000 +0200 ./pool/main/s/scim/libscim8c2a_1.4.13-5_amd64.deb
-uilder 744 2012-06-13 05:48:29.000000000 +0200 ./pool/main/s/scim/scim_1.4.13-5_amd64.deb
-uilder 274 2012-08-27 07:58:07.000000000 +0200 ./pool/main/s/scim-skk/scim-skk_0.5.2-7.2_amd64.deb
-uilder 285 2012-08-22 08:53:14.000000000 +0200 ./pool/main/s/scim-tables/scim-modules-table_0.5.9-2_amd64.deb
-uilder 135 2012-08-22 08:53:14.000000000 +0200 ./pool/main/s/scim-tables/scim-tables-ja_0.5.9-2_all.deb
-uilder 5894 2012-08-22 08:53:14.000000000 +0200 ./pool/main/s/scim-tables/scim-tables-zh_0.5.9-2_all.deb
-uilder 266 2011-10-13 00:19:14.000000000 +0200 ./pool/main/s/scowl/wamerican_7.1-1_all.deb
-uilder 30102 2013-03-21 20:18:06.000000000 +0100 ./pool/main/s/scratch/scratch_1.4.0.6~dfsg1-4_all.deb
-uilder 654 2012-09-16 14:34:04.000000000 +0200 ./pool/main/s/screen/screen_4.1.0~20120320gitdb59704-7_amd64.deb
-uilder 20 2012-02-15 23:50:05.000000000 +0100 ./pool/main/s/scribus-ng/scribus-ng_1.4.0.dfsg+r17300-1_all.deb
-uilder 25124 2012-06-06 18:32:54.000000000 +0200 ./pool/main/s/scribus/scribus_1.4.0.dfsg+r17300-1.1_amd64.deb
-uilder 37 2012-05-01 22:51:45.000000000 +0200 ./pool/main/s/sdl-image1.2/libsdl-image1.2_1.2.12-2_amd64.deb
-uilder 92 2012-09-23 16:47:06.000000000 +0200 ./pool/main/s/sdl-mixer1.2/libsdl-mixer1.2_1.2.12-3_amd64.deb
-uilder 126 2012-09-23 16:47:06.000000000 +0200 ./pool/main/s/sdl-mixer1.2/libsdl-mixer1.2-dev_1.2.12-3_amd64.deb
-uilder 16 2012-04-26 15:33:43.000000000 +0200 ./pool/main/s/sdl-net1.2/libsdl-net1.2_1.2.8-2_amd64.deb
-uilder 12 2012-02-24 13:02:49.000000000 +0100 ./pool/main/s/sdlpango/libsdl-pango1_0.1.2-6_amd64.deb
-uilder 20 2012-03-03 18:24:29.000000000 +0100 ./pool/main/s/sdl-ttf2.0/libsdl-ttf2.0-0_2.0.11-2_amd64.deb
-uilder 113 2012-06-30 21:24:28.000000000 +0200 ./pool/main/s/sdparm/sdparm_1.07-1_amd64.deb
-uilder 2351 2012-05-19 07:48:46.000000000 +0200 ./pool/main/s/seahorse/seahorse_3.4.1-2_amd64.deb
-uilder 245 2012-06-01 03:03:32.000000000 +0200 ./pool/main/s/sed/sed_4.2.1-10_amd64.deb
-uilder 327 2012-11-26 13:23:58.000000000 +0100 ./pool/main/s/seed/libseed-gtk3-0_3.2.0-2_amd64.deb
-uilder 9 2012-05-14 11:07:48.000000000 +0200 ./pool/main/s/sensible-utils/sensible-utils_0.0.7_all.deb
-uilder 79 2012-01-26 19:33:09.000000000 +0100 ./pool/main/s/sg3-utils/libsgutils2-2_1.33-1_amd64.deb
-uilder 15 2012-08-26 12:36:05.000000000 +0200 ./pool/main/s/sgml-base/sgml-base_1.26+nmu4_all.deb
-uilder 278 2012-06-30 05:15:23.000000000 +0200 ./pool/main/s/sgml-data/sgml-data_2.0.8_all.deb
-uilder 960 2012-05-25 23:49:28.000000000 +0200 ./pool/main/s/shadow/login_4.1.5.1-1_amd64.deb
-uilder 1230 2012-05-25 23:49:28.000000000 +0200 ./pool/main/s/shadow/passwd_4.1.5.1-1_amd64.deb
-uilder 128 2012-06-25 21:49:56.000000000 +0200 ./pool/main/s/shared-desktop-ontologies/shared-desktop-ontologies_0.10.0-1_all.deb
-uilder 581 2012-09-14 20:44:15.000000000 +0200 ./pool/main/s/shared-mime-info/shared-mime-info_1.0-1+b1_amd64.deb
-uilder 1831 2012-08-05 15:17:42.000000000 +0200 ./pool/main/s/shotwell/shotwell_0.12.3-2_amd64.deb
-uilder 1583 2012-08-05 15:17:42.000000000 +0200 ./pool/main/s/shotwell/shotwell-common_0.12.3-2_all.deb
-uilder 9 2012-02-13 23:49:35.000000000 +0100 ./pool/main/s/shutdown-at-night/shutdown-at-night_0.10_all.deb
-uilder 39 2013-02-25 19:13:02.000000000 +0100 ./pool/main/s/sidplay-libs/libresid-builder0c2a_2.1.1-14_amd64.deb
-uilder 111 2013-02-25 19:13:02.000000000 +0100 ./pool/main/s/sidplay-libs/libsidplay2_2.1.1-14_amd64.deb
-uilder 193 2009-09-06 21:17:14.000000000 +0200 ./pool/main/s/silgraphite2.0/libgraphite3_2.3.1-0.2_amd64.deb
-uilder 96 2012-05-11 18:35:52.000000000 +0200 ./pool/main/s/simplejson/python-simplejson_2.5.2-1_amd64.deb
-uilder 229 2012-06-03 01:23:03.000000000 +0200 ./pool/main/s/simple-scan/simple-scan_3.4.2-1_amd64.deb
-uilder 688 2011-12-26 17:02:57.000000000 +0100 ./pool/main/s/simplyhtml/simplyhtml_0.13.1-3_all.deb
-uilder 154 2012-06-23 19:02:54.000000000 +0200 ./pool/main/s/sip4/python-sip_4.13.3-2_amd64.deb
-uilder 89 2011-12-17 20:18:37.000000000 +0100 ./pool/main/s/sjfonts/ttf-sjfonts_2.0.2-1.1_all.deb
-uilder 2673 2012-03-13 20:07:16.000000000 +0100 ./pool/main/s/skanlite/skanlite_0.8-2_amd64.deb
-uilder 3037 2011-05-29 04:49:39.000000000 +0200 ./pool/main/s/skkdic/skkdic_20110529-1_all.deb
-uilder 538 2012-07-01 15:06:04.000000000 +0200 ./pool/main/s/slang2/libslang2_2.2.4-15_amd64.deb
-uilder 581 2012-07-01 15:06:04.000000000 +0200 ./pool/main/s/slang2/libslang2-dev_2.2.4-15_amd64.deb
-uilder 28 2012-05-14 20:05:37.000000000 +0200 ./pool/main/s/slv2/libslv2-9_0.6.6+dfsg1-2_amd64.deb
-uilder 202 2012-09-24 16:39:45.000000000 +0200 ./pool/main/s/smarty3/smarty3_3.1.10-2_all.deb
-uilder 10 2012-07-12 03:17:30.000000000 +0200 ./pool/main/s/smarty-gettext/smarty-gettext_1.0b1-7_all.deb
-uilder 326 2011-09-27 15:34:08.000000000 +0200 ./pool/main/s/smbldap-tools/smbldap-tools_0.9.7-1_all.deb
-uilder 9 2012-06-17 02:34:16.000000000 +0200 ./pool/main/s/smokegen/libsmokebase3_4.8.4-1_amd64.deb
-uilder 280 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokekdecore4-3_4.8.4-1_amd64.deb
-uilder 666 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokekdeui4-3_4.8.4-1_amd64.deb
-uilder 112 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokekfile3_4.8.4-1_amd64.deb
-uilder 175 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokekhtml3_4.8.4-1_amd64.deb
-uilder 337 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokekio3_4.8.4-1_amd64.deb
-uilder 45 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokeknewstuff2-3_4.8.4-1_amd64.deb
-uilder 47 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokeknewstuff3-3_4.8.4-1_amd64.deb
-uilder 104 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokekparts3_4.8.4-1_amd64.deb
-uilder 110 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokektexteditor3_4.8.4-1_amd64.deb
-uilder 69 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokekutils3_4.8.4-1_amd64.deb
-uilder 69 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokenepomuk3_4.8.4-1_amd64.deb
-uilder 329 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokeplasma3_4.8.4-1_amd64.deb
-uilder 45 2012-06-17 21:19:50.000000000 +0200 ./pool/main/s/smokekde/libsmokesolid3_4.8.4-1_amd64.deb
-uilder 440 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtcore4-3_4.8.4-1_amd64.deb
-uilder 97 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtdbus4-3_4.8.4-1_amd64.deb
-uilder 1513 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtgui4-3_4.8.4-1_amd64.deb
-uilder 174 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtnetwork4-3_4.8.4-1_amd64.deb
-uilder 126 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtopengl4-3_4.8.4-1_amd64.deb
-uilder 149 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtsql4-3_4.8.4-1_amd64.deb
-uilder 103 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtsvg4-3_4.8.4-1_amd64.deb
-uilder 86 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtwebkit4-3_4.8.4-1_amd64.deb
-uilder 102 2012-06-17 12:19:22.000000000 +0200 ./pool/main/s/smokeqt/libsmokeqtxml4-3_4.8.4-1_amd64.deb
-uilder 104 2013-02-18 14:13:31.000000000 +0100 ./pool/main/s/smpeg/libsmpeg0_0.4.5+cvs20030824-5_amd64.deb
-uilder 23 2010-07-25 18:48:27.000000000 +0200 ./pool/main/s/sndfile-tools/sndfile-tools_1.03-2+b1_amd64.deb
-uilder 662 2011-05-08 01:03:36.000000000 +0200 ./pool/main/s/sofia-sip/libsofia-sip-ua0_1.12.11+20110422-1_amd64.deb
-uilder 18 2011-05-08 01:03:37.000000000 +0200 ./pool/main/s/sofia-sip/libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64.deb
-uilder 556 2012-06-28 19:51:37.000000000 +0200 ./pool/main/s/softcatala-spell/icatalan_0.20111230b-4_all.deb
-uilder 1320 2012-06-28 19:51:37.000000000 +0200 ./pool/main/s/softcatala-spell/myspell-ca_0.20111230b-4_all.deb
-uilder 102 2012-06-16 18:54:28.000000000 +0200 ./pool/main/s/software-properties/python-software-properties_0.82.7.1debian1_all.deb
-uilder 29 2012-06-16 18:54:28.000000000 +0200 ./pool/main/s/software-properties/software-properties-common_0.82.7.1debian1_all.deb
-uilder 57 2012-06-16 18:54:28.000000000 +0200 ./pool/main/s/software-properties/software-properties-gtk_0.82.7.1debian1_all.deb
-uilder 1898 2012-06-21 00:48:39.000000000 +0200 ./pool/main/s/solfege/solfege_3.20.6-1_all.deb
-uilder 14 2011-10-24 01:02:23.000000000 +0200 ./pool/main/s/sonic/libsonic0_0.1.17-1.1_amd64.deb
-uilder 427 2013-03-20 11:03:49.000000000 +0100 ./pool/main/s/soprano/libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64.deb
-uilder 175 2013-03-20 11:03:49.000000000 +0100 ./pool/main/s/soprano/soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64.deb
-uilder 563 2010-03-15 13:17:20.000000000 +0100 ./pool/main/s/sound-icons/sound-icons_0.1-3_all.deb
-uilder 1932 2012-06-20 00:06:13.000000000 +0200 ./pool/main/s/sound-juicer/sound-juicer_3.4.0-3_amd64.deb
-uilder 421 2012-04-03 14:06:03.000000000 +0200 ./pool/main/s/sound-theme-freedesktop/sound-theme-freedesktop_0.7.pristine-2_all.deb
-uilder 40 2012-03-09 01:03:25.000000000 +0100 ./pool/main/s/soundtouch/libsoundtouch0_1.6.0-3_amd64.deb
-uilder 296 2012-05-07 05:33:21.000000000 +0200 ./pool/main/s/sox/libsox2_14.4.0-3_amd64.deb
-uilder 50 2012-05-07 05:33:21.000000000 +0200 ./pool/main/s/sox/libsox-fmt-alsa_14.4.0-3_amd64.deb
-uilder 72 2012-05-07 05:33:21.000000000 +0200 ./pool/main/s/sox/libsox-fmt-base_14.4.0-3_amd64.deb
-uilder 137 2012-05-07 05:33:21.000000000 +0200 ./pool/main/s/sox/sox_14.4.0-3_amd64.deb
-uilder 324 2013-03-17 15:32:46.000000000 +0100 ./pool/main/s/spandsp/libspandsp2_0.0.6~pre20-3.1_amd64.deb
-uilder 22 2012-12-07 02:21:25.000000000 +0100 ./pool/main/s/speech-dispatcher/libspeechd2_0.7.1-6.2_amd64.deb
-uilder 47 2012-12-07 02:21:25.000000000 +0100 ./pool/main/s/speech-dispatcher/python-speechd_0.7.1-6.2_all.deb
-uilder 498 2012-12-07 02:21:25.000000000 +0100 ./pool/main/s/speech-dispatcher/speech-dispatcher_0.7.1-6.2_amd64.deb
-uilder 8 2012-12-07 02:21:25.000000000 +0100 ./pool/main/s/speech-dispatcher/speech-dispatcher-festival_0.7.1-6.2_all.deb
-uilder 1324 2013-01-20 01:33:23.000000000 +0100 ./pool/main/s/speech-tools/libestools2.1_2.1~release-5_amd64.deb
-uilder 60 2012-11-10 01:20:09.000000000 +0100 ./pool/main/s/speex/libspeex1_1.2~rc1-7_amd64.deb
-uilder 47 2012-11-10 01:20:09.000000000 +0100 ./pool/main/s/speex/libspeexdsp1_1.2~rc1-7_amd64.deb
-uilder 43 2012-05-24 19:34:37.000000000 +0200 ./pool/main/s/sphinx/libjs-sphinxdoc_1.1.3+dfsg-4_all.deb
-uilder 48 2012-04-30 18:36:01.000000000 +0200 ./pool/main/s/splix/printer-driver-splix_2.0.0+svn306-2_amd64.deb
-uilder 547 2012-06-18 00:44:30.000000000 +0200 ./pool/main/s/sqlalchemy/python-sqlalchemy_0.7.8-1_all.deb
-uilder 97 2012-06-18 00:44:30.000000000 +0200 ./pool/main/s/sqlalchemy/python-sqlalchemy-ext_0.7.8-1_amd64.deb
-uilder 445 2013-04-29 23:08:21.000000000 +0200 ./pool/main/s/sqlite3/libsqlite3-0_3.7.13-1+deb7u1_amd64.deb
-uilder 4902 2012-06-30 09:50:35.000000000 +0200 ./pool/main/s/sql-ledger/sql-ledger_3.0.3-1_all.deb
-uilder 125 2012-06-30 14:49:33.000000000 +0200 ./pool/main/s/squashfs-tools/squashfs-tools_4.2-5_amd64.deb
-uilder 36 2011-11-03 01:18:51.000000000 +0100 ./pool/main/s/squeak-plugins-scratch/squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64.deb
-uilder 628 2012-03-03 22:24:08.000000000 +0100 ./pool/main/s/squeak-vm/squeak-vm_4.4.7.2357-1.1_amd64.deb
-uilder 326 2012-06-18 15:17:47.000000000 +0200 ./pool/main/s/squid-langpack/squid-langpack_20120616-1_all.deb
-uilder 809 2012-02-04 17:52:31.000000000 +0100 ./pool/main/s/squid/squid_2.7.STABLE9-4.1_amd64.deb
-uilder 345 2012-02-04 17:26:26.000000000 +0100 ./pool/main/s/squid/squid-common_2.7.STABLE9-4.1_all.deb
-uilder 78 2012-12-15 22:21:01.000000000 +0100 ./pool/main/s/srtp/libsrtp0_1.4.4+20100615~dfsg-2_amd64.deb
-uilder 54 2012-05-04 09:20:54.000000000 +0200 ./pool/main/s/sshfs-fuse/sshfs_2.4-1_amd64.deb
-uilder 19 2012-08-26 19:56:58.000000000 +0200 ./pool/main/s/ssl-cert/ssl-cert_1.0.32_all.deb
-uilder 15 2013-03-04 20:56:02.000000000 +0100 ./pool/main/s/sssd/libipa-hbac0_1.8.4-2_amd64.deb
-uilder 23 2013-03-04 20:56:02.000000000 +0100 ./pool/main/s/sssd/libnss-sss_1.8.4-2_amd64.deb
-uilder 27 2013-03-04 20:56:02.000000000 +0100 ./pool/main/s/sssd/libpam-sss_1.8.4-2_amd64.deb
-uilder 211 2013-03-04 20:56:02.000000000 +0100 ./pool/main/s/sssd/python-sss_1.8.4-2_amd64.deb
-uilder 2910 2013-03-04 20:56:02.000000000 +0100 ./pool/main/s/sssd/sssd_1.8.4-2_amd64.deb
-uilder 25 2011-05-18 20:47:08.000000000 +0200 ./pool/main/s/startup-notification/libstartup-notification0_0.12-1_amd64.deb
-uilder 3552 2012-06-14 11:08:01.000000000 +0200 ./pool/main/s/stellarium/stellarium_0.11.3-1_amd64.deb
-uilder 44769 2012-06-14 11:08:01.000000000 +0200 ./pool/main/s/stellarium/stellarium-data_0.11.3-1_all.deb
-uilder 675 2012-06-16 20:35:30.000000000 +0200 ./pool/main/s/step/step_4.8.4-1_amd64.deb
-uilder 231 2012-01-24 09:51:13.000000000 +0100 ./pool/main/s/stk/libstk0c2a_4.4.3-2_amd64.deb
-uilder 455 2012-01-24 09:51:13.000000000 +0100 ./pool/main/s/stk/stk_4.4.3-2_amd64.deb
-uilder 2282 2012-05-29 11:16:05.000000000 +0200 ./pool/main/s/stopmotion/stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64.deb
-uilder 138 2011-04-01 02:47:20.000000000 +0200 ./pool/main/s/strace/strace_4.5.20-2.3_amd64.deb
-uilder 105 2011-04-01 02:47:20.000000000 +0200 ./pool/main/s/strace/strace-udeb_4.5.20-2.3_amd64.udeb
-uilder 397 2012-06-24 19:19:31.000000000 +0200 ./pool/main/s/strigi/libstreamanalyzer0_0.7.7-3_amd64.deb
-uilder 105 2012-06-24 19:19:31.000000000 +0200 ./pool/main/s/strigi/libstreams0_0.7.7-3_amd64.deb
-uilder 823 2013-03-01 06:27:52.000000000 +0100 ./pool/main/s/sudo/sudo_1.8.5p2-1+nmu1_amd64.deb
-uilder 843 2013-03-01 06:27:52.000000000 +0100 ./pool/main/s/sudo/sudo-ldap_1.8.5p2-1+nmu1_amd64.deb
-uilder 172 2012-10-09 21:58:25.000000000 +0200 ./pool/main/s/sugar-0.96/python-jarabe-0.96_0.96.1-2.1_all.deb
-uilder 21 2012-10-09 21:58:25.000000000 +0200 ./pool/main/s/sugar-0.96/sugar-emulator-0.96_0.96.1-2.1_all.deb
-uilder 503 2012-10-09 21:58:25.000000000 +0200 ./pool/main/s/sugar-0.96/sugar-session-0.96_0.96.1-2.1_all.deb
-uilder 23 2012-10-09 21:58:25.000000000 +0200 ./pool/main/s/sugar-0.96/sugar-tools-0.96_0.96.1-2.1_all.deb
-uilder 129 2012-05-25 21:02:35.000000000 +0200 ./pool/main/s/sugar-artwork-0.96/sugar-artwork-0.96_0.96.2-1_amd64.deb
-uilder 69 2011-07-25 03:18:38.000000000 +0200 ./pool/main/s/sugar-base-0.88/python-sugar-0.88_0.88.0-4_amd64.deb
-uilder 71 2012-05-25 21:02:45.000000000 +0200 ./pool/main/s/sugar-base-0.96/python-sugar-0.96_0.96.0-1_amd64.deb
-uilder 185 2012-05-28 20:47:59.000000000 +0200 ./pool/main/s/sugar-calculate-activity/sugar-calculate-activity_40-2_all.deb
-uilder 31 2011-05-06 00:19:32.000000000 +0200 ./pool/main/s/sugar-datastore-0.88/python-carquinyol-0.88_0.88.0-3+b1_amd64.deb
-uilder 33 2012-05-27 14:38:37.000000000 +0200 ./pool/main/s/sugar-datastore-0.96/python-carquinyol-0.96_0.96.0-1_amd64.deb
-uilder 50 2013-04-23 21:26:38.000000000 +0200 ./pool/main/s/sugar-irc-activity/sugar-irc-activity_8-1.1_all.deb
-uilder 74 2013-04-23 21:26:36.000000000 +0200 ./pool/main/s/sugar-physics-activity/sugar-physics-activity_7+dfsg-1.1_all.deb
-uilder 127 2012-05-28 21:21:58.000000000 +0200 ./pool/main/s/sugar-pippy-activity/sugar-pippy-activity_46~dfsg-2_all.deb
-uilder 124 2013-04-23 21:31:38.000000000 +0200 ./pool/main/s/sugar-record-activity/sugar-record-activity_82-1.1_all.deb
-uilder 244 2011-05-06 00:35:43.000000000 +0200 ./pool/main/s/sugar-toolkit-0.88/python-sugar-toolkit-0.88_0.88.1-3+b1_amd64.deb
-uilder 233 2012-05-25 21:02:58.000000000 +0200 ./pool/main/s/sugar-toolkit-0.96/python-sugar-toolkit-0.96_0.96.1-1_amd64.deb
-uilder 29 2012-08-04 23:49:01.000000000 +0200 ./pool/main/s/suitesparse/libamd2.2.0_3.4.0-3_amd64.deb
-uilder 22 2012-08-04 23:49:01.000000000 +0200 ./pool/main/s/suitesparse/libcolamd2.7.1_3.4.0-3_amd64.deb
-uilder 352 2012-08-04 23:49:01.000000000 +0200 ./pool/main/s/suitesparse/libumfpack5.4.0_3.4.0-3_amd64.deb
-uilder 228 2012-05-20 00:21:53.000000000 +0200 ./pool/main/s/sunclock/sunclock_3.57-2_amd64.deb
-uilder 1280 2012-05-20 00:21:53.000000000 +0200 ./pool/main/s/sunclock/sunclock-maps_3.57-2_all.deb
-uilder 1264 2012-06-25 23:20:41.000000000 +0200 ./pool/main/s/suomi-malaga/voikko-fi_1.12-1_amd64.deb
-uilder 350 2012-06-26 23:25:22.000000000 +0200 ./pool/main/s/superkaramba/plasma-scriptengine-superkaramba_4.8.4-3_amd64.deb
-uilder 284 2012-04-12 06:18:30.000000000 +0200 ./pool/main/s/svgalib/libsvga1_1.4.3-33_amd64.deb
-uilder 546 2012-04-12 06:18:30.000000000 +0200 ./pool/main/s/svgalib/libsvga1-dev_1.4.3-33_amd64.deb
-uilder 96 2012-06-19 17:49:50.000000000 +0200 ./pool/main/s/sweeper/sweeper_4.8.4-1_amd64.deb
-uilder 639 2011-04-10 19:04:28.000000000 +0200 ./pool/main/s/swh-plugins/swh-plugins_0.4.15+1-6_amd64.deb
-uilder 2603 2012-07-12 21:32:59.000000000 +0200 ./pool/main/s/synaptic/synaptic_0.75.13_amd64.deb
-uilder 106 2012-02-18 16:10:27.000000000 +0100 ./pool/main/s/synaptiks/kde-config-touchpad_0.8.1-1_all.deb
-uilder 32 2012-10-07 15:56:38.000000000 +0200 ./pool/main/s/sysfsutils/libsysfs2_2.1.0+repack-2_amd64.deb
-uilder 17 2012-10-07 15:56:38.000000000 +0200 ./pool/main/s/sysfsutils/libsysfs2-udeb_2.1.0+repack-2_amd64.udeb
-uilder 27 2012-10-07 15:56:38.000000000 +0200 ./pool/main/s/sysfsutils/sysfsutils_2.1.0+repack-2_amd64.deb
-uilder 93 2012-12-10 13:31:56.000000000 +0100 ./pool/main/s/syslinux/syslinux_4.05+dfsg-6+deb7u1_amd64.deb
-uilder 913 2012-12-10 13:31:56.000000000 +0100 ./pool/main/s/syslinux/syslinux-common_4.05+dfsg-6+deb7u1_all.deb
-uilder 40 2012-12-10 13:31:56.000000000 +0100 ./pool/main/s/syslinux/syslinux-udeb_4.05+dfsg-6+deb7u1_amd64.udeb
-uilder 51 2012-05-21 08:34:54.000000000 +0200 ./pool/main/s/sysstat/isag_10.0.5-1_all.deb
-uilder 382 2012-05-21 09:10:16.000000000 +0200 ./pool/main/s/sysstat/sysstat_10.0.5-1_amd64.deb
-uilder 664 2012-01-02 09:49:01.000000000 +0100 ./pool/main/s/system-config-lvm/system-config-lvm_1.1.16-1_all.deb
-uilder 15 2013-03-13 08:21:50.000000000 +0100 ./pool/main/s/systemd/libsystemd-daemon0_44-11_amd64.deb
-uilder 29 2013-03-13 08:21:50.000000000 +0100 ./pool/main/s/systemd/libsystemd-login0_44-11_amd64.deb
-uilder 92 2013-02-08 01:35:42.000000000 +0100 ./pool/main/s/sysvinit/initscripts_2.88dsf-41_amd64.deb
-uilder 130 2013-02-08 01:35:42.000000000 +0100 ./pool/main/s/sysvinit/sysvinit_2.88dsf-41_amd64.deb
-uilder 98 2013-02-08 01:35:42.000000000 +0100 ./pool/main/s/sysvinit/sysvinit-utils_2.88dsf-41_amd64.deb
-uilder 80 2013-02-08 01:35:42.000000000 +0100 ./pool/main/s/sysvinit/sysv-rc_2.88dsf-41_all.deb
-uilder 170 2013-02-24 00:25:51.000000000 +0100 ./pool/main/t/t1lib/libt1-5_5.1.2-3.6_amd64.deb
-uilder 24 2010-11-14 17:24:11.000000000 +0100 ./pool/main/t/taglib-extras/libtag-extras1_1.0.1-3_amd64.deb
-uilder 10 2012-06-28 00:50:42.000000000 +0200 ./pool/main/t/taglib/libtag1c2a_1.7.2-1_amd64.deb
-uilder 240 2012-06-28 00:50:42.000000000 +0200 ./pool/main/t/taglib/libtag1-vanilla_1.7.2-1_amd64.deb
-uilder 25 2012-02-07 16:03:19.000000000 +0100 ./pool/main/t/talloc/libtalloc2_2.0.7+git20120207-1_amd64.deb
-uilder 106 2012-07-18 17:18:15.000000000 +0200 ./pool/main/t/tap-plugins/tap-plugins_0.7.2-1_amd64.deb
-uilder 962 2012-12-31 16:28:55.000000000 +0100 ./pool/main/t/tar/tar_1.26+dfsg-0.1_amd64.deb
-uilder 92 2013-04-15 20:22:38.000000000 +0200 ./pool/main/t/tasksel/tasksel_3.14+nmu2_all.deb
-uilder 21 2013-04-15 20:22:38.000000000 +0200 ./pool/main/t/tasksel/tasksel-data_3.14+nmu2_all.deb
-uilder 106 2011-09-25 01:32:51.000000000 +0200 ./pool/main/t/tbb/libtbb2_4.0+r233-1_amd64.deb
-uilder 1179 2012-05-28 15:34:48.000000000 +0200 ./pool/main/t/tcl8.4/tcl8.4_8.4.19-5_amd64.deb
-uilder 1590 2012-05-28 17:26:21.000000000 +0200 ./pool/main/t/tcl8.5/tcl8.5_8.5.11-2_amd64.deb
-uilder 412 2012-06-13 23:57:29.000000000 +0200 ./pool/main/t/tcpdump/tcpdump_4.3.0-1_amd64.deb
-uilder 32 2009-09-01 21:17:24.000000000 +0200 ./pool/main/t/tcptraceroute/tcptraceroute_1.5beta7+debian-4_amd64.deb
-uilder 61 2012-07-30 05:17:07.000000000 +0200 ./pool/main/t/tcp-wrappers/libwrap0_7.6.q-24_amd64.deb
-uilder 28 2012-07-30 05:17:07.000000000 +0200 ./pool/main/t/tcp-wrappers/tcpd_7.6.q-24_amd64.deb
-uilder 39 2012-05-28 15:21:47.000000000 +0200 ./pool/main/t/tdb/libtdb1_1.2.10-2_amd64.deb
-uilder 27 2012-05-28 15:21:47.000000000 +0200 ./pool/main/t/tdb/tdb-tools_1.2.10-2_amd64.deb
-uilder 196 2012-09-03 13:59:31.000000000 +0200 ./pool/main/t/telepathy-farstream/libtelepathy-farstream2_0.4.0-3_amd64.deb
-uilder 58 2012-09-03 21:00:18.000000000 +0200 ./pool/main/t/telepathy-glib/gir1.2-telepathyglib-0.12_0.18.2-2_amd64.deb
-uilder 824 2012-09-03 21:00:18.000000000 +0200 ./pool/main/t/telepathy-glib/libtelepathy-glib0_0.18.2-2_amd64.deb
-uilder 142 2012-04-07 17:35:30.000000000 +0200 ./pool/main/t/telepathy-haze/telepathy-haze_0.6.0-1_amd64.deb
-uilder 115 2011-11-02 08:35:23.000000000 +0100 ./pool/main/t/telepathy-idle/telepathy-idle_0.1.11-2_amd64.deb
-uilder 70 2012-05-02 17:19:42.000000000 +0200 ./pool/main/t/telepathy-logger/gir1.2-telepathylogger-0.2_0.4.0-1_amd64.deb
-uilder 146 2012-05-02 17:19:42.000000000 +0200 ./pool/main/t/telepathy-logger/libtelepathy-logger2_0.4.0-1_amd64.deb
-uilder 73 2012-05-02 17:19:42.000000000 +0200 ./pool/main/t/telepathy-logger/telepathy-logger_0.4.0-1_amd64.deb
-uilder 129 2012-09-20 17:25:22.000000000 +0200 ./pool/main/t/telepathy-mission-control-5/libmission-control-plugins0_5.12.3-1_amd64.deb
-uilder 304 2012-09-20 17:25:22.000000000 +0200 ./pool/main/t/telepathy-mission-control-5/telepathy-mission-control-5_5.12.3-1_amd64.deb
-uilder 136 2011-05-08 21:00:58.000000000 +0200 ./pool/main/t/telepathy-python/python-telepathy_0.15.19-2.1_all.deb
-uilder 201 2012-05-09 00:37:45.000000000 +0200 ./pool/main/t/telepathy-rakia/telepathy-rakia_0.7.4-1_amd64.deb
-uilder 470 2012-11-21 16:22:02.000000000 +0100 ./pool/main/t/telepathy-salut/telepathy-salut_0.8.1-1_amd64.deb
-uilder 363 2012-04-04 09:32:34.000000000 +0200 ./pool/main/t/terminatorx/terminatorx_3.84-2_amd64.deb
-uilder 27 2012-06-10 14:51:29.000000000 +0200 ./pool/main/t/tevent/libtevent0_0.9.16-1_amd64.deb
-uilder 626 2013-01-09 23:53:26.000000000 +0100 ./pool/main/t/tex-common/tex-common_3.15_all.deb
-uilder 15713 2012-03-24 01:20:09.000000000 +0100 ./pool/main/t/tex-gyre/tex-gyre_2.004.1-4_all.deb
-uilder 222 2012-04-17 01:48:21.000000000 +0200 ./pool/main/t/texinfo/info_4.13a.dfsg.1-10_amd64.deb
-uilder 145 2012-04-17 01:48:21.000000000 +0200 ./pool/main/t/texinfo/install-info_4.13a.dfsg.1-10_amd64.deb
-uilder 961 2012-04-17 01:48:21.000000000 +0200 ./pool/main/t/texinfo/texinfo_4.13a.dfsg.1-10_amd64.deb
-uilder 37 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive_2012.20120611-5_all.deb
-uilder 13887 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-base_2012.20120611-5_all.deb
-uilder 196 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-common_2012.20120611-5_all.deb
-uilder 5358 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-fonts-recommended_2012.20120611-5_all.deb
-uilder 3822 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-fonts-recommended-doc_2012.20120611-5_all.deb
-uilder 2092 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-generic-recommended_2012.20120611-5_all.deb
-uilder 874 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-latex-base_2012.20120611-5_all.deb
-uilder 37806 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-latex-base-doc_2012.20120611-5_all.deb
-uilder 6621 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-latex-recommended_2012.20120611-5_all.deb
-uilder 33829 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-latex-recommended-doc_2012.20120611-5_all.deb
-uilder 5545 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-luatex_2012.20120611-5_all.deb
-uilder 2223 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-pictures_2012.20120611-5_all.deb
-uilder 40913 2012-10-08 02:43:04.000000000 +0200 ./pool/main/t/texlive-base/texlive-pictures-doc_2012.20120611-5_all.deb
-uilder 160 2012-11-20 02:13:54.000000000 +0100 ./pool/main/t/texlive-bin/libkpathsea6_2012.20120628-4_amd64.deb
-uilder 55 2012-11-20 02:13:54.000000000 +0100 ./pool/main/t/texlive-bin/libptexenc1_2012.20120628-4_amd64.deb
-uilder 16929 2012-11-20 02:13:54.000000000 +0100 ./pool/main/t/texlive-bin/texlive-binaries_2012.20120628-4_amd64.deb
-uilder 1612 2012-06-11 17:53:16.000000000 +0200 ./pool/main/t/texlive-doc/texlive-doc-base_2012.20120611-1_all.deb
-uilder 2488 2012-07-30 05:32:37.000000000 +0200 ./pool/main/t/texlive-extra/texlive-extra-utils_2012.20120611-2_all.deb
-uilder 1658 2012-07-30 05:32:37.000000000 +0200 ./pool/main/t/texlive-extra/texlive-font-utils_2012.20120611-2_all.deb
-uilder 285586 2012-07-30 05:32:37.000000000 +0200 ./pool/main/t/texlive-extra/texlive-latex-extra-doc_2012.20120611-2_all.deb
-uilder 24882 2012-07-30 05:32:36.000000000 +0200 ./pool/main/t/texlive-extra/texlive-pstricks_2012.20120611-2_all.deb
-uilder 68252 2012-07-30 05:32:36.000000000 +0200 ./pool/main/t/texlive-extra/texlive-pstricks-doc_2012.20120611-2_all.deb
-uilder 150 2011-12-13 16:10:49.000000000 +0100 ./pool/main/t/tidy/libtidy-0.99-0_20091223cvs-1.2_amd64.deb
-uilder 198 2013-01-26 18:48:36.000000000 +0100 ./pool/main/t/tiff3/libtiff4_3.9.6-11_amd64.deb
-uilder 229 2013-01-26 18:48:36.000000000 +0100 ./pool/main/t/tiff/libtiff5_4.0.2-6_amd64.deb
-uilder 852 2012-06-09 15:33:33.000000000 +0200 ./pool/main/t/tightvnc/tightvncserver_1.3.9-6.4_amd64.deb
-uilder 373 2009-06-10 12:17:02.000000000 +0200 ./pool/main/t/tilp2/tilp2_1.12-1_amd64.deb
-uilder 27 2009-06-10 12:17:02.000000000 +0200 ./pool/main/t/tilp2/tilp_7.0-1_all.deb
-uilder 656 2012-10-11 20:32:29.000000000 +0200 ./pool/main/t/timidity/timidity_2.13.2-40.1_amd64.deb
-uilder 19 2012-10-11 20:32:29.000000000 +0200 ./pool/main/t/timidity/timidity-daemon_2.13.2-40.1_all.deb
-uilder 3245 2012-09-17 09:25:40.000000000 +0200 ./pool/main/t/tipa/tipa_1.3-19_all.deb
-uilder 1032 2012-05-29 18:19:41.000000000 +0200 ./pool/main/t/tk8.4/tk8.4_8.4.19-5_amd64.deb
-uilder 1162 2012-05-29 19:03:52.000000000 +0200 ./pool/main/t/tk8.5/tk8.5_8.5.11-2_amd64.deb
-uilder 3610 2012-09-25 11:27:46.000000000 +0200 ./pool/main/t/tomboy/tomboy_1.10.0-2_amd64.deb
-uilder 192 2012-12-08 05:38:46.000000000 +0100 ./pool/main/t/tomcat6/libservlet2.5-java_6.0.35-6_all.deb
-uilder 118 2011-08-02 03:02:22.000000000 +0200 ./pool/main/t/torque/libtorque2_2.4.16+dfsg-1_amd64.deb
-uilder 173 2012-03-14 19:19:40.000000000 +0100 ./pool/main/t/totem/gir1.2-totem-1.0_3.0.1-8_amd64.deb
-uilder 358 2012-03-14 19:19:40.000000000 +0100 ./pool/main/t/totem/libtotem0_3.0.1-8_amd64.deb
-uilder 41 2012-05-15 20:53:01.000000000 +0200 ./pool/main/t/totem-pl-parser/gir1.2-totem-plparser-1.0_3.4.2-1_amd64.deb
-uilder 247 2012-05-15 20:53:01.000000000 +0200 ./pool/main/t/totem-pl-parser/libtotem-plparser17_3.4.2-1_amd64.deb
-uilder 588 2012-03-14 19:19:40.000000000 +0100 ./pool/main/t/totem/totem_3.0.1-8_amd64.deb
-uilder 3184 2012-03-14 19:19:40.000000000 +0100 ./pool/main/t/totem/totem-common_3.0.1-8_all.deb
-uilder 407 2012-03-14 19:19:40.000000000 +0100 ./pool/main/t/totem/totem-plugins_3.0.1-8_amd64.deb
-uilder 50 2012-06-30 15:51:10.000000000 +0200 ./pool/main/t/traceroute/traceroute_2.0.18-3_amd64.deb
-uilder 266 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/gir1.2-tracker-0.14_0.14.1-3_amd64.deb
-uilder 281 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/libtracker-extract-0.14-0_0.14.1-3_amd64.deb
-uilder 324 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/libtracker-miner-0.14-0_0.14.1-3_amd64.deb
-uilder 520 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/libtracker-sparql-0.14-0_0.14.1-3_amd64.deb
-uilder 691 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/tracker_0.14.1-3_amd64.deb
-uilder 350 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/tracker-extract_0.14.1-3_amd64.deb
-uilder 381 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/tracker-gui_0.14.1-3_amd64.deb
-uilder 301 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/tracker-miner-fs_0.14.1-3_amd64.deb
-uilder 283 2012-10-08 22:34:57.000000000 +0200 ./pool/main/t/tracker/tracker-utils_0.14.1-3_amd64.deb
-uilder 639 2012-04-11 21:18:29.000000000 +0200 ./pool/main/t/transfig/transfig_3.2.5.d-3_amd64.deb
-uilder 285 2013-02-14 20:07:00.000000000 +0100 ./pool/main/t/transmission/transmission-common_2.52-3+nmu1_all.deb
-uilder 1130 2013-02-14 20:07:00.000000000 +0100 ./pool/main/t/transmission/transmission-gtk_2.52-3+nmu1_amd64.deb
-uilder 30 2012-03-24 13:33:13.000000000 +0100 ./pool/main/t/tslib/libts-0.0-0_1.0-11_amd64.deb
-uilder 12 2012-03-24 13:33:13.000000000 +0100 ./pool/main/t/tslib/libts-dev_1.0-11_amd64.deb
-uilder 14 2012-03-24 13:33:13.000000000 +0100 ./pool/main/t/tslib/tsconf_1.0-11_all.deb
-uilder 30 2012-08-05 19:02:10.000000000 +0200 ./pool/main/t/ttf-dejavu/ttf-dejavu_2.33-3_all.deb
-uilder 997 2012-08-05 19:02:10.000000000 +0200 ./pool/main/t/ttf-dejavu/ttf-dejavu-core_2.33-3_all.deb
-uilder 1718 2012-08-05 19:02:10.000000000 +0200 ./pool/main/t/ttf-dejavu/ttf-dejavu-extra_2.33-3_all.deb
-uilder 46 2010-12-08 11:17:21.000000000 +0100 ./pool/main/t/ttf-marvosym/ttf-marvosym_0.1+dfsg-2_all.deb
-uilder 2318 2012-07-07 13:17:25.000000000 +0200 ./pool/main/t/ttf-wqy-microhei/ttf-wqy-microhei_0.2.0-beta-1.1_all.deb
-uilder 8974 2012-04-18 15:48:04.000000000 +0200 ./pool/main/t/ttf-wqy-zenhei/ttf-wqy-zenhei_0.9.45-4_all.deb
-uilder 31 2010-09-14 04:47:09.000000000 +0200 ./pool/main/t/turtleart/sugar-turtleart-activity_98-1_all.deb
-uilder 155 2010-09-14 04:47:09.000000000 +0200 ./pool/main/t/turtleart/turtleart_98-1_all.deb
-uilder 6461 2011-12-22 22:08:33.000000000 +0100 ./pool/main/t/tuxmath/tuxmath_1.8.0-4_amd64.deb
-uilder 137 2011-12-19 11:51:41.000000000 +0100 ./pool/main/t/tuxpaint-config/tuxpaint-config_0.0.12-3_amd64.deb
-uilder 45664 2009-08-18 11:49:38.000000000 +0200 ./pool/main/t/tuxpaint-stamps/tuxpaint-stamps-default_2009.06.28-1_all.deb
-uilder 180 2011-12-04 16:35:04.000000000 +0100 ./pool/main/t/tuxpaint/tuxpaint_0.9.21-1.1_amd64.deb
-uilder 2983 2011-12-04 16:35:04.000000000 +0100 ./pool/main/t/tuxpaint/tuxpaint-data_0.9.21-1.1_all.deb
-uilder 890 2011-12-04 16:35:04.000000000 +0100 ./pool/main/t/tuxpaint/tuxpaint-plugins-default_0.9.21-1.1_amd64.deb
-uilder 117 2011-12-22 19:03:39.000000000 +0100 ./pool/main/t/tuxtype/tuxtype_1.8.1-5_amd64.deb
-uilder 9659 2011-12-22 18:33:07.000000000 +0100 ./pool/main/t/tuxtype/tuxtype-data_1.8.1-5_all.deb
-uilder 59 2011-05-08 14:49:45.000000000 +0200 ./pool/main/t/twolame/libtwolame0_0.3.13-1_amd64.deb
-uilder 496 2013-03-28 05:21:46.000000000 +0100 ./pool/main/t/tzdata/tzdata_2013b-2_all.deb
-uilder 149 2013-03-28 05:21:46.000000000 +0100 ./pool/main/t/tzdata/tzdata-java_2013b-2_all.deb
-uilder 74 2012-12-13 06:10:27.000000000 +0100 ./pool/main/t/tzsetup/tzsetup-udeb_0.42_all.udeb
-uilder 70 2012-04-12 09:03:41.000000000 +0200 ./pool/main/u/ucf/ucf_3.0025+nmu3_all.deb
-uilder 111 2013-04-29 00:42:03.000000000 +0200 ./pool/main/u/udev/libgudev-1.0-0_175-7.2_amd64.deb
-uilder 124 2013-04-29 00:42:03.000000000 +0200 ./pool/main/u/udev/libudev0_175-7.2_amd64.deb
-uilder 343 2013-04-29 00:42:03.000000000 +0200 ./pool/main/u/udev/udev_175-7.2_amd64.deb
-uilder 255 2012-07-20 12:02:24.000000000 +0200 ./pool/main/u/udisks/udisks_1.0.4-7_amd64.deb
-uilder 456 2012-06-19 21:05:33.000000000 +0200 ./pool/main/u/ufraw/gimp-ufraw_0.18-2_amd64.deb
-uilder 159 2011-11-27 19:37:52.000000000 +0100 ./pool/main/u/ufsutils/ufsutils_8.2-3_amd64.deb
-uilder 48 2013-03-01 11:23:16.000000000 +0100 ./pool/main/u/unattended-upgrades/unattended-upgrades_0.79.5_all.deb
-uilder 31 2012-10-15 21:13:28.000000000 +0200 ./pool/main/u/underscore/libjs-underscore_1.1.6-1+deb7u1_all.deb
-uilder 2935 2013-01-13 05:14:58.000000000 +0100 ./pool/main/u/unifont/ttf-unifont_5.1.20080914-1.3_all.deb
-uilder 1762 2013-01-13 05:14:58.000000000 +0100 ./pool/main/u/unifont/unifont_5.1.20080914-1.3_all.deb
-uilder 908 2013-01-13 05:14:58.000000000 +0100 ./pool/main/u/unifont/xfonts-unifont_5.1.20080914-1.3_all.deb
-uilder 750 2012-04-18 09:02:24.000000000 +0200 ./pool/main/u/unison/unison_2.40.65-2_amd64.deb
-uilder 246 2011-11-08 20:03:31.000000000 +0100 ./pool/main/u/unixodbc/libodbc1_2.2.14p2-5_amd64.deb
-uilder 79 2011-11-08 20:03:31.000000000 +0100 ./pool/main/u/unixodbc/odbcinst1debian2_2.2.14p2-5_amd64.deb
-uilder 40 2011-11-08 20:03:31.000000000 +0100 ./pool/main/u/unixodbc/odbcinst_2.2.14p2-5_amd64.deb
-uilder 54 2012-04-28 10:47:55.000000000 +0200 ./pool/main/u/unoconv/unoconv_0.5-1_all.deb
-uilder 190 2012-11-28 12:51:46.000000000 +0100 ./pool/main/u/unzip/unzip_6.0-8_amd64.deb
-uilder 22 2012-06-03 00:51:33.000000000 +0200 ./pool/main/u/update-inetd/update-inetd_4.43_all.deb
-uilder 160 2012-11-28 17:57:28.000000000 +0100 ./pool/main/u/update-notifier/update-notifier-common_0.99.3debian11_all.deb
-uilder 14 2012-06-25 18:05:03.000000000 +0200 ./pool/main/u/upower/gir1.2-upowerglib-1.0_0.9.17-1_amd64.deb
-uilder 35 2012-06-25 18:05:03.000000000 +0200 ./pool/main/u/upower/libupower-glib1_0.9.17-1_amd64.deb
-uilder 101 2012-06-25 18:05:03.000000000 +0200 ./pool/main/u/upower/upower_0.9.17-1_amd64.deb
-uilder 33 2012-12-09 00:01:16.000000000 +0100 ./pool/main/u/usb-modeswitch-data/usb-modeswitch-data_20120815-2_all.deb
-uilder 52 2012-01-30 23:49:08.000000000 +0100 ./pool/main/u/usb-modeswitch/usb-modeswitch_1.2.3+repack0-1_amd64.deb
-uilder 14 2012-01-23 11:49:20.000000000 +0100 ./pool/main/u/usbmuxd/libusbmuxd1_1.0.7-2_amd64.deb
-uilder 38 2012-01-23 11:49:20.000000000 +0100 ./pool/main/u/usbmuxd/usbmuxd_1.0.7-2_amd64.deb
-uilder 225 2012-04-23 19:02:47.000000000 +0200 ./pool/main/u/usbutils/usbutils_005-3_amd64.deb
-uilder 195 2012-04-23 19:02:47.000000000 +0200 ./pool/main/u/usbutils/usbutils-udeb_005-3_amd64.udeb
-uilder 157 2012-12-13 06:10:27.000000000 +0100 ./pool/main/u/user-setup/user-setup-udeb_1.48_all.udeb
-uilder 91 2012-06-08 20:52:45.000000000 +0200 ./pool/main/u/ustr/libustr-1.0-1_1.0.4-3_amd64.deb
-uilder 10 2011-05-08 21:01:52.000000000 +0200 ./pool/main/u/utidylib/python-utidylib_0.2-8_all.deb
-uilder 84 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/bsdutils_2.20.1-5.3_amd64.deb
-uilder 756 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/cfdisk-udeb_2.20.1-5.3_amd64.udeb
-uilder 63 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/fdisk-udeb_2.20.1-5.3_amd64.udeb
-uilder 118 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/libblkid1_2.20.1-5.3_amd64.deb
-uilder 61 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/libblkid1-udeb_2.20.1-5.3_amd64.udeb
-uilder 118 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/libmount1_2.20.1-5.3_amd64.deb
-uilder 59 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/libmount1-udeb_2.20.1-5.3_amd64.udeb
-uilder 56 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/libuuid1_2.20.1-5.3_amd64.deb
-uilder 8 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/libuuid1-udeb_2.20.1-5.3_amd64.udeb
-uilder 209 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/mount_2.20.1-5.3_amd64.deb
-uilder 644 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/util-linux_2.20.1-5.3_amd64.deb
-uilder 12 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/util-linux-udeb_2.20.1-5.3_amd64.udeb
-uilder 59 2012-12-11 18:55:23.000000000 +0100 ./pool/main/u/util-linux/uuid-runtime_2.20.1-5.3_amd64.deb
-uilder 741 2012-10-25 23:19:03.000000000 +0200 ./pool/main/u/uw-imap/libc-client2007e_2007f~dfsg-2_amd64.deb
-uilder 34 2012-10-25 23:19:03.000000000 +0200 ./pool/main/u/uw-imap/mlock_2007f~dfsg-2_amd64.deb
-uilder 56 2012-06-25 19:39:30.000000000 +0200 ./pool/main/v/v4l-utils/libv4l-0_0.8.8-3_amd64.deb
-uilder 98 2012-06-25 19:39:30.000000000 +0200 ./pool/main/v/v4l-utils/libv4lconvert0_0.8.8-3_amd64.deb
-uilder 28087 2012-06-05 14:49:33.000000000 +0200 ./pool/main/v/valgrind/valgrind_3.7.0-6_amd64.deb
-uilder 71846 2012-06-05 14:49:33.000000000 +0200 ./pool/main/v/valgrind/valgrind-dbg_3.7.0-6_amd64.deb
-uilder 93 2009-12-30 00:48:01.000000000 +0100 ./pool/main/v/vamp-plugin-sdk/libvamp-hostsdk3_2.1-1_amd64.deb
-uilder 11 2009-01-09 13:32:09.000000000 +0100 ./pool/main/v/vbetool/vbetool_1.1-2_amd64.deb
-uilder 134 2012-12-31 05:23:07.000000000 +0100 ./pool/main/v/vcdimager/libvcdinfo0_0.7.24+dfsg-0.1_amd64.deb
-uilder 487 2012-12-31 05:23:07.000000000 +0100 ./pool/main/v/vcdimager/vcdimager_0.7.24+dfsg-0.1_amd64.deb
-uilder 54 2012-05-03 17:12:38.000000000 +0200 ./pool/main/v/vgrabbj/vgrabbj_0.9.6-5.1_amd64.deb
-uilder 2210 2012-06-03 06:06:16.000000000 +0200 ./pool/main/v/viewmol/viewmol_2.4.1-18_amd64.deb
-uilder 822 2013-02-10 03:36:29.000000000 +0100 ./pool/main/v/vim/vim_7.3.547-7_amd64.deb
-uilder 159 2013-02-10 03:36:29.000000000 +0100 ./pool/main/v/vim/vim-common_7.3.547-7_amd64.deb
-uilder 4500 2013-02-10 03:36:29.000000000 +0100 ./pool/main/v/vim/vim-runtime_7.3.547-7_all.deb
-uilder 347 2013-02-10 03:36:29.000000000 +0100 ./pool/main/v/vim/vim-tiny_7.3.547-7_amd64.deb
-uilder 2241 2013-01-08 21:40:36.000000000 +0100 ./pool/main/v/vinagre/vinagre_3.4.2-2_amd64.deb
-uilder 388 2012-09-14 20:44:16.000000000 +0200 ./pool/main/v/vino/vino_3.4.2-1+b1_amd64.deb
-uilder 862 2013-04-18 14:23:45.000000000 +0200 ./pool/main/v/virtuoso-opensource/libvirtodbc0_6.1.4+dfsg1-7_amd64.deb
-uilder 81 2013-04-18 14:23:45.000000000 +0200 ./pool/main/v/virtuoso-opensource/virtuoso-minimal_6.1.4+dfsg1-7_all.deb
-uilder 4030 2013-04-18 14:23:45.000000000 +0200 ./pool/main/v/virtuoso-opensource/virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64.deb
-uilder 98 2013-04-18 14:23:45.000000000 +0200 ./pool/main/v/virtuoso-opensource/virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64.deb
-uilder 39 2013-03-04 21:51:17.000000000 +0100 ./pool/main/v/vlc/libvlc5_2.0.3-5_amd64.deb
-uilder 349 2013-03-04 21:51:17.000000000 +0100 ./pool/main/v/vlc/libvlccore5_2.0.3-5_amd64.deb
-uilder 1027 2013-03-04 21:51:17.000000000 +0100 ./pool/main/v/vlc/vlc_2.0.3-5_amd64.deb
-uilder 4988 2013-03-04 21:51:17.000000000 +0100 ./pool/main/v/vlc/vlc-data_2.0.3-5_all.deb
-uilder 2492 2013-03-04 21:51:17.000000000 +0100 ./pool/main/v/vlc/vlc-nox_2.0.3-5_amd64.deb
-uilder 6 2013-03-04 21:51:17.000000000 +0100 ./pool/main/v/vlc/vlc-plugin-notify_2.0.3-5_amd64.deb
-uilder 17 2013-03-04 21:51:17.000000000 +0100 ./pool/main/v/vlc/vlc-plugin-pulse_2.0.3-5_amd64.deb
-uilder 2101 2013-01-30 17:23:39.000000000 +0100 ./pool/main/v/vnc4/vnc4server_4.1.1+X4.3.0-37.1_amd64.deb
-uilder 70 2012-03-18 18:33:52.000000000 +0100 ./pool/main/v/vo-aacenc/libvo-aacenc0_0.1.2-1_amd64.deb
-uilder 65 2012-03-18 18:47:39.000000000 +0100 ./pool/main/v/vo-amrwbenc/libvo-amrwbenc0_0.1.2-1_amd64.deb
-uilder 280 2010-04-07 10:00:17.000000000 +0200 ./pool/main/v/vorbis-tools/vorbis-tools_1.4.0-1_amd64.deb
-uilder 94 2012-03-13 22:55:19.000000000 +0100 ./pool/main/v/vpnc/vpnc_0.5.3r512-2_amd64.deb
-uilder 380 2012-06-02 00:21:39.000000000 +0200 ./pool/main/v/vte3/gir1.2-vte-2.90_0.32.2-1_amd64.deb
-uilder 722 2012-06-02 00:21:39.000000000 +0200 ./pool/main/v/vte3/libvte-2.90-9_0.32.2-1_amd64.deb
-uilder 218 2012-06-02 00:21:39.000000000 +0200 ./pool/main/v/vte3/libvte-2.90-9-udeb_0.32.2-1_amd64.udeb
-uilder 431 2012-06-02 00:21:39.000000000 +0200 ./pool/main/v/vte3/libvte-2.90-common_0.32.2-1_all.deb
-uilder 710 2012-06-23 17:17:56.000000000 +0200 ./pool/main/v/vte/libvte9_0.28.2-5_amd64.deb
-uilder 425 2012-06-23 17:17:56.000000000 +0200 ./pool/main/v/vte/libvte-common_0.28.2-5_all.deb
-uilder 404 2012-06-23 17:17:56.000000000 +0200 ./pool/main/v/vte/python-vte_0.28.2-5_amd64.deb
-uilder 2409 2012-06-16 15:19:55.000000000 +0200 ./pool/main/v/vym/vym_2.2.0-1_amd64.deb
-uilder 12 2012-03-10 22:10:35.000000000 +0100 ./pool/main/w/wakeonlan/wakeonlan_0.41-11_all.deb
-uilder 89 2012-04-01 12:04:55.000000000 +0200 ./pool/main/w/wavpack/libwavpack1_4.60.1-3_amd64.deb
-uilder 69 2012-04-01 12:04:55.000000000 +0200 ./pool/main/w/wavpack/wavpack_4.60.1-3_amd64.deb
-uilder 20 2013-02-19 08:05:04.000000000 +0100 ./pool/main/w/webkit/gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64.deb
-uilder 61 2013-02-19 08:05:04.000000000 +0100 ./pool/main/w/webkit/gir1.2-webkit-3.0_1.8.1-3.4_amd64.deb
-uilder 982 2013-02-19 08:05:03.000000000 +0100 ./pool/main/w/webkit/libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64.deb
-uilder 982 2013-02-19 08:05:04.000000000 +0100 ./pool/main/w/webkit/libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64.deb
-uilder 4647 2013-02-19 08:05:03.000000000 +0100 ./pool/main/w/webkit/libwebkitgtk-1.0-0_1.8.1-3.4_amd64.deb
-uilder 728 2013-02-19 08:05:03.000000000 +0100 ./pool/main/w/webkit/libwebkitgtk-1.0-common_1.8.1-3.4_all.deb
-uilder 4644 2013-02-19 08:05:04.000000000 +0100 ./pool/main/w/webkit/libwebkitgtk-3.0-0_1.8.1-3.4_amd64.deb
-uilder 728 2013-02-19 08:05:03.000000000 +0100 ./pool/main/w/webkit/libwebkitgtk-3.0-common_1.8.1-3.4_all.deb
-uilder 117 2012-05-19 23:09:20.000000000 +0200 ./pool/main/w/webrtc-audio-processing/libwebrtc-audio-processing-0_0.1-2_amd64.deb
-uilder 349 2012-03-28 23:38:32.000000000 +0200 ./pool/main/w/wfrench/wfrench_1.2.3-10_all.deb
-uilder 745 2012-04-09 21:05:09.000000000 +0200 ./pool/main/w/wget/wget_1.13.4-3_amd64.deb
-uilder 54 2013-04-08 07:03:39.000000000 +0200 ./pool/main/w/whois/whois_5.0.23_amd64.deb
-uilder 50 2012-11-10 21:51:15.000000000 +0100 ./pool/main/w/wicd/python-wicd_1.7.2.4-4_all.deb
-uilder 16 2012-11-10 21:51:15.000000000 +0100 ./pool/main/w/wicd/wicd_1.7.2.4-4_all.deb
-uilder 224 2012-11-10 21:51:15.000000000 +0100 ./pool/main/w/wicd/wicd-daemon_1.7.2.4-4_all.deb
-uilder 116 2012-11-10 21:51:15.000000000 +0100 ./pool/main/w/wicd/wicd-gtk_1.7.2.4-4_all.deb
-uilder 68 2012-02-18 20:05:25.000000000 +0100 ./pool/main/w/wide-dhcpv6/wide-dhcpv6-client-udeb_20080615-11.1_amd64.udeb
-uilder 64 2011-08-21 23:05:26.000000000 +0200 ./pool/main/w/wildmidi/libwildmidi1_0.2.3.4-2.1_amd64.deb
-uilder 16 2011-08-21 23:05:26.000000000 +0200 ./pool/main/w/wildmidi/libwildmidi-config_0.2.3.4-2.1_all.deb
-uilder 5 2011-05-17 05:04:15.000000000 +0200 ./pool/main/w/wireless-regdb/wireless-regdb_2011.04.28-1_all.deb
-uilder 36 2011-12-23 16:35:13.000000000 +0100 ./pool/main/w/wireless-tools/libiw30_30~pre9-8_amd64.deb
-uilder 15 2011-12-23 16:35:13.000000000 +0100 ./pool/main/w/wireless-tools/libiw30-udeb_30~pre9-8_amd64.udeb
-uilder 134 2011-12-23 16:35:13.000000000 +0100 ./pool/main/w/wireless-tools/wireless-tools_30~pre9-8_amd64.deb
-uilder 14 2011-12-23 16:35:13.000000000 +0100 ./pool/main/w/wireless-tools/wireless-tools-udeb_30~pre9-8_amd64.udeb
-uilder 310 2011-12-18 22:49:52.000000000 +0100 ./pool/main/w/witalian/witalian_1.7.5_all.deb
-uilder 74 2013-02-26 21:25:10.000000000 +0100 ./pool/main/w/wordnet/wordnet_3.0-29_amd64.deb
-uilder 8557 2013-02-26 21:25:10.000000000 +0100 ./pool/main/w/wordnet/wordnet-base_3.0-29_all.deb
-uilder 51 2013-02-26 21:25:10.000000000 +0100 ./pool/main/w/wordnet/wordnet-gui_3.0-29_amd64.deb
-uilder 594 2012-11-07 14:26:00.000000000 +0100 ./pool/main/w/wpa/wpasupplicant_1.0-3+b2_amd64.deb
-uilder 151 2012-11-07 14:26:00.000000000 +0100 ./pool/main/w/wpa/wpasupplicant-udeb_1.0-3+b2_amd64.udeb
-uilder 255 2011-10-04 16:53:29.000000000 +0200 ./pool/main/w/wspanish/wspanish_1.0.26_all.deb
-uilder 23 2010-11-01 21:38:15.000000000 +0100 ./pool/main/w/wwwconfig-common/wwwconfig-common_0.2.2_all.deb
-uilder 662 2012-09-19 12:35:25.000000000 +0200 ./pool/main/w/wxwidgets2.8/libwxbase2.8-0_2.8.12.1-12_amd64.deb
-uilder 3332 2012-09-19 12:35:25.000000000 +0200 ./pool/main/w/wxwidgets2.8/libwxgtk2.8-0_2.8.12.1-12_amd64.deb
-uilder 8379 2012-09-19 12:35:25.000000000 +0200 ./pool/main/w/wxwidgets2.8/python-wxgtk2.8_2.8.12.1-12_amd64.deb
-uilder 90 2012-09-19 12:35:25.000000000 +0200 ./pool/main/w/wxwidgets2.8/python-wxversion_2.8.12.1-12_all.deb
-uilder 731 2012-06-07 13:03:39.000000000 +0200 ./pool/main/x/x11-apps/x11-apps_7.7~2_amd64.deb
-uilder 15 2011-07-02 03:05:43.000000000 +0200 ./pool/main/x/x11proto-composite/x11proto-composite-dev_0.4.2-2_all.deb
-uilder 756 2012-04-14 19:33:29.000000000 +0200 ./pool/main/x/x11proto-core/x11proto-core-dev_7.0.23-1_all.deb
-uilder 12 2011-06-17 18:19:50.000000000 +0200 ./pool/main/x/x11proto-damage/x11proto-damage-dev_1.2.1-2_all.deb
-uilder 19 2011-06-17 18:19:59.000000000 +0200 ./pool/main/x/x11proto-fixes/x11proto-fixes-dev_5.0-2_all.deb
-uilder 168 2012-04-15 16:54:45.000000000 +0200 ./pool/main/x/x11proto-input/x11proto-input-dev_2.2-1_all.deb
-uilder 263 2012-06-16 23:35:09.000000000 +0200 ./pool/main/x/x11proto-kb/x11proto-kb-dev_1.0.6-2_all.deb
-uilder 40 2011-07-02 02:34:30.000000000 +0200 ./pool/main/x/x11proto-randr/x11proto-randr-dev_1.3.2-2_all.deb
-uilder 21 2011-07-02 02:34:42.000000000 +0200 ./pool/main/x/x11proto-render/x11proto-render-dev_0.11.1-2_all.deb
-uilder 268 2012-04-15 20:05:10.000000000 +0200 ./pool/main/x/x11proto-xext/x11proto-xext-dev_7.2.1-1_all.deb
-uilder 5 2011-07-02 02:48:58.000000000 +0200 ./pool/main/x/x11proto-xinerama/x11proto-xinerama-dev_1.2.1-2_all.deb
-uilder 79 2011-06-30 14:32:23.000000000 +0200 ./pool/main/x/x11-session-utils/x11-session-utils_7.6+2_amd64.deb
-uilder 228 2012-04-30 19:49:23.000000000 +0200 ./pool/main/x/x11-utils/x11-utils_7.7~1_amd64.deb
-uilder 27 2012-04-30 20:22:30.000000000 +0200 ./pool/main/x/x11-xfs-utils/x11-xfs-utils_7.7~1_amd64.deb
-uilder 195 2012-04-30 21:06:48.000000000 +0200 ./pool/main/x/x11-xkb-utils/x11-xkb-utils_7.7~1_amd64.deb
-uilder 185 2012-05-12 01:16:19.000000000 +0200 ./pool/main/x/x11-xserver-utils/x11-xserver-utils_7.7~3_amd64.deb
-uilder 427 2012-05-04 00:56:49.000000000 +0200 ./pool/main/x/x264/libx264-123_0.123.2189+git35cf912-1_amd64.deb
-uilder 131 2012-06-08 15:19:27.000000000 +0200 ./pool/main/x/xabacus/xabacus_7.6.8-3_amd64.deb
-uilder 600 2012-06-30 09:50:58.000000000 +0200 ./pool/main/x/xapian-bindings/python-xapian_1.2.12-2_amd64.deb
-uilder 1159 2012-12-11 06:49:15.000000000 +0100 ./pool/main/x/xapian-core/libxapian22_1.2.12-2_amd64.deb
-uilder 511 2012-12-06 12:40:43.000000000 +0100 ./pool/main/x/xarchiver/xarchiver_0.5.2+20090319+dfsg-4.1_amd64.deb
-uilder 37 2012-05-01 11:00:19.000000000 +0200 ./pool/main/x/xauth/xauth_1.0.7-1_amd64.deb
-uilder 150 2012-02-26 01:04:00.000000000 +0100 ./pool/main/x/xbae/libxbae4_4.60.4-3_amd64.deb
-uilder 32 2011-01-13 23:32:02.000000000 +0100 ./pool/main/x/xbitmaps/xbitmaps_1.1.1-1_all.deb
-uilder 1370 2012-04-28 16:48:13.000000000 +0200 ./pool/main/x/xboard/xboard_4.6.2-1_amd64.deb
-uilder 16 2012-06-08 07:49:21.000000000 +0200 ./pool/main/x/xcb-util-keysyms/libxcb-keysyms1_0.3.9-1_amd64.deb
-uilder 24 2012-02-10 02:02:36.000000000 +0100 ./pool/main/x/xcb-util/libxcb-util0_0.3.8-2_amd64.deb
-uilder 352 2012-12-08 16:10:06.000000000 +0100 ./pool/main/x/xchat/xchat_2.8.8-7.1_amd64.deb
-uilder 1157 2012-12-08 16:10:06.000000000 +0100 ./pool/main/x/xchat/xchat-common_2.8.8-7.1_all.deb
-uilder 54 2012-04-04 14:18:25.000000000 +0200 ./pool/main/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk_0.9-1_amd64.deb
-uilder 52 2011-07-30 19:18:45.000000000 +0200 ./pool/main/x/xdg-user-dirs/xdg-user-dirs_0.14-1_amd64.deb
-uilder 82 2012-02-11 17:18:58.000000000 +0100 ./pool/main/x/xdg-utils/xdg-utils_1.1.0~rc1+git20111210-6_all.deb
-uilder 846 2012-05-17 17:57:51.000000000 +0200 ./pool/main/x/xdrawchem/xdrawchem_2.0-2_amd64.deb
-uilder 92 2012-10-19 18:18:25.000000000 +0200 ./pool/main/x/xf86-input-wacom/xserver-xorg-input-wacom_0.15.0+20120515-2_amd64.deb
-uilder 3818 2010-11-16 23:32:12.000000000 +0100 ./pool/main/x/xfonts-100dpi/xfonts-100dpi_1.0.3_all.deb
-uilder 7212 2010-11-16 23:32:12.000000000 +0100 ./pool/main/x/xfonts-100dpi/xfonts-100dpi-transcoded_1.0.3_all.deb
-uilder 3395 2010-11-16 23:47:30.000000000 +0100 ./pool/main/x/xfonts-75dpi/xfonts-75dpi_1.0.3_all.deb
-uilder 6285 2010-11-16 23:47:30.000000000 +0100 ./pool/main/x/xfonts-75dpi/xfonts-75dpi-transcoded_1.0.3_all.deb
-uilder 6037 2010-11-16 22:48:20.000000000 +0100 ./pool/main/x/xfonts-base/xfonts-base_1.0.3_all.deb
-uilder 571 2010-11-17 14:32:13.000000000 +0100 ./pool/main/x/xfonts-encodings/xfonts-encodings_1.0.4-1_all.deb
-uilder 42 2012-06-08 01:19:17.000000000 +0200 ./pool/main/x/xfonts-mathml/xfonts-mathml_6_all.deb
-uilder 323 2010-11-17 11:48:25.000000000 +0100 ./pool/main/x/xfonts-scalable/xfonts-scalable_1.0.3-1_all.deb
-uilder 94 2012-05-06 00:19:27.000000000 +0200 ./pool/main/x/xfonts-utils/xfonts-utils_7.7~1_amd64.deb
-uilder 104 2012-06-23 00:10:26.000000000 +0200 ./pool/main/x/xfsprogs/xfsprogs-udeb_3.1.7+b1_amd64.udeb
-uilder 60 2012-06-16 23:17:05.000000000 +0200 ./pool/main/x/xft/libxft2_2.3.1-1_amd64.deb
-uilder 73 2012-06-16 23:17:05.000000000 +0200 ./pool/main/x/xft/libxft-dev_2.3.1-1_amd64.deb
-uilder 2 2012-06-30 21:09:28.000000000 +0200 ./pool/main/x/xine-lib-1.2/libxine2_1.2.2-4_amd64.deb
-uilder 1519 2012-06-30 21:09:28.000000000 +0200 ./pool/main/x/xine-lib-1.2/libxine2-bin_1.2.2-4_amd64.deb
-uilder 141 2012-06-30 21:09:28.000000000 +0200 ./pool/main/x/xine-lib-1.2/libxine2-doc_1.2.2-4_all.deb
-uilder 238 2012-06-30 21:09:28.000000000 +0200 ./pool/main/x/xine-lib-1.2/libxine2-ffmpeg_1.2.2-4_amd64.deb
-uilder 681 2012-06-30 21:09:28.000000000 +0200 ./pool/main/x/xine-lib-1.2/libxine2-misc-plugins_1.2.2-4_amd64.deb
-uilder 62 2012-06-30 21:09:28.000000000 +0200 ./pool/main/x/xine-lib-1.2/libxine2-plugins_1.2.2-4_all.deb
-uilder 217 2012-06-30 21:09:28.000000000 +0200 ./pool/main/x/xine-lib-1.2/libxine2-x_1.2.2-4_amd64.deb
-uilder 1498 2012-06-09 23:26:19.000000000 +0200 ./pool/main/x/xine-ui/xine-ui_0.99.7-1_amd64.deb
-uilder 42 2012-06-16 23:35:20.000000000 +0200 ./pool/main/x/xinit/xinit_1.3.2-1_amd64.deb
-uilder 125 2011-09-24 18:04:17.000000000 +0200 ./pool/main/x/xjig/xjig_2.4-13+b2_amd64.deb
-uilder 630 2012-12-25 12:46:57.000000000 +0100 ./pool/main/x/xkeyboard-config/xkb-data_2.5.1-3_all.deb
-uilder 304 2012-06-30 01:34:47.000000000 +0200 ./pool/main/x/xmhtml/xmhtml1_1.1.7-18_amd64.deb
-uilder 240 2011-08-27 00:33:59.000000000 +0200 ./pool/main/x/xml-commons-external/libxml-commons-external-java_1.4.01-2_all.deb
-uilder 24 2012-09-15 16:01:22.000000000 +0200 ./pool/main/x/xml-core/xml-core_0.13+nmu2_all.deb
-uilder 76 2012-06-27 12:08:08.000000000 +0200 ./pool/main/x/xmms2/libxmmsclient6_0.8+dfsg-4_amd64.deb
-uilder 19 2012-06-27 12:08:07.000000000 +0200 ./pool/main/x/xmms2/libxmmsclient-glib1_0.8+dfsg-4_amd64.deb
-uilder 561 2012-06-27 12:08:07.000000000 +0200 ./pool/main/x/xmms2/xmms2-core_0.8+dfsg-4_amd64.deb
-uilder 23 2012-06-27 12:08:07.000000000 +0200 ./pool/main/x/xmms2/xmms2-plugin-alsa_0.8+dfsg-4_amd64.deb
-uilder 25 2012-06-27 12:08:07.000000000 +0200 ./pool/main/x/xmms2/xmms2-plugin-id3v2_0.8+dfsg-4_amd64.deb
-uilder 26 2012-06-27 12:08:08.000000000 +0200 ./pool/main/x/xmms2/xmms2-plugin-mad_0.8+dfsg-4_amd64.deb
-uilder 22 2012-06-27 12:08:07.000000000 +0200 ./pool/main/x/xmms2/xmms2-plugin-vorbis_0.8+dfsg-4_amd64.deb
-uilder 381 2011-04-25 14:32:09.000000000 +0200 ./pool/main/x/xom/libxom-java_1.2.1-3_all.deb
-uilder 75 2011-01-05 04:02:03.000000000 +0100 ./pool/main/x/xorg-docs/xorg-docs-core_1.6-1_all.deb
-uilder 1364 2013-04-17 12:50:48.000000000 +0200 ./pool/main/x/xorg-server/xserver-common_1.12.4-6_all.deb
-uilder 995 2013-04-17 12:50:48.000000000 +0200 ./pool/main/x/xorg-server/xserver-xephyr_1.12.4-6_amd64.deb
-uilder 1721 2013-04-17 12:50:48.000000000 +0200 ./pool/main/x/xorg-server/xserver-xorg-core_1.12.4-6_amd64.deb
-uilder 24 2011-12-22 12:03:00.000000000 +0100 ./pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.10-1_all.deb
-uilder 278 2013-02-23 14:00:16.000000000 +0100 ./pool/main/x/xorg/x11-common_7.7+2_all.deb
-uilder 36 2013-02-23 14:00:16.000000000 +0100 ./pool/main/x/xorg/xbase-clients_7.7+2_all.deb
-uilder 36 2013-02-23 14:00:16.000000000 +0100 ./pool/main/x/xorg/xorg_7.7+2_amd64.deb
-uilder 111 2013-02-23 14:00:16.000000000 +0100 ./pool/main/x/xorg/xserver-xorg_7.7+2_amd64.deb
-uilder 36 2013-02-23 14:00:16.000000000 +0100 ./pool/main/x/xorg/xserver-xorg-input-all_7.7+2_amd64.deb
-uilder 36 2013-02-23 14:00:16.000000000 +0100 ./pool/main/x/xorg/xserver-xorg-video-all_7.7+2_amd64.deb
-uilder 128 2012-02-05 20:52:21.000000000 +0100 ./pool/main/x/xoscope/xoscope_2.0-3.2_amd64.deb
-uilder 174 2012-04-22 10:57:10.000000000 +0200 ./pool/main/x/xpaint/libxaw3dxft6_2.9.1.4-3+b2_amd64.deb
-uilder 557 2012-04-22 10:57:10.000000000 +0200 ./pool/main/x/xpaint/xpaint_2.9.1.4-3+b2_amd64.deb
-uilder 194 2012-06-12 03:48:10.000000000 +0200 ./pool/main/x/xpdf/xpdf_3.03-10_amd64.deb
-uilder 581 2012-04-22 10:57:53.000000000 +0200 ./pool/main/x/xplanet/xplanet_1.2.1-4.1+b1_amd64.deb
-uilder 428 2011-11-09 18:03:28.000000000 +0100 ./pool/main/x/xplanet/xplanet-images_1.2.1-4.1_all.deb
-uilder 265 2012-01-22 13:32:59.000000000 +0100 ./pool/main/x/xrdp/xrdp_0.5.0-2_amd64.deb
-uilder 852 2012-06-30 20:38:13.000000000 +0200 ./pool/main/x/xscreensaver/xscreensaver_5.15-3_amd64.deb
-uilder 548 2012-06-30 20:38:13.000000000 +0200 ./pool/main/x/xscreensaver/xscreensaver-data_5.15-3_amd64.deb
-uilder 2693 2012-06-30 20:38:13.000000000 +0200 ./pool/main/x/xscreensaver/xscreensaver-data-extra_5.15-3_amd64.deb
-uilder 2213 2012-06-30 20:38:13.000000000 +0200 ./pool/main/x/xscreensaver/xscreensaver-gl_5.15-3_amd64.deb
-uilder 2459 2012-06-30 20:38:13.000000000 +0200 ./pool/main/x/xscreensaver/xscreensaver-gl-extra_5.15-3_amd64.deb
-uilder 166 2012-06-30 20:38:13.000000000 +0200 ./pool/main/x/xscreensaver/xscreensaver-screensaver-bsod_5.15-3_amd64.deb
-uilder 102 2012-05-01 13:52:43.000000000 +0200 ./pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev_2.7.0-1+b1_amd64.deb
-uilder 204 2012-10-01 22:25:13.000000000 +0200 ./pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.6.2-2_amd64.deb
-uilder 54 2012-05-01 14:23:15.000000000 +0200 ./pool/main/x/xserver-xorg-video-apm/xserver-xorg-video-apm_1.2.3-3_amd64.deb
-uilder 23 2012-05-01 14:07:43.000000000 +0200 ./pool/main/x/xserver-xorg-video-ark/xserver-xorg-video-ark_0.7.4-1+b1_amd64.deb
-uilder 269 2013-03-09 12:43:37.000000000 +0100 ./pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.14.4-8_amd64.deb
-uilder 702 2013-03-09 12:43:37.000000000 +0100 ./pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_6.14.4-8_amd64.deb
-uilder 84 2012-05-01 14:37:25.000000000 +0200 ./pool/main/x/xserver-xorg-video-chips/xserver-xorg-video-chips_1.2.4-2_amd64.deb
-uilder 51 2012-07-16 23:02:50.000000000 +0200 ./pool/main/x/xserver-xorg-video-cirrus/xserver-xorg-video-cirrus_1.4.0-2_amd64.deb
-uilder 23 2012-05-01 14:09:54.000000000 +0200 ./pool/main/x/xserver-xorg-video-fbdev/xserver-xorg-video-fbdev_0.4.2-4+b3_amd64.deb
-uilder 40 2012-05-01 14:24:45.000000000 +0200 ./pool/main/x/xserver-xorg-video-i128/xserver-xorg-video-i128_1.3.5-1+b1_amd64.deb
-uilder 1063 2012-09-16 21:24:32.000000000 +0200 ./pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.19.0-6_amd64.deb
-uilder 211 2012-05-01 15:08:09.000000000 +0200 ./pool/main/x/xserver-xorg-video-mach64/xserver-xorg-video-mach64_6.9.1-2_amd64.deb
-uilder 119 2013-01-12 16:08:28.000000000 +0100 ./pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.5.0-3_amd64.deb
-uilder 48 2012-05-12 12:51:54.000000000 +0200 ./pool/main/x/xserver-xorg-video-neomagic/xserver-xorg-video-neomagic_1.2.6-1_amd64.deb
-uilder 301 2013-02-07 19:14:54.000000000 +0100 ./pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau_1.0.1-5_amd64.deb
-uilder 179 2012-05-08 17:20:29.000000000 +0200 ./pool/main/x/xserver-xorg-video-r128/xserver-xorg-video-r128_6.8.2-1_amd64.deb
-uilder 33 2012-05-01 18:20:23.000000000 +0200 ./pool/main/x/xserver-xorg-video-rendition/xserver-xorg-video-rendition_4.2.4-3_amd64.deb
-uilder 52 2012-05-07 03:34:58.000000000 +0200 ./pool/main/x/xserver-xorg-video-s3virge/xserver-xorg-video-s3virge_1.10.4-5_amd64.deb
-uilder 44 2013-03-20 19:34:45.000000000 +0100 ./pool/main/x/xserver-xorg-video-s3/xserver-xorg-video-s3_0.6.3-5_amd64.deb
-uilder 101 2012-05-08 12:04:59.000000000 +0200 ./pool/main/x/xserver-xorg-video-savage/xserver-xorg-video-savage_2.3.4-1_amd64.deb
-uilder 92 2012-05-01 19:20:45.000000000 +0200 ./pool/main/x/xserver-xorg-video-siliconmotion/xserver-xorg-video-siliconmotion_1.7.6-1_amd64.deb
-uilder 49 2012-05-01 19:50:40.000000000 +0200 ./pool/main/x/xserver-xorg-video-sisusb/xserver-xorg-video-sisusb_0.9.4-3_amd64.deb
-uilder 294 2012-05-01 19:35:37.000000000 +0200 ./pool/main/x/xserver-xorg-video-sis/xserver-xorg-video-sis_0.10.4-1_amd64.deb
-uilder 50 2012-05-07 03:20:09.000000000 +0200 ./pool/main/x/xserver-xorg-video-tdfx/xserver-xorg-video-tdfx_1.4.4-1_amd64.deb
-uilder 81 2012-05-01 20:04:42.000000000 +0200 ./pool/main/x/xserver-xorg-video-trident/xserver-xorg-video-trident_1.3.5-1_amd64.deb
-uilder 38 2012-05-01 20:22:17.000000000 +0200 ./pool/main/x/xserver-xorg-video-tseng/xserver-xorg-video-tseng_1.2.4-3_amd64.deb
-uilder 31 2012-05-01 18:20:51.000000000 +0200 ./pool/main/x/xserver-xorg-video-vesa/xserver-xorg-video-vesa_2.3.1-1+b1_amd64.deb
-uilder 65 2012-05-01 18:21:02.000000000 +0200 ./pool/main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_12.0.2-1+b1_amd64.deb
-uilder 26 2012-05-01 18:37:34.000000000 +0200 ./pool/main/x/xserver-xorg-video-voodoo/xserver-xorg-video-voodoo_1.2.4-2+b3_amd64.deb
-uilder 60 2009-05-03 19:02:12.000000000 +0200 ./pool/main/x/xsok/xsok_1.02-17_amd64.deb
-uilder 600 2012-11-27 20:24:27.000000000 +0100 ./pool/main/x/xterm/xterm_278-4_amd64.deb
-uilder 520 2010-05-31 02:02:03.000000000 +0200 ./pool/main/x/xtide-data/xtide-data_20100529-1_all.deb
-uilder 926 2010-08-13 01:17:47.000000000 +0200 ./pool/main/x/xtide/xtide_2.11-1_amd64.deb
-uilder 110 2012-05-05 18:03:16.000000000 +0200 ./pool/main/x/xtrans/xtrans-dev_1.2.7-1_all.deb
-uilder 320 2012-03-18 15:55:06.000000000 +0100 ./pool/main/x/xvidcore/libxvidcore4_1.3.2-9_amd64.deb
-uilder 85 2012-07-09 03:02:13.000000000 +0200 ./pool/main/x/xz-java/libxz-java_1.0-2_all.deb
-uilder 198 2012-11-18 20:34:55.000000000 +0100 ./pool/main/x/xz-utils/liblzma5_5.1.1alpha+20120614-2_amd64.deb
-uilder 232 2012-11-18 20:34:55.000000000 +0100 ./pool/main/x/xz-utils/xz-utils_5.1.1alpha+20120614-2_amd64.deb
-uilder 25 2012-01-27 05:48:40.000000000 +0100 ./pool/main/y/yajl/libyajl2_2.0.4-2_amd64.deb
-uilder 179 2012-09-14 20:59:19.000000000 +0200 ./pool/main/y/yelp/libyelp0_3.4.2-1+b1_amd64.deb
-uilder 528 2012-05-15 21:06:23.000000000 +0200 ./pool/main/y/yelp-xsl/yelp-xsl_3.4.2-1_all.deb
-uilder 346 2012-09-14 20:59:19.000000000 +0200 ./pool/main/y/yelp/yelp_3.4.2-1+b1_amd64.deb
-uilder 102 2013-03-17 23:14:01.000000000 +0100 ./pool/main/z/zbar/libzbar0_0.10+doc-8_amd64.deb
-uilder 38 2012-05-25 20:53:58.000000000 +0200 ./pool/main/z/zeitgeist/python-zeitgeist_0.9.0.1-1_all.deb
-uilder 288 2012-05-25 20:53:58.000000000 +0200 ./pool/main/z/zeitgeist/zeitgeist-core_0.9.0.1-1_amd64.deb
-uilder 226 2012-05-12 21:35:23.000000000 +0200 ./pool/main/z/zenity/zenity_3.4.0-2_amd64.deb
-uilder 3668 2012-05-12 21:35:23.000000000 +0200 ./pool/main/z/zenity/zenity-common_3.4.0-2_all.deb
-uilder 35 2012-02-01 05:34:04.000000000 +0100 ./pool/main/z/zephyr/libzephyr4_3.0.2-2_amd64.deb
-uilder 329 2012-06-30 15:08:10.000000000 +0200 ./pool/main/z/zip/zip_3.0-6_amd64.deb
-uilder 86 2012-06-22 18:49:35.000000000 +0200 ./pool/main/z/zlib/zlib1g_1.2.7.dfsg-13_amd64.deb
-uilder 210 2012-06-22 18:49:35.000000000 +0200 ./pool/main/z/zlib/zlib1g-dev_1.2.7.dfsg-13_amd64.deb
-uilder 43 2012-06-22 18:49:35.000000000 +0200 ./pool/main/z/zlib/zlib1g-udeb_1.2.7.dfsg-13_amd64.udeb
-uilder 138 2012-09-26 09:40:05.000000000 +0200 ./pool/main/z/zope.interface/python-zope.interface_3.6.1-3_amd64.deb
-uilder 99 2012-05-19 23:10:36.000000000 +0200 ./pool/main/z/zthreads/libzthread-2.3-2_2.3.2-7_amd64.deb
-uilder 298 2012-06-14 09:17:52.000000000 +0200 ./pool/main/z/zvbi/libzvbi0_0.2.33-6_amd64.deb
-uilder 63 2012-06-14 08:48:48.000000000 +0200 ./pool/main/z/zvbi/libzvbi-common_0.2.33-6_all.deb
-uilder 312 2013-01-06 05:39:19.000000000 +0100 ./pool/non-free/f/firmware-nonfree/firmware-bnx2_0.36+wheezy.1_all.deb
-uilder 512 2013-01-06 05:39:19.000000000 +0100 ./pool/non-free/f/firmware-nonfree/firmware-ipw2x00_0.36+wheezy.1_all.deb
-uilder 3495 2013-01-06 05:39:19.000000000 +0100 ./pool/non-free/f/firmware-nonfree/firmware-iwlwifi_0.36+wheezy.1_all.deb
-uilder 515 2013-01-06 05:39:19.000000000 +0100 ./pool/non-free/f/firmware-nonfree/firmware-qlogic_0.36+wheezy.1_all.deb
-uilder 3008 2011-10-22 14:02:23.000000000 +0200 ./pool/non-free/f/fonts-larabie/fonts-larabie-deco_20011216-4_all.deb
-uilder 5 2011-10-22 14:02:23.000000000 +0200 ./pool/non-free/f/fonts-larabie/ttf-larabie-deco_20011216-4_all.deb
-uilder 40177 2013-06-08 12:48:36.000000000 +0200 ./pool/updates/main/c/chromium-browser/chromium_27.0.1453.110-1~deb7u1_amd64.deb
-uilder 158 2013-06-08 12:48:36.000000000 +0200 ./pool/updates/main/c/chromium-browser/chromium-browser_27.0.1453.110-1~deb7u1_all.deb
-uilder 928 2013-06-08 12:48:36.000000000 +0200 ./pool/updates/main/c/chromium-browser/chromium-inspector_27.0.1453.110-1~deb7u1_all.deb
-uilder 390 2013-06-12 22:54:30.000000000 +0200 ./pool/updates/main/d/dbus/dbus_1.6.8-1+deb7u1_amd64.deb
-uilder 59 2013-06-12 22:54:30.000000000 +0200 ./pool/updates/main/d/dbus/dbus-x11_1.6.8-1+deb7u1_amd64.deb
-uilder 169 2013-06-12 22:54:30.000000000 +0200 ./pool/updates/main/d/dbus/libdbus-1-3_1.6.8-1+deb7u1_amd64.deb
-uilder 241 2013-06-12 22:54:30.000000000 +0200 ./pool/updates/main/d/dbus/libdbus-1-dev_1.6.8-1+deb7u1_amd64.deb
-uilder 605 2013-05-25 08:20:00.000000000 +0200 ./pool/updates/main/g/gnutls26/libgnutls26_2.12.20-7_amd64.deb
-uilder 2112 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel_17.0.6esr-1~deb7u1_amd64.deb
-uilder 317 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-af_17.0.6esr-1~deb7u1_all.deb
-uilder 347 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-ar_17.0.6esr-1~deb7u1_all.deb
-uilder 309 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-be_17.0.6esr-1~deb7u1_all.deb
-uilder 364 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-bg_17.0.6esr-1~deb7u1_all.deb
-uilder 334 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-ca_17.0.6esr-1~deb7u1_all.deb
-uilder 331 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-cs_17.0.6esr-1~deb7u1_all.deb
-uilder 319 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-da_17.0.6esr-1~deb7u1_all.deb
-uilder 308 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-de_17.0.6esr-1~deb7u1_all.deb
-uilder 348 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-el_17.0.6esr-1~deb7u1_all.deb
-uilder 307 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-en-gb_17.0.6esr-1~deb7u1_all.deb
-uilder 325 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-es-ar_17.0.6esr-1~deb7u1_all.deb
-uilder 278 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-es-es_17.0.6esr-1~deb7u1_all.deb
-uilder 322 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-eu_17.0.6esr-1~deb7u1_all.deb
-uilder 325 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-fi_17.0.6esr-1~deb7u1_all.deb
-uilder 331 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-fr_17.0.6esr-1~deb7u1_all.deb
-uilder 327 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-fy-nl_17.0.6esr-1~deb7u1_all.deb
-uilder 333 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-ga-ie_17.0.6esr-1~deb7u1_all.deb
-uilder 353 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-gu-in_17.0.6esr-1~deb7u1_all.deb
-uilder 338 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-he_17.0.6esr-1~deb7u1_all.deb
-uilder 339 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-hu_17.0.6esr-1~deb7u1_all.deb
-uilder 276 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-it_17.0.6esr-1~deb7u1_all.deb
-uilder 361 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-ja_17.0.6esr-1~deb7u1_all.deb
-uilder 335 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-ko_17.0.6esr-1~deb7u1_all.deb
-uilder 340 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-ku_17.0.6esr-1~deb7u1_all.deb
-uilder 383 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-lt_17.0.6esr-1~deb7u1_all.deb
-uilder 351 2013-05-15 19:10:08.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-mk_17.0.6esr-1~deb7u1_all.deb
-uilder 321 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-nb-no_17.0.6esr-1~deb7u1_all.deb
-uilder 325 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-nl_17.0.6esr-1~deb7u1_all.deb
-uilder 324 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-nn-no_17.0.6esr-1~deb7u1_all.deb
-uilder 352 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-pa-in_17.0.6esr-1~deb7u1_all.deb
-uilder 339 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-pl_17.0.6esr-1~deb7u1_all.deb
-uilder 324 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-pt-br_17.0.6esr-1~deb7u1_all.deb
-uilder 326 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-pt-pt_17.0.6esr-1~deb7u1_all.deb
-uilder 345 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-ro_17.0.6esr-1~deb7u1_all.deb
-uilder 324 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-ru_17.0.6esr-1~deb7u1_all.deb
-uilder 340 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-sk_17.0.6esr-1~deb7u1_all.deb
-uilder 327 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-sl_17.0.6esr-1~deb7u1_all.deb
-uilder 323 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-sv-se_17.0.6esr-1~deb7u1_all.deb
-uilder 332 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-tr_17.0.6esr-1~deb7u1_all.deb
-uilder 341 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-zh-cn_17.0.6esr-1~deb7u1_all.deb
-uilder 340 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/iceweasel-l10n-zh-tw_17.0.6esr-1~deb7u1_all.deb
-uilder 1249 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/libmozjs17d_17.0.6esr-1~deb7u1_amd64.deb
-uilder 11020 2013-05-15 19:10:09.000000000 +0200 ./pool/updates/main/i/iceweasel/xulrunner-17.0_17.0.6esr-1~deb7u1_amd64.deb
-uilder 121 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 221 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 119 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 1468 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/krb5-locales_1.10.1+dfsg-5+deb7u1_all.deb
-uilder 150 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/krb5-user_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 145 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 86 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 110 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 67 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 83 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 66 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 385 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 48 2013-05-31 22:02:06.000000000 +0200 ./pool/updates/main/k/krb5/libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64.deb
-uilder 36 2013-05-14 13:52:42.000000000 +0200 ./pool/updates/main/libf/libfs/libfs6_1.0.4-1+deb7u1_amd64.deb
-uilder 880 2013-05-22 00:04:20.000000000 +0200 ./pool/updates/main/libx/libx11/libx11-6_1.5.0-1+deb7u1_amd64.deb
-uilder 185 2013-05-22 00:04:20.000000000 +0200 ./pool/updates/main/libx/libx11/libx11-data_1.5.0-1+deb7u1_all.deb
-uilder 1014 2013-05-22 00:04:20.000000000 +0200 ./pool/updates/main/libx/libx11/libx11-dev_1.5.0-1+deb7u1_amd64.deb
-uilder 3116 2013-05-22 00:04:20.000000000 +0200 ./pool/updates/main/libx/libx11/libx11-doc_1.5.0-1+deb7u1_all.deb
-uilder 137 2013-05-22 00:04:20.000000000 +0200 ./pool/updates/main/libx/libx11/libx11-xcb1_1.5.0-1+deb7u1_amd64.deb
-uilder 50 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb1_1.8.1-2+deb7u1_amd64.deb
-uilder 87 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb1-dev_1.8.1-2+deb7u1_amd64.deb
-uilder 11 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-composite0_1.8.1-2+deb7u1_amd64.deb
-uilder 13 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-dri2-0_1.8.1-2+deb7u1_amd64.deb
-uilder 32 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-glx0_1.8.1-2+deb7u1_amd64.deb
-uilder 20 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-randr0_1.8.1-2+deb7u1_amd64.deb
-uilder 19 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-render0_1.8.1-2+deb7u1_amd64.deb
-uilder 26 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-render0-dev_1.8.1-2+deb7u1_amd64.deb
-uilder 11 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-shape0_1.8.1-2+deb7u1_amd64.deb
-uilder 11 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-shm0_1.8.1-2+deb7u1_amd64.deb
-uilder 12 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-shm0-dev_1.8.1-2+deb7u1_amd64.deb
-uilder 15 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-xfixes0_1.8.1-2+deb7u1_amd64.deb
-uilder 16 2013-05-15 20:35:46.000000000 +0200 ./pool/updates/main/libx/libxcb/libxcb-xv0_1.8.1-2+deb7u1_amd64.deb
-uilder 27 2013-05-14 14:07:43.000000000 +0200 ./pool/updates/main/libx/libxcursor/libxcursor1_1.1.13-1+deb7u1_amd64.deb
-uilder 34 2013-05-14 14:07:43.000000000 +0200 ./pool/updates/main/libx/libxcursor/libxcursor-dev_1.1.13-1+deb7u1_amd64.deb
-uilder 54 2013-05-14 14:37:49.000000000 +0200 ./pool/updates/main/libx/libxext/libxext6_1.3.1-2+deb7u1_amd64.deb
-uilder 112 2013-05-14 14:37:49.000000000 +0200 ./pool/updates/main/libx/libxext/libxext-dev_1.3.1-2+deb7u1_amd64.deb
-uilder 21 2013-05-14 15:47:55.000000000 +0200 ./pool/updates/main/libx/libxfixes/libxfixes3_5.0-4+deb7u1_amd64.deb
-uilder 23 2013-05-14 15:47:55.000000000 +0200 ./pool/updates/main/libx/libxfixes/libxfixes-dev_5.0-4+deb7u1_amd64.deb
-uilder 74 2013-05-15 14:55:49.000000000 +0200 ./pool/updates/main/libx/libxi/libxi6_1.6.1-1+deb7u1_amd64.deb
-uilder 242 2013-05-15 14:55:49.000000000 +0200 ./pool/updates/main/libx/libxi/libxi-dev_1.6.1-1+deb7u1_amd64.deb
-uilder 17 2013-05-14 16:58:00.000000000 +0200 ./pool/updates/main/libx/libxinerama/libxinerama1_1.1.2-1+deb7u1_amd64.deb
-uilder 19 2013-05-14 16:58:00.000000000 +0200 ./pool/updates/main/libx/libxinerama/libxinerama-dev_1.1.2-1+deb7u1_amd64.deb
-uilder 24 2013-05-14 18:03:06.000000000 +0200 ./pool/updates/main/libx/libxp/libxp6_1.0.1-2+deb7u1_amd64.deb
-uilder 33 2013-05-14 19:13:07.000000000 +0200 ./pool/updates/main/libx/libxrandr/libxrandr2_1.3.2-2+deb7u1_amd64.deb
-uilder 41 2013-05-14 19:13:07.000000000 +0200 ./pool/updates/main/libx/libxrandr/libxrandr-dev_1.3.2-2+deb7u1_amd64.deb
-uilder 32 2013-05-14 19:38:07.000000000 +0200 ./pool/updates/main/libx/libxrender/libxrender1_0.9.7-1+deb7u1_amd64.deb
-uilder 41 2013-05-14 19:38:07.000000000 +0200 ./pool/updates/main/libx/libxrender/libxrender-dev_0.9.7-1+deb7u1_amd64.deb
-uilder 15 2013-05-14 13:57:43.000000000 +0200 ./pool/updates/main/libx/libxres/libxres1_1.0.6-1+deb7u1_amd64.deb
-uilder 208 2013-05-14 20:08:07.000000000 +0200 ./pool/updates/main/libx/libxt/libxt6_1.1.3-1+deb7u1_amd64.deb
-uilder 27 2013-05-14 20:48:24.000000000 +0200 ./pool/updates/main/libx/libxtst/libxtst6_1.2.1-1+deb7u1_amd64.deb
-uilder 22 2013-05-15 01:14:42.000000000 +0200 ./pool/updates/main/libx/libxv/libxv1_1.0.7-1+deb7u1_amd64.deb
-uilder 24 2013-05-24 07:54:48.000000000 +0200 ./pool/updates/main/libx/libxvmc/libxvmc1_1.0.7-1+deb7u2_amd64.deb
-uilder 23 2013-05-15 19:10:14.000000000 +0200 ./pool/updates/main/libx/libxxf86dga/libxxf86dga1_1.1.3-2+deb7u1_amd64.deb
-uilder 20 2013-05-15 20:10:27.000000000 +0200 ./pool/updates/main/libx/libxxf86vm/libxxf86vm1_1.1.2-1+deb7u1_amd64.deb
-uilder 582 2013-05-16 01:31:38.000000000 +0200 ./pool/updates/main/l/linux/linux-headers-3.2.0-4-amd64_3.2.41-2+deb7u2_amd64.deb
-uilder 3460 2013-05-16 01:31:39.000000000 +0200 ./pool/updates/main/l/linux/linux-headers-3.2.0-4-common_3.2.41-2+deb7u2_amd64.deb
-uilder 22863 2013-05-16 01:31:39.000000000 +0200 ./pool/updates/main/l/linux/linux-image-3.2.0-4-amd64_3.2.41-2+deb7u2_amd64.deb
-uilder 786 2013-05-16 01:31:39.000000000 +0200 ./pool/updates/main/l/linux/linux-libc-dev_3.2.41-2+deb7u2_amd64.deb
-uilder 32 2013-06-05 18:37:36.000000000 +0200 ./pool/updates/main/m/mesa/libgl1-mesa-dev_8.0.5-4+deb7u2_amd64.deb
-uilder 21214 2013-06-05 18:37:36.000000000 +0200 ./pool/updates/main/m/mesa/libgl1-mesa-dri_8.0.5-4+deb7u2_amd64.deb
-uilder 131 2013-06-05 18:37:36.000000000 +0200 ./pool/updates/main/m/mesa/libgl1-mesa-glx_8.0.5-4+deb7u2_amd64.deb
-uilder 46 2013-06-05 18:37:36.000000000 +0200 ./pool/updates/main/m/mesa/libglapi-mesa_8.0.5-4+deb7u2_amd64.deb
-uilder 187 2013-06-05 18:37:36.000000000 +0200 ./pool/updates/main/m/mesa/libglu1-mesa_8.0.5-4+deb7u2_amd64.deb
-uilder 221 2013-06-05 18:37:36.000000000 +0200 ./pool/updates/main/m/mesa/libglu1-mesa-dev_8.0.5-4+deb7u2_amd64.deb
-uilder 271 2013-06-05 18:37:36.000000000 +0200 ./pool/updates/main/m/mesa/mesa-common-dev_8.0.5-4+deb7u2_amd64.deb
-uilder 671 2013-05-10 22:16:39.000000000 +0200 ./pool/updates/main/m/mysql-5.5/libmysqlclient18_5.5.31+dfsg-0+wheezy1_amd64.deb
-uilder 84 2013-05-10 22:16:39.000000000 +0200 ./pool/updates/main/m/mysql-5.5/mysql-common_5.5.31+dfsg-0+wheezy1_all.deb
-uilder 3696 2013-05-10 22:16:39.000000000 +0200 ./pool/updates/main/m/mysql-5.5/mysql-server-core-5.5_5.5.31+dfsg-0+wheezy1_amd64.deb
-uilder 914 2013-06-07 10:38:04.000000000 +0200 ./pool/updates/main/s/subversion/libsvn1_1.6.17dfsg-4+deb7u3_amd64.deb
-uilder 1290 2013-06-07 10:38:04.000000000 +0200 ./pool/updates/main/s/subversion/subversion_1.6.17dfsg-4+deb7u3_amd64.deb
-uilder 796 2013-05-30 00:11:44.000000000 +0200 ./pool/updates/main/t/telepathy-gabble/telepathy-gabble_0.16.5-1+deb7u1_amd64.deb
-uilder 13124 2013-06-01 16:22:12.000000000 +0200 ./pool/updates/main/w/wireshark/libwireshark2_1.8.2-5wheezy3_amd64.deb
-uilder 1195 2013-06-01 16:22:12.000000000 +0200 ./pool/updates/main/w/wireshark/libwireshark-data_1.8.2-5wheezy3_all.deb
-uilder 186 2013-06-01 16:22:12.000000000 +0200 ./pool/updates/main/w/wireshark/libwiretap2_1.8.2-5wheezy3_amd64.deb
-uilder 49 2013-06-01 16:22:12.000000000 +0200 ./pool/updates/main/w/wireshark/libwsutil2_1.8.2-5wheezy3_amd64.deb
-uilder 959 2013-06-01 16:22:12.000000000 +0200 ./pool/updates/main/w/wireshark/wireshark_1.8.2-5wheezy3_amd64.deb
-uilder 223 2013-06-01 16:22:12.000000000 +0200 ./pool/updates/main/w/wireshark/wireshark-common_1.8.2-5wheezy3_amd64.deb
-uilder 201 2013-05-15 21:11:00.000000000 +0200 ./pool/updates/main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.deb
-uilder 9 2013-06-14 22:12:52.000000000 +0200 ./README.html
-uilder 170 2013-06-10 03:52:58.000000000 +0200 ./README.mirrors.html
-uilder 85 2013-06-10 03:52:58.000000000 +0200 ./README.mirrors.txt
-uilder 1 2013-06-14 22:10:31.000000000 +0200 ./README.source
-uilder 6 2013-06-14 22:12:52.000000000 +0200 ./README.txt
-uilder 42 2012-10-05 02:56:39.000000000 +0200 ./tools/loadlin.exe
-uilder 32 2012-10-05 02:56:39.000000000 +0200 ./tools/loadlin.txt
Deleted: trunk/src/build/CD-administrator/missingpkglist-wheezy-test-dvd-amd64.txt
===================================================================
--- trunk/src/build/CD-administrator/missingpkglist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:02 UTC (rev 80858)
+++ trunk/src/build/CD-administrator/missingpkglist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:21 UTC (rev 80859)
@@ -1,650 +0,0 @@
-abakus
-adept
-amor
-amsn
-apache2-doc
-apache2-mpm-worker
-apmd
-aptitude-doc-fr
-aptitude-doc-ja
-arping
-arrayprobe
-arts
-artsbuilder
-astronomical-almanac
-atlantik
-atlantikdesigner
-autolog
-backuppc
-battery-stats
-beast
-belocs-locales-bin
-blender
-bluetooth
-bluez-cups
-bluez-utils
-bpalogin
-brazilian-conjugate
-brltty
-brltty-x11
-calamaris
-capiutils
-cervisia
-cipux-cibot
-cipux-common
-cipux-profile
-cipux-rpcd
-cl-geodesics
-clamav-data
-clamav-docs
-clamav-getfiles
-cmt
-collatinus
-contact-lookup-applet
-controlaula
-crafty
-cron-apt
-cupsomatic-ppd
-dbdesigner
-dcraw
-debian-edu-fr-all
-debian-edu-fr-skels
-debian-installer-6.0-netboot-amd64
-debian-installer-6.0-netboot-i386
-denyhosts
-dhcp3-client
-digikamimageplugins
-diveintopython
-dlint
-dnswalk
-doc-debian
-doc-linux-text
-dosemu
-dovecot-pop3d
-dpt-raidutil
-drawmap
-dsh
-eagle
-earth3d
-eclipse
-education-lang-da
-education-lang-da-desktop
-education-lang-da-desktop-kde
-education-lang-de
-education-lang-de-desktop
-education-lang-de-desktop-kde
-education-lang-es
-education-lang-es-desktop
-education-lang-es-desktop-kde
-education-lang-fr
-education-lang-fr-desktop
-education-lang-fr-desktop-kde
-education-lang-he
-education-lang-he-desktop
-education-lang-he-desktop-kde
-education-lang-it
-education-lang-it-desktop
-education-lang-it-desktop-kde
-education-lang-ja
-education-lang-ja-desktop
-education-lang-ja-desktop-kde
-education-lang-no
-education-lang-no-desktop
-education-lang-no-desktop-kde
-education-lang-se
-education-lang-se-desktop-kde
-education-lang-zh_TW
-education-lang-zh_TW-desktop
-education-lang-zh_TW-desktop-kde
-education-networked-common
-education-roaming-workstation
-ejabberd
-ejs
-electric
-espeak
-etoys
-etoys-doc
-euler
-f-spot
-fail2ban
-fet
-flashkard
-flashplugin-nonfree
-flashplugin-nonfree-pulse
-fnfxd
-foomatic-filters-ppds
-foomatic-gui
-fp-units-i386
-freehdl
-freenx
-gambas2
-gamin
-gcompris-sound-ar
-gcompris-sound-bg
-gcompris-sound-br
-gcompris-sound-el
-gcompris-sound-hi
-gcompris-sound-id
-gcompris-sound-sr
-gcompris-sound-ur
-gdal-bin
-gdm
-geg
-geogebra-kde
-geonext
-geotoad
-ggradebook
-gij-4.1
-gimp-help-cs
-gimp-help-en
-gimp-help-nl
-gimp-help-no
-gimp-help-sv
-gimp-help-zh-cn
-gmt
-gnochm
-gnome-app-install
-gnome-utils
-gnome2-user-guide
-gocr
-gok
-google-earth
-googleearth-package
-gpaint
-gphoto2
-gpsbabel
-gpscorrelate
-gpsim-lded
-gpsim-led
-gpsim-logic
-gq
-grass
-gretl
-gs
-gstreamer0.10-audiosink
-gstreamer0.10-esd
-gtablix
-gtk-qt-engine
-gtkwave
-gtkwhiteboard
-gv
-hanzim
-hdaps-utils
-hdapsd
-i2e
-icedove-l10n-da
-icedove-l10n-he
-icedove-l10n-ja
-icedove-l10n-nb
-icedove-l10n-nn
-iceweasel-gnome-support
-iceweasel-l10n-cy-gb
-iceweasel-l10n-dz-bt
-iceweasel-l10n-et-ee
-iceweasel-l10n-fa-ir
-iceweasel-l10n-fur-it
-iceweasel-l10n-ka
-iceweasel-l10n-mn
-iceweasel-l10n-roa-es-val
-iceweasel-l10n-uk-ua
-ident-server
-ifplugd
-ipppd
-isdnutils-base
-isdnutils-xtools
-italc-client
-italc-master
-java-gcj-compat
-jclic
-jfsutils
-k3dsurf
-kaddressbook-plugins
-kaffeine
-kaffeine-mozilla
-karamba
-kasteroids
-kate-plugins
-katomic
-kbabel
-kbackgammon
-kbattleship
-kblackbox
-kbounce
-kchart
-kcpuload
-kde
-kde-full
-kde-l10n-af
-kde-l10n-ar
-kde-l10n-az
-kde-l10n-bg
-kde-l10n-bn
-kde-l10n-br
-kde-l10n-bs
-kde-l10n-cs
-kde-l10n-cy
-kde-l10n-engb
-kde-l10n-eo
-kde-l10n-et
-kde-l10n-eu
-kde-l10n-fa
-kde-l10n-fi
-kde-l10n-fy
-kde-l10n-ga
-kde-l10n-gl
-kde-l10n-hi
-kde-l10n-hr
-kde-l10n-hu
-kde-l10n-is
-kde-l10n-km
-kde-l10n-ko
-kde-l10n-lt
-kde-l10n-mk
-kde-l10n-mn
-kde-l10n-ms
-kde-l10n-nds
-kde-l10n-pa
-kde-l10n-pl
-kde-l10n-pt
-kde-l10n-ro
-kde-l10n-ru
-kde-l10n-rw
-kde-l10n-se
-kde-l10n-sk
-kde-l10n-sl
-kde-l10n-sr
-kde-l10n-srlatin
-kde-l10n-ss
-kde-l10n-ta
-kde-l10n-tg
-kde-l10n-tr
-kde-l10n-uk
-kde-l10n-uz
-kde-l10n-zhcn
-kdeaddons-kfile-plugins
-kdebase
-kdebluetooth
-kdegames
-kdenetwork-kfile-plugins
-kdepim-kfile-plugins
-kdissert
-kdnssd
-kedit
-keduca
-kernel-package
-keuklid
-kformula
-kfouleggs
-kgeo
-kgoldrunner
-kgraph
-kguitar
-kicad
-kicad-doc-de
-kicad-doc-en
-kicad-doc-es
-kicad-doc-fr
-kiconedit
-kile
-kiosktool
-kivio
-kjumpingcube
-klatin
-klearnspelling
-klickety
-klogic
-kmahjongg
-kmessedwords
-kmid
-kmidi
-kmines
-kmultiply
-knorskverbs
-koffice-doc-html
-koffice-l10n-da
-koffice-l10n-he
-koffice-l10n-ja
-koffice-l10n-lv
-koffice-l10n-nb
-koffice-l10n-nn
-koffice-l10n-se
-koha
-kolf
-kolourpaint
-kompare
-konquest
-kontour
-koshell
-kpackage
-kpaint
-kpat
-kpercentage
-kpm
-kpoker
-kppp
-kqemu-source
-krb5-doc
-krecord
-kredentials
-kregexpeditor
-kreversi
-ksame
-kschoolmenu
-kseg
-kshisen
-ksimus
-ksimus-boolean
-ksimus-datarecorder
-ksimus-floatingpoint
-ksirtet
-ksmiletris
-ksnake
-ksociograma
-ksokoban
-kspaceduel
-ktechlab
-ktron
-kugar
-kverbos
-kview
-kworldclock
-language-support-en
-laptop-net
-laptop-net-doc
-laptop-netconf
-lenmus
-libdvdcss2
-libfile-rsyncp-perl
-libflashsupport
-libgeo-coordinates-utm-perl
-libgeo-helmerttransform-perl
-libgeo-metar-perl
-libgeo-postcode-perl
-libgeography-nationalgrid-perl
-libgeos-c1
-libgeos2c2a
-libldap2-tls
-libmapnik1d
-libncurses5-dev
-libnss-ldap
-libogdi3.2
-libpam-ccreds
-libpam-mount
-libterralib1c2a
-libwine-alsa
-libwine-oss
-liferea-mozilla
-lightspeed
-linux-wlan-ng
-linux-wlan-ng-source
-ltsp-controlaula
-lum
-luma
-lwat
-lybniz
-lyx
-magicsquare
-malted
-mapserver
-mathomatic
-mcpp
-mek
-mgp
-min12xxw
-modconf
-module-assistant
-monopd
-moodle-cipux
-moodle-courses-fr
-moodle-debian-edu-theme
-mouseemu
-mozilla-firefox-locale-en-gb
-mozilla-mplayer
-mozilla-openoffice.org
-mozilla-plugin-vlc
-mpack
-mplayer
-msttcorefonts
-mtr
-mutt
-myspell-fr-gut
-mysql-client
-nagios3-doc
-ndiswrapper-source
-netboot
-nfs-server
-nictools-nopci
-noatun
-noatun-plugins
-noteedit
-nslint
-ntp-doc
-nvidia-glx
-nvidia-settings
-nxclient
-nxdesktop
-ocsinventory-agent
-ocsinventory-reports
-ocsinventory-server
-octave3.2
-ogdi-bin
-ogle-gui
-openmovieeditor
-openoffice.org-help-cs
-openoffice.org-help-dz
-openoffice.org-help-en
-openoffice.org-help-en-gb
-openoffice.org-help-en-us
-openoffice.org-help-et
-openoffice.org-help-he
-openoffice.org-help-hi-in
-openoffice.org-help-hu
-openoffice.org-help-km
-openoffice.org-help-ko
-openoffice.org-help-nb
-openoffice.org-help-nl
-openoffice.org-help-nn
-openoffice.org-help-pl
-openoffice.org-help-ru
-openoffice.org-help-sl
-openoffice.org-help-zh-cn
-openoffice.org-hyphenation
-openoffice.org-l10n-af
-openoffice.org-l10n-as-in
-openoffice.org-l10n-be-by
-openoffice.org-l10n-bg
-openoffice.org-l10n-bn
-openoffice.org-l10n-br
-openoffice.org-l10n-bs
-openoffice.org-l10n-common
-openoffice.org-l10n-cs
-openoffice.org-l10n-cy
-openoffice.org-l10n-dz
-openoffice.org-l10n-en-gb
-openoffice.org-l10n-en-us
-openoffice.org-l10n-eo
-openoffice.org-l10n-et
-openoffice.org-l10n-fa
-openoffice.org-l10n-fi
-openoffice.org-l10n-ga
-openoffice.org-l10n-gu-in
-openoffice.org-l10n-hi
-openoffice.org-l10n-hi-in
-openoffice.org-l10n-hr
-openoffice.org-l10n-hu
-openoffice.org-l10n-in
-openoffice.org-l10n-ka
-openoffice.org-l10n-km
-openoffice.org-l10n-ko
-openoffice.org-l10n-ku
-openoffice.org-l10n-lo
-openoffice.org-l10n-lt
-openoffice.org-l10n-lv
-openoffice.org-l10n-mk
-openoffice.org-l10n-ml-in
-openoffice.org-l10n-ne
-openoffice.org-l10n-nr
-openoffice.org-l10n-ns
-openoffice.org-l10n-or-in
-openoffice.org-l10n-pa-in
-openoffice.org-l10n-pl
-openoffice.org-l10n-pt
-openoffice.org-l10n-ru
-openoffice.org-l10n-rw
-openoffice.org-l10n-sk
-openoffice.org-l10n-sl
-openoffice.org-l10n-sr-cs
-openoffice.org-l10n-ss
-openoffice.org-l10n-st
-openoffice.org-l10n-ta-in
-openoffice.org-l10n-te-in
-openoffice.org-l10n-tg
-openoffice.org-l10n-th
-openoffice.org-l10n-tn
-openoffice.org-l10n-tr
-openoffice.org-l10n-ts
-openoffice.org-l10n-uk
-openoffice.org-l10n-ve
-openoffice.org-l10n-vi
-openoffice.org-l10n-xh
-openoffice.org-l10n-za
-openoffice.org-l10n-zh-cn
-openoffice.org-l10n-zu
-openoffice.org-style-default
-openoffice.org-style-industrial
-openscenegraph
-openuniverse
-panorama
-pari-gp
-partlibrary
-pcb
-pdns-backend-ldap
-pdns-recursor
-pessulus
-pgdesigner
-postgis
-pppdcapiplugin
-proj
-pwgen
-pyode
-python-at-spi
-python-newt
-qemu
-qemu-launcher
-qemuctl
-qgis
-qgis-plugin-grass
-qlandkartegt
-qliss3d
-quanta
-qucs
-quota
-r-cran-mapdata
-r-cran-maps
-r-cran-rcmdr
-raidutils
-recover
-rkhunter
-rkward
-rsibreak
-samba-doc
-sarg
-scilab
-scim-anthy
-scim-chewing
-scim-gtk2-immodule
-scim-modules-socket
-scim-prime
-scim-tables-additional
-scim-uim
-score-reading-trainer
-screem
-sessreg
-shorewall
-smart-notifier
-smartmontools
-smartsuite
-smbfs
-sodipodi
-spacechart
-squidguard
-stars
-sucrose-0.88
-sugar-browse-activity-0.86
-sugar-chat-activity-0.86
-sugar-doc
-sugar-emulator-0.88
-sugar-read-activity-0.86
-sugar-session-0.88
-sugar-write-activity-0.88
-sun-java6-bin
-sun-java6-demo
-sun-java6-fonts
-sun-java6-jdk
-sun-java6-jre
-sun-java6-plugin
-swi-prolog
-swi-prolog-clib
-swi-prolog-doc
-swi-prolog-http
-swi-prolog-semweb
-swi-prolog-sgml
-swi-prolog-table
-swi-prolog-xpce
-tablix2
-tcl8.5-dev
-tcsh
-ted
-texlive-full
-texmacs
-tftpd-hpa
-tgif
-thuban
-thunar
-time
-tipptrainer
-tk8.5-dev
-tmpreaper
-tofrodos
-totem-mozilla
-ttf-arabeyes
-ttf-dzongkha
-ttf-indic-fonts
-ttf-lao
-ttf-mscorefonts-installer
-ttf-thai-tlwg
-typespeed
-ultrastar-ng-xine
-upstart
-verbiste-gnome
-viking
-vipec
-w3m
-webalizer
-wims
-wine
-wine-doc
-wmgui
-wminput
-wordtrans-console
-wordtrans-data
-wordtrans-kde
-workrave
-worldwind
-xaos
-xarith
-xcircuit
-xdriinfo
-xem
-xephem
-xfce4-terminal
-xfdesktop4
-xfig
-xfonts-base-transcoded
-xfsprogs
-xkeyboard-config
-xmessage
-xournal
-xpmutils
-xpovchem
-yacas
Deleted: trunk/src/build/CD-administrator/pkgdeblist-wheezy-test-dvd-amd64.txt
===================================================================
--- trunk/src/build/CD-administrator/pkgdeblist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:02 UTC (rev 80858)
+++ trunk/src/build/CD-administrator/pkgdeblist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:21 UTC (rev 80859)
@@ -1,3795 +0,0 @@
-accountsservice_0.6.21-8_amd64.deb
-acl_2.2.51-8_amd64.deb
-acpi-support-base_0.140-5_all.deb
-acpi_1.6-1_amd64.deb
-acpid_2.0.16-1+deb7u1_amd64.deb
-adduser_3.113+nmu3_all.deb
-aisleriot_3.4.1-1_amd64.deb
-akonadi-backend-mysql_1.7.2-3_all.deb
-akonadi-server_1.7.2-3_amd64.deb
-akregator_4.4.11.1+l10n-3+b1_amd64.deb
-alacarte_3.5.3-1_all.deb
-alsa-base-udeb_1.0.25+2+nmu2_all.udeb
-alsa-base_1.0.25+2+nmu2_all.deb
-alsa-utils-udeb_1.0.25-4_amd64.udeb
-alsa-utils_1.0.25-4_amd64.deb
-amarok-common_2.6~beta1+75.g47e75df-1_all.deb
-amarok-utils_2.6~beta1+75.g47e75df-1_amd64.deb
-amarok_2.6~beta1+75.g47e75df-1_amd64.deb
-anacron_2.3-19_amd64.deb
-ant-optional_1.8.2-4_all.deb
-ant_1.8.2-4_all.deb
-apache2-mpm-prefork_2.2.22-13_amd64.deb
-apache2-utils_2.2.22-13_amd64.deb
-apache2.2-bin_2.2.22-13_amd64.deb
-apache2.2-common_2.2.22-13_amd64.deb
-apache2_2.2.22-13_amd64.deb
-apbs_1.3.0-2_amd64.deb
-apg_2.2.3.dfsg.1-2_amd64.deb
-app-install-data_2012.06.16.1_all.deb
-apt-cdrom-setup_0.79_all.udeb
-apt-listchanges_2.85.11_all.deb
-apt-mirror-setup_0.79_all.udeb
-apt-setup-udeb_0.79_all.udeb
-apt-utils_0.9.7.8_amd64.deb
-apt-xapian-index_0.45_all.deb
-apt_0.9.7.8_amd64.deb
-aptdaemon-data_0.45-2_all.deb
-aptdaemon_0.45-2_all.deb
-apticron_1.1.55_all.deb
-aptitude-common_0.6.8.2-1_all.deb
-aptitude_0.6.8.2-1_amd64.deb
-aqualung_0.9~beta11-1.2+b1_amd64.deb
-argyll_1.4.0-8_amd64.deb
-arj_3.10.22-10_amd64.deb
-ark_4.8.4-2_amd64.deb
-aspell-en_7.1-0-1_all.deb
-aspell-he_1.0-0-5_all.deb
-aspell-no_2.0.10-5.1_amd64.deb
-aspell_0.60.7~20110707-1_amd64.deb
-at-spi2-core_2.5.3-2_amd64.deb
-atftpd_0.7.dfsg-11_amd64.deb
-atomix-data_2.14.0-2_all.deb
-atomix_2.14.0-2_amd64.deb
-auctex_11.86-11_all.deb
-audacious-plugins-data_3.2.4-1_all.deb
-audacious-plugins_3.2.4-1_amd64.deb
-audacious_3.2.4-1_amd64.deb
-audacity-data_2.0.1-1_all.deb
-audacity_2.0.1-1_amd64.deb
-autoconf_2.69-1_all.deb
-autofs-ldap_5.0.7-3_amd64.deb
-autofs5-ldap_5.0.7-3_all.deb
-autofs_5.0.7-3_amd64.deb
-automake_1.11.6-1_all.deb
-autopoint_0.18.1.1-9_all.deb
-autotools-dev_20120608.1_all.deb
-avahi-autoipd_0.6.31-2_amd64.deb
-avahi-daemon_0.6.31-2_amd64.deb
-avahi-discover_0.6.31-2_all.deb
-avogadro-data_1.0.3-5_all.deb
-baobab_3.4.1-1_amd64.deb
-base-files_7.1_amd64.deb
-base-installer_1.130_all.udeb
-base-passwd_3.5.26_amd64.deb
-bash-completion_2.0-1_all.deb
-bash_4.2+dfsg-0.1_amd64.deb
-bc_1.06.95-2+b1_amd64.deb
-beep-udeb_1.3-3+b1_amd64.udeb
-bind9-host_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-bind9_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-bind9utils_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-binfmt-support_2.0.12_amd64.deb
-binutils_2.22-8_amd64.deb
-blcr-util_0.8.5-2_amd64.deb
-blinken_4.8.4-1_amd64.deb
-blt_2.4z-4.2_amd64.deb
-bluefish-data_2.2.3-4_all.deb
-bluefish-plugins_2.2.3-4_amd64.deb
-bluefish_2.2.3-4_amd64.deb
-bluez_4.99-2_amd64.deb
-bodr_9-1_all.deb
-bogofilter-bdb_1.2.2+dfsg1-2_amd64.deb
-bogofilter-common_1.2.2+dfsg1-2_all.deb
-bogofilter_1.2.2+dfsg1-2_amd64.deb
-bootstrap-base_1.130_amd64.udeb
-braindump_2.4.4-3_amd64.deb
-brasero-common_3.4.1-4_all.deb
-brasero_3.4.1-4_amd64.deb
-browser-plugin-gnash_0.8.11~git20120629-1_amd64.deb
-bsdmainutils_9.0.3_amd64.deb
-bsdutils_2.20.1-5.3_amd64.deb
-bterm-unifont_1.2+b1_amd64.udeb
-btrfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-btrfs-tools-udeb_0.19+20120328-7.1_amd64.udeb
-btrfs-tools_0.19+20120328-7.1_amd64.deb
-build-essential_11.5_amd64.deb
-busybox_1.20.0-7_amd64.deb
-bwbasic_2.20pl2-11_amd64.deb
-bzip2_1.0.6-4_amd64.deb
-ca-certificates-java_20121112+nmu2_all.deb
-ca-certificates_20130119_all.deb
-calligra-data_2.4.4-3_all.deb
-calligra-l10n-de_2.4.3-1_all.deb
-calligra-l10n-el_2.4.3-1_all.deb
-calligra-l10n-es_2.4.3-1_all.deb
-calligra-l10n-fr_2.4.3-1_all.deb
-calligra-l10n-it_2.4.3-1_all.deb
-calligra-libs_2.4.4-3_amd64.deb
-calligra_2.4.4-3_all.deb
-calligraflow-data_2.4.4-3_all.deb
-calligraflow_2.4.4-3_amd64.deb
-calligraplan_2.4.4-3_amd64.deb
-calligrasheets_2.4.4-3_amd64.deb
-calligrastage_2.4.4-3_amd64.deb
-calligrawords-data_2.4.4-3_all.deb
-calligrawords_2.4.4-3_amd64.deb
-cantor-backend-kalgebra_4.8.4-2_amd64.deb
-cantor_4.8.4-2_amd64.deb
-caps_0.4.2-1_amd64.deb
-caribou-antler_0.4.4-1_all.deb
-caribou_0.4.4-1_all.deb
-cdebconf-gtk-entropy_0.24_amd64.udeb
-cdebconf-newt-entropy_0.24_amd64.udeb
-cdebconf-newt-terminal_0.18_amd64.udeb
-cdebconf-text-entropy_0.24_amd64.udeb
-cdparanoia_3.10.2+debian-10.1_amd64.deb
-cdrdao_1.2.3-0.3_amd64.deb
-celestia-common_1.6.1+dfsg-2_all.deb
-celestia-gnome_1.6.1+dfsg-2_amd64.deb
-celestia_1.6.1+dfsg-2_all.deb
-cfdisk-udeb_2.20.1-5.3_amd64.udeb
-cfengine2_2.2.10-5_amd64.deb
-cgoban_1.9.14-17_amd64.deb
-cheese-common_3.4.2-2_all.deb
-cheese_3.4.2-2_amd64.deb
-chemical-mime-data_0.1.94-6_all.deb
-chemtool_1.6.13-1_amd64.deb
-childsplay-alphabet-sounds-bg_0.9.1-2_all.deb
-childsplay_1.6-1_all.deb
-chmsee_1.99.10-1_amd64.deb
-choose-mirror-bin_2.45_amd64.udeb
-chromium-browser_27.0.1453.110-1~deb7u1_all.deb
-chromium-inspector_27.0.1453.110-1~deb7u1_all.deb
-chromium_27.0.1453.110-1~deb7u1_amd64.deb
-cifs-utils_5.5-1_amd64.deb
-clamav-base_0.97.8+dfsg-1_all.deb
-clamav-freshclam_0.97.8+dfsg-1_amd64.deb
-clamav_0.97.8+dfsg-1_amd64.deb
-cli-common_0.8.2_all.deb
-clock-setup_0.114_amd64.udeb
-colord_0.1.21-1_amd64.deb
-console-keymaps-mac_1.12-2_all.udeb
-console-setup-linux_1.88_all.deb
-console-setup_1.88_all.deb
-consolekit_0.4.5-3.1_amd64.deb
-convmv_1.12-2_all.deb
-coreutils_8.13-3.5_amd64.deb
-cpio_2.11+dfsg-0.1_amd64.deb
-cpp-4.6_4.6.3-14_amd64.deb
-cpp-4.7_4.7.2-5_amd64.deb
-cpp_4.7.2-1_amd64.deb
-cpqarrayd_2.3-1.3_amd64.deb
-cpuburn-udeb_1.4a-3_amd64.udeb
-cpufrequtils_008-1_amd64.deb
-cracklib-runtime_2.8.19-3_amd64.deb
-crc-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-crda_1.1.2-1_amd64.deb
-cron_3.0pl1-124_amd64.deb
-crypto-dm-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-crypto-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-cryptsetup-bin_1.4.3-4_amd64.deb
-cryptsetup-udeb_1.4.3-4_amd64.udeb
-cryptsetup_1.4.3-4_amd64.deb
-csound-data_5.17.11~dfsg-3_all.deb
-csound-gui_5.17.11~dfsg-3_amd64.deb
-csound-manpages_5.13~dfsg-1_all.deb
-csound-utils_5.17.11~dfsg-3_amd64.deb
-csound_5.17.11~dfsg-3_amd64.deb
-culmus_0.121-1_all.deb
-cups-bsd_1.5.3-5_amd64.deb
-cups-client_1.5.3-5_amd64.deb
-cups-common_1.5.3-5_all.deb
-cups-filters_1.0.18-2.1_amd64.deb
-cups-pk-helper_0.2.3-3_amd64.deb
-cups-ppdc_1.5.3-5_amd64.deb
-cups_1.5.3-5_amd64.deb
-curl_7.26.0-1+wheezy2_amd64.deb
-daemon_0.6.4-1_amd64.deb
-dansguardian_2.10.1.1-5_amd64.deb
-dash_0.5.7-3_amd64.deb
-dasher-data_4.11-2_all.deb
-dasher_4.11-2_amd64.deb
-dbus-x11_1.6.8-1+deb7u1_amd64.deb
-dbus_1.6.8-1+deb7u1_amd64.deb
-dc_1.06.95-2+b1_amd64.deb
-dconf-gsettings-backend_0.12.1-3_amd64.deb
-dconf-service_0.12.1-3_amd64.deb
-dconf-tools_0.12.1-3_amd64.deb
-dctrl-tools_2.22.2_amd64.deb
-ddccontrol-db_20061014-4_all.deb
-ddccontrol_0.4.2-10_amd64.deb
-ddd_3.3.12-4_amd64.deb
-debconf-i18n_1.5.49_all.deb
-debconf-utils_1.5.49_all.deb
-debconf_1.5.49_all.deb
-debhelper_9.20120909_all.deb
-debian-archive-keyring-udeb_2012.4_all.udeb
-debian-archive-keyring_2012.4_all.deb
-debian-edu-archive-keyring_2013.03.15_all.deb
-debian-edu-artwork_0.0.35-1_all.deb
-debian-edu-config-gosa-netgroups_1.707~svn80617_all.deb
-debian-edu-config_1.707~svn80617_all.deb
-debian-edu-doc-da_1.5~20130531~7.0_all.deb
-debian-edu-doc-de_1.5~20130531~7.0_all.deb
-debian-edu-doc-en_1.5~20130531~7.0_all.deb
-debian-edu-doc-es_1.5~20130531~7.0_all.deb
-debian-edu-doc-fr_1.5~20130531~7.0_all.deb
-debian-edu-doc-it_1.5~20130531~7.0_all.deb
-debian-edu-doc-nb_1.5~20130531~7.0_all.deb
-debian-edu-install_1.713~svn80578_all.deb
-debian-goodies_0.61_all.deb
-debianutils_4.3.2_amd64.deb
-debootstrap-udeb_1.0.48_all.udeb
-debootstrap_1.0.48_all.deb
-deborphan_1.7.28.8_amd64.deb
-debsecan_0.4.16+nmu1_all.deb
-debtags_1.10.1_amd64.deb
-default-jre-headless_1.6-47_amd64.deb
-default-jre_1.6-47_amd64.deb
-denemo-data_0.9.2-3_all.deb
-denemo-doc_0.9.2-3_all.deb
-denemo_0.9.2-3_amd64.deb
-desktop-base_7.0.3_all.deb
-desktop-file-utils_0.20-0.1_amd64.deb
-desktop-profiles_1.4.15+nmu2_all.deb
-devio-udeb_1.2-1+b1_amd64.udeb
-dhcping_1.2-4_amd64.deb
-di-utils-mapdevfs_1.92+deb7u1_amd64.udeb
-dia-common_0.97.2-8_all.deb
-dia-gnome_0.97.2-8_amd64.deb
-dia-libs_0.97.2-8_amd64.deb
-dia_0.97.2-8_amd64.deb
-dialog_1.1-20120215-2_amd64.deb
-dict_1.12.0+dfsg-5_amd64.deb
-dictionaries-common_1.12.11_all.deb
-diffutils_3.2-6_amd64.deb
-digikam-data_2.6.0-1_all.deb
-digikam_2.6.0-1+b2_amd64.deb
-discover-data_2.2010.10.18_all.deb
-discover_2.1.2-5.2_amd64.deb
-disk-detect_1.92_all.udeb
-djview-plugin_4.9-2_amd64.deb
-djview4_4.9-2_amd64.deb
-djvulibre-desktop_3.5.25.3-1_all.deb
-djvulibre-plugin_4.9-2_all.deb
-dmidecode-udeb_2.11-9_amd64.udeb
-dmidecode_2.11-9_amd64.deb
-dmraid-udeb_1.0.0.rc16-4.2_amd64.udeb
-dmraid_1.0.0.rc16-4.2_amd64.deb
-dmsetup-udeb_1.02.74-7_amd64.udeb
-dmsetup_1.02.74-7_amd64.deb
-dmz-cursor-theme_0.4.3_all.deb
-dnsmasq-base_2.62-3+deb7u1_amd64.deb
-dnsutils_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-docbook-xml_4.5-7.2_all.deb
-docbook-xsl_1.76.1+dfsg-1_all.deb
-dolphin_4.8.4-2_amd64.deb
-dosfstools_3.0.13-1_amd64.deb
-dovecot-core_2.1.7-7_amd64.deb
-dovecot-gssapi_2.1.7-7_amd64.deb
-dovecot-imapd_2.1.7-7_amd64.deb
-dpkg-dev_1.16.10_all.deb
-dpkg_1.16.10_amd64.deb
-dpt-i2o-raidutils_0.0.6-19_amd64.deb
-dragonplayer_4.8.4-2_amd64.deb
-drgeo-doc_1.5-7_all.deb
-drgeo_1.1.0-10_amd64.deb
-driver-injection-disk-detect_1.92_all.udeb
-drpython_3.11.1-2_all.deb
-dvd+rw-tools_7.1-10_amd64.deb
-dvdauthor_0.7.0-1.1+b2_amd64.deb
-dvgrab_3.5-2_amd64.deb
-e2fslibs_1.42.5-1.1_amd64.deb
-e2fsprogs-udeb_1.42.5-1.1_amd64.udeb
-e2fsprogs_1.42.5-1.1_amd64.deb
-easychem_0.6-7_amd64.deb
-ed_1.6-2_amd64.deb
-edict_2012.05.09-1_all.deb
-education-astronomy_1.709_amd64.deb
-education-chemistry_1.709_amd64.deb
-education-common_1.709_amd64.deb
-education-desktop-gnome_1.709_amd64.deb
-education-desktop-kde_1.709_amd64.deb
-education-desktop-lxde_1.709_amd64.deb
-education-desktop-other_1.709_amd64.deb
-education-desktop-sugar_1.709_amd64.deb
-education-development_1.709_amd64.deb
-education-electronics_1.709_amd64.deb
-education-geography_1.709_amd64.deb
-education-graphics_1.709_amd64.deb
-education-language_1.709_amd64.deb
-education-laptop_1.709_amd64.deb
-education-logic-games_1.709_amd64.deb
-education-main-server_1.709_amd64.deb
-education-mathematics_1.709_amd64.deb
-education-menus_1.709_amd64.deb
-education-misc_1.709_amd64.deb
-education-music_1.709_amd64.deb
-education-networked_1.709_amd64.deb
-education-physics_1.709_amd64.deb
-education-services_1.709_amd64.deb
-education-standalone_1.709_amd64.deb
-education-tasks_1.709_amd64.deb
-education-thin-client-server_1.709_amd64.deb
-education-thin-client_1.709_amd64.deb
-education-workstation_1.709_amd64.deb
-efi-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-efi-reader_0.11_amd64.udeb
-eject-udeb_2.1.5+deb1+cvs20081104-13_amd64.udeb
-eject_2.1.5+deb1+cvs20081104-13_amd64.deb
-emacs23-bin-common_23.4+1-4_amd64.deb
-emacs23-common_23.4+1-4_all.deb
-emacs23_23.4+1-4_amd64.deb
-emacs_45.0_all.deb
-emacsen-common_2.0.5_all.deb
-empathy-common_3.4.2.3-2_all.deb
-empathy_3.4.2.3-2_amd64.deb
-enblend_4.0+dfsg-4+b3_amd64.deb
-enchant_1.6.0-7_amd64.deb
-enfuse_4.0+dfsg-4+b3_amd64.deb
-eog_3.4.2-1+build1_amd64.deb
-epdfview_0.1.8-3_amd64.deb
-esound-common_0.2.41-10_all.deb
-espeak-data-udeb_1.46.02-2_amd64.udeb
-espeak-data_1.46.02-2_amd64.deb
-espeakup-udeb_0.71-13_amd64.udeb
-ethdetect_1.92_all.udeb
-etherwake_1.09-3_amd64.deb
-ethtool_3.4.2-1_amd64.deb
-event-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-evince-common_3.4.0-3.1_all.deb
-evince-gtk_3.4.0-3.1_amd64.deb
-evince_3.4.0-3.1_amd64.deb
-evolution-common_3.4.4-3_all.deb
-evolution-data-server-common_3.4.4-3_all.deb
-evolution-data-server_3.4.4-3_amd64.deb
-evolution-plugins_3.4.4-3_amd64.deb
-evolution-webcal_2.32.0-2+b1_amd64.deb
-evolution_3.4.4-3_amd64.deb
-exim4-base_4.80-7_amd64.deb
-exim4-config_4.80-7_all.deb
-exim4-daemon-heavy_4.80-7_amd64.deb
-exim4-daemon-light_4.80-7_amd64.deb
-exim4_4.80-7_all.deb
-ext2-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-ext3-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-ext4-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-fairymax_4.8q-2_amd64.deb
-fakeroot_1.18.4-2_amd64.deb
-fdisk-udeb_2.20.1-5.3_amd64.udeb
-festival-freebsoft-utils_0.10-3_all.deb
-festival_2.1~release-5.1_amd64.deb
-festlex-cmu_1.4.0-6_all.deb
-festlex-poslex_1.4.0-5_all.deb
-festvox-kallpc16k_1.4.0-5_all.deb
-ffmpeg_0.8.6-1_amd64.deb
-file-roller_3.4.2-1_amd64.deb
-file_5.11-2_amd64.deb
-filelight_4.8.4-1_amd64.deb
-findutils_4.4.2-4_amd64.deb
-finger_0.17-15_amd64.deb
-finish-install_2.41wheezy1_all.udeb
-firewire-core-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-firmware-bnx2_0.36+wheezy.1_all.deb
-firmware-ipw2x00_0.36+wheezy.1_all.deb
-firmware-iwlwifi_0.36+wheezy.1_all.deb
-firmware-linux-free_3.2_all.deb
-firmware-qlogic_0.36+wheezy.1_all.deb
-flac_1.2.1-6_amd64.deb
-floppy-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-fluid-soundfont-gm_3.1-5_all.deb
-fluidsynth_1.1.5-2_amd64.deb
-folks-common_0.6.9-1_all.deb
-fontconfig-config_2.9.0-7.1_all.deb
-fontconfig_2.9.0-7.1_amd64.deb
-fonts-arphic-bsmi00lp_2.10-12_all.deb
-fonts-arphic-gbsn00lp_2.11-12_all.deb
-fonts-arphic-ukai_0.2.20080216.2-3_all.deb
-fonts-arphic-uming_0.2.20080216.2-4_all.deb
-fonts-beng-extra_1.0-2_all.deb
-fonts-beng_1.1_all.deb
-fonts-cantarell_0.0.9-1_all.deb
-fonts-deva-extra_2.0-2_all.deb
-fonts-deva_1.1_all.deb
-fonts-droid_20111207+git-1_all.deb
-fonts-dustin_20030517-9_all.deb
-fonts-farsiweb-udeb_0.4.dfsg-11_all.udeb
-fonts-freefont-ttf_20120503-1_all.deb
-fonts-freefont-udeb_20120503-1_all.udeb
-fonts-gubbi_1.0-3_all.deb
-fonts-gujr-extra_1.0-2_all.deb
-fonts-gujr_1.1_all.deb
-fonts-guru-extra_2.0-2_all.deb
-fonts-guru_1.1_all.deb
-fonts-khmeros-udeb_5.0-5_all.udeb
-fonts-knda-extra_1.0-2_all.deb
-fonts-knda-udeb_1.0-3_all.udeb
-fonts-knda_1.1_all.deb
-fonts-lao-udeb_0.0.20060226-8_all.udeb
-fonts-larabie-deco_20011216-4_all.deb
-fonts-liberation_1.07.2-6_all.deb
-fonts-linex_2.2-6_all.deb
-fonts-lklug-sinhala-udeb_0.6-2_all.udeb
-fonts-lohit-beng-assamese_2.5.1-1_all.deb
-fonts-lohit-beng-bengali_2.5.1-1_all.deb
-fonts-lohit-deva_2.5.1-1_all.deb
-fonts-lohit-gujr_2.5.1-1_all.deb
-fonts-lohit-guru_2.5.1-1_all.deb
-fonts-lohit-knda_2.5.1-1_all.deb
-fonts-lohit-mlym_2.5.1-1_all.deb
-fonts-lohit-orya_2.5.1-1_all.deb
-fonts-lohit-taml_2.5.1-1_all.deb
-fonts-lohit-telu_2.5.1-2_all.deb
-fonts-lyx_2.0.3-3_all.deb
-fonts-mgopen_1.1-8_all.deb
-fonts-mlym-udeb_5.0.1-2_all.udeb
-fonts-mlym_1.1_all.deb
-fonts-nakula_1.0-2_all.deb
-fonts-navilu_1.1-1_all.deb
-fonts-opensymbol_102.2+LibO3.5.4+dfsg-4_all.deb
-fonts-orya-extra_2.0-2_all.deb
-fonts-orya_1.1_all.deb
-fonts-sahadeva_1.0-2_all.deb
-fonts-samyak-gujr_1.2.2-3_all.deb
-fonts-samyak-taml_1.2.2-3_all.deb
-fonts-sil-abyssinica-udeb_1.200-3_all.udeb
-fonts-sil-andika_1.002-2_all.deb
-fonts-sil-doulos_4.106-4_all.deb
-fonts-sil-gentium-basic_1.1-5_all.deb
-fonts-sil-gentium_1.02-12_all.deb
-fonts-sil-padauk-udeb_2.61-4_all.udeb
-fonts-sil-scheherazade-udeb_1.001-8_all.udeb
-fonts-smc_5.0.1-2_all.deb
-fonts-stix_1.1.0-1_all.deb
-fonts-taml-udeb_1.2.2-3_all.udeb
-fonts-taml_1.2_all.deb
-fonts-telu-extra_2.0-2_all.deb
-fonts-telu-udeb_2.5.1-2_all.udeb
-fonts-telu_1.1_all.deb
-fonts-thai-tlwg-udeb_0.5.0-5_all.udeb
-fonts-tibetan-machine-udeb_1.901b-4_all.udeb
-fonts-ukij-uyghur-udeb_20110217-2_all.udeb
-fonts-vlgothic_20120629-2_all.deb
-foo2zjs_20120510dfsg0-1_all.deb
-foomatic-db-compressed-ppds_20120523-1_all.deb
-foomatic-db-engine_4.0.8-3_amd64.deb
-foomatic-db-gutenprint_5.2.9-1_all.deb
-foomatic-db_20120523-1_all.deb
-foomatic-filters_4.0.17-1_amd64.deb
-fotoxx_11.11.1-1.1_amd64.deb
-fp-compiler-2.6.0_2.6.0-9_amd64.deb
-fp-compiler_2.6.0-9_amd64.deb
-fp-docs-2.6.0_2.6.0-9_all.deb
-fp-docs_2.6.0-9_all.deb
-fp-ide-2.6.0_2.6.0-9_amd64.deb
-fp-ide_2.6.0-9_amd64.deb
-fp-units-base-2.6.0_2.6.0-9_amd64.deb
-fp-units-base_2.6.0-9_amd64.deb
-fp-units-db-2.6.0_2.6.0-9_amd64.deb
-fp-units-fcl-2.6.0_2.6.0-9_amd64.deb
-fp-units-fcl_2.6.0-9_amd64.deb
-fp-units-fv-2.6.0_2.6.0-9_amd64.deb
-fp-units-fv_2.6.0-9_amd64.deb
-fp-units-gfx-2.6.0_2.6.0-9_amd64.deb
-fp-units-gfx_2.6.0-9_amd64.deb
-fp-units-gnome1-2.6.0_2.6.0-9_amd64.deb
-fp-units-gtk-2.6.0_2.6.0-9_amd64.deb
-fp-units-gtk2-2.6.0_2.6.0-9_amd64.deb
-fp-units-gtk2_2.6.0-9_amd64.deb
-fp-units-math-2.6.0_2.6.0-9_amd64.deb
-fp-units-misc-2.6.0_2.6.0-9_amd64.deb
-fp-units-misc_2.6.0-9_amd64.deb
-fp-units-multimedia-2.6.0_2.6.0-9_amd64.deb
-fp-units-multimedia_2.6.0-9_amd64.deb
-fp-units-net-2.6.0_2.6.0-9_amd64.deb
-fp-units-net_2.6.0-9_amd64.deb
-fp-units-rtl-2.6.0_2.6.0-9_amd64.deb
-fp-units-rtl_2.6.0-9_amd64.deb
-fp-utils-2.6.0_2.6.0-9_amd64.deb
-fp-utils_2.6.0-9_amd64.deb
-fpc-2.6.0_2.6.0-9_all.deb
-fpc-source-2.6.0_2.6.0-9_all.deb
-fpc-source_2.6.0-9_all.deb
-fpc_2.6.0-9_all.deb
-fping_3.2-1_amd64.deb
-freebirth-data_0.3.2-8_all.deb
-freebirth_0.3.2-8_amd64.deb
-freeglut3_2.6.0-4_amd64.deb
-freeipmi-common_1.1.5-3_all.deb
-freeipmi-tools_1.1.5-3_amd64.deb
-freemind-doc_0.9.0+dfsg-2_all.deb
-freemind_0.9.0+dfsg-2_all.deb
-freepats_20060219-1_all.deb
-freerdp-x11_1.0.1-1.1+deb7u2_amd64.deb
-freespacenotifier_4.8.4-6_amd64.deb
-frei0r-plugins_1.1.22git20091109-1.2_amd64.deb
-ftplib3_3.1-1-9_amd64.deb
-fuse-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-fuse-udeb_2.9.0-2+deb7u1_amd64.udeb
-fuse-utils_2.9.0-2+deb7u1_all.deb
-fuse_2.9.0-2+deb7u1_amd64.deb
-g++-4.7_4.7.2-5_amd64.deb
-g++_4.7.2-1_amd64.deb
-galculator_1.3.4-1_amd64.deb
-games-thumbnails_20120227_all.deb
-gawk_4.0.1+dfsg-2.1_amd64.deb
-gcalctool_6.4.2.1-3_amd64.deb
-gcc-4.6-base_4.6.3-14_amd64.deb
-gcc-4.6_4.6.3-14_amd64.deb
-gcc-4.7-base_4.7.2-5_amd64.deb
-gcc-4.7_4.7.2-5_amd64.deb
-gcc_4.7.2-1_amd64.deb
-gchempaint_0.12.12-1_amd64.deb
-gcj-4.7-base_4.7.2-3_amd64.deb
-gcj-4.7-jre-headless_4.7.2-3_amd64.deb
-gcj-4.7-jre-lib_4.7.2-3_all.deb
-gcj-jre-headless_4.7.2-1_amd64.deb
-gcompris-data_12.01-1_all.deb
-gcompris-sound-cs_12.01-1_all.deb
-gcompris-sound-da_12.01-1_all.deb
-gcompris-sound-de_12.01-1_all.deb
-gcompris-sound-en_12.01-1_all.deb
-gcompris-sound-es_12.01-1_all.deb
-gcompris-sound-eu_12.01-1_all.deb
-gcompris-sound-fi_12.01-1_all.deb
-gcompris-sound-fr_12.01-1_all.deb
-gcompris-sound-hu_12.01-1_all.deb
-gcompris-sound-it_12.01-1_all.deb
-gcompris-sound-mr_12.01-1_all.deb
-gcompris-sound-nb_12.01-1_all.deb
-gcompris-sound-nl_12.01-1_all.deb
-gcompris-sound-pt_12.01-1_all.deb
-gcompris-sound-ptbr_12.01-1_all.deb
-gcompris-sound-ru_12.01-1_all.deb
-gcompris-sound-so_12.01-1_all.deb
-gcompris-sound-sv_12.01-1_all.deb
-gcompris-sound-tr_12.01-1_all.deb
-gcompris_12.01-1_amd64.deb
-gconf-service_3.2.5-1+build1_amd64.deb
-gconf2-common_3.2.5-1+build1_all.deb
-gconf2_3.2.5-1+build1_amd64.deb
-gcr_3.4.1-3_amd64.deb
-gdb_7.4.1+dfsg-0.1_amd64.deb
-gdbserver_7.4.1+dfsg-0.1_amd64.deb
-gdebi-core_0.8.7_all.deb
-gdebi_0.8.7_all.deb
-gdis-data_0.90-4_all.deb
-gdis_0.90-4_amd64.deb
-gecko-mediaplayer_1.0.6-1_amd64.deb
-gedit-common_3.4.2-1_all.deb
-gedit-plugins_3.4.0-1_amd64.deb
-gedit_3.4.2-1_amd64.deb
-genisoimage_1.1.11-2_amd64.deb
-geoclue-hostip_0.12.0-4_amd64.deb
-geoclue-localnet_0.12.0-4_amd64.deb
-geoclue-manual_0.12.0-4_amd64.deb
-geoclue-yahoo_0.12.0-4_amd64.deb
-geoclue_0.12.0-4_amd64.deb
-geogebra_4.0.34.0+dfsg1-1_all.deb
-geoip-database_20130213-1_all.deb
-geomview_1.9.4-3_amd64.deb
-gettext-base_0.18.1.1-9_amd64.deb
-gettext_0.18.1.1-9_amd64.deb
-ghemical_3.0.0-1_amd64.deb
-ghostscript-cups_9.05~dfsg-6.3_amd64.deb
-ghostscript_9.05~dfsg-6.3_amd64.deb
-gimp-data-extras_2.0.1-3_all.deb
-gimp-data_2.8.2-2_all.deb
-gimp-help-common_2.6.1-1_all.deb
-gimp-help-de_2.6.1-1_all.deb
-gimp-help-es_2.6.1-1_all.deb
-gimp-help-fr_2.6.1-1_all.deb
-gimp-help-it_2.6.1-1_all.deb
-gimp-ufraw_0.18-2_amd64.deb
-gimp_2.8.2-2_amd64.deb
-gir1.2-accountsservice-1.0_0.6.21-8_amd64.deb
-gir1.2-atk-1.0_2.4.0-2_amd64.deb
-gir1.2-atspi-2.0_2.5.3-2_amd64.deb
-gir1.2-caribou-1.0_0.4.4-1_amd64.deb
-gir1.2-clutter-1.0_1.10.8-2_amd64.deb
-gir1.2-clutter-gst-1.0_1.5.4-1+b2_amd64.deb
-gir1.2-cogl-1.0_1.10.2-7_amd64.deb
-gir1.2-coglpango-1.0_1.10.2-7_amd64.deb
-gir1.2-evince-3.0_3.4.0-3.1_amd64.deb
-gir1.2-folks-0.6_0.6.9-1+b1_amd64.deb
-gir1.2-freedesktop_1.32.1-1_amd64.deb
-gir1.2-gck-1_3.4.1-3_amd64.deb
-gir1.2-gconf-2.0_3.2.5-1+build1_amd64.deb
-gir1.2-gcr-3_3.4.1-3_amd64.deb
-gir1.2-gdata-0.0_0.12.0-1_amd64.deb
-gir1.2-gdesktopenums-3.0_3.4.2-3_amd64.deb
-gir1.2-gdkpixbuf-2.0_2.26.1-1_amd64.deb
-gir1.2-gee-1.0_0.6.4-2_amd64.deb
-gir1.2-gkbd-3.0_3.4.0.2-1_amd64.deb
-gir1.2-glib-2.0_1.32.1-1_amd64.deb
-gir1.2-gmenu-3.0_3.4.2-5_amd64.deb
-gir1.2-gnomebluetooth-1.0_3.4.2-1_amd64.deb
-gir1.2-gnomekeyring-1.0_3.4.1-1_amd64.deb
-gir1.2-goa-1.0_3.4.2-2_amd64.deb
-gir1.2-gst-plugins-base-0.10_0.10.36-1.1_amd64.deb
-gir1.2-gstreamer-0.10_0.10.36-1.2_amd64.deb
-gir1.2-gtk-3.0_3.4.2-6_amd64.deb
-gir1.2-gtkclutter-1.0_1.2.0-2_amd64.deb
-gir1.2-gtksource-3.0_3.4.2-1_amd64.deb
-gir1.2-gtop-2.0_2.28.4-3_amd64.deb
-gir1.2-gucharmap-2.90_3.4.1.1-2.1_amd64.deb
-gir1.2-javascriptcoregtk-3.0_1.8.1-3.4_amd64.deb
-gir1.2-json-1.0_0.14.2-1_amd64.deb
-gir1.2-mutter-3.0_3.4.1-5_amd64.deb
-gir1.2-networkmanager-1.0_0.9.4.0-10_amd64.deb
-gir1.2-panelapplet-4.0_3.4.2.1-4_amd64.deb
-gir1.2-pango-1.0_1.30.0-1_amd64.deb
-gir1.2-peas-1.0_1.4.0-2_amd64.deb
-gir1.2-polkit-1.0_0.105-3_amd64.deb
-gir1.2-rb-3.0_2.97-2.1_amd64.deb
-gir1.2-soup-2.4_2.38.1-2_amd64.deb
-gir1.2-telepathyglib-0.12_0.18.2-2_amd64.deb
-gir1.2-telepathylogger-0.2_0.4.0-1_amd64.deb
-gir1.2-totem-1.0_3.0.1-8_amd64.deb
-gir1.2-totem-plparser-1.0_3.4.2-1_amd64.deb
-gir1.2-tracker-0.14_0.14.1-3_amd64.deb
-gir1.2-upowerglib-1.0_0.9.17-1_amd64.deb
-gir1.2-vte-2.90_0.32.2-1_amd64.deb
-gir1.2-webkit-3.0_1.8.1-3.4_amd64.deb
-gir1.2-wnck-3.0_3.4.2-1_amd64.deb
-gir1.2-xkl-1.0_5.2.1-1_amd64.deb
-git-man_1.7.10.4-1+wheezy1_all.deb
-git_1.7.10.4-1+wheezy1_amd64.deb
-gjs_1.32.0-5_amd64.deb
-gkbd-capplet_3.4.0.2-1_amd64.deb
-gksu_2.0.2-6_amd64.deb
-glchess_3.4.2-3_amd64.deb
-glib-networking-common_2.32.3-1_all.deb
-glib-networking-services_2.32.3-1_amd64.deb
-glib-networking_2.32.3-1_amd64.deb
-glines_3.4.2-3_amd64.deb
-gnash-common_0.8.11~git20120629-1_amd64.deb
-gnash_0.8.11~git20120629-1_amd64.deb
-gnect_3.4.2-3_amd64.deb
-gnibbles_3.4.2-3_amd64.deb
-gnobots2_3.4.2-3_amd64.deb
-gnome-accessibility-themes_3.4.2-2.1_all.deb
-gnome-applets-data_3.4.1-3_all.deb
-gnome-applets_3.4.1-3_amd64.deb
-gnome-backgrounds_3.4.2-1_all.deb
-gnome-bluetooth_3.4.2-1_amd64.deb
-gnome-color-manager_3.4.2-1_amd64.deb
-gnome-contacts_3.4.1-1+b1_amd64.deb
-gnome-control-center-data_3.4.3.1-2_all.deb
-gnome-control-center_3.4.3.1-2_amd64.deb
-gnome-core_3.4+7_amd64.deb
-gnome-desktop-environment_3.4+7_all.deb
-gnome-desktop3-data_3.4.2-1_all.deb
-gnome-dictionary_3.4.0-2_amd64.deb
-gnome-disk-utility_3.0.2-3_amd64.deb
-gnome-documents_0.4.2-2_amd64.deb
-gnome-font-viewer_3.4.0-2_amd64.deb
-gnome-games-data_3.4.2-3_all.deb
-gnome-games-extra-data_3.2.0-4_all.deb
-gnome-games_3.4.2-3_all.deb
-gnome-icon-theme-extras_3.4.0-1_all.deb
-gnome-icon-theme-symbolic_3.4.0-2_all.deb
-gnome-icon-theme_3.4.0-2_all.deb
-gnome-js-common_0.1.2-1_all.deb
-gnome-keyring_3.4.1-5_amd64.deb
-gnome-mag_0.16.3-1_amd64.deb
-gnome-media_3.4.0-1_amd64.deb
-gnome-menus_3.4.2-5_amd64.deb
-gnome-mime-data_2.18.0-1_all.deb
-gnome-mplayer_1.0.6-1_amd64.deb
-gnome-nettool_3.2.0-1_amd64.deb
-gnome-online-accounts_3.4.2-2_amd64.deb
-gnome-orca_3.4.2-2_all.deb
-gnome-packagekit-data_3.4.2-2_all.deb
-gnome-packagekit_3.4.2-2_amd64.deb
-gnome-panel-data_3.4.2.1-4_all.deb
-gnome-panel_3.4.2.1-4_amd64.deb
-gnome-power-manager_3.4.0-2_amd64.deb
-gnome-screensaver_3.4.1-1_amd64.deb
-gnome-screenshot_3.4.1-1_amd64.deb
-gnome-session-bin_3.4.2.1-4_amd64.deb
-gnome-session-common_3.4.2.1-4_all.deb
-gnome-session-fallback_3.4.2.1-4_all.deb
-gnome-session_3.4.2.1-4_all.deb
-gnome-settings-daemon_3.4.2+git20121218.7c1322-3_amd64.deb
-gnome-shell-common_3.4.2-7_all.deb
-gnome-shell-extensions_3.4.0-2_all.deb
-gnome-shell_3.4.2-7_amd64.deb
-gnome-sudoku_3.4.2-3_all.deb
-gnome-sushi_0.4.1-3_amd64.deb
-gnome-system-log_3.4.1-3_amd64.deb
-gnome-system-monitor_3.4.1-2+b1_amd64.deb
-gnome-terminal-data_3.4.1.1-2_all.deb
-gnome-terminal_3.4.1.1-2_amd64.deb
-gnome-themes-standard-data_3.4.2-2.1_all.deb
-gnome-themes-standard_3.4.2-2.1_amd64.deb
-gnome-themes_2.30.2-1_all.deb
-gnome-tweak-tool_3.4.0.1-2_all.deb
-gnome-user-guide_3.4.2-1+build1_all.deb
-gnome-user-share_3.0.2-1_amd64.deb
-gnome-video-effects_0.4.0-1_all.deb
-gnome_3.4+7_amd64.deb
-gnomine_3.4.2-3_amd64.deb
-gnotravex_3.4.2-3_amd64.deb
-gnotski_3.4.2-3_amd64.deb
-gnucap_0.36~20091207-2_amd64.deb
-gnuchess-book_1.02-1_all.deb
-gnuchess_6.0.2-1_amd64.deb
-gnugo_3.8-5_amd64.deb
-gnupg-agent_2.0.19-2_amd64.deb
-gnupg-curl_1.4.12-7_amd64.deb
-gnupg-doc_2003.04.06+dak1-1_all.deb
-gnupg-udeb_1.4.12-7_amd64.udeb
-gnupg2_2.0.19-2_amd64.deb
-gnupg_1.4.12-7_amd64.deb
-gnuplot-nox_4.6.0-8_amd64.deb
-gnuplot-x11_4.6.0-8_amd64.deb
-gnuplot_4.6.0-8_all.deb
-goplay_0.5-1.1_amd64.deb
-gosa-help-de_2.7.4-4.2_all.deb
-gosa-help-en_2.7.4-4.2_all.deb
-gosa-help-fr_2.7.4-4.2_all.deb
-gosa-help-nl_2.7.4-4.2_all.deb
-gosa-plugin-dhcp-schema_2.7.4-4.2_all.deb
-gosa-plugin-dhcp_2.7.4-4.2_all.deb
-gosa-plugin-dns-schema_2.7.4-4.2_all.deb
-gosa-plugin-dns_2.7.4-4.2_all.deb
-gosa-plugin-goto_2.7.4-4.2_all.deb
-gosa-plugin-ldapmanager_2.7.4-4.2_all.deb
-gosa-plugin-samba_2.7.4-4.2_all.deb
-gosa-plugin-sudo-schema_2.7.4-4.2_all.deb
-gosa-plugin-sudo_2.7.4-4.2_all.deb
-gosa-plugin-systems_2.7.4-4.2_all.deb
-gosa-schema_2.7.4-4.2_all.deb
-gosa_2.7.4-4.2_all.deb
-gperiodic_2.0.10-7_amd64.deb
-gpgv-udeb_1.4.12-7_amd64.udeb
-gpgv_1.4.12-7_amd64.deb
-gpicview_0.2.3-2_amd64.deb
-gpredict_1.3-2_amd64.deb
-gpsim_0.26.1-2.1_amd64.deb
-gputils-common_0.13.7-1_all.deb
-gputils-doc_0.13.7-1_all.deb
-gputils_0.13.7-1_amd64.deb
-grace_5.1.22-13_amd64.deb
-graphmonkey_1.7-3_all.deb
-graphthing_1.3.2-3.1_amd64.deb
-grep_2.12-2_amd64.deb
-grilo-plugins-0.1_0.1.19-1_amd64.deb
-groff-base_1.21-9_amd64.deb
-groff_1.21-9_amd64.deb
-growisofs_7.1-10_amd64.deb
-grub-common_1.99-27+deb7u1_amd64.deb
-grub-installer_1.85_amd64.udeb
-grub-legacy_0.97-67_amd64.deb
-grub-mount-udeb_1.99-27+deb7u1_amd64.udeb
-grub-pc-bin_1.99-27+deb7u1_amd64.deb
-grub-pc_1.99-27+deb7u1_amd64.deb
-grub2-common_1.99-27+deb7u1_amd64.deb
-gsettings-desktop-schemas_3.4.2-3_all.deb
-gsfonts-x11_0.22_all.deb
-gsfonts_8.11+urwcyr1.0.7~pre44-4.2_all.deb
-gstreamer0.10-alsa_0.10.36-1.1_amd64.deb
-gstreamer0.10-ffmpeg_0.10.13-5_amd64.deb
-gstreamer0.10-fluendo-mp3_0.10.15.debian-1_amd64.deb
-gstreamer0.10-gconf_0.10.31-3+nmu1_amd64.deb
-gstreamer0.10-gnonlin_0.10.17-2_amd64.deb
-gstreamer0.10-nice_0.1.2-1_amd64.deb
-gstreamer0.10-plugins-bad_0.10.23-7.1_amd64.deb
-gstreamer0.10-plugins-base_0.10.36-1.1_amd64.deb
-gstreamer0.10-plugins-good_0.10.31-3+nmu1_amd64.deb
-gstreamer0.10-plugins-ugly_0.10.19-2+b2_amd64.deb
-gstreamer0.10-pulseaudio_0.10.31-3+nmu1_amd64.deb
-gstreamer0.10-x_0.10.36-1.1_amd64.deb
-gtali_3.4.2-3_amd64.deb
-gtans_1.99.0-2_amd64.deb
-gtick_0.5.1-1_amd64.deb
-gtk-recordmydesktop_0.3.8-4.1_all.deb
-gtk2-engines-pixbuf_2.24.10-2_amd64.deb
-gtk2-engines_2.20.2-2_amd64.deb
-gucharmap_3.4.1.1-2.1_amd64.deb
-guile-1.6-libs_1.6.8-10.3_amd64.deb
-guile-1.8-libs_1.8.8+1-8_amd64.deb
-guile-1.8_1.8.8+1-8_amd64.deb
-guile-2.0-libs_2.0.5+1-3_amd64.deb
-gvfs-backends_1.12.3-4_amd64.deb
-gvfs-bin_1.12.3-4_amd64.deb
-gvfs-common_1.12.3-4_all.deb
-gvfs-daemons_1.12.3-4_amd64.deb
-gvfs-fuse_1.12.3-4_amd64.deb
-gvfs-libs_1.12.3-4_amd64.deb
-gvfs_1.12.3-4_amd64.deb
-gvrng_4.4-1_all.deb
-gwenview_4.8.4-2_amd64.deb
-gzip_1.5-1.1_amd64.deb
-hamster-applet_2.91.3+git20120514.b9fec3e1-1_all.deb
-hddtemp_0.3-beta15-52_amd64.deb
-hdparm_9.39-1+b1_amd64.deb
-heirloom-mailx_12.5-2_amd64.deb
-hicolor-icon-theme_0.12-1_all.deb
-host_9.8.4.dfsg.P1-6+nmu2_all.deb
-hostname_3.11_amd64.deb
-hpijs-ppds_3.12.6-3.1_all.deb
-hpijs_3.12.6-3.1_all.deb
-hplip-data_3.12.6-3.1_all.deb
-hplip_3.12.6-3.1_amd64.deb
-hspell_1.1-2_amd64.deb
-htdig_3.2.0b6-12_amd64.deb
-html2text_1.3.2a-15_amd64.deb
-htop_1.0.1-1_amd64.deb
-hugin-data_2011.4.0+dfsg-5_all.deb
-hugin-tools_2011.4.0+dfsg-5_amd64.deb
-hugin_2011.4.0+dfsg-5_amd64.deb
-hunspell-en-us_20070829-6_all.deb
-hunspell-se_1.0~beta6.20081222-1.2_all.deb
-hunspell-sv-se_1.51-1_all.deb
-hwdata_0.234-1_all.deb
-hwinfo_16.0-2.2_amd64.deb
-hydrogen-drumkits_0.9.3.20070703-3_all.deb
-hydrogen_0.9.6~beta2-1_amd64.deb
-hyperv-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-hyphen-de_3.3.0-4_all.deb
-hyphen-fr_3.3.0-4_all.deb
-i2c-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-iagno_3.4.2-3_amd64.deb
-iamerican_3.3.02-6_all.deb
-ibrazilian_3.0~beta4-15_all.deb
-ibritish_3.3.02-6_all.deb
-ibus-array_0.0.2-6_amd64.deb
-ibus-chewing_1.3.10+clean-3_amd64.deb
-ibus-clutter_0.0+git20090728.a936bacf-5_amd64.deb
-ibus-gtk3_1.4.1-9_amd64.deb
-ibus-gtk_1.4.1-9_amd64.deb
-ibus-qt4_1.3.1-2.1_amd64.deb
-ibus-table-cangjie-big_1.3.4-1_all.deb
-ibus-table-cangjie3_1.3.4-1_all.deb
-ibus-table-cangjie5_1.3.4-1_all.deb
-ibus-table-cangjie_1.3.4-1_all.deb
-ibus-table_1.3.9.20110827-2_all.deb
-ibus_1.4.1-9_amd64.deb
-icatalan_0.20111230b-4_all.deb
-icedove-l10n-ca_10.0.10-1_all.deb
-icedove-l10n-de_10.0.10-1_all.deb
-icedove-l10n-el_10.0.10-1_all.deb
-icedove-l10n-es-es_10.0.10-1_all.deb
-icedove-l10n-fr_10.0.10-1_all.deb
-icedove-l10n-it_10.0.10-1_all.deb
-icedove_10.0.12-1_amd64.deb
-icedtea-6-jre-cacao_6b27-1.12.5-1_amd64.deb
-icedtea-6-jre-jamvm_6b27-1.12.5-1_amd64.deb
-icedtea-6-plugin_1.3.2-1_amd64.deb
-icedtea-netx-common_1.3.2-1_all.deb
-icedtea-netx_1.3.2-1_amd64.deb
-icedtea6-plugin_6b21.3.2-1_all.deb
-iceweasel-l10n-af_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-ar_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-be_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-bg_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-ca_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-cs_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-da_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-de_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-el_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-en-gb_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-es-ar_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-es-es_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-eu_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-fi_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-fr_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-fy-nl_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-ga-ie_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-gu-in_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-he_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-hu_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-it_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-ja_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-ko_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-ku_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-lt_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-mk_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-nb-no_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-nl_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-nn-no_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-pa-in_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-pl_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-pt-br_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-pt-pt_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-ro_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-ru_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-sk_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-sl_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-sv-se_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-tr_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-zh-cn_17.0.6esr-1~deb7u1_all.deb
-iceweasel-l10n-zh-tw_17.0.6esr-1~deb7u1_all.deb
-iceweasel_17.0.6esr-1~deb7u1_amd64.deb
-idanish_1.6.25-1.1_amd64.deb
-idutch_2.10-1_all.deb
-ienglish-common_3.3.02-6_all.deb
-ifinnish-large_0.7-18_amd64.deb
-ifrench_1.4-26_all.deb
-iftop_1.0~pre2-3_amd64.deb
-ifupdown_0.7.8_amd64.deb
-iitalian_2.3-3_amd64.deb
-ijsgutenprint_5.2.9-1_amd64.deb
-im-switch_1.23_all.deb
-imagemagick-common_6.7.7.10-5_all.deb
-imagemagick_6.7.7.10-5_amd64.deb
-info_4.13a.dfsg.1-10_amd64.deb
-ingerman_20120607-1_all.deb
-initramfs-tools_0.109.1_all.deb
-initrd-kickseed_0.58_all.udeb
-initscripts_2.88dsf-41_amd64.deb
-inkscape_0.48.3.1-1.3_amd64.deb
-inorwegian_2.0.10-5.1_amd64.deb
-inputattach_1.4.3-1_amd64.deb
-insserv_1.14.0-5_amd64.deb
-install-info_4.13a.dfsg.1-10_amd64.deb
-installation-report_2.49_all.deb
-intltool-debian_0.35.0+20060710.1_all.deb
-iotop_0.4.4-4_amd64.deb
-iportuguese_20120604-1_all.deb
-iproute_20120521-3+b3_amd64.deb
-iptables_1.4.14-3.1_amd64.deb
-iputils-arping_20101006-1+b1_amd64.deb
-iputils-ping_20101006-1+b1_amd64.deb
-iputils-tracepath_20101006-1+b1_amd64.deb
-irda-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-isag_10.0.5-1_all.deb
-isc-dhcp-client-udeb_4.2.2.dfsg.1-5+deb70u3_amd64.udeb
-isc-dhcp-client_4.2.2.dfsg.1-5+deb70u3_amd64.deb
-isc-dhcp-common_4.2.2.dfsg.1-5+deb70u3_amd64.deb
-isc-dhcp-server-ldap_4.2.2.dfsg.1-5+deb70u3_amd64.deb
-isc-dhcp-server_4.2.2.dfsg.1-5+deb70u3_amd64.deb
-iso-codes_3.41-1_all.deb
-ispanish_1.11-4_all.deb
-ispell_3.3.02-6_amd64.deb
-iswiss_20120607-1_all.deb
-iw_3.4-1_amd64.deb
-jackd2-firewire_1.9.8~dfsg.4+20120529git007cdc37-5_amd64.deb
-jackd2_1.9.8~dfsg.4+20120529git007cdc37-5_amd64.deb
-jackd_5_all.deb
-java-common_0.47_all.deb
-java-wrappers_0.1.25_all.deb
-javahelp2_2.0.05.ds1-6_all.deb
-javascript-common_7_all.deb
-jfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-jfsutils-udeb_1.1.15-2_amd64.udeb
-jovie_4.8.4-2_amd64.deb
-juk_4.8.4-2_amd64.deb
-junit4_4.10-3_all.deb
-junit_3.8.2-8_all.deb
-jxplorer_3.2.2~rc1+dfsg-3_all.deb
-k3b-data_2.0.2-6_all.deb
-k3b-i18n_2.0.2-6_all.deb
-k3b_2.0.2-6_amd64.deb
-kaccessible_4.8.4-3_amd64.deb
-kaddressbook_4.4.11.1+l10n-3+b1_amd64.deb
-kalgebra-common_4.8.4-1_amd64.deb
-kalgebra_4.8.4-1_amd64.deb
-kalzium-data_4.8.4-1_all.deb
-kalzium_4.8.4-1_amd64.deb
-kamera_4.8.4-2_amd64.deb
-kanagram_4.8.4-1_amd64.deb
-kanjidic_2012.05.09-1_all.deb
-karbon_2.4.4-3_amd64.deb
-kate-data_4.8.4-1_all.deb
-kate_4.8.4-1_amd64.deb
-katepart_4.8.4-1_amd64.deb
-kbd_1.15.3-9_amd64.deb
-kbruch_4.8.4-1_amd64.deb
-kcalc_4.8.4-2_amd64.deb
-kcharselect_4.8.4-2_amd64.deb
-kcron_4.8.4-3_all.deb
-kde-baseapps-bin_4.8.4-2_amd64.deb
-kde-baseapps-data_4.8.4-2_all.deb
-kde-baseapps_4.8.4-2_all.deb
-kde-config-cron_4.8.4-3_amd64.deb
-kde-config-touchpad_0.8.1-1_all.deb
-kde-icons-mono_4.8.4-5_all.deb
-kde-l10n-ca_4.8.4-2_all.deb
-kde-l10n-da_4.8.4-2_all.deb
-kde-l10n-de_4.8.4-2_all.deb
-kde-l10n-el_4.8.4-2_all.deb
-kde-l10n-es_4.8.4-2_all.deb
-kde-l10n-fr_4.8.4-2_all.deb
-kde-l10n-he_4.8.4-2_all.deb
-kde-l10n-it_4.8.4-2_all.deb
-kde-l10n-ja_4.8.4-2_all.deb
-kde-l10n-lv_4.8.4-2_all.deb
-kde-l10n-nb_4.8.4-2_all.deb
-kde-l10n-nl_4.8.4-2_all.deb
-kde-l10n-nn_4.8.4-2_all.deb
-kde-l10n-ptbr_4.8.4-2_all.deb
-kde-l10n-sv_4.8.4-2_all.deb
-kde-l10n-zhtw_4.8.4-2_all.deb
-kde-plasma-desktop_77+deb7u1_amd64.deb
-kde-runtime-data_4.8.4-2_all.deb
-kde-runtime_4.8.4-2_amd64.deb
-kde-standard_77+deb7u1_all.deb
-kde-style-oxygen_4.8.4-6_amd64.deb
-kde-wallpapers-default_4.8.4-1_all.deb
-kde-wallpapers_4.8.4-1_all.deb
-kde-window-manager_4.8.4-6_amd64.deb
-kde-workspace-bin_4.8.4-6_amd64.deb
-kde-workspace-data_4.8.4-6_all.deb
-kde-workspace-kgreet-plugins_4.8.4-6_amd64.deb
-kde-workspace_4.8.4-6_all.deb
-kdeaccessibility_4.8.4+5.77+deb7u1_all.deb
-kdebase-runtime_4.8.4-2_all.deb
-kdeedu-kvtml-data_4.8.4-1_all.deb
-kdeedu_4.8.4+5.77+deb7u1_all.deb
-kdegraphics-strigi-analyzer_4.8.4-1_amd64.deb
-kdegraphics-strigi-plugins_4.8.4+5.77+deb7u1_all.deb
-kdegraphics-thumbnailers_4.8.4-1_amd64.deb
-kdelibs-bin_4.8.4-4_amd64.deb
-kdelibs5-data_4.8.4-4_all.deb
-kdelibs5-plugins_4.8.4-4_amd64.deb
-kdemultimedia-kio-plugins_4.8.4-2_amd64.deb
-kdenlive-data_0.9.2-2_all.deb
-kdenlive_0.9.2-2_amd64.deb
-kdepasswd_4.8.4-2_amd64.deb
-kdepim-runtime_4.4.11.1-6_amd64.deb
-kdepimlibs-kio-plugins_4.8.4-2_amd64.deb
-kdeplasma-addons_4.8.4-1_all.deb
-kdeutils_4.8.4+5.77+deb7u1_all.deb
-kdevelop-data_4.3.1-3_all.deb
-kdevelop_4.3.1-3+b1_amd64.deb
-kdevplatform5-libs_1.3.1-2_amd64.deb
-kdewallpapers_4.8.4-5_all.deb
-kdf_4.8.4-1_amd64.deb
-kdm_4.8.4-6_amd64.deb
-kdoctools_4.8.4-4_amd64.deb
-kexec-tools-udeb_2.0.3-1_amd64.udeb
-kexec-tools_2.0.3-1_amd64.deb
-kexi_2.4.4-3_amd64.deb
-keyboard-configuration_1.88_all.deb
-keyutils_1.5.5-3_amd64.deb
-kfilereplace_4.8.4-1_amd64.deb
-kfind_4.8.4-2_amd64.deb
-kfloppy_4.8.4-1_amd64.deb
-kgeography-data_4.8.4-1_all.deb
-kgeography_4.8.4-1_amd64.deb
-kgpg_4.8.4-4_amd64.deb
-khangman_4.8.4-1_amd64.deb
-khelpcenter4_4.8.4-2_amd64.deb
-kickseed-common_0.58_all.udeb
-kig_4.8.4-1_amd64.deb
-killer_0.90-8_all.deb
-kinfocenter_4.8.4-6_amd64.deb
-kino_1.3.4-1.3_amd64.deb
-kipi-plugins-common_2.6.0-1_all.deb
-kipi-plugins_2.6.0-1+b2_amd64.deb
-kiten_4.8.4-1_amd64.deb
-klash_0.8.11~git20120629-1_amd64.deb
-klettres-data_4.8.4-1_all.deb
-klettres_4.8.4-1_amd64.deb
-klibc-utils-floppy-udeb_2.0.1-3.1_amd64.udeb
-klibc-utils_2.0.1-3.1_amd64.deb
-klipper_4.8.4-6_amd64.deb
-kmag_4.8.4-3_amd64.deb
-kmail_4.4.11.1+l10n-3+b1_amd64.deb
-kmenuedit_4.8.4-6_amd64.deb
-kmix_4.8.4-2_amd64.deb
-kmod_9-3_amd64.deb
-kmousetool_4.8.4-3_amd64.deb
-kmouth_4.8.4-3_amd64.deb
-kmplot_4.8.4-2_amd64.deb
-knode_4.4.11.1+l10n-3+b1_amd64.deb
-knotes_4.4.11.1+l10n-3+b1_amd64.deb
-koffice-l10n-de_2.4.3+2_all.deb
-koffice-l10n-el_2.4.3+2_all.deb
-koffice-l10n-es_2.4.3+2_all.deb
-koffice-l10n-fr_2.4.3+2_all.deb
-koffice-l10n-it_2.4.3+2_all.deb
-koffice_2.4.3+2_all.deb
-kommander_4.8.4-1_amd64.deb
-konq-plugins_4.8.4-2_amd64.deb
-konqueror-nsplugins_4.8.4-2_amd64.deb
-konqueror-plugin-gnash_0.8.11~git20120629-1_amd64.deb
-konqueror_4.8.4-2_amd64.deb
-konsole_4.8.4-2_amd64.deb
-konversation-data_1.4-1_all.deb
-konversation_1.4-1_amd64.deb
-kopete_4.8.4-1+b1_amd64.deb
-korganizer_4.4.11.1+l10n-3+b1_amd64.deb
-kpartx_0.4.9+git0.4dfdaf2b-6_amd64.deb
-kpresenter_2.4.3+2_all.deb
-krb5-admin-server_1.10.1+dfsg-5+deb7u1_amd64.deb
-krb5-auth-dialog_3.2.1-1_amd64.deb
-krb5-clients_1.0.1-4_amd64.deb
-krb5-config_2.3_all.deb
-krb5-kdc-ldap_1.10.1+dfsg-5+deb7u1_amd64.deb
-krb5-kdc_1.10.1+dfsg-5+deb7u1_amd64.deb
-krb5-locales_1.10.1+dfsg-5+deb7u1_all.deb
-krb5-user_1.10.1+dfsg-5+deb7u1_amd64.deb
-krdc_4.8.4-1+b1_amd64.deb
-kremotecontrol_4.8.4-3_amd64.deb
-krfb_4.8.4-1+b1_amd64.deb
-krita-data_2.4.4-3_all.deb
-krita_2.4.4-3_amd64.deb
-krosspython_4.8.4-1_amd64.deb
-kruler_4.8.4-1_amd64.deb
-kscd_4.8.4-2_amd64.deb
-kscreensaver-xsavers_4.8.4-5_amd64.deb
-kscreensaver_4.8.4-5_amd64.deb
-ksnapshot_4.8.4-1_amd64.deb
-kspread_2.4.3+2_all.deb
-kstars-data_4.8.4-1_all.deb
-kstars_4.8.4-1_amd64.deb
-ksysguard_4.8.4-6_amd64.deb
-ksysguardd_4.8.4-6_amd64.deb
-kthesaurus_2.4.4-3_amd64.deb
-ktimer_4.8.4-1_amd64.deb
-ktouch-data_4.8.4-1_all.deb
-ktouch_4.8.4-1_amd64.deb
-ktuberling_4.8.4-3_amd64.deb
-kturtle_4.8.4-1_amd64.deb
-kuser_4.8.4-3_amd64.deb
-kwalletmanager_4.8.4-3_amd64.deb
-kword_2.4.3+2_all.deb
-kwordquiz_4.8.4-1_amd64.deb
-kwrite_4.8.4-1_amd64.deb
-lacheck_1.26-14_amd64.deb
-ladspa-sdk_1.13-1_amd64.deb
-laptop-detect_0.13.7_amd64.deb
-laptop-mode-tools_1.61-2_all.deb
-latex-beamer_3.10-2_all.deb
-latex-xcolor_2.11-1.1_all.deb
-lazarus-0.9.30.4_0.9.30.4-6_all.deb
-lazarus-doc-0.9.30.4_0.9.30.4-6_all.deb
-lazarus-ide-0.9.30.4_0.9.30.4-6_amd64.deb
-lazarus-ide-gtk2-0.9.30.4_0.9.30.4-6_amd64.deb
-lazarus-src-0.9.30.4_0.9.30.4-6_all.deb
-lazarus_0.9.30.4-6_all.deb
-lcl-0.9.30.4_0.9.30.4-6_amd64.deb
-lcl-gtk2-0.9.30.4_0.9.30.4-6_amd64.deb
-lcl-units-0.9.30.4_0.9.30.4-6_amd64.deb
-lcl-utils-0.9.30.4_0.9.30.4-6_amd64.deb
-ldap-utils_2.4.31-1+nmu2_amd64.deb
-ldap2zone_0.2-3.1_amd64.deb
-ldapvi_1.7-9_amd64.deb
-ldm-server_2.2.11-2_all.deb
-ldm-themes_12.07.1_all.deb
-ldm_2.2.11-2_amd64.deb
-leafpad_0.8.18.1-3_amd64.deb
-less_444-4_amd64.deb
-lesstif2_0.95.2-1.1_amd64.deb
-liba52-0.7.4-dev_0.7.4-16_amd64.deb
-liba52-0.7.4_0.7.4-16_amd64.deb
-libaa1_1.4p5-40_amd64.deb
-libaacs0_0.4.0-1_amd64.deb
-libaccountsservice0_0.6.21-8_amd64.deb
-libacl1_2.2.51-8_amd64.deb
-libaio1-udeb_0.3.109-3_amd64.udeb
-libaio1_0.3.109-3_amd64.deb
-libakonadi-contact4_4.8.4-2_amd64.deb
-libakonadi-kabc4_4.8.4-2_amd64.deb
-libakonadi-kcal4_4.8.4-2_amd64.deb
-libakonadi-kde4_4.8.4-2_amd64.deb
-libakonadi-kmime4_4.8.4-2_amd64.deb
-libakonadiprotocolinternals1_1.7.2-3_amd64.deb
-libalgorithm-diff-perl_1.19.02-2_all.deb
-libalgorithm-diff-xs-perl_0.04-2+b1_amd64.deb
-libalgorithm-merge-perl_0.08-2_all.deb
-libamd2.2.0_3.4.0-3_amd64.deb
-libanalitza4abi1_4.8.4-2_amd64.deb
-libanalitzagui4_4.8.4-2_amd64.deb
-libao-common_1.1.0-2_amd64.deb
-libao4_1.1.0-2_amd64.deb
-libapache-pom-java_10-2_all.deb
-libapache2-mod-auth-kerb_5.4-2_amd64.deb
-libapache2-mod-dnssd_0.6-3_amd64.deb
-libapache2-mod-php5_5.4.4-14_amd64.deb
-libapache2-mod-php5filter_5.4.4-14_amd64.deb
-libapr1_1.4.6-3_amd64.deb
-libaprutil1-dbd-sqlite3_1.4.1-3_amd64.deb
-libaprutil1-ldap_1.4.1-3_amd64.deb
-libaprutil1_1.4.1-3_amd64.deb
-libapt-inst1.5_0.9.7.8_amd64.deb
-libapt-pkg-perl_0.1.26+b1_amd64.deb
-libapt-pkg4.12_0.9.7.8_amd64.deb
-libarchive12_3.0.4-3+nmu1_amd64.deb
-libart-2.0-2_2.3.21-2_amd64.deb
-libasn1-8-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-libasound2-dev_1.0.25-4_amd64.deb
-libasound2-plugins_1.0.25-2_amd64.deb
-libasound2-udeb_1.0.25-4_amd64.udeb
-libasound2_1.0.25-4_amd64.deb
-libaspell15_0.60.7~20110707-1_amd64.deb
-libasprintf0c2_0.18.1.1-9_amd64.deb
-libass4_0.10.0-3_amd64.deb
-libassuan0_2.0.3-1_amd64.deb
-libasyncns0_0.8-4_amd64.deb
-libatasmart4_0.19-1_amd64.deb
-libatk-adaptor-data_2.5.3-2_amd64.deb
-libatk-adaptor_2.5.3-2_amd64.deb
-libatk-bridge2.0-0_2.5.3-2_amd64.deb
-libatk-wrapper-java-jni_0.30.4-3_amd64.deb
-libatk-wrapper-java_0.30.4-3_all.deb
-libatk1.0-0_2.4.0-2_amd64.deb
-libatk1.0-data_2.4.0-2_all.deb
-libatk1.0-dev_2.4.0-2_amd64.deb
-libatkmm-1.6-1_2.22.6-1_amd64.deb
-libatm1_2.5.1-1.5_amd64.deb
-libatspi1.0-0_1.32.0-2_amd64.deb
-libatspi2.0-0_2.5.3-2_amd64.deb
-libattica0_0.2.0-1_amd64.deb
-libattr1_2.4.46-8_amd64.deb
-libaubio2_0.3.2-4.2+b1_amd64.deb
-libaudclient2_3.2.4-1_amd64.deb
-libaudcore1_3.2.4-1_amd64.deb
-libaudio-scrobbler-perl_0.01-2.1_all.deb
-libaudio2_1.9.3-5_amd64.deb
-libaudiofile1_0.3.4-2_amd64.deb
-libaudit0_1.7.18-1.1_amd64.deb
-libav-tools_0.8.6-1_amd64.deb
-libavahi-client-dev_0.6.31-2_amd64.deb
-libavahi-client3_0.6.31-2_amd64.deb
-libavahi-common-data_0.6.31-2_amd64.deb
-libavahi-common-dev_0.6.31-2_amd64.deb
-libavahi-common3_0.6.31-2_amd64.deb
-libavahi-core7_0.6.31-2_amd64.deb
-libavahi-glib1_0.6.31-2_amd64.deb
-libavahi-gobject0_0.6.31-2_amd64.deb
-libavahi-ui-gtk3-0_0.6.31-2_amd64.deb
-libavc1394-0_0.5.4-2_amd64.deb
-libavcodec53_0.8.6-1_amd64.deb
-libavdevice53_0.8.6-1_amd64.deb
-libavfilter2_0.8.6-1_amd64.deb
-libavformat53_0.8.6-1_amd64.deb
-libavogadro1_1.0.3-5_amd64.deb
-libavutil51_0.8.6-1_amd64.deb
-libbabl-0.1-0_0.1.10-1_amd64.deb
-libbackport-util-concurrent-java_3.1-3_all.deb
-libbcel-java_5.2-9_all.deb
-libbind9-80_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-libbinio1ldbl_1.4+dfsg1-1_amd64.deb
-libblas3_1.2.20110419-5_amd64.deb
-libblas3gf_1.2.20110419-5_all.deb
-libblkid1-udeb_2.20.1-5.3_amd64.udeb
-libblkid1_2.20.1-5.3_amd64.deb
-libbluetooth3_4.99-2_amd64.deb
-libbluray1_0.2.2-1_amd64.deb
-libbonobo2-0_2.24.3-1_amd64.deb
-libbonobo2-common_2.24.3-1_all.deb
-libbonoboui2-0_2.24.3-1_amd64.deb
-libbonoboui2-common_2.24.3-1_all.deb
-libboost-filesystem1.49.0_1.49.0-3.2_amd64.deb
-libboost-graph1.49.0_1.49.0-3.2_amd64.deb
-libboost-iostreams1.49.0_1.49.0-3.2_amd64.deb
-libboost-program-options1.49.0_1.49.0-3.2_amd64.deb
-libboost-python1.49.0_1.49.0-3.2_amd64.deb
-libboost-regex1.49.0_1.49.0-3.2_amd64.deb
-libboost-signals1.49.0_1.49.0-3.2_amd64.deb
-libboost-system1.49.0_1.49.0-3.2_amd64.deb
-libboost-thread1.49.0_1.49.0-3.2_amd64.deb
-libbrasero-media3-1_3.4.1-4_amd64.deb
-libbrlapi0.5_4.4-10_amd64.deb
-libbs2b0_3.1.0+dfsg-2_amd64.deb
-libbsd0-udeb_0.4.2-1_amd64.udeb
-libbsd0_0.4.2-1_amd64.deb
-libburn4_1.2.2-2_amd64.deb
-libbz2-1.0_1.0.6-4_amd64.deb
-libc-ares2_1.9.1-3_amd64.deb
-libc-bin_2.13-38_amd64.deb
-libc-client2007e_2007f~dfsg-2_amd64.deb
-libc-dev-bin_2.13-38_amd64.deb
-libc6-dbg_2.13-38_amd64.deb
-libc6-dev_2.13-38_amd64.deb
-libc6-udeb_2.13-38_amd64.udeb
-libc6_2.13-38_amd64.deb
-libcaca-dev_0.99.beta18-1_amd64.deb
-libcaca0_0.99.beta18-1_amd64.deb
-libcairo-gobject2_1.12.2-3_amd64.deb
-libcairo-perl_1.090-2_amd64.deb
-libcairo-script-interpreter2_1.12.2-3_amd64.deb
-libcairo2-dev_1.12.2-3_amd64.deb
-libcairo2_1.12.2-3_amd64.deb
-libcairomm-1.0-1_1.10.0-1_amd64.deb
-libcamel-1.2-33_3.4.4-3_amd64.deb
-libcanberra-gtk-module_0.28-6_amd64.deb
-libcanberra-gtk0_0.28-6_amd64.deb
-libcanberra-gtk3-0_0.28-6_amd64.deb
-libcanberra-gtk3-module_0.28-6_amd64.deb
-libcanberra-pulse_0.28-6_amd64.deb
-libcanberra0_0.28-6_amd64.deb
-libcanna1g_3.7p3-11_amd64.deb
-libcap-ng0_0.6.6-2_amd64.deb
-libcap2-bin_2.22-1.2_amd64.deb
-libcap2_2.22-1.2_amd64.deb
-libcaribou-common_0.4.4-1_all.deb
-libcaribou-gtk-module_0.4.4-1_amd64.deb
-libcaribou-gtk3-module_0.4.4-1_amd64.deb
-libcaribou0_0.4.4-1_amd64.deb
-libcbf0_0.7.9.1-3_amd64.deb
-libcdaudio1_0.99.12p2-12_amd64.deb
-libcddb2_1.3.2-3_amd64.deb
-libcdio-cdda1_0.83-4_amd64.deb
-libcdio-paranoia1_0.83-4_amd64.deb
-libcdio13_0.83-4_amd64.deb
-libcdparanoia0_3.10.2+debian-10.1_amd64.deb
-libcfitsio3_3.300-2_amd64.deb
-libcgi-fast-perl_5.14.2-21_all.deb
-libchamplain-0.12-0_0.12.3-1_amd64.deb
-libchamplain-gtk-0.12-0_0.12.3-1_amd64.deb
-libcheese-gtk21_3.4.2-2_amd64.deb
-libcheese3_3.4.2-2_amd64.deb
-libchewing3-data_0.3.3-4_amd64.deb
-libchewing3_0.3.3-4_amd64.deb
-libchm1_0.40a-2_amd64.deb
-libck-connector0_0.4.5-3.1_amd64.deb
-libclamav6_0.97.8+dfsg-1_amd64.deb
-libclass-accessor-perl_0.34-1_all.deb
-libclass-isa-perl_0.36-3_all.deb
-libclass-load-perl_0.17-1_all.deb
-libcln6_1.3.2-1.2_amd64.deb
-libclucene0ldbl_0.9.21b-2+b1_amd64.deb
-libclutter-1.0-0_1.10.8-2_amd64.deb
-libclutter-1.0-common_1.10.8-2_all.deb
-libclutter-gst-1.0-0_1.5.4-1+b2_amd64.deb
-libclutter-gtk-1.0-0_1.2.0-2_amd64.deb
-libclutter-imcontext-0.1-0_0.1.4-3_amd64.deb
-libclutter-imcontext-0.1-bin_0.1.4-3_amd64.deb
-libcluttergesture-0.0.2-0_0.0.2.1-7_amd64.deb
-libcmis-0.2-0_0.1.0-1+b1_amd64.deb
-libcogl-common_1.10.2-7_all.deb
-libcogl-pango0_1.10.2-7_amd64.deb
-libcogl9_1.10.2-7_amd64.deb
-libcolamd2.7.1_3.4.0-3_amd64.deb
-libcollection2_0.1.3-2_amd64.deb
-libcollections15-java_4.01+ds1-1_all.deb
-libcolorblind0_0.0.1-1_amd64.deb
-libcolord1_0.1.21-1_amd64.deb
-libcomedi0_0.10.0-3_amd64.deb
-libcomerr2_1.42.5-1.1_amd64.deb
-libcommons-beanutils-java_1.8.3-3_all.deb
-libcommons-codec-java_1.6-1_all.deb
-libcommons-collections3-java_3.2.1-5_all.deb
-libcommons-compress-java_1.4.1-2_all.deb
-libcommons-digester-java_1.8.1-3_all.deb
-libcommons-logging-java_1.1.1-9_all.deb
-libcommons-math-java_2.2-2_all.deb
-libcommons-parent-java_22-2_all.deb
-libconfig++9_1.4.8-5_amd64.deb
-libconfig-general-perl_2.50-1_all.deb
-libconfig-inifiles-perl_2.75-1_all.deb
-libconfig-tiny-perl_2.14-1_all.deb
-libconvert-asn1-perl_0.26-1_all.deb
-libcpufreq0_008-1_amd64.deb
-libcr0_0.8.5-2_amd64.deb
-libcrack2_2.8.19-3_amd64.deb
-libcroco3_0.6.6-2_amd64.deb
-libcrypt-openssl-random-perl_0.04-1+b4_amd64.deb
-libcrypt-passwdmd5-perl_1.3-10_all.deb
-libcrypt-smbhash-perl_0.12-3_all.deb
-libcrypto1.0.0-udeb_1.0.1e-2_amd64.udeb
-libcryptsetup4-udeb_1.4.3-4_amd64.udeb
-libcryptsetup4_1.4.3-4_amd64.deb
-libcrystalhd3_0.0~git20110715.fdd2f19-9_amd64.deb
-libcsound64-5.2_5.17.11~dfsg-3_amd64.deb
-libcue1_1.4.0-1_amd64.deb
-libcups2_1.5.3-5_amd64.deb
-libcupscgi1_1.5.3-5_amd64.deb
-libcupsdriver1_1.5.3-5_amd64.deb
-libcupsfilters1_1.0.18-2.1_amd64.deb
-libcupsimage2_1.5.3-5_amd64.deb
-libcupsmime1_1.5.3-5_amd64.deb
-libcupsppdc1_1.5.3-5_amd64.deb
-libcurl3-gnutls_7.26.0-1+wheezy2_amd64.deb
-libcurl3_7.26.0-1+wheezy2_amd64.deb
-libcvector2_1.0.3-1_amd64.deb
-libcwidget3_0.5.16-3.4_amd64.deb
-libdaemon0_0.14-2_amd64.deb
-libdata-optlist-perl_0.107-1_all.deb
-libdate-manip-perl_6.32-1_all.deb
-libdatrie1_0.2.5-3_amd64.deb
-libdb-java_5.1.6_all.deb
-libdb-je-java_3.3.98-1_all.deb
-libdb5.1-java-jni_5.1.29-5_amd64.deb
-libdb5.1-java_5.1.29-5_all.deb
-libdb5.1_5.1.29-5_amd64.deb
-libdbd-pg-perl_2.19.2-2_amd64.deb
-libdbi-perl_1.622-1_amd64.deb
-libdbi1_0.8.4-6_amd64.deb
-libdbus-1-3_1.6.8-1+deb7u1_amd64.deb
-libdbus-1-dev_1.6.8-1+deb7u1_amd64.deb
-libdbus-glib-1-2_0.100.2-1_amd64.deb
-libdbus-glib1.0-cil_0.5.0-4_all.deb
-libdbus1.0-cil_0.7.0-5_all.deb
-libdbusmenu-qt2_0.9.0-1_amd64.deb
-libdc1394-22_2.2.0-2_amd64.deb
-libdca-dev_0.0.5-5_amd64.deb
-libdca0_0.0.5-5_amd64.deb
-libdconf0_0.12.1-3_amd64.deb
-libddccontrol0_0.4.2-10_amd64.deb
-libdee-1.0-4_1.0.10-3_amd64.deb
-libdevmapper-event1.02.1_1.02.74-7_amd64.deb
-libdevmapper1.02.1-udeb_1.02.74-7_amd64.udeb
-libdevmapper1.02.1_1.02.74-7_amd64.deb
-libdhash1_0.1.3-2_amd64.deb
-libdigest-hmac-perl_1.03+dfsg-1_all.deb
-libdigest-md4-perl_1.5.dfsg-2+b2_amd64.deb
-libdirac-decoder0_1.0.2-6_amd64.deb
-libdirac-encoder0_1.0.2-6_amd64.deb
-libdirectfb-1.2-9_1.2.10.0-5_amd64.deb
-libdirectfb-dev_1.2.10.0-5_amd64.deb
-libdirectfb-extra_1.2.10.0-5_amd64.deb
-libdiscid0_0.2.2-3_amd64.deb
-libdiscover2_2.1.2-5.2_amd64.deb
-libdjvulibre-text_3.5.25.3-1_all.deb
-libdjvulibre21_3.5.25.3-1_amd64.deb
-libdlrestrictions1_0.15.3_amd64.deb
-libdmapsharing-3.0-2_2.9.15-1_amd64.deb
-libdmraid1.0.0.rc16-udeb_1.0.0.rc16-4.2_amd64.udeb
-libdmraid1.0.0.rc16_1.0.0.rc16-4.2_amd64.deb
-libdmtx0a_0.7.2-2+build1_amd64.deb
-libdns88_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-libdom4j-java_1.6.1+dfsg.2-6_all.deb
-libdotconf1.0_1.0.13-3_amd64.deb
-libdpkg-perl_1.16.10_all.deb
-libdrm-intel1_2.4.40-1~deb7u2_amd64.deb
-libdrm-nouveau1a_2.4.40-1~deb7u2_amd64.deb
-libdrm-radeon1_2.4.40-1~deb7u2_amd64.deb
-libdrm2_2.4.40-1~deb7u2_amd64.deb
-libdts-dev_0.0.5-5_amd64.deb
-libdv4_1.0.0-6_amd64.deb
-libdvbpsi7_0.2.2-1_amd64.deb
-libdvdnav4_4.2.0+20120524-2_amd64.deb
-libdvdread4_4.2.0+20120521-2_amd64.deb
-libdxflib-2.2.0.0_2.2.0.0-8_amd64.deb
-libebackend-1.2-2_3.4.4-3_amd64.deb
-libebml3_1.2.2-2_amd64.deb
-libebook-1.2-13_3.4.4-3_amd64.deb
-libecal-1.2-11_3.4.4-3_amd64.deb
-libedata-book-1.2-13_3.4.4-3_amd64.deb
-libedata-cal-1.2-15_3.4.4-3_amd64.deb
-libedataserver-1.2-16_3.4.4-3_amd64.deb
-libedataserverui-3.0-1_3.4.4-3_amd64.deb
-libedit2_2.11-20080614-5_amd64.deb
-libelf1_0.152-1+wheezy1_amd64.deb
-libemail-address-perl_1.895-1_all.deb
-libemail-find-perl_0.10-dfsg-1.1_all.deb
-libemail-valid-perl_0.190-1_all.deb
-libenca0_1.13-4_amd64.deb
-libenchant1c2a_1.6.0-7_amd64.deb
-libencode-locale-perl_1.03-1_all.deb
-libepc-1.0-3_0.4.4-1_amd64.deb
-libepc-common_0.4.4-1_all.deb
-libepc-ui-1.0-3_0.4.4-1_amd64.deb
-libept1.4.12_1.0.9_amd64.deb
-liberror-perl_0.17-1_all.deb
-libescpr1_1.1.1-2_amd64.deb
-libesd0_0.2.41-10+b1_amd64.deb
-libespeak1_1.46.02-2_amd64.deb
-libestools2.1_2.1~release-5_amd64.deb
-libev4_4.11-1_amd64.deb
-libevdocument3-4_3.4.0-3.1_amd64.deb
-libevent-2.0-5_2.0.19-stable-3_amd64.deb
-libevolution_3.4.4-3_amd64.deb
-libevview3-3_3.4.0-3.1_amd64.deb
-libexempi3_2.2.0-1_amd64.deb
-libexif12_0.6.20-3_amd64.deb
-libexiv2-12_0.23-1_amd64.deb
-libexpat1-dev_2.1.0-1_amd64.deb
-libexpat1_2.1.0-1_amd64.deb
-libexporter-lite-perl_0.02-2_all.deb
-libexttextcat-data_3.2.0-2_all.deb
-libexttextcat0_3.2.0-2_amd64.deb
-libfaad2_2.7-8_amd64.deb
-libfakekey0-udeb_0.1-7_amd64.udeb
-libfam0_2.7.0-17_amd64.deb
-libfarstream-0.1-0_0.1.2-1_amd64.deb
-libfcgi-perl_0.74-1+b1_amd64.deb
-libffado2_2.0.99+svn2171-2_amd64.deb
-libffi5-udeb_3.0.10-3_amd64.udeb
-libffi5_3.0.10-3_amd64.deb
-libfftw3-3_3.3.2-3.1_amd64.deb
-libfile-basedir-perl_0.03-1_all.deb
-libfile-copy-recursive-perl_0.38-1_all.deb
-libfile-desktopentry-perl_0.04-3_all.deb
-libfile-fcntllock-perl_0.14-2_amd64.deb
-libfile-listing-perl_6.04-1_all.deb
-libfile-mimeinfo-perl_0.16-1_all.deb
-libfilesys-df-perl_0.92-4+b1_amd64.deb
-libflac++6_1.2.1-6_amd64.deb
-libflac-dev_1.2.1-6_amd64.deb
-libflac8_1.2.1-6_amd64.deb
-libflite1_1.4-release-6_amd64.deb
-libfltk1.1_1.1.10-14_amd64.deb
-libfluidsynth1_1.1.5-2_amd64.deb
-libfm-data_0.1.17-2.1_all.deb
-libfm-gtk-bin_0.1.17-2.1_amd64.deb
-libfm-gtk1_0.1.17-2.1_amd64.deb
-libfm1_0.1.17-2.1_amd64.deb
-libfolks-eds25_0.6.9-1+b1_amd64.deb
-libfolks-telepathy25_0.6.9-1+b1_amd64.deb
-libfolks25_0.6.9-1+b1_amd64.deb
-libfont-afm-perl_1.20-1_all.deb
-libfontconfig1-dev_2.9.0-7.1_amd64.deb
-libfontconfig1_2.9.0-7.1_amd64.deb
-libfontenc1_1.1.1-1_amd64.deb
-libfreehep-export-java_2.1.1-2_all.deb
-libfreehep-graphics2d-java_2.1.1-3_all.deb
-libfreehep-graphicsio-emf-java_2.1.1-emfplus+dfsg1-2_all.deb
-libfreehep-graphicsio-java_2.1.1-3_all.deb
-libfreehep-graphicsio-pdf-java_2.1.1+dfsg-1_all.deb
-libfreehep-graphicsio-svg-java_2.1.1-3_all.deb
-libfreehep-graphicsio-tests-java_2.1.1+dfsg1-3_all.deb
-libfreehep-io-java_2.0.2-4_all.deb
-libfreehep-swing-java_2.0.3-3_all.deb
-libfreehep-util-java_2.0.2-5_all.deb
-libfreehep-xml-java_2.1.2+dfsg1-3_all.deb
-libfreeipmi12_1.1.5-3_amd64.deb
-libfreerdp-plugins-standard_1.0.1-1.1+deb7u2_amd64.deb
-libfreerdp1_1.0.1-1.1+deb7u2_amd64.deb
-libfreetype6-dev_2.4.9-1.1_amd64.deb
-libfreetype6_2.4.9-1.1_amd64.deb
-libfribidi0_0.19.2-3_amd64.deb
-libfs6_1.0.4-1+deb7u1_amd64.deb
-libftdi1_0.20-1+b1_amd64.deb
-libfuse2-udeb_2.9.0-2+deb7u1_amd64.udeb
-libfuse2_2.9.0-2+deb7u1_amd64.deb
-libgadu3_1.11.2-1_amd64.deb
-libgail-3-0_3.4.2-6_amd64.deb
-libgail-common_2.24.10-2_amd64.deb
-libgail18_2.24.10-2_amd64.deb
-libgavl1_1.4.0-1_amd64.deb
-libgc1c2_7.1-9.1_amd64.deb
-libgcc1_4.7.2-5_amd64.deb
-libgcj-common_4.6.3-8_all.deb
-libgcj13_4.7.2-3_amd64.deb
-libgck-1-0_3.4.1-3_amd64.deb
-libgconf-2-4_3.2.5-1+build1_amd64.deb
-libgconf2-4_3.2.5-1+build1_amd64.deb
-libgconf2.0-cil_2.24.2-3_all.deb
-libgcr-3-1_3.4.1-3_amd64.deb
-libgcr-3-common_3.4.1-3_all.deb
-libgcrypt11-udeb_1.5.0-5_amd64.udeb
-libgcrypt11_1.5.0-5_amd64.deb
-libgcu0_0.12.12-1_amd64.deb
-libgd2-noxpm_2.0.36~rc1~dfsg-6.1_amd64.deb
-libgd2-xpm_2.0.36~rc1~dfsg-6.1_amd64.deb
-libgdata-common_0.12.0-1_all.deb
-libgdata13_0.12.0-1_amd64.deb
-libgdbm3_1.8.3-11_amd64.deb
-libgdict-1.0-6_3.4.0-2_amd64.deb
-libgdict-common_3.4.0-2_all.deb
-libgdiplus_2.10-3+b1_amd64.deb
-libgdk-pixbuf2.0-0-udeb_2.26.1-1_amd64.udeb
-libgdk-pixbuf2.0-0_2.26.1-1_amd64.deb
-libgdk-pixbuf2.0-common_2.26.1-1_all.deb
-libgdk-pixbuf2.0-dev_2.26.1-1_amd64.deb
-libgdu-gtk0_3.0.2-3_amd64.deb
-libgdu0_3.0.2-3_amd64.deb
-libgee2_0.6.4-2_amd64.deb
-libgegl-0.2-0_0.2.0-2+nmu1_amd64.deb
-libgeoclue0_0.12.0-4_amd64.deb
-libgeocode-glib0_0.99.0-1_amd64.deb
-libgeoip1_1.4.8+dfsg-3_amd64.deb
-libgeomview-1.9.4_1.9.4-3_amd64.deb
-libgetopt-java_1.0.13-4_all.deb
-libgettextpo0_0.18.1.1-9_amd64.deb
-libgexiv2-1_0.4.1-3_amd64.deb
-libgfortran3_4.7.2-5_amd64.deb
-libghemical-data_3.0.0-2_all.deb
-libghemical5_3.0.0-2_amd64.deb
-libgif4_4.1.6-10_amd64.deb
-libgimp2.0_2.8.2-2_amd64.deb
-libgirepository-1.0-1_1.32.1-1_amd64.deb
-libgjs0b_1.32.0-5_amd64.deb
-libgksu2-0_2.0.13~pre1-6_amd64.deb
-libgl1-mesa-dev_8.0.5-4+deb7u2_amd64.deb
-libgl1-mesa-dri_8.0.5-4+deb7u2_amd64.deb
-libgl1-mesa-glx_8.0.5-4+deb7u2_amd64.deb
-libglade2-0_2.6.4-1_amd64.deb
-libglapi-mesa_8.0.5-4+deb7u2_amd64.deb
-libgle3_3.1.0-7_amd64.deb
-libglew1.7_1.7.0-3_amd64.deb
-libglib-perl_1.260-1_amd64.deb
-libglib2.0-0_2.33.12+really2.32.4-5_amd64.deb
-libglib2.0-bin_2.33.12+really2.32.4-5_amd64.deb
-libglib2.0-cil_2.12.10-5_amd64.deb
-libglib2.0-data_2.33.12+really2.32.4-5_all.deb
-libglib2.0-dev_2.33.12+really2.32.4-5_amd64.deb
-libglibmm-2.4-1c2a_2.32.1-1_amd64.deb
-libglu1-mesa-dev_8.0.5-4+deb7u2_amd64.deb
-libglu1-mesa_8.0.5-4+deb7u2_amd64.deb
-libgme0_0.5.5-2_amd64.deb
-libgmime-2.6-0_2.6.10-1_amd64.deb
-libgmime2.6-cil_2.6.10-1_all.deb
-libgmlib0_1.0.6-1_amd64.deb
-libgmp10_5.0.5+dfsg-2_amd64.deb
-libgmtk0-data_1.0.6-1_all.deb
-libgmtk0_1.0.6-1_amd64.deb
-libgnome-bluetooth10_3.4.2-1_amd64.deb
-libgnome-desktop-3-2_3.4.2-1_amd64.deb
-libgnome-keyring-common_3.4.1-1_all.deb
-libgnome-keyring0_3.4.1-1_amd64.deb
-libgnome-mag2_0.16.3-1_amd64.deb
-libgnome-media-profiles-3.0-0_3.0.0-1_amd64.deb
-libgnome-menu-3-0_3.4.2-5_amd64.deb
-libgnome-speech7_0.4.25-5_amd64.deb
-libgnome2-0_2.32.1-3_amd64.deb
-libgnome2-common_2.32.1-3_all.deb
-libgnomecanvas2-0_2.30.3-1.2_amd64.deb
-libgnomecanvas2-common_2.30.3-1.2_all.deb
-libgnomekbd-common_3.4.0.2-1_all.deb
-libgnomekbd7_3.4.0.2-1_amd64.deb
-libgnomeui-0_2.24.5-2_amd64.deb
-libgnomeui-common_2.24.5-2_all.deb
-libgnomevfs2-0_2.24.4-2_amd64.deb
-libgnomevfs2-common_2.24.4-2_all.deb
-libgnomevfs2-extra_2.24.4-2_amd64.deb
-libgnu-regexp-java_1.1.4-4_all.deb
-libgnutls26_2.12.20-7_amd64.deb
-libgoa-1.0-0_3.4.2-2_amd64.deb
-libgoa-1.0-common_3.4.2-2_all.deb
-libgoffice-0.8-8-common_0.8.17-1.2_all.deb
-libgoffice-0.8-8_0.8.17-1.2_amd64.deb
-libgomp1_4.7.2-5_amd64.deb
-libgoocanvas-common_0.15-1_all.deb
-libgoocanvas3_0.15-1_amd64.deb
-libgpg-error0-udeb_1.10-3.1_amd64.udeb
-libgpg-error0_1.10-3.1_amd64.deb
-libgpgme++2_4.8.4-2_amd64.deb
-libgpgme11_1.2.0-1.4_amd64.deb
-libgphoto2-2_2.4.14-2_amd64.deb
-libgphoto2-l10n_2.4.14-2_all.deb
-libgphoto2-port0_2.4.14-2_amd64.deb
-libgpm2_1.20.4-6_amd64.deb
-libgpod-common_0.8.2-7_amd64.deb
-libgpod4-nogtk_0.8.2-7_amd64.deb
-libgpod4_0.8.2-7_amd64.deb
-libgps20_3.6-4_amd64.deb
-libgraphicsmagick3_1.3.16-1.1_amd64.deb
-libgraphite2-2.0.0_1.1.3-1_amd64.deb
-libgraphite3_2.3.1-0.2_amd64.deb
-libgrilo-0.1-0_0.1.19-1_amd64.deb
-libgringotts2_1.2.10~pre3-1_amd64.deb
-libgs9-common_9.05~dfsg-6.3_all.deb
-libgs9_9.05~dfsg-6.3_amd64.deb
-libgsf-1-114_1.14.21-2.1_amd64.deb
-libgsf-1-common_1.14.21-2.1_all.deb
-libgsl0ldbl_1.15+dfsg.2-2_amd64.deb
-libgsm1_1.0.13-4_amd64.deb
-libgssapi-krb5-2_1.10.1+dfsg-5+deb7u1_amd64.deb
-libgssdp-1.0-3_0.12.2.1-2_amd64.deb
-libgssglue1_0.4-2_amd64.deb
-libgssrpc4_1.10.1+dfsg-5+deb7u1_amd64.deb
-libgstreamer-plugins-bad0.10-0_0.10.23-7.1_amd64.deb
-libgstreamer-plugins-base0.10-0_0.10.36-1.1_amd64.deb
-libgstreamer0.10-0_0.10.36-1.2_amd64.deb
-libgtk-3-0-udeb_3.4.2-6_amd64.udeb
-libgtk-3-0_3.4.2-6_amd64.deb
-libgtk-3-bin_3.4.2-6_amd64.deb
-libgtk-3-common_3.4.2-6_all.deb
-libgtk-vnc-2.0-0_0.5.0-3.1_amd64.deb
-libgtk2-perl_1.244-1_amd64.deb
-libgtk2.0-0-udeb_2.24.10-2_amd64.udeb
-libgtk2.0-0_2.24.10-2_amd64.deb
-libgtk2.0-bin_2.24.10-2_amd64.deb
-libgtk2.0-cil_2.12.10-5_amd64.deb
-libgtk2.0-common_2.24.10-2_all.deb
-libgtk2.0-dev_2.24.10-2_amd64.deb
-libgtkglext1_1.2.0-2_amd64.deb
-libgtkhtml-4.0-0_4.4.4-1_amd64.deb
-libgtkhtml-4.0-common_4.4.4-1_all.deb
-libgtkhtml-editor-4.0-0_4.4.4-1_amd64.deb
-libgtkimageview0_1.6.4+dfsg-0.1_amd64.deb
-libgtkmm-2.4-1c2a_2.24.2-1_amd64.deb
-libgtkmm-3.0-1_3.4.2-1_amd64.deb
-libgtksourceview-3.0-0_3.4.2-1_amd64.deb
-libgtksourceview-3.0-common_3.4.2-1_all.deb
-libgtksourceview2.0-0_2.10.4-1_amd64.deb
-libgtksourceview2.0-common_2.10.4-1_all.deb
-libgtkspell0_2.0.16-1_amd64.deb
-libgtop2-7_2.28.4-3_amd64.deb
-libgtop2-common_2.28.4-3_all.deb
-libgucharmap-2-90-7_3.4.1.1-2.1_amd64.deb
-libgudev-1.0-0_175-7.2_amd64.deb
-libguess1_1.1-1_amd64.deb
-libguile-ltdl-1_1.6.8-10.3_amd64.deb
-libgupnp-1.0-4_0.18.4-1_amd64.deb
-libgupnp-av-1.0-2_0.10.3-1_amd64.deb
-libgupnp-dlna-1.0-2_0.6.6-1_amd64.deb
-libgupnp-igd-1.0-4_0.2.1-2_amd64.deb
-libgusb2_0.1.3-5_amd64.deb
-libgutenprint2_5.2.9-1_amd64.deb
-libgvnc-1.0-0_0.5.0-3.1_amd64.deb
-libgweather-3-0_3.4.1-1+build1_amd64.deb
-libgweather-common_3.4.1-1+build1_all.deb
-libgxps2_0.2.2-2_amd64.deb
-libhal1_0.5.14-8_amd64.deb
-libhamcrest-java_1.2-2_all.deb
-libhcrypto4-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-libhd16_16.0-2.2_amd64.deb
-libhdf5-7_1.8.8-9_amd64.deb
-libheimbase1-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-libhippocanvas-1-0_0.3.1-1.1_amd64.deb
-libhpmud0_3.12.6-3.1_amd64.deb
-libhsqldb-java_1.8.0.10+dfsg-0+deb7u1_all.deb
-libhtml-form-perl_6.03-1_all.deb
-libhtml-format-perl_2.10-1_all.deb
-libhtml-fromtext-perl_2.05-5.1_all.deb
-libhtml-parser-perl_3.69-2_amd64.deb
-libhtml-tagset-perl_3.20-2_all.deb
-libhtml-template-perl_2.91-1_all.deb
-libhtml-tree-perl_5.02-1_all.deb
-libhttp-cookies-perl_6.00-2_all.deb
-libhttp-daemon-perl_6.01-1_all.deb
-libhttp-date-perl_6.02-1_all.deb
-libhttp-message-perl_6.03-1_all.deb
-libhttp-negotiate-perl_6.00-2_all.deb
-libhunspell-1.3-0_1.3.2-4_amd64.deb
-libhx509-5-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-libhyphen0_2.8.3-2_amd64.deb
-libibus-1.0-0_1.4.1-9_amd64.deb
-libibus-qt1_1.3.1-2.1_amd64.deb
-libibverbs1_1.1.6-1_amd64.deb
-libical0_0.48-2_amd64.deb
-libicc2_2.12+argyll1.4.0-8_amd64.deb
-libice-dev_1.0.8-2_amd64.deb
-libice6_1.0.8-2_amd64.deb
-libicu48_4.8.1.1-12_amd64.deb
-libicu4j-java_4.2.1.1-1_all.deb
-libid3tag0_0.15.1b-10_amd64.deb
-libidl0_0.8.14-0.2_amd64.deb
-libidn11_1.25-2_amd64.deb
-libiec61883-0_1.2.0-0.1_amd64.deb
-libieee1284-3_0.2.11-10_amd64.deb
-libifp4_1.0.0.2-5_amd64.deb
-libijs-0.35_0.35-8_amd64.deb
-libilmbase6_1.0.1-4_amd64.deb
-libimage-exiftool-perl_8.60-2_all.deb
-libimdi0_1.4.0-8_amd64.deb
-libimlib2_1.4.5-1_amd64.deb
-libimobiledevice2_1.1.1-4_amd64.deb
-libindi-data_0.9.1-2_all.deb
-libindi0b_0.9.1-2_amd64.deb
-libini-config2_0.1.3-2_amd64.deb
-libint1_1.1.4-1_amd64.deb
-libio-multiplex-perl_1.13-1_all.deb
-libio-pty-perl_1.08-1+b2_amd64.deb
-libio-socket-inet6-perl_2.69-2_all.deb
-libio-socket-ip-perl_0.16-2_all.deb
-libio-socket-ssl-perl_1.76-2_all.deb
-libio-string-perl_1.08-2_all.deb
-libiodbc2_3.52.7-2_amd64.deb
-libipa-hbac0_1.8.4-2_amd64.deb
-libipc-run-perl_0.92-1_all.deb
-libipc-shareable-perl_0.60-8_all.deb
-libipmiconsole2_1.1.5-3_amd64.deb
-libipmidetect0_1.1.5-3_amd64.deb
-libiptcdata0_1.0.4-3_amd64.deb
-libisc84_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-libisccc80_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-libisccfg82_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-libiso9660-8_0.83-4_amd64.deb
-libisofs6_1.2.2-1_amd64.deb
-libitm1_4.7.2-5_amd64.deb
-libiw30-udeb_30~pre9-8_amd64.udeb
-libiw30_30~pre9-8_amd64.deb
-libjack-jackd2-0_1.9.8~dfsg.4+20120529git007cdc37-5_amd64.deb
-libjas-java_2.4.3938-2_all.deb
-libjas-plotter-java_2.2.6+dfsg1-2_all.deb
-libjasper1_1.900.1-13_amd64.deb
-libjavascriptcoregtk-1.0-0_1.8.1-3.4_amd64.deb
-libjavascriptcoregtk-3.0-0_1.8.1-3.4_amd64.deb
-libjaxen-java_1.1.3-1_all.deb
-libjaxme-java_0.5.2+dfsg-6_all.deb
-libjaxp1.3-java_1.3.05-2_all.deb
-libjbig0_2.0-2_amd64.deb
-libjbig2dec0_0.11+20120125-1_amd64.deb
-libjcode-pm-perl_2.06-1_amd64.deb
-libjcommon-java_1.0.16-2_all.deb
-libjdom1-java_1.1.2+dfsg-2_all.deb
-libjfreechart-java_1.0.13-4_all.deb
-libjfugue-java_4.0.3-3_all.deb
-libjgoodies-forms-java_1.3.0-2_all.deb
-libjibx1.1-java_1.1.6a-3_all.deb
-libjim0debian2_0.73-3_amd64.deb
-libjlatexmath-java_0.9.7-1_all.deb
-libjline-java_1.0-2_all.deb
-libjpeg-progs_8d-1_amd64.deb
-libjpeg8-dev_8d-1_amd64.deb
-libjpeg8_8d-1_amd64.deb
-libjs-jquery_1.7.2+dfsg-1_all.deb
-libjs-sphinxdoc_1.1.3+dfsg-4_all.deb
-libjs-underscore_1.1.6-1+deb7u1_all.deb
-libjson-glib-1.0-0_0.14.2-1_amd64.deb
-libjson0_0.10-1.2_amd64.deb
-libjte1_1.19-1_amd64.deb
-libjtidy-java_7+svn20110807-4_all.deb
-libk3b6-extracodecs_2.0.2-6_amd64.deb
-libk3b6_2.0.2-6_amd64.deb
-libk5crypto3_1.10.1+dfsg-5+deb7u1_amd64.deb
-libkabc4_4.8.4-2_amd64.deb
-libkactivities-bin_4.8.4-1_amd64.deb
-libkactivities6_4.8.4-1_amd64.deb
-libkadm5clnt-mit8_1.10.1+dfsg-5+deb7u1_amd64.deb
-libkadm5srv-mit8_1.10.1+dfsg-5+deb7u1_amd64.deb
-libkasten1controllers1_4.8.4+dfsg-1_amd64.deb
-libkasten1core1_4.8.4+dfsg-1_amd64.deb
-libkasten1gui1_4.8.4+dfsg-1_amd64.deb
-libkasten1okteta1controllers1_4.8.4+dfsg-1_amd64.deb
-libkasten1okteta1core1_4.8.4+dfsg-1_amd64.deb
-libkasten1okteta1gui1_4.8.4+dfsg-1_amd64.deb
-libkate1_0.4.1-1_amd64.deb
-libkateinterfaces4_4.8.4-1_amd64.deb
-libkatepartinterfaces4_4.8.4-1_amd64.deb
-libkcal4_4.8.4-2_amd64.deb
-libkcalcore4_4.8.4-2_amd64.deb
-libkcalutils4_4.8.4-2_amd64.deb
-libkcddb4_4.8.4-2_amd64.deb
-libkcmutils4_4.8.4-4_amd64.deb
-libkdb5-6_1.10.1+dfsg-5+deb7u1_amd64.deb
-libkdcraw-data_4.8.4-1_all.deb
-libkdcraw20_4.8.4-1_amd64.deb
-libkde3support4_4.8.4-4_amd64.deb
-libkdeclarative5_4.8.4-4_amd64.deb
-libkdecorations4_4.8.4-6_amd64.deb
-libkdecore5_4.8.4-4_amd64.deb
-libkdeedu-data_4.8.4-1_all.deb
-libkdegames5a_4.8.4-3_amd64.deb
-libkdepim4_4.4.11.1+l10n-3+b1_amd64.deb
-libkdesu5_4.8.4-4_amd64.deb
-libkdeui5_4.8.4-4_amd64.deb
-libkdewebkit5_4.8.4-4_amd64.deb
-libkdnssd4_4.8.4-4_amd64.deb
-libkeduvocdocument4_4.8.4-1_amd64.deb
-libkemoticons4_4.8.4-4_amd64.deb
-libkephal4abi1_4.8.4-6_amd64.deb
-libkexiv2-10_4.8.4-1_amd64.deb
-libkexiv2-data_4.8.4-1_all.deb
-libkeyutils1_1.5.5-3_amd64.deb
-libkfile4_4.8.4-4_amd64.deb
-libkholidays4_4.8.4-2_amd64.deb
-libkhtml5_4.8.4-4_amd64.deb
-libkidletime4_4.8.4-4_amd64.deb
-libkimap4_4.8.4-2_amd64.deb
-libkimproxy4_4.8.4-4_amd64.deb
-libkio5_4.8.4-4_amd64.deb
-libkipi-data_4.8.4-1_all.deb
-libkipi8_4.8.4-1_amd64.deb
-libkiten4abi1_4.8.4-1_amd64.deb
-libkjsapi4_4.8.4-4_amd64.deb
-libkjsembed4_4.8.4-4_amd64.deb
-libkldap4_4.8.4-2_amd64.deb
-libkleo4_4.4.11.1+l10n-3+b1_amd64.deb
-libklibc_2.0.1-3.1_amd64.deb
-libkmediaplayer4_4.8.4-4_amd64.deb
-libkmime4_4.8.4-2_amd64.deb
-libkmod2-udeb_9-3_amd64.udeb
-libkmod2_9-3_amd64.deb
-libknewstuff2-4_4.8.4-4_amd64.deb
-libknewstuff3-4_4.8.4-4_amd64.deb
-libknotifyconfig4_4.8.4-4_amd64.deb
-libkntlm4_4.8.4-4_amd64.deb
-libkonq-common_4.8.4-2_amd64.deb
-libkonq5-templates_4.8.4-2_all.deb
-libkonq5abi1_4.8.4-2_amd64.deb
-libkonqsidebarplugin4a_4.8.4-2_amd64.deb
-libkontactinterface4_4.8.4-2_amd64.deb
-libkopete4_4.8.4-1+b1_amd64.deb
-libkparts4_4.8.4-4_amd64.deb
-libkpathsea6_2012.20120628-4_amd64.deb
-libkpgp4_4.4.11.1+l10n-3+b1_amd64.deb
-libkpimidentities4_4.8.4-2_amd64.deb
-libkpimtextedit4_4.8.4-2_amd64.deb
-libkpimutils4_4.8.4-2_amd64.deb
-libkprintutils4_4.8.4-4_amd64.deb
-libkpty4_4.8.4-4_amd64.deb
-libkrb5-26-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-libkrb5-3_1.10.1+dfsg-5+deb7u1_amd64.deb
-libkrb5support0_1.10.1+dfsg-5+deb7u1_amd64.deb
-libkresources4_4.8.4-2_amd64.deb
-libkrosscore4_4.8.4-4_amd64.deb
-libkrossui4_4.8.4-4_amd64.deb
-libksane-data_4.8.4-1_all.deb
-libksane0_4.8.4-1_amd64.deb
-libksba8_1.2.0-2_amd64.deb
-libkscreensaver5_4.8.4-6_amd64.deb
-libksgrd4_4.8.4-6_amd64.deb
-libksieve4_4.4.11.1+l10n-3+b1_amd64.deb
-libksignalplotter4_4.8.4-6_amd64.deb
-libktexteditor4_4.8.4-4_amd64.deb
-libktnef4_4.8.4-2_amd64.deb
-libkunitconversion4_4.8.4-4_amd64.deb
-libkutils4_4.8.4-4_amd64.deb
-libkwineffects1abi3_4.8.4-6_amd64.deb
-libkwinglutils1_4.8.4-6_amd64.deb
-libkworkspace4abi1_4.8.4-6_amd64.deb
-liblapack3_3.4.1+dfsg-1_amd64.deb
-liblastfm0_0.4.0~git20090710-2_amd64.deb
-liblcms1_1.19.dfsg-1.2_amd64.deb
-liblcms2-2_2.2+git20110628-2.2_amd64.deb
-libldap-2.4-2_2.4.31-1+nmu2_amd64.deb
-libldb1_1.1.6-1_amd64.deb
-liblensfun-data_0.2.5-2_all.deb
-liblensfun0_0.2.5-2_amd64.deb
-liblightdm-gobject-1-0_1.2.2-4_amd64.deb
-liblinear-tools_1.8+dfsg-1_amd64.deb
-liblinear1_1.8+dfsg-1_amd64.deb
-liblircclient0_0.9.0~pre1-1_amd64.deb
-liblist-moreutils-perl_0.33-1+b1_amd64.deb
-liblo7_0.26~repack-7_amd64.deb
-liblocale-gettext-perl_1.05-7+b1_amd64.deb
-liblockfile-bin_1.09-5_amd64.deb
-liblockfile1_1.09-5_amd64.deb
-liblog-dispatch-perl_2.32-1_all.deb
-liblog-log4perl-perl_1.29-1_all.deb
-liblog4j1.2-java_1.2.16-3_all.deb
-libloudmouth1-0_1.4.3-9_amd64.deb
-liblouis-data_2.4.1-1_all.deb
-liblouis2_2.4.1-1_amd64.deb
-liblqr-1-0_0.4.1-2_amd64.deb
-liblrdf0_0.4.0-5_amd64.deb
-libltdl7_2.4.2-1.1_amd64.deb
-liblua5.1-0_5.1.5-4_amd64.deb
-liblucene2-java_2.9.4+ds1-4_all.deb
-liblvm2app2.2_2.02.95-7_amd64.deb
-liblwp-mediatypes-perl_6.02-1_all.deb
-liblwp-protocol-https-perl_6.03-1_all.deb
-liblwp-useragent-determined-perl_1.06-1_all.deb
-liblwres80_9.8.4.dfsg.P1-6+nmu2_amd64.deb
-liblzma5_5.1.1alpha+20120614-2_amd64.deb
-liblzo2-2_2.06-1_amd64.deb
-libm17n-0_1.6.3-2_amd64.deb
-libmaa3_1.3.1-1_amd64.deb
-libmad0-dev_0.15.1b-7_amd64.deb
-libmad0_0.15.1b-7_amd64.deb
-libmagic1_5.11-2_amd64.deb
-libmagick++5_6.7.7.10-5_amd64.deb
-libmagickcore5_6.7.7.10-5_amd64.deb
-libmagickwand5_6.7.7.10-5_amd64.deb
-libmail-imapclient-perl_3.31-2_all.deb
-libmail-sendmail-perl_0.79.16-1_all.deb
-libmailtools-perl_2.09-1_all.deb
-libmailtransport4_4.8.4-2_amd64.deb
-libmaloc1_0.2-2.3_amd64.deb
-libmarblewidget13_4.8.4-3_amd64.deb
-libmath-calc-units-perl_1.07-1_all.deb
-libmatroska5_1.3.0-2_amd64.deb
-libmcrypt4_2.5.8-3.1_amd64.deb
-libmeanwhile1_1.0.2-4_amd64.deb
-libmediastreamer1_3.5.2-10_amd64.deb
-libmemcached10_1.0.8-1_amd64.deb
-libmenu-cache1_0.3.3-1_amd64.deb
-libmessagecore4_4.4.11.1+l10n-3+b1_amd64.deb
-libmessagelist4_4.4.11.1+l10n-3+b1_amd64.deb
-libmetacity-private0a_2.34.3-4_amd64.deb
-libmhash2_0.9.9.9-1.1_amd64.deb
-libmicroblog4_4.8.4-2_amd64.deb
-libmikmod2-dev_3.1.12-5_amd64.deb
-libmikmod2_3.1.12-5_amd64.deb
-libmimelib4_4.4.11.1+l10n-3+b1_amd64.deb
-libmimic0_1.0.4-2.1_amd64.deb
-libminiupnpc5_1.5-2_amd64.deb
-libmission-control-plugins0_5.12.3-1_amd64.deb
-libmlt++3_0.8.0-4_amd64.deb
-libmlt-data_0.8.0-4_all.deb
-libmlt5_0.8.0-4_amd64.deb
-libmms0_0.6.2-3_amd64.deb
-libmng1_1.0.10-3_amd64.deb
-libmodplug-dev_0.8.8.4-3_all.deb
-libmodplug1_0.8.8.4-3_amd64.deb
-libmodule-implementation-perl_0.06-1_all.deb
-libmodule-runtime-perl_0.013-1_all.deb
-libmono-addins-gui0.2-cil_0.6.2-2_all.deb
-libmono-addins0.2-cil_0.6.2-2_all.deb
-libmono-cairo4.0-cil_2.10.8.1-8_all.deb
-libmono-corlib4.0-cil_2.10.8.1-8_all.deb
-libmono-i18n-west4.0-cil_2.10.8.1-8_all.deb
-libmono-i18n4.0-cil_2.10.8.1-8_all.deb
-libmono-posix4.0-cil_2.10.8.1-8_all.deb
-libmono-security4.0-cil_2.10.8.1-8_all.deb
-libmono-sharpzip4.84-cil_2.10.8.1-8_all.deb
-libmono-system-configuration4.0-cil_2.10.8.1-8_all.deb
-libmono-system-core4.0-cil_2.10.8.1-8_all.deb
-libmono-system-drawing4.0-cil_2.10.8.1-8_all.deb
-libmono-system-security4.0-cil_2.10.8.1-8_all.deb
-libmono-system-xml4.0-cil_2.10.8.1-8_all.deb
-libmono-system4.0-cil_2.10.8.1-8_all.deb
-libmopac7-1gf_1.15-5_amd64.deb
-libmount1-udeb_2.20.1-5.3_amd64.udeb
-libmount1_2.20.1-5.3_amd64.deb
-libmowgli2_1.0.0-1_amd64.deb
-libmozjs10d_10.0.12esr-1_amd64.deb
-libmozjs17d_17.0.6esr-1~deb7u1_amd64.deb
-libmozjs185-1.0_1.8.5-1.0.0+dfsg-4_amd64.deb
-libmp3lame0_3.99.5+repack1-3_amd64.deb
-libmpc2_0.9-4_amd64.deb
-libmpcdec6_0.1~r459-4_amd64.deb
-libmpeg2-4_0.4.1-3_amd64.deb
-libmpfr4_3.1.0-5_amd64.deb
-libmpg123-0_1.14.4-1_amd64.deb
-libmsn0.3_4.2-2_amd64.deb
-libmtdev1-udeb_1.1.2-1_amd64.udeb
-libmtdev1_1.1.2-1_amd64.deb
-libmtp-common_1.1.3-35-g0ece104-5_all.deb
-libmtp-runtime_1.1.3-35-g0ece104-5_amd64.deb
-libmtp9_1.1.3-35-g0ece104-5_amd64.deb
-libmuparser2_2.1.0-3_amd64.deb
-libmusicbrainz3-6_3.0.2-2.1_amd64.deb
-libmusicbrainz5-0_5.0.1-2_amd64.deb
-libmutter0_3.4.1-5_amd64.deb
-libmx-1.0-2_1.4.6-1_amd64.deb
-libmx-bin_1.4.6-1_amd64.deb
-libmx-common_1.4.6-1_all.deb
-libmysqlclient18_5.5.31+dfsg-0+wheezy1_amd64.deb
-libmythes-1.2-0_1.2.2-1_amd64.deb
-libnagios-plugin-perl_0.36-1_all.deb
-libnatpmp1_20110808-3_amd64.deb
-libnautilus-extension1a_3.4.2-1+build1_amd64.deb
-libnb-org-openide-util-java_7.0.1+dfsg1-5_all.deb
-libnb-org-openide-util-lookup-java_7.0.1+dfsg1-5_all.deb
-libncurses5_5.9-10_amd64.deb
-libncursesw5_5.9-10_amd64.deb
-libneon27-gnutls_0.29.6-3_amd64.deb
-libnepomuk4_4.8.4-4_amd64.deb
-libnepomukquery4a_4.8.4-4_amd64.deb
-libnepomukutils4_4.8.4-4_amd64.deb
-libnet-cidr-perl_0.15-1_all.deb
-libnet-daemon-perl_0.48-1_all.deb
-libnet-dbus-perl_1.0.0-1+b1_amd64.deb
-libnet-dns-perl_0.66-2+b2_amd64.deb
-libnet-domain-tld-perl_1.69-1_all.deb
-libnet-http-perl_6.03-2_all.deb
-libnet-ip-perl_1.25-3_all.deb
-libnet-ldap-perl_0.4400-1_all.deb
-libnet-libidn-perl_0.12.ds-1+b3_amd64.deb
-libnet-netmask-perl_1.9016-1_all.deb
-libnet-server-perl_2.006-1_all.deb
-libnet-smtp-tls-perl_0.12-1_all.deb
-libnet-snmp-perl_6.0.1-2_all.deb
-libnet-ssleay-perl_1.48-1+b1_amd64.deb
-libnet1_1.1.4-2.1_amd64.deb
-libnetcdfc7_4.1.3-6+b1_amd64.deb
-libnetfilter-conntrack3_1.0.1-1_amd64.deb
-libnetpbm10_10.0-15+b1_amd64.deb
-libnettle4_2.4-3_amd64.deb
-libnewt0.52_0.52.14-11.1_amd64.deb
-libnfnetlink0_1.0.0-1.1_amd64.deb
-libnfsidmap2_0.25-4_amd64.deb
-libnice10_0.1.2-1_amd64.deb
-libnl-3-200-udeb_3.2.7-4_amd64.udeb
-libnl-3-200_3.2.7-4_amd64.deb
-libnl-genl-3-200-udeb_3.2.7-4_amd64.udeb
-libnl-genl-3-200_3.2.7-4_amd64.deb
-libnl-route-3-200_3.2.7-4_amd64.deb
-libnl1_1.1-7_amd64.deb
-libnm-glib-vpn1_0.9.4.0-10_amd64.deb
-libnm-glib4_0.9.4.0-10_amd64.deb
-libnm-gtk-common_0.9.4.1-5_all.deb
-libnm-gtk0_0.9.4.1-5_amd64.deb
-libnm-util2_0.9.4.0-10_amd64.deb
-libnotify-bin_0.7.5-1_amd64.deb
-libnotify4_0.7.5-1_amd64.deb
-libnova-0.14-0_0.14.0-2_amd64.deb
-libnspr4-0d_4.9.2-1_amd64.deb
-libnspr4_4.9.2-1_amd64.deb
-libnss-dns-udeb_2.13-38_amd64.udeb
-libnss-files-udeb_2.13-38_amd64.udeb
-libnss-ldapd_0.8.10-4_amd64.deb
-libnss-mdns_0.10-3.2_amd64.deb
-libnss-myhostname_0.3-4_amd64.deb
-libnss-sss_1.8.4-2_amd64.deb
-libnss-winbind_3.6.6-6_amd64.deb
-libnss3-1d_3.14.3-1_amd64.deb
-libnss3_3.14.3-1_amd64.deb
-libntrack-qt4-1_016-1.1_amd64.deb
-libntrack0_016-1.1_amd64.deb
-libnuma1_2.0.8~rc4-1_amd64.deb
-liboauth0_0.9.4-3.1_amd64.deb
-libobrender27_3.5.0-7_amd64.deb
-libobt0_3.5.0-7_amd64.deb
-libodbc1_2.2.14p2-5_amd64.deb
-libofa0_0.9.3-5_amd64.deb
-libogg-dev_1.3.0-4_amd64.deb
-libogg0_1.3.0-4_amd64.deb
-liboggz2_1.1.1-1_amd64.deb
-liboglappth2_1.0.0-2_amd64.deb
-liboil0.3_0.3.17-2_amd64.deb
-libokteta1core1_4.8.4+dfsg-1_amd64.deb
-libokteta1gui1_4.8.4+dfsg-1_amd64.deb
-libokularcore1_4.8.4-3+b1_amd64.deb
-libonig2_5.9.1-1_amd64.deb
-libopenal-data_1.14-4_all.deb
-libopenal1_1.14-4_amd64.deb
-libopenbabel4_2.3.1+dfsg-4_amd64.deb
-libopencore-amrnb0_0.1.3-2_amd64.deb
-libopencore-amrwb0_0.1.3-2_amd64.deb
-libopencv-calib3d2.3_2.3.1-11_amd64.deb
-libopencv-contrib2.3_2.3.1-11_amd64.deb
-libopencv-core2.3_2.3.1-11_amd64.deb
-libopencv-features2d2.3_2.3.1-11_amd64.deb
-libopencv-flann2.3_2.3.1-11_amd64.deb
-libopencv-highgui2.3_2.3.1-11_amd64.deb
-libopencv-imgproc2.3_2.3.1-11_amd64.deb
-libopencv-legacy2.3_2.3.1-11_amd64.deb
-libopencv-ml2.3_2.3.1-11_amd64.deb
-libopencv-objdetect2.3_2.3.1-11_amd64.deb
-libopencv-video2.3_2.3.1-11_amd64.deb
-libopenexr6_1.6.1-6_amd64.deb
-libopenjpeg2_1.3+dfsg-4.6_amd64.deb
-libopenmpi1.3_1.4.5-1_amd64.deb
-libopenobex1_1.5-2_amd64.deb
-libopenraw1_0.0.9-3+b1_amd64.deb
-libopts25_5.12-0.1_amd64.deb
-libopus0_0.9.14+20120615-1+nmu1_amd64.deb
-liborbit2_2.14.19-0.1_amd64.deb
-liborc-0.4-0_0.4.16-2_amd64.deb
-libortp8_3.5.2-10_amd64.deb
-libotf0_0.9.12-2_amd64.deb
-libotr2_3.2.1-1_amd64.deb
-libp11-kit0_0.12-3_amd64.deb
-libpackage-deprecationmanager-perl_0.13-1_all.deb
-libpackage-stash-perl_0.33-1_all.deb
-libpackage-stash-xs-perl_0.24-1+b1_amd64.deb
-libpackagekit-glib2-14_0.7.6-3_amd64.deb
-libpam-cap_2.22-1.2_amd64.deb
-libpam-ck-connector_0.4.5-3.1_amd64.deb
-libpam-cracklib_1.1.3-7.1_amd64.deb
-libpam-gnome-keyring_3.4.1-5_amd64.deb
-libpam-krb5_4.6-1_amd64.deb
-libpam-ldapd_0.8.10-4_amd64.deb
-libpam-mklocaluser_0.8_all.deb
-libpam-modules-bin_1.1.3-7.1_amd64.deb
-libpam-modules_1.1.3-7.1_amd64.deb
-libpam-python_1.0.2-1_amd64.deb
-libpam-runtime_1.1.3-7.1_all.deb
-libpam-sss_1.8.4-2_amd64.deb
-libpam-tmpdir_0.09_amd64.deb
-libpam-winbind_3.6.6-6_amd64.deb
-libpam0g_1.1.3-7.1_amd64.deb
-libpanel-applet-4-0_3.4.2.1-4_amd64.deb
-libpango-perl_1.222-1+b1_amd64.deb
-libpango1.0-0_1.30.0-1_amd64.deb
-libpango1.0-dev_1.30.0-1_amd64.deb
-libpangomm-1.4-1_2.28.4-1_amd64.deb
-libpano13-2_2.9.18+dfsg-5_amd64.deb
-libpano13-bin_2.9.18+dfsg-5_amd64.deb
-libpaper-utils_1.1.24+nmu2_amd64.deb
-libpaper1_1.1.24+nmu2_amd64.deb
-libparams-classify-perl_0.013-4_amd64.deb
-libparams-util-perl_1.07-1_amd64.deb
-libparams-validate-perl_1.06-1_amd64.deb
-libparse-debianchangelog-perl_1.2.0-1_all.deb
-libparse-recdescent-perl_1.967009+dfsg-1_all.deb
-libparted0-udeb_2.3-12_amd64.udeb
-libparted0debian1_2.3-12_amd64.deb
-libpath-utils1_0.1.3-2_amd64.deb
-libpcap0.8_1.3.0-1_amd64.deb
-libpci3-udeb_3.1.9-6_amd64.udeb
-libpci3_3.1.9-6_amd64.deb
-libpciaccess0_0.13.1-2_amd64.deb
-libpcre3-dev_8.30-5_amd64.deb
-libpcre3_8.30-5_amd64.deb
-libpcrecpp0_8.30-5_amd64.deb
-libpcsclite1_1.8.4-1_amd64.deb
-libpeas-1.0-0_1.4.0-2_amd64.deb
-libpeas-common_1.4.0-2_all.deb
-libperl5.14_5.14.2-21_amd64.deb
-libphonon4_4.6.0.0-3_amd64.deb
-libpipeline1_1.2.1-1_amd64.deb
-libpixman-1-0_0.26.0-4_amd64.deb
-libpixman-1-dev_0.26.0-4_amd64.deb
-libpkcs11-helper1_1.09-1_amd64.deb
-libplasma-geolocation-interface4_4.8.4-6_amd64.deb
-libplasma3_4.8.4-4_amd64.deb
-libplasmaclock4abi3_4.8.4-6_amd64.deb
-libplasmagenericshell4_4.8.4-6_amd64.deb
-libplist1_1.8-1_amd64.deb
-libplot2c2_2.6-3_amd64.deb
-libplrpc-perl_0.2020-2_all.deb
-libpng12-0_1.2.49-1_amd64.deb
-libpng12-dev_1.2.49-1_amd64.deb
-libpodofo0.9.0_0.9.0-1.1+b1_amd64.deb
-libpolkit-agent-1-0_0.105-3_amd64.deb
-libpolkit-backend-1-0_0.105-3_amd64.deb
-libpolkit-gobject-1-0_0.105-3_amd64.deb
-libpolkit-qt-1-1_0.103.0-1_amd64.deb
-libpoppler-glib8_0.18.4-6_amd64.deb
-libpoppler-qt4-3_0.18.4-6_amd64.deb
-libpoppler19_0.18.4-6_amd64.deb
-libpopt0-udeb_1.16-7_amd64.udeb
-libpopt0_1.16-7_amd64.deb
-libportaudio2_19+svn20111121-1_amd64.deb
-libportmidi0_184-2.1_amd64.deb
-libportsmf0_0.1~svn20101010-3_amd64.deb
-libpostproc52_0.8.6-1_amd64.deb
-libpq5_9.1.9-1_amd64.deb
-libprison0_1.0+dfsg-1_amd64.deb
-libprocesscore4abi1_4.8.4-6_amd64.deb
-libprocessui4a_4.8.4-6_amd64.deb
-libprocps0_3.3.3-3_amd64.deb
-libproxy-tools_0.3.1-6_amd64.deb
-libproxy0_0.3.1-6_amd64.deb
-libpst4_0.6.54-4.1_amd64.deb
-libpstoedit0c2a_3.60-2+b1_amd64.deb
-libptexenc1_2012.20120628-4_amd64.deb
-libpth20_2.0.7-16_amd64.deb
-libpthread-stubs0-dev_0.3-3_amd64.deb
-libpthread-stubs0-udeb_0.3-3_amd64.udeb
-libpthread-stubs0_0.3-3_amd64.deb
-libpulse-dev_2.0-6.1_amd64.deb
-libpulse-mainloop-glib0_2.0-6.1_amd64.deb
-libpulse0_2.0-6.1_amd64.deb
-libpurple-bin_2.10.6-3_all.deb
-libpurple0_2.10.6-3_amd64.deb
-libpython2.7_2.7.3-6_amd64.deb
-libqalculate5-data_0.9.7-8_all.deb
-libqalculate5_0.9.7-8_amd64.deb
-libqca2-plugin-ossl_2.0.0~beta3-2_amd64.deb
-libqca2_2.0.3-4_amd64.deb
-libqdbm14_1.8.78-2_amd64.deb
-libqgpgme1_4.8.4-2_amd64.deb
-libqimageblitz4_0.0.6-4_amd64.deb
-libqjson0_0.7.1-7_amd64.deb
-libqrencode3_3.3.0-2_amd64.deb
-libqt4-dbus_4.8.2+dfsg-11_amd64.deb
-libqt4-declarative_4.8.2+dfsg-11_amd64.deb
-libqt4-designer_4.8.2+dfsg-11_amd64.deb
-libqt4-help_4.8.2+dfsg-11_amd64.deb
-libqt4-network_4.8.2+dfsg-11_amd64.deb
-libqt4-opengl_4.8.2+dfsg-11_amd64.deb
-libqt4-qt3support_4.8.2+dfsg-11_amd64.deb
-libqt4-script_4.8.2+dfsg-11_amd64.deb
-libqt4-scripttools_4.8.2+dfsg-11_amd64.deb
-libqt4-sql-mysql_4.8.2+dfsg-11_amd64.deb
-libqt4-sql-sqlite_4.8.2+dfsg-11_amd64.deb
-libqt4-sql_4.8.2+dfsg-11_amd64.deb
-libqt4-svg_4.8.2+dfsg-11_amd64.deb
-libqt4-test_4.8.2+dfsg-11_amd64.deb
-libqt4-xml_4.8.2+dfsg-11_amd64.deb
-libqt4-xmlpatterns_4.8.2+dfsg-11_amd64.deb
-libqtassistantclient4_4.6.3-4_amd64.deb
-libqtcore4_4.8.2+dfsg-11_amd64.deb
-libqtdbus4_4.8.2+dfsg-11_amd64.deb
-libqtgui4_4.8.2+dfsg-11_amd64.deb
-libqtlocation1_1.2.0-3_amd64.deb
-libqtruby4shared2_4.8.4-1_amd64.deb
-libqtscript4-core_0.2.0-1_amd64.deb
-libqtscript4-gui_0.2.0-1_amd64.deb
-libqtscript4-network_0.2.0-1_amd64.deb
-libqtscript4-sql_0.2.0-1_amd64.deb
-libqtscript4-uitools_0.2.0-1_amd64.deb
-libqtscript4-xml_0.2.0-1_amd64.deb
-libqtwebkit4_2.2.1-5_amd64.deb
-libquadmath0_4.7.2-5_amd64.deb
-libquicktime2_1.2.4-3_amd64.deb
-libquvi-scripts_0.4.8-3_all.deb
-libquvi7_0.4.1-1_amd64.deb
-libradiusclient-ng2_0.5.6-1.1_amd64.deb
-libraptor1_1.4.21-7.1_amd64.deb
-libraptor2-0_2.0.8-2_amd64.deb
-librarian0_0.8.1-5_amd64.deb
-librasqal3_0.9.29-1_amd64.deb
-libraw1394-11_2.0.9-1_amd64.deb
-libraw5_0.14.6-2_amd64.deb
-librdf0_1.0.15-1+b1_amd64.deb
-libreadline5_5.2+dfsg-1_amd64.deb
-libreadline6_6.2+dfsg-0.1_amd64.deb
-libreadonly-perl_1.03-4_all.deb
-libreadonly-xs-perl_1.04-2+b3_amd64.deb
-librecad-data_1.0.2+nolibs-1_all.deb
-librecad_1.0.2+nolibs-1_amd64.deb
-librecode0_3.6-20_amd64.deb
-libref-array1_0.1.3-2_amd64.deb
-libregexp-common-perl_2011121001-1_all.deb
-libregexp-java_1.5-3_all.deb
-libreoffice-base-core_3.5.4+dfsg-4_amd64.deb
-libreoffice-base_3.5.4+dfsg-4_amd64.deb
-libreoffice-calc_3.5.4+dfsg-4_amd64.deb
-libreoffice-common_3.5.4+dfsg-4_all.deb
-libreoffice-core_3.5.4+dfsg-4_amd64.deb
-libreoffice-draw_3.5.4+dfsg-4_amd64.deb
-libreoffice-emailmerge_3.5.4+dfsg-4_all.deb
-libreoffice-filter-binfilter_3.5.4+dfsg-4_amd64.deb
-libreoffice-filter-mobiledev_3.5.4+dfsg-4_all.deb
-libreoffice-gnome_3.5.4+dfsg-4_amd64.deb
-libreoffice-gtk_3.5.4+dfsg-4_amd64.deb
-libreoffice-help-da_3.5.4+dfsg-4_all.deb
-libreoffice-help-de_3.5.4+dfsg-4_all.deb
-libreoffice-help-el_3.5.4+dfsg-4_all.deb
-libreoffice-help-es_3.5.4+dfsg-4_all.deb
-libreoffice-help-fr_3.5.4+dfsg-4_all.deb
-libreoffice-help-it_3.5.4+dfsg-4_all.deb
-libreoffice-help-ja_3.5.4+dfsg-4_all.deb
-libreoffice-help-pt-br_3.5.4+dfsg-4_all.deb
-libreoffice-help-sv_3.5.4+dfsg-4_all.deb
-libreoffice-help-zh-tw_3.5.4+dfsg-4_all.deb
-libreoffice-impress_3.5.4+dfsg-4_amd64.deb
-libreoffice-java-common_3.5.4+dfsg-4_all.deb
-libreoffice-kde_3.5.4+dfsg-4_amd64.deb
-libreoffice-l10n-ca_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-da_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-de_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-el_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-en-za_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-es_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-fr_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-he_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-it_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-ja_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-nb_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-nl_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-nn_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-pt-br_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-sv_3.5.4+dfsg-4_all.deb
-libreoffice-l10n-zh-tw_3.5.4+dfsg-4_all.deb
-libreoffice-math_3.5.4+dfsg-4_amd64.deb
-libreoffice-report-builder-bin_3.5.4+dfsg-4_amd64.deb
-libreoffice-style-crystal_3.5.4+dfsg-4_all.deb
-libreoffice-style-galaxy_3.5.4+dfsg-4_all.deb
-libreoffice-style-oxygen_3.5.4+dfsg-4_all.deb
-libreoffice-style-tango_3.5.4+dfsg-4_all.deb
-libreoffice-writer_3.5.4+dfsg-4_amd64.deb
-libreoffice_3.5.4+dfsg-4_amd64.deb
-libresid-builder0c2a_2.1.1-14_amd64.deb
-librest-0.7-0_0.7.12-3_amd64.deb
-librest-extras-0.7-0_0.7.12-3_amd64.deb
-librhino-java_1.7R3-5_all.deb
-librhythmbox-core6_2.97-2.1_amd64.deb
-libroken18-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-librpm3_4.10.0-5+deb7u1_amd64.deb
-librpmbuild3_4.10.0-5+deb7u1_amd64.deb
-librpmio3_4.10.0-5+deb7u1_amd64.deb
-librpmsign1_4.10.0-5+deb7u1_amd64.deb
-librrd4_1.4.7-2_amd64.deb
-librrds-perl_1.4.7-2_amd64.deb
-librsvg2-2_2.36.1-1_amd64.deb
-librsvg2-bin_2.36.1-1_amd64.deb
-librsvg2-common_2.36.1-1_amd64.deb
-librsync1_0.9.7-9_amd64.deb
-librtaudio4_4.0.10~ds0-2_amd64.deb
-librtmidi1_1.0.15~ds0-2_amd64.deb
-librtmp0_2.4+20111222.git4e06e21-1_amd64.deb
-librubberband2_1.3-1.3_amd64.deb
-libruby1.8_1.8.7.358-7_amd64.deb
-libruby1.9.1_1.9.3.194-8.1_amd64.deb
-libsamplerate0_0.1.8-5_amd64.deb
-libsane-common_1.0.22-7.4_amd64.deb
-libsane-extras-common_1.0.22.2_amd64.deb
-libsane-extras_1.0.22.2_amd64.deb
-libsane-hpaio_3.12.6-3.1_amd64.deb
-libsane_1.0.22-7.4_amd64.deb
-libsasl2-2_2.1.25.dfsg1-6_amd64.deb
-libsasl2-modules-gssapi-mit_2.1.25.dfsg1-6_amd64.deb
-libsasl2-modules-ldap_2.1.25.dfsg1-6_amd64.deb
-libsasl2-modules_2.1.25.dfsg1-6_amd64.deb
-libsbsms10_2.0.1-1_amd64.deb
-libsc-data_2.3.1-14_all.deb
-libsc7_2.3.1-14_amd64.deb
-libschroedinger-1.0-0_1.0.11-2_amd64.deb
-libscim8c2a_1.4.13-5_amd64.deb
-libsdl-image1.2_1.2.12-2_amd64.deb
-libsdl-mixer1.2-dev_1.2.12-3_amd64.deb
-libsdl-mixer1.2_1.2.12-3_amd64.deb
-libsdl-net1.2_1.2.8-2_amd64.deb
-libsdl-pango1_0.1.2-6_amd64.deb
-libsdl-ttf2.0-0_2.0.11-2_amd64.deb
-libsdl1.2-dev_1.2.15-5_amd64.deb
-libsdl1.2debian_1.2.15-5_amd64.deb
-libseed-gtk3-0_3.2.0-2_amd64.deb
-libselinux1_2.1.9-5_amd64.deb
-libsemanage-common_2.1.6-6_all.deb
-libsemanage1_2.1.6-6_amd64.deb
-libsensors4_3.3.2-2_amd64.deb
-libsepol1_2.1.4-3_amd64.deb
-libservlet2.5-java_6.0.35-6_all.deb
-libsexy2_0.1.11-2+b1_amd64.deb
-libsgutils2-2_1.33-1_amd64.deb
-libshout3_2.2.2-8_amd64.deb
-libsidplay1_1.36.59-5_amd64.deb
-libsidplay2_2.1.1-14_amd64.deb
-libsigc++-2.0-0c2a_2.2.10-0.2_amd64.deb
-libsigsegv2_2.9-4_amd64.deb
-libslang2-dev_2.2.4-15_amd64.deb
-libslang2_2.2.4-15_amd64.deb
-libslp1_1.2.1-9_amd64.deb
-libslv2-9_0.6.6+dfsg1-2_amd64.deb
-libsm-dev_1.2.1-2_amd64.deb
-libsm6_1.2.1-2_amd64.deb
-libsmbclient_3.6.6-6_amd64.deb
-libsmf0_1.3-2_amd64.deb
-libsmi2ldbl_0.4.8+dfsg2-7_amd64.deb
-libsmokebase3_4.8.4-1_amd64.deb
-libsmokekdecore4-3_4.8.4-1_amd64.deb
-libsmokekdeui4-3_4.8.4-1_amd64.deb
-libsmokekfile3_4.8.4-1_amd64.deb
-libsmokekhtml3_4.8.4-1_amd64.deb
-libsmokekio3_4.8.4-1_amd64.deb
-libsmokeknewstuff2-3_4.8.4-1_amd64.deb
-libsmokeknewstuff3-3_4.8.4-1_amd64.deb
-libsmokekparts3_4.8.4-1_amd64.deb
-libsmokektexteditor3_4.8.4-1_amd64.deb
-libsmokekutils3_4.8.4-1_amd64.deb
-libsmokenepomuk3_4.8.4-1_amd64.deb
-libsmokeplasma3_4.8.4-1_amd64.deb
-libsmokeqtcore4-3_4.8.4-1_amd64.deb
-libsmokeqtdbus4-3_4.8.4-1_amd64.deb
-libsmokeqtgui4-3_4.8.4-1_amd64.deb
-libsmokeqtnetwork4-3_4.8.4-1_amd64.deb
-libsmokeqtopengl4-3_4.8.4-1_amd64.deb
-libsmokeqtsql4-3_4.8.4-1_amd64.deb
-libsmokeqtsvg4-3_4.8.4-1_amd64.deb
-libsmokeqtwebkit4-3_4.8.4-1_amd64.deb
-libsmokeqtxml4-3_4.8.4-1_amd64.deb
-libsmokesolid3_4.8.4-1_amd64.deb
-libsmpeg0_0.4.5+cvs20030824-5_amd64.deb
-libsndfile1_1.0.25-5_amd64.deb
-libsnmp-base_5.4.3~dfsg-2.7_all.deb
-libsnmp15_5.4.3~dfsg-2.7_amd64.deb
-libsocialweb-client2_0.25.20-2.1_amd64.deb
-libsocialweb-common_0.25.20-2.1_all.deb
-libsocialweb-service_0.25.20-2.1_amd64.deb
-libsocialweb0_0.25.20-2.1_amd64.deb
-libsocket6-perl_0.23-1+b2_amd64.deb
-libsofia-sip-ua-glib3_1.12.11+20110422-1_amd64.deb
-libsofia-sip-ua0_1.12.11+20110422-1_amd64.deb
-libsolid4_4.8.4-4_amd64.deb
-libsolidcontrol4abi2_4.8.4-6_amd64.deb
-libsolidcontrolifaces4abi2_4.8.4-6_amd64.deb
-libsonic0_0.1.17-1.1_amd64.deb
-libsoprano4_2.7.6+dfsg.1-2wheezy1_amd64.deb
-libsoundtouch0_1.6.0-3_amd64.deb
-libsoup-gnome2.4-1_2.38.1-2_amd64.deb
-libsoup2.4-1_2.38.1-2_amd64.deb
-libsox-fmt-alsa_14.4.0-3_amd64.deb
-libsox-fmt-base_14.4.0-3_amd64.deb
-libsox2_14.4.0-3_amd64.deb
-libspandsp2_0.0.6~pre20-3.1_amd64.deb
-libspectre1_0.2.7-2_amd64.deb
-libspeechd2_0.7.1-6.2_amd64.deb
-libspeex1_1.2~rc1-7_amd64.deb
-libspeexdsp1_1.2~rc1-7_amd64.deb
-libspnav0_0.2.2-1_amd64.deb
-libsqlite3-0_3.7.13-1+deb7u1_amd64.deb
-libsrtp0_1.4.4+20100615~dfsg-2_amd64.deb
-libss2_1.42.5-1.1_amd64.deb
-libssh-4_0.5.4-1_amd64.deb
-libssh2-1_1.4.2-1.1_amd64.deb
-libssl1.0.0_1.0.1e-2_amd64.deb
-libstartup-notification0_0.12-1_amd64.deb
-libstdc++6-4.7-dev_4.7.2-5_amd64.deb
-libstdc++6_4.7.2-5_amd64.deb
-libstk0c2a_4.4.3-2_amd64.deb
-libstreamanalyzer0_0.7.7-3_amd64.deb
-libstreams0_0.7.7-3_amd64.deb
-libsub-install-perl_0.926-1_all.deb
-libsub-name-perl_0.05-1+b2_amd64.deb
-libsublime5_1.3.1-2_amd64.deb
-libsvga1-dev_1.4.3-33_amd64.deb
-libsvga1_1.4.3-33_amd64.deb
-libsvm-tools_3.12-1_amd64.deb
-libsvn1_1.6.17dfsg-4+deb7u3_amd64.deb
-libswitch-perl_2.16-2_all.deb
-libswscale2_0.8.6-1_amd64.deb
-libsyndication4_4.8.4-2_amd64.deb
-libsys-hostname-long-perl_1.4-2_all.deb
-libsysfs2-udeb_2.1.0+repack-2_amd64.udeb
-libsysfs2_2.1.0+repack-2_amd64.deb
-libsystemd-daemon0_44-11_amd64.deb
-libsystemd-login0_44-11_amd64.deb
-libt1-5_5.1.2-3.6_amd64.deb
-libtablelayout-java_20090826-2_all.deb
-libtag-extras1_1.0.1-3_amd64.deb
-libtag1-vanilla_1.7.2-1_amd64.deb
-libtag1c2a_1.7.2-1_amd64.deb
-libtalloc2_2.0.7+git20120207-1_amd64.deb
-libtar0_1.2.16-1_amd64.deb
-libtaskmanager4abi3_4.8.4-6_amd64.deb
-libtasn1-3_2.13-2_amd64.deb
-libtbb2_4.0+r233-1_amd64.deb
-libtcd0_2.2.2-1_amd64.deb
-libtdb1_1.2.10-2_amd64.deb
-libtelepathy-farstream2_0.4.0-3_amd64.deb
-libtelepathy-glib0_0.18.2-2_amd64.deb
-libtelepathy-logger2_0.4.0-1_amd64.deb
-libterm-readkey-perl_2.30-4+b2_amd64.deb
-libtevent0_0.9.16-1_amd64.deb
-libtext-charwidth-perl_0.04-7+b1_amd64.deb
-libtext-iconv-perl_1.7-5_amd64.deb
-libtext-unaccent-perl_1.08-1+b3_amd64.deb
-libtext-wrapi18n-perl_0.06-7_all.deb
-libthai-data_0.1.18-2_all.deb
-libthai0_0.1.18-2_amd64.deb
-libtheora0_1.1.1+dfsg.1-3.1_amd64.deb
-libthreadweaver4_4.8.4-4_amd64.deb
-libticables2-1_1.2.0-2_amd64.deb
-libticalcs2-7_1.1.3+dfsg1-1_amd64.deb
-libticonv3_1.1.0-1.1_amd64.deb
-libtidy-0.99-0_20091223cvs-1.2_amd64.deb
-libtie-ixhash-perl_1.21-2_all.deb
-libtiff4_3.9.6-11_amd64.deb
-libtiff5_4.0.2-6_amd64.deb
-libtifiles2-5_1.1.1-1_amd64.deb
-libtimedate-perl_1.2000-1_all.deb
-libtinfo5_5.9-10_amd64.deb
-libtirpc1_0.2.2-5_amd64.deb
-libtommath0_0.42.0-1_amd64.deb
-libtorque2_2.4.16+dfsg-1_amd64.deb
-libtotem-plparser17_3.4.2-1_amd64.deb
-libtotem0_3.0.1-8_amd64.deb
-libtracker-extract-0.14-0_0.14.1-3_amd64.deb
-libtracker-miner-0.14-0_0.14.1-3_amd64.deb
-libtracker-sparql-0.14-0_0.14.1-3_amd64.deb
-libtry-tiny-perl_0.11-1_all.deb
-libts-0.0-0_1.0-11_amd64.deb
-libts-dev_1.0-11_amd64.deb
-libtwolame0_0.3.13-1_amd64.deb
-libudev0_175-7.2_amd64.deb
-libumfpack5.4.0_3.4.0-3_amd64.deb
-libunicode-map-perl_0.112-10+b3_amd64.deb
-libunicode-map8-perl_0.13+dfsg-3+b2_amd64.deb
-libunicode-maputf8-perl_1.11-2_all.deb
-libunicode-string-perl_2.09-5_amd64.deb
-libunique-3.0-0_3.0.2-1_amd64.deb
-libunistring0_0.9.3-5_amd64.deb
-libupnp6_1.6.17-1.2_amd64.deb
-libupower-glib1_0.9.17-1_amd64.deb
-liburi-perl_1.60-1_all.deb
-libusb-0.1-4_0.1.12-20+nmu1_amd64.deb
-libusb-0.1-udeb_0.1.12-20+nmu1_amd64.udeb
-libusb-1.0-0-udeb_1.0.11-1_amd64.udeb
-libusb-1.0-0_1.0.11-1_amd64.deb
-libusbmuxd1_1.0.7-2_amd64.deb
-libustr-1.0-1_1.0.4-3_amd64.deb
-libutempter0_1.1.5-4_amd64.deb
-libuuid-perl_0.02-5_amd64.deb
-libuuid1-udeb_2.20.1-5.3_amd64.udeb
-libuuid1_2.20.1-5.3_amd64.deb
-libv4l-0_0.8.8-3_amd64.deb
-libv4lconvert0_0.8.8-3_amd64.deb
-libva-x11-1_1.0.15-4_amd64.deb
-libva1_1.0.15-4_amd64.deb
-libvamp-hostsdk3_2.1-1_amd64.deb
-libvcdinfo0_0.7.24+dfsg-0.1_amd64.deb
-libvdpau1_0.4.1-7_amd64.deb
-libverto-libev1_0.2.2-1_amd64.deb
-libverto1_0.2.2-1_amd64.deb
-libvirtodbc0_6.1.4+dfsg1-7_amd64.deb
-libvisio-0.0-0_0.0.17-1_amd64.deb
-libvisual-0.4-0_0.4.0-5_amd64.deb
-libvisual-0.4-plugins_0.4.0.dfsg.1-7_amd64.deb
-libvlc5_2.0.3-5_amd64.deb
-libvlccore5_2.0.3-5_amd64.deb
-libvncserver0_0.9.9+dfsg-1_amd64.deb
-libvo-aacenc0_0.1.2-1_amd64.deb
-libvo-amrwbenc0_0.1.2-1_amd64.deb
-libvoikko1_3.5-1.1_amd64.deb
-libvorbis-dev_1.3.2-1.3_amd64.deb
-libvorbis0a_1.3.2-1.3_amd64.deb
-libvorbisenc2_1.3.2-1.3_amd64.deb
-libvorbisfile3_1.3.2-1.3_amd64.deb
-libvpx1_1.1.0-1_amd64.deb
-libvte-2.90-9-udeb_0.32.2-1_amd64.udeb
-libvte-2.90-9_0.32.2-1_amd64.deb
-libvte-2.90-common_0.32.2-1_all.deb
-libvte-common_0.28.2-5_all.deb
-libvte9_0.28.2-5_amd64.deb
-libwacom-common_0.6-1_all.deb
-libwacom2_0.6-1_amd64.deb
-libwavpack1_4.60.1-3_amd64.deb
-libwbclient0_3.6.6-6_amd64.deb
-libweather-ion6_4.8.4-6_amd64.deb
-libwebkitgtk-1.0-0_1.8.1-3.4_amd64.deb
-libwebkitgtk-1.0-common_1.8.1-3.4_all.deb
-libwebkitgtk-3.0-0_1.8.1-3.4_amd64.deb
-libwebkitgtk-3.0-common_1.8.1-3.4_all.deb
-libwebp2_0.1.3-3+nmu1_amd64.deb
-libwebrtc-audio-processing-0_0.1-2_amd64.deb
-libwildmidi-config_0.2.3.4-2.1_all.deb
-libwildmidi1_0.2.3.4-2.1_amd64.deb
-libwind0-heimdal_1.6~git20120403+dfsg1-2_amd64.deb
-libwireshark-data_1.8.2-5wheezy3_all.deb
-libwireshark2_1.8.2-5wheezy3_amd64.deb
-libwiretap2_1.8.2-5wheezy3_amd64.deb
-libwmf-bin_0.2.8.4-10.3_amd64.deb
-libwmf0.2-7_0.2.8.4-10.3_amd64.deb
-libwnck-3-0_3.4.2-1_amd64.deb
-libwnck-3-common_3.4.2-1_all.deb
-libwnck-common_2.30.7-1_all.deb
-libwnck22_2.30.7-1_amd64.deb
-libwpd-0.9-9_0.9.4-3_amd64.deb
-libwpg-0.2-2_0.2.1-1_amd64.deb
-libwps-0.2-2_0.2.7-1_amd64.deb
-libwrap0_7.6.q-24_amd64.deb
-libwsutil2_1.8.2-5wheezy3_amd64.deb
-libwww-perl_6.04-1_all.deb
-libwww-robotrules-perl_6.01-1_all.deb
-libwxbase2.8-0_2.8.12.1-12_amd64.deb
-libwxgtk2.8-0_2.8.12.1-12_amd64.deb
-libx11-6_1.5.0-1+deb7u1_amd64.deb
-libx11-data_1.5.0-1+deb7u1_all.deb
-libx11-dev_1.5.0-1+deb7u1_amd64.deb
-libx11-doc_1.5.0-1+deb7u1_all.deb
-libx11-protocol-perl_0.56-4_all.deb
-libx11-xcb1_1.5.0-1+deb7u1_amd64.deb
-libx264-123_0.123.2189+git35cf912-1_amd64.deb
-libx86-1_1.1+ds1-10_amd64.deb
-libxalan2-java_2.7.1-7_all.deb
-libxapian22_1.2.12-2_amd64.deb
-libxau-dev_1.0.7-1_amd64.deb
-libxau6_1.0.7-1_amd64.deb
-libxaw3dxft6_2.9.1.4-3+b2_amd64.deb
-libxaw7_1.0.10-2_amd64.deb
-libxbae4_4.60.4-3_amd64.deb
-libxcb-composite0_1.8.1-2+deb7u1_amd64.deb
-libxcb-dri2-0_1.8.1-2+deb7u1_amd64.deb
-libxcb-glx0_1.8.1-2+deb7u1_amd64.deb
-libxcb-keysyms1_0.3.9-1_amd64.deb
-libxcb-randr0_1.8.1-2+deb7u1_amd64.deb
-libxcb-render0-dev_1.8.1-2+deb7u1_amd64.deb
-libxcb-render0_1.8.1-2+deb7u1_amd64.deb
-libxcb-shape0_1.8.1-2+deb7u1_amd64.deb
-libxcb-shm0-dev_1.8.1-2+deb7u1_amd64.deb
-libxcb-shm0_1.8.1-2+deb7u1_amd64.deb
-libxcb-util0_0.3.8-2_amd64.deb
-libxcb-xfixes0_1.8.1-2+deb7u1_amd64.deb
-libxcb-xv0_1.8.1-2+deb7u1_amd64.deb
-libxcb1-dev_1.8.1-2+deb7u1_amd64.deb
-libxcb1_1.8.1-2+deb7u1_amd64.deb
-libxcomposite-dev_0.4.3-2_amd64.deb
-libxcomposite1_0.4.3-2_amd64.deb
-libxcursor-dev_1.1.13-1+deb7u1_amd64.deb
-libxcursor1_1.1.13-1+deb7u1_amd64.deb
-libxdamage-dev_1.1.3-2_amd64.deb
-libxdamage1_1.1.3-2_amd64.deb
-libxdmcp-dev_1.1.1-1_amd64.deb
-libxdmcp6_1.1.1-1_amd64.deb
-libxerces2-java_2.11.0-6_all.deb
-libxext-dev_1.3.1-2+deb7u1_amd64.deb
-libxext6_1.3.1-2+deb7u1_amd64.deb
-libxfixes-dev_5.0-4+deb7u1_amd64.deb
-libxfixes3_5.0-4+deb7u1_amd64.deb
-libxfont1_1.4.5-2_amd64.deb
-libxft-dev_2.3.1-1_amd64.deb
-libxft2_2.3.1-1_amd64.deb
-libxi-dev_1.6.1-1+deb7u1_amd64.deb
-libxi6_1.6.1-1+deb7u1_amd64.deb
-libxine2-bin_1.2.2-4_amd64.deb
-libxine2-doc_1.2.2-4_all.deb
-libxine2-ffmpeg_1.2.2-4_amd64.deb
-libxine2-misc-plugins_1.2.2-4_amd64.deb
-libxine2-plugins_1.2.2-4_all.deb
-libxine2-x_1.2.2-4_amd64.deb
-libxine2_1.2.2-4_amd64.deb
-libxinerama-dev_1.1.2-1+deb7u1_amd64.deb
-libxinerama1_1.1.2-1+deb7u1_amd64.deb
-libxkbfile1_1.0.8-1_amd64.deb
-libxklavier16_5.2.1-1_amd64.deb
-libxml++2.6-2_2.34.2-1_amd64.deb
-libxml-commons-external-java_1.4.01-2_all.deb
-libxml-commons-resolver1.1-java_1.2-7_all.deb
-libxml-libxml-perl_2.0001+dfsg-1_amd64.deb
-libxml-namespacesupport-perl_1.09-3_all.deb
-libxml-parser-perl_2.41-1+b1_amd64.deb
-libxml-sax-base-perl_1.07-1_all.deb
-libxml-sax-expat-perl_0.40-2_all.deb
-libxml-sax-perl_0.99+dfsg-2_all.deb
-libxml-simple-perl_2.20-1_all.deb
-libxml-twig-perl_3.39-1_all.deb
-libxml-xpathengine-perl_0.13-1_all.deb
-libxml2-utils_2.8.0+dfsg1-7+nmu1_amd64.deb
-libxml2_2.8.0+dfsg1-7+nmu1_amd64.deb
-libxmmsclient-glib1_0.8+dfsg-4_amd64.deb
-libxmmsclient6_0.8+dfsg-4_amd64.deb
-libxmu6_1.1.1-1_amd64.deb
-libxmuu1_1.1.1-1_amd64.deb
-libxom-java_1.2.1-3_all.deb
-libxp6_1.0.1-2+deb7u1_amd64.deb
-libxpm4_3.5.10-1_amd64.deb
-libxpp2-java_2.1.10-7_all.deb
-libxpp3-java_1.1.4c-2_all.deb
-libxrandr-dev_1.3.2-2+deb7u1_amd64.deb
-libxrandr2_1.3.2-2+deb7u1_amd64.deb
-libxrender-dev_0.9.7-1+deb7u1_amd64.deb
-libxrender1_0.9.7-1+deb7u1_amd64.deb
-libxres1_1.0.6-1+deb7u1_amd64.deb
-libxslt1.1_1.1.26-14.1_amd64.deb
-libxss1_1.2.2-1_amd64.deb
-libxt6_1.1.3-1+deb7u1_amd64.deb
-libxtst6-udeb_1.2.1-1_amd64.udeb
-libxtst6_1.2.1-1+deb7u1_amd64.deb
-libxv1_1.0.7-1+deb7u1_amd64.deb
-libxvidcore4_1.3.2-9_amd64.deb
-libxvmc1_1.0.7-1+deb7u2_amd64.deb
-libxxf86dga1_1.1.3-2+deb7u1_amd64.deb
-libxxf86vm1_1.1.2-1+deb7u1_amd64.deb
-libxz-java_1.0-2_all.deb
-libyajl2_2.0.4-2_amd64.deb
-libyaml-0-2_0.1.4-2_amd64.deb
-libyaml-syck-perl_1.20-1_amd64.deb
-libyelp0_3.4.2-1+b1_amd64.deb
-libzbar0_0.10+doc-8_amd64.deb
-libzephyr4_3.0.2-2_amd64.deb
-libzthread-2.3-2_2.3.2-7_amd64.deb
-libzvbi-common_0.2.33-6_all.deb
-libzvbi0_0.2.33-6_amd64.deb
-lightdm-gtk-greeter_1.1.6-2_amd64.deb
-lightdm_1.2.2-4_amd64.deb
-lightsoff_3.4.2-3_amd64.deb
-lilo-installer_1.41_amd64.udeb
-lilo_23.2-4_amd64.deb
-lilypond-data_2.14.2-4_all.deb
-lilypond_2.14.2-4_amd64.deb
-lingot_0.9.1-2_amd64.deb
-links_2.7-1_amd64.deb
-linux-base_3.5_all.deb
-linux-headers-3.2.0-4-amd64_3.2.41-2+deb7u2_amd64.deb
-linux-headers-3.2.0-4-common_3.2.41-2+deb7u2_amd64.deb
-linux-headers-amd64_3.2+46_amd64.deb
-linux-image-3.2.0-4-amd64_3.2.41-2+deb7u2_amd64.deb
-linux-image-amd64_3.2+46_amd64.deb
-linux-kbuild-3.2_3.2.17-1_amd64.deb
-linux-libc-dev_3.2.41-2+deb7u2_amd64.deb
-lirc_0.9.0~pre1-1_amd64.deb
-lmemory_0.6c-6_amd64.deb
-lmms-common_0.4.10-2.3_all.deb
-lmms_0.4.10-2.3_amd64.deb
-lmodern_2.004.2-1_all.deb
-load-media_1.28_all.udeb
-locales_2.13-38_all.deb
-localization-config-udeb_1.07+nmu1_all.udeb
-localization-config_1.07+nmu1_all.deb
-lockfile-progs_0.1.17_amd64.deb
-login_4.1.5.1-1_amd64.deb
-logrotate_3.8.1-4_amd64.deb
-loop-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-lowmem_1.38_all.udeb
-lp-solve_5.5.0.13-7_amd64.deb
-lsb-base_4.1+Debian8_all.deb
-lsb-release_4.1+Debian8_all.deb
-lshw_02.16-1_amd64.deb
-lsof_4.86+dfsg-1_amd64.deb
-lsscsi_0.26-2_amd64.deb
-ltsp-client-core_5.4.2-6_amd64.deb
-ltsp-client_5.4.2-6_amd64.deb
-ltsp-docs_1.1-1_all.deb
-ltsp-server-standalone_5.4.2-6_all.deb
-ltsp-server_5.4.2-6_all.deb
-ltspfs_1.1-2_amd64.deb
-ltspfsd-core_1.1-2_amd64.deb
-ltspfsd_1.1-2_all.deb
-luatex_0.70.1.20120524-3_amd64.deb
-lvm2-udeb_2.02.95-7_amd64.udeb
-lvm2_2.02.95-7_amd64.deb
-lvmcfg-utils_1.29_all.udeb
-lxappearance_0.5.2-1_amd64.deb
-lxde-common_0.5.5-6_all.deb
-lxde-core_4+nmu1_all.deb
-lxde-icon-theme_0.5.0-1_all.deb
-lxde_4+nmu1_all.deb
-lxinput_0.3.2-1_amd64.deb
-lxmenu-data_0.1.2-2_all.deb
-lxmusic_0.4.4+git20100802-3_amd64.deb
-lxpanel_0.5.10-1_amd64.deb
-lxpolkit_0.1.0-4_amd64.deb
-lxrandr_0.1.2-3_amd64.deb
-lxsession-edit_0.2.0-3_amd64.deb
-lxsession_0.4.6.1-4_amd64.deb
-lxshortcut_0.1.2-3_amd64.deb
-lxterminal_0.1.11-4_amd64.deb
-m17n-contrib_1.1.13-2_all.deb
-m17n-db_1.6.3-2_all.deb
-m4_1.4.16-3_amd64.deb
-mahjongg_3.4.2-3_amd64.deb
-make_3.81-8.2_amd64.deb
-makepasswd_1.10-8_all.deb
-man-db_2.6.2-1_amd64.deb
-manpages-dev_3.44-1_all.deb
-manpages-es-extra_0.8a-17_all.deb
-manpages-es_1.55-10_all.deb
-manpages-fr-extra_20130226_all.deb
-manpages-fr_3.44d1p1-1_all.deb
-manpages_3.44-1_all.deb
-marble-data_4.8.4-3_all.deb
-marble-plugins_4.8.4-3_amd64.deb
-marble_4.8.4-3_amd64.deb
-matchbox-keyboard-udeb_0.1+svn20080916-9+b1_amd64.udeb
-matchbox-window-manager-udeb_1.2-osso21-1+b1_amd64.udeb
-mathpiper_0.81f+svn4469+dfsg3-1_all.deb
-mathwar_0.2.5-2+b1_amd64.deb
-mawk_1.3.3-17_amd64.deb
-mbr-udeb_1.1.11-5+b1_amd64.udeb
-mc-data_4.8.3-10_all.deb
-mc_4.8.3-10_amd64.deb
-mcp-plugins_0.4.0-2_amd64.deb
-md-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-mdadm-udeb_3.2.5-5_amd64.udeb
-mdadm_3.2.5-5_amd64.deb
-mdcfg-utils_1.40_all.udeb
-mdetect_0.5.2.3_amd64.deb
-mdns-scan_0.5-1_amd64.deb
-media-player-info_17-1_all.deb
-media-retriever_1.28_all.udeb
-melt_0.8.0-4_amd64.deb
-memtest86+_4.20-1.1_amd64.deb
-menu-xdg_0.5_all.deb
-menu_2.1.46_amd64.deb
-mesa-common-dev_8.0.5-4+deb7u2_amd64.deb
-mesa-utils_8.0.1-2+b3_amd64.deb
-metacity-common_2.34.3-4_all.deb
-metacity_2.34.3-4_amd64.deb
-mii-diag-udeb_2.11-3+b1_amd64.udeb
-mii-diag_2.11-3+b1_amd64.deb
-mime-support_3.52-1_all.deb
-minissdpd_1.1.20120121-1_amd64.deb
-mkreiserfs-udeb_3.6.21-1_amd64.udeb
-mlocate_0.23.1-1_amd64.deb
-mlock_2007f~dfsg-2_amd64.deb
-mmc-core-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-mobile-broadband-provider-info_20120708-1_all.deb
-modemmanager_0.5.2.0-2_amd64.deb
-module-init-tools_9-3_all.deb
-mono-4.0-gac_2.10.8.1-8_all.deb
-mono-gac_2.10.8.1-8_all.deb
-mono-runtime_2.10.8.1-8_amd64.deb
-mount_2.20.1-5.3_amd64.deb
-mountfloppy_0.16_all.udeb
-mountmedia_0.22_all.udeb
-mousetweaks_3.4.2-1_amd64.deb
-mozilla-plugin-gnash_0.8.11~git20120629-1_all.deb
-mpg321_0.3.2-1.1_amd64.deb
-mpi-default-bin_1.0.1_amd64.deb
-mplayer2_2.0-554-gf63dbad-1+b1_amd64.deb
-mplayerthumbs_4.8.4-2_amd64.deb
-mpqc_2.3.1-14_amd64.deb
-mpt-status_1.2.0-7_amd64.deb
-mscompress_0.3-4_amd64.deb
-mtools_4.0.17-1_amd64.deb
-mtpaint_3.40-1+b1_amd64.deb
-mtr-tiny_0.82-3_amd64.deb
-multiarch-support_2.13-38_amd64.deb
-multipath-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-multipath-tools-boot_0.4.9+git0.4dfdaf2b-6_all.deb
-multipath-tools_0.4.9+git0.4dfdaf2b-6_amd64.deb
-multipath-udeb_0.4.9+git0.4dfdaf2b-6_amd64.udeb
-munin-common_2.0.6-4_all.deb
-munin-doc_2.0.6-4_all.deb
-munin-node_2.0.6-4_all.deb
-munin-plugins-core_2.0.6-4_all.deb
-munin-plugins-extra_2.0.6-4_all.deb
-munin_2.0.6-4_all.deb
-mutter-common_3.4.1-5_all.deb
-myspell-bg_4.1-3_all.deb
-myspell-ca_0.20111230b-4_all.deb
-myspell-cs_20040229-5.1_all.deb
-myspell-da_1.6.25-1.1_all.deb
-myspell-de-at_20120607-1_all.deb
-myspell-de-ch_20120607-1_all.deb
-myspell-de-de_20120607-1_all.deb
-myspell-el-gr_0.8-1.1_all.deb
-myspell-en-gb_3.3.0-4_all.deb
-myspell-en-us_3.3.0-4_all.deb
-myspell-es_1.11-4_all.deb
-myspell-fi_0.7-18_all.deb
-myspell-fr_1.4-26_all.deb
-myspell-he_1.1-2_all.deb
-myspell-hu_1.2+repack-2_all.deb
-myspell-it_3.3.0-4_all.deb
-myspell-ku_0.20.0-2_all.deb
-myspell-lt_1.2.1-3_all.deb
-myspell-nb_2.0.10-5.1_all.deb
-myspell-nl_2.10-1_all.deb
-myspell-nn_2.0.10-5.1_all.deb
-myspell-pl_20120520-1_all.deb
-myspell-pt-br_20110527-2_all.deb
-myspell-pt-pt_20091013-4_all.deb
-myspell-ru_0.99g5-18_all.deb
-myspell-sk_0.5.5a-2.3_all.deb
-myspell-sl_1.0-5_all.deb
-myspell-sv-se_1.51-1_all.deb
-mysql-common_5.5.31+dfsg-0+wheezy1_all.deb
-mysql-server-core-5.5_5.5.31+dfsg-0+wheezy1_amd64.deb
-mythes-de-ch_20120516-2_all.deb
-mythes-de_20120516-2_all.deb
-mythes-en-us_3.3.0-4_all.deb
-mythes-fr_3.3.0-4_all.deb
-mythes-it_2.0.7.gh.deb1-4.1_all.deb
-nagios-images_0.7_all.deb
-nagios-nrpe-plugin_2.13-3_amd64.deb
-nagios-nrpe-server_2.13-3_amd64.deb
-nagios-plugins-basic_1.4.16-1_amd64.deb
-nagios-plugins-common_1.4.16-1_amd64.deb
-nagios-plugins-contrib_4.20120702_amd64.deb
-nagios-plugins-standard_1.4.16-1_amd64.deb
-nagios-plugins_1.4.16-1_all.deb
-nagios3-cgi_3.4.1-3_amd64.deb
-nagios3-common_3.4.1-3_all.deb
-nagios3-core_3.4.1-3_amd64.deb
-nagios3_3.4.1-3_amd64.deb
-nano_2.2.6-1+b1_amd64.deb
-nautilus-data_3.4.2-1+build1_all.deb
-nautilus-sendto-empathy_3.4.2.3-2_amd64.deb
-nautilus-sendto_3.0.3-2+b1_amd64.deb
-nautilus_3.4.2-1+build1_amd64.deb
-nbd-client_3.2-2_amd64.deb
-nbd-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-nbd-server_3.2-2_amd64.deb
-ncftp_3.2.5-1.1_amd64.deb
-ncurses-base_5.9-10_all.deb
-ncurses-bin_5.9-10_amd64.deb
-ncurses-term_5.9-10_all.deb
-ndisc6-udeb_1.0.1-1+b1_amd64.udeb
-net-tools_1.60-24.2_amd64.deb
-netbase_5.0_all.deb
-netcat-traditional_1.10-40_amd64.deb
-netcfg_1.108_amd64.udeb
-netpbm_10.0-15+b1_amd64.deb
-network-console_1.43_amd64.udeb
-network-manager-gnome_0.9.4.1-5_amd64.deb
-network-manager-openvpn_0.9.4.0-1_amd64.deb
-network-manager-pptp_0.9.4.0-2_amd64.deb
-network-manager-vpnc_0.9.4.0-1_amd64.deb
-network-manager_0.9.4.0-10_amd64.deb
-network-preseed_1.58_all.udeb
-nfs-common_1.2.6-3_amd64.deb
-nfs-kernel-server_1.2.6-3_amd64.deb
-ng-utils_0.7-1_amd64.deb
-nic-extra-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-nic-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-nic-pcmcia-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-nic-shared-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-nic-usb-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-nic-wireless-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-nictools-pci_1.3.8-1.2_amd64.deb
-nmap_6.00-0.3_amd64.deb
-nobootloader_1.38_all.udeb
-notification-daemon_0.7.6-1_amd64.deb
-nscd_2.13-38_amd64.deb
-nslcd_0.8.10-4_amd64.deb
-ntfs-3g-udeb_2012.1.15AR.5-2.1_amd64.udeb
-ntfs-3g_2012.1.15AR.5-2.1_amd64.deb
-ntfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-ntfsprogs-udeb_2.0.0-1+b1_amd64.udeb
-ntp_4.2.6.p5+dfsg-2_amd64.deb
-ntpdate_4.2.6.p5+dfsg-2_amd64.deb
-ntrack-module-libnl-0_016-1.1_amd64.deb
-nullidentd_1.0-5_amd64.deb
-numlockx_1.2-4_amd64.deb
-nvram-wakeup_1.1-1_amd64.deb
-obconf_2.0.3+20110805+debian-1_amd64.deb
-obex-data-server_0.4.5-1+b3_amd64.deb
-obexd-client_0.46-1+b1_amd64.deb
-ocaml-base-nox_3.12.1-4_amd64.deb
-ocaml-base_3.12.1-4_amd64.deb
-ocrad_0.22~rc1-2_amd64.deb
-odbcinst1debian2_2.2.14p2-5_amd64.deb
-odbcinst_2.2.14p2-5_amd64.deb
-okular_4.8.4-3+b1_amd64.deb
-oldsys-preseed_3.13_amd64.udeb
-open-iscsi-udeb_2.0.873-3_amd64.udeb
-openbabel_2.3.1+dfsg-4_amd64.deb
-openbox-themes_1.0.2_all.deb
-openbox_3.5.0-7_amd64.deb
-openbsd-inetd_0.20091229-2_amd64.deb
-openclipart-libreoffice_0.18+dfsg-14_all.deb
-openclipart-openoffice.org_3.4.0~ooo340m1-7_all.deb
-openclipart-png_0.18+dfsg-14_all.deb
-openclipart-svg_0.18+dfsg-14_all.deb
-openclipart_0.18+dfsg-14_all.deb
-openjdk-6-jre-headless_6b27-1.12.5-1_amd64.deb
-openjdk-6-jre-lib_6b27-1.12.5-1_all.deb
-openjdk-6-jre_6b27-1.12.5-1_amd64.deb
-openmpi-bin_1.4.5-1_amd64.deb
-openmpi-checkpoint_1.4.5-1_amd64.deb
-openmpi-common_1.4.5-1_all.deb
-openoffice.org-base_3.4.0~ooo340m1-7_all.deb
-openoffice.org-calc_3.4.0~ooo340m1-7_all.deb
-openoffice.org-draw_3.4.0~ooo340m1-7_all.deb
-openoffice.org-filter-binfilter_3.4.0~ooo340m1-7_all.deb
-openoffice.org-filter-mobiledev_3.4.0~ooo340m1-7_all.deb
-openoffice.org-gnome_3.4.0~ooo340m1-7_all.deb
-openoffice.org-gtk_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-da_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-de_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-el_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-es_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-fr_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-it_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-ja_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-pt-br_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-sv_3.4.0~ooo340m1-7_all.deb
-openoffice.org-help-zh-tw_3.4.0~ooo340m1-7_all.deb
-openoffice.org-hyphenation-de_3.4.0~ooo340m1-7_all.deb
-openoffice.org-hyphenation-fr_3.4.0~ooo340m1-7_all.deb
-openoffice.org-impress_3.4.0~ooo340m1-7_all.deb
-openoffice.org-java-common_3.4.0~ooo340m1-7_all.deb
-openoffice.org-kde_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-ca_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-da_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-de_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-el_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-en-za_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-es_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-fr_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-he_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-it_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-ja_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-nb_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-nl_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-nn_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-pt-br_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-sv_3.4.0~ooo340m1-7_all.deb
-openoffice.org-l10n-zh-tw_3.4.0~ooo340m1-7_all.deb
-openoffice.org-math_3.4.0~ooo340m1-7_all.deb
-openoffice.org-style-crystal_3.4.0~ooo340m1-7_all.deb
-openoffice.org-thesaurus-de-ch_3.4.0~ooo340m1-7_all.deb
-openoffice.org-thesaurus-de_3.4.0~ooo340m1-7_all.deb
-openoffice.org-thesaurus-en-us_3.4.0~ooo340m1-7_all.deb
-openoffice.org-thesaurus-fr_3.4.0~ooo340m1-7_all.deb
-openoffice.org-thesaurus-it_3.4.0~ooo340m1-7_all.deb
-openoffice.org-writer_3.4.0~ooo340m1-7_all.deb
-openoffice.org_3.4.0~ooo340m1-7_all.deb
-openshot-doc_1.4.2-1.1_all.deb
-openshot_1.4.2-1.1_all.deb
-openssh-blacklist-extra_0.4.1+nmu1_all.deb
-openssh-blacklist_0.4.1+nmu1_all.deb
-openssh-client-udeb_6.0p1-4_amd64.udeb
-openssh-client_6.0p1-4_amd64.deb
-openssh-server-udeb_6.0p1-4_amd64.udeb
-openssh-server_6.0p1-4_amd64.deb
-openssl_1.0.1e-2_amd64.deb
-openvpn_2.2.1-8_amd64.deb
-oregano_0.70-1_amd64.deb
-os-prober-udeb_1.58_amd64.udeb
-os-prober_1.58_amd64.deb
-osmo_0.2.10+svn922-2+b1_amd64.deb
-oss-compat_2_amd64.deb
-oxygen-icon-theme_4.8.4-1_all.deb
-oxygencursors_0.0.2012-06-kde4.8-2.1_all.deb
-p7zip-full_9.20.1~dfsg.1-4_amd64.deb
-packagekit-backend-aptcc_0.7.6-3_amd64.deb
-packagekit-tools_0.7.6-3_amd64.deb
-packagekit_0.7.6-3_amd64.deb
-parcellite_1.0.2~rc5-1_amd64.deb
-parley-data_4.8.4-1_all.deb
-parley_4.8.4-1_amd64.deb
-partconf-find-partitions_1.40_amd64.udeb
-parted-udeb_2.3-12_amd64.udeb
-partman-auto-crypto_19_all.udeb
-partman-auto-lvm_47_all.udeb
-partman-auto-raid_21_all.udeb
-partman-auto_106_amd64.udeb
-partman-base_165_amd64.udeb
-partman-basicfilesystems_77_all.udeb
-partman-basicmethods_52_all.udeb
-partman-btrfs_10_all.udeb
-partman-crypto-dm_57_all.udeb
-partman-crypto_57_amd64.udeb
-partman-efi_36_amd64.udeb
-partman-ext3_74_all.udeb
-partman-jfs_38_all.udeb
-partman-lvm_82_all.udeb
-partman-md_64_all.udeb
-partman-multipath_3_all.udeb
-partman-nbd_0.18_amd64.udeb
-partman-partitioning_91_amd64.udeb
-partman-reiserfs_53_all.udeb
-partman-target_82_all.udeb
-partman-ufs_14_all.udeb
-partman-utils_165_amd64.udeb
-partman-xfs_50_all.udeb
-passwd_4.1.5.1-1_amd64.deb
-pata-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-patch_2.6.1-3_amd64.deb
-pavucontrol_1.0-1_amd64.deb
-pciutils-udeb_3.1.9-6_amd64.udeb
-pciutils_3.1.9-6_amd64.deb
-pcmanfm_0.9.10-3_amd64.deb
-pcmcia-storage-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-pcmciautils-udeb_018-8_amd64.udeb
-pcmciautils_018-8_amd64.deb
-perl-base_5.14.2-21_amd64.deb
-perl-modules_5.14.2-21_all.deb
-perl_5.14.2-21_amd64.deb
-perlmagick_6.7.7.10-5_amd64.deb
-pgf_2.10-1_all.deb
-phonon-backend-vlc_0.6.0-1_amd64.deb
-phonon_4.6.0.0-3_amd64.deb
-php5-cli_5.4.4-14_amd64.deb
-php5-common_5.4.4-14_amd64.deb
-php5-curl_5.4.4-14_amd64.deb
-php5-gd_5.4.4-14_amd64.deb
-php5-imap_5.4.4-14_amd64.deb
-php5-ldap_5.4.4-14_amd64.deb
-php5-mcrypt_5.4.4-14_amd64.deb
-php5-mysql_5.4.4-14_amd64.deb
-php5-recode_5.4.4-14_amd64.deb
-php5_5.4.4-14_all.deb
-pianobooster_0.6.4-3.1_amd64.deb
-pidgin-data_2.10.6-3_all.deb
-pidgin_2.10.6-3_amd64.deb
-pinentry-gtk2_0.8.1-1_amd64.deb
-pitivi_0.15.2-0.1_all.deb
-pkg-config_0.26-1_amd64.deb
-pkgsel_0.37_all.udeb
-planets_0.1.13-13_all.deb
-planner-data_0.14.6-1_all.deb
-planner-doc_0.14.6-1_all.deb
-planner_0.14.6-1_amd64.deb
-plasma-containments-addons_4.8.4-1+b2_amd64.deb
-plasma-dataengines-addons_4.8.4-1+b2_amd64.deb
-plasma-dataengines-workspace_4.8.4-6_amd64.deb
-plasma-desktop_4.8.4-6_amd64.deb
-plasma-desktopthemes-artwork_4.8.4-5_all.deb
-plasma-runners-addons_4.8.4-1+b2_amd64.deb
-plasma-scriptengine-javascript_4.8.4-2_amd64.deb
-plasma-scriptengine-python_4.8.4-6_all.deb
-plasma-scriptengine-ruby_4.8.4-6_all.deb
-plasma-scriptengine-superkaramba_4.8.4-3_amd64.deb
-plasma-scriptengine-webkit_4.8.4-6_amd64.deb
-plasma-scriptengines_4.8.4-6_all.deb
-plasma-wallpapers-addons_4.8.4-1+b2_amd64.deb
-plasma-widget-folderview_4.8.4-2_amd64.deb
-plasma-widget-lancelot_4.8.4-1+b2_amd64.deb
-plasma-widget-networkmanagement_0.9.0.3-1_amd64.deb
-plasma-widgets-addons_4.8.4-1+b2_amd64.deb
-plasma-widgets-workspace_4.8.4-6_amd64.deb
-plip-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-pm-utils_1.4.1-9_all.deb
-pnm2ppa_1.13-4_all.deb
-po-debconf_1.0.16+nmu2_all.deb
-policykit-1-gnome_0.105-2_amd64.deb
-policykit-1_0.105-3_amd64.deb
-polkit-kde-1_0.99.0-3_amd64.deb
-poppler-data_0.4.5-10_all.deb
-poppler-utils_0.18.4-6_amd64.deb
-popularity-contest_1.56_all.deb
-postgresql-9.1_9.1.9-1_amd64.deb
-postgresql-client-9.1_9.1.9-1_amd64.deb
-postgresql-client-common_134wheezy3_all.deb
-postgresql-client_9.1+134wheezy3_all.deb
-postgresql-common_134wheezy3_all.deb
-postgresql_9.1+134wheezy3_all.deb
-powermgmt-base_1.31_amd64.deb
-powertop_2.0-0.3_amd64.deb
-ppp-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-ppp-udeb_2.4.5-5.1+b1_amd64.udeb
-ppp_2.4.5-5.1+b1_amd64.deb
-pppoeconf_1.20_all.deb
-pptp-linux_1.7.2-7_amd64.deb
-preview-latex-style_11.86-11_all.deb
-printer-applet_4.8.4-1_all.deb
-printer-driver-all_0.20120416_all.deb
-printer-driver-c2050_0.3b-4_amd64.deb
-printer-driver-c2esp_24-2_amd64.deb
-printer-driver-cjet_0.8.9-3_amd64.deb
-printer-driver-escpr_1.1.1-2_amd64.deb
-printer-driver-foo2zjs_20120510dfsg0-1_amd64.deb
-printer-driver-gutenprint_5.2.9-1_amd64.deb
-printer-driver-hpcups_3.12.6-3.1_amd64.deb
-printer-driver-hpijs_3.12.6-3.1_amd64.deb
-printer-driver-m2300w_0.51-7_amd64.deb
-printer-driver-min12xxw_0.0.9-6_amd64.deb
-printer-driver-pnm2ppa_1.13-4_amd64.deb
-printer-driver-postscript-hp_3.12.6-3.1_all.deb
-printer-driver-ptouch_1.3-4_amd64.deb
-printer-driver-pxljr_1.3+repack0-2_amd64.deb
-printer-driver-sag-gdi_0.1-3_all.deb
-printer-driver-splix_2.0.0+svn306-2_amd64.deb
-procinfo_2.0.304-1_amd64.deb
-procmail_3.22-20_amd64.deb
-procps_3.3.3-3_amd64.deb
-prosper_1.00.4+cvs.2007.05.01-4_all.deb
-ps2eps_1.68-1_amd64.deb
-psmisc_22.19-1+deb7u1_amd64.deb
-pstoedit_3.60-2+b1_amd64.deb
-psutils_1.17.dfsg-1_amd64.deb
-pulseaudio-esound-compat_2.0-6.1_amd64.deb
-pulseaudio-module-x11_2.0-6.1_amd64.deb
-pulseaudio-utils_2.0-6.1_amd64.deb
-pulseaudio_2.0-6.1_amd64.deb
-pymol_1.5.0.1-2_amd64.deb
-pysycache-buttons-ice_3.1-3_all.deb
-pysycache-click-dinosaurs_3.1-3_all.deb
-pysycache-dblclick-appleandpear_3.1-3_all.deb
-pysycache-i18n_3.1-3_all.deb
-pysycache-images_3.1-3_all.deb
-pysycache-move-animals_3.1-3_all.deb
-pysycache-puzzle-cartoons_3.1-3_all.deb
-pysycache-sounds_3.1-3_all.deb
-pysycache_3.1-3_all.deb
-python-apt-common_0.8.8.2_all.deb
-python-apt_0.8.8.2_amd64.deb
-python-aptdaemon.gtk3widgets_0.45-2_all.deb
-python-aptdaemon.pkcompat_0.45-2_all.deb
-python-aptdaemon_0.45-2_all.deb
-python-avahi_0.6.31-2_amd64.deb
-python-avogadro_1.0.3-5_amd64.deb
-python-beautifulsoup_3.2.1-1_all.deb
-python-box2d_2.0.2+svn20100109.244-1+b1_amd64.deb
-python-brlapi_4.4-10_amd64.deb
-python-cairo_1.8.8-1+b2_amd64.deb
-python-carquinyol-0.88_0.88.0-3+b1_amd64.deb
-python-carquinyol-0.96_0.96.0-1_amd64.deb
-python-central_0.6.17_all.deb
-python-chardet_2.0.1-2_all.deb
-python-cjson_1.0.5-4+b1_amd64.deb
-python-cups_1.9.48-1.1_amd64.deb
-python-daemon_1.5.5-1_all.deb
-python-dateutil_1.5+dfsg-0.1_all.deb
-python-dbus-dev_1.1.1-1_all.deb
-python-dbus_1.1.1-1_amd64.deb
-python-debian_0.1.21_all.deb
-python-debianbts_1.11_all.deb
-python-decorator_3.3.3-1_all.deb
-python-defer_1.0.6-2_all.deb
-python-easygui_0.96-3_all.deb
-python-elements_0.13+svn20090823.230+dfsg-2_all.deb
-python-feedparser_5.1.2-1_all.deb
-python-fpconst_0.7.2-5_all.deb
-python-gconf_2.28.1+dfsg-1_amd64.deb
-python-gdbm_2.7.3-1_amd64.deb
-python-gi-cairo_3.2.2-2_amd64.deb
-python-gi_3.2.2-2_amd64.deb
-python-glade2_2.24.0-3+b1_amd64.deb
-python-gnome2_2.28.1+dfsg-1_amd64.deb
-python-gnupginterface_0.3.2-9.1_all.deb
-python-gobject-2_2.28.6-10_amd64.deb
-python-gobject_3.2.2-2_all.deb
-python-gst0.10_0.10.22-3_amd64.deb
-python-gtk2_2.24.0-3+b1_amd64.deb
-python-gtksourceview2_2.10.1-2_amd64.deb
-python-hippocanvas_0.3.1-1.1_amd64.deb
-python-httplib2_0.7.4-2_all.deb
-python-ibus_1.4.1-9_all.deb
-python-imaging-tk_1.1.7-4_amd64.deb
-python-imaging_1.1.7-4_amd64.deb
-python-jarabe-0.96_0.96.1-2.1_all.deb
-python-kde4_4.8.4-1_amd64.deb
-python-libxml2_2.8.0+dfsg1-7+nmu1_amd64.deb
-python-lockfile_0.8-2_all.deb
-python-louis_2.4.1-1_amd64.deb
-python-mako_0.7.0-1.1_all.deb
-python-markupsafe_0.15-1_amd64.deb
-python-matplotlib-data_1.1.1~rc2-1_all.deb
-python-matplotlib_1.1.1~rc2-1_amd64.deb
-python-minimal_2.7.3-4_all.deb
-python-mlt5_0.8.0-4_amd64.deb
-python-notify_0.1.1-3_amd64.deb
-python-numpy_1.6.2-1.2_amd64.deb
-python-packagekit_0.7.6-3_all.deb
-python-pexpect_2.4-1_all.deb
-python-pkg-resources_0.6.24-1_all.deb
-python-pmw_1.3.2-6_all.deb
-python-pyalsa_1.0.25-1_amd64.deb
-python-pyatspi2_2.5.3+dfsg-3_all.deb
-python-pyatspi_2.5.3+dfsg-3_all.deb
-python-pycurl_7.19.0-5_amd64.deb
-python-pygame_1.9.1release+dfsg-8_amd64.deb
-python-pygoocanvas_0.14.1-1+b3_amd64.deb
-python-pylibacl_0.5.1-1.1_amd64.deb
-python-pyorbit_2.24.0-6+b1_amd64.deb
-python-pyparsing_1.5.6+dfsg1-2_all.deb
-python-pysqlite2_2.6.3-3_amd64.deb
-python-pyudev_0.13-1_all.deb
-python-pyxattr_0.5.1-1.1_amd64.deb
-python-qt4-dbus_4.9.3-4_amd64.deb
-python-qt4_4.9.3-4_amd64.deb
-python-renderpm_2.5-1.1_amd64.deb
-python-reportbug_6.4.4_all.deb
-python-reportlab-accel_2.5-1.1_amd64.deb
-python-reportlab_2.5-1.1_all.deb
-python-rsvg_2.32.0+dfsg-2+b1_amd64.deb
-python-serial_2.5-2.1_all.deb
-python-simplejson_2.5.2-1_amd64.deb
-python-sip_4.13.3-2_amd64.deb
-python-soappy_0.12.0-4_all.deb
-python-software-properties_0.82.7.1debian1_all.deb
-python-speechd_0.7.1-6.2_all.deb
-python-sqlalchemy-ext_0.7.8-1_amd64.deb
-python-sqlalchemy_0.7.8-1_all.deb
-python-sss_1.8.4-2_amd64.deb
-python-sugar-0.88_0.88.0-4_amd64.deb
-python-sugar-0.96_0.96.0-1_amd64.deb
-python-sugar-toolkit-0.88_0.88.1-3+b1_amd64.deb
-python-sugar-toolkit-0.96_0.96.1-1_amd64.deb
-python-support_1.0.15_all.deb
-python-telepathy_0.15.19-2.1_all.deb
-python-tk_2.7.3-1_amd64.deb
-python-tz_2012c-1_all.deb
-python-uno_3.5.4+dfsg-4_amd64.deb
-python-utidylib_0.2-8_all.deb
-python-vte_0.28.2-5_amd64.deb
-python-wicd_1.7.2.4-4_all.deb
-python-wnck_2.32.0+dfsg-2+b1_amd64.deb
-python-wxgtk2.8_2.8.12.1-12_amd64.deb
-python-wxversion_2.8.12.1-12_all.deb
-python-xapian_1.2.12-2_amd64.deb
-python-xdg_0.19-5_all.deb
-python-xklavier_0.4-4_amd64.deb
-python-zeitgeist_0.9.0.1-1_all.deb
-python-zope.interface_3.6.1-3_amd64.deb
-python2.6-minimal_2.6.8-1.1_amd64.deb
-python2.6_2.6.8-1.1_amd64.deb
-python2.7-minimal_2.7.3-6_amd64.deb
-python2.7_2.7.3-6_amd64.deb
-python_2.7.3-4_all.deb
-qcad_2.0.5.0-1+090318.1-2_all.deb
-qdbus_4.8.2+dfsg-11_amd64.deb
-qjackctl_0.3.9-2_amd64.deb
-qnx4-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-qstat_2.11-3_amd64.deb
-qsynth_0.3.6-2_amd64.deb
-quadrapassel_3.4.2-3_amd64.deb
-rarian-compat_0.8.1-5_amd64.deb
-rasmol_2.7.5.2-1_amd64.deb
-rdate-udeb_1.2-5_amd64.udeb
-rdesktop_1.7.1-1_amd64.deb
-rdiff-backup_1.2.8-7_amd64.deb
-rdnssd-udeb_1.0.1-1+b1_amd64.udeb
-readahead-fedora_1.5.6-4_amd64.deb
-readline-common_6.2+dfsg-0.1_all.deb
-recode_3.6-20_amd64.deb
-recordmydesktop_0.3.8.1+svn602-1+b1_amd64.deb
-reiserfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-reiserfsprogs-udeb_3.6.21-1_amd64.udeb
-reportbug_6.4.4_all.deb
-rescue-mode_1.35_all.udeb
-resolvconf_1.67_all.deb
-rfkill_0.4-1_amd64.deb
-rhythmbox-data_2.97-2.1_all.deb
-rhythmbox-plugin-cdrecorder_2.97-2.1_amd64.deb
-rhythmbox-plugins_2.97-2.1_amd64.deb
-rhythmbox_2.97-2.1_amd64.deb
-rocs_4.8.4-1_amd64.deb
-rosegarden_12.04-1_amd64.deb
-rpcbind_0.2.0-8_amd64.deb
-rpm-common_4.10.0-5+deb7u1_amd64.deb
-rpm2cpio_4.10.0-5+deb7u1_amd64.deb
-rpm_4.10.0-5+deb7u1_amd64.deb
-rrdtool_1.4.7-2_amd64.deb
-rsync_3.0.9-4_amd64.deb
-rsyslog-doc_5.8.11-3_all.deb
-rsyslog_5.8.11-3_amd64.deb
-rtkit_0.10-2_amd64.deb
-rubberband-cli_1.3-1.3_amd64.deb
-ruby-kde4_4.8.4-1_amd64.deb
-ruby-plasma_4.8.4-1_amd64.deb
-ruby-qt4-webkit_4.8.4-1_amd64.deb
-ruby-qt4_4.8.4-1_amd64.deb
-ruby1.8_1.8.7.358-7_amd64.deb
-ruby1.9.1_1.9.3.194-8.1_amd64.deb
-ruby_1.9.3_all.deb
-rwho_0.17-12_amd64.deb
-rwhod_0.17-12_amd64.deb
-rygel-playbin_0.14.3-2_amd64.deb
-rygel-preferences_0.14.3-2_amd64.deb
-rygel-tracker_0.14.3-2_amd64.deb
-rygel_0.14.3-2_amd64.deb
-samba-common-bin_3.6.6-6_amd64.deb
-samba-common_3.6.6-6_all.deb
-samba_3.6.6-6_amd64.deb
-sane-utils_1.0.22-7.4_amd64.deb
-sane_1.0.14-9_amd64.deb
-save-logs_2.49_all.udeb
-scim-canna_1.0.0-4.2_amd64.deb
-scim-modules-table_0.5.9-2_amd64.deb
-scim-skk_0.5.2-7.2_amd64.deb
-scim-tables-ja_0.5.9-2_all.deb
-scim-tables-zh_0.5.9-2_all.deb
-scim_1.4.13-5_amd64.deb
-scratch_1.4.0.6~dfsg1-4_all.deb
-screen_4.1.0~20120320gitdb59704-7_amd64.deb
-scribus-ng_1.4.0.dfsg+r17300-1_all.deb
-scribus_1.4.0.dfsg+r17300-1.1_amd64.deb
-scrollkeeper_0.8.1-5_all.deb
-scsi-extra-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-sdparm_1.07-1_amd64.deb
-seahorse_3.4.1-2_amd64.deb
-sed_4.2.1-10_amd64.deb
-sensible-utils_0.0.7_all.deb
-sgml-base_1.26+nmu4_all.deb
-sgml-data_2.0.8_all.deb
-shared-desktop-ontologies_0.10.0-1_all.deb
-shared-mime-info_1.0-1+b1_amd64.deb
-shotwell-common_0.12.3-2_all.deb
-shotwell_0.12.3-2_amd64.deb
-shutdown-at-night_0.10_all.deb
-simple-scan_3.4.2-1_amd64.deb
-simplyhtml_0.13.1-3_all.deb
-sitesummary-client_0.1.8_all.deb
-sitesummary_0.1.8_all.deb
-skanlite_0.8-2_amd64.deb
-skkdic_20110529-1_all.deb
-slapd_2.4.31-1+nmu2_amd64.deb
-slbackup-php_0.4.3-2+deb7u1_all.deb
-slbackup_0.0.12-5~edu70+1_all.deb
-smarty-gettext_1.0b1-7_all.deb
-smarty3_3.1.10-2_all.deb
-smbclient_3.6.6-6_amd64.deb
-smbldap-tools_0.9.7-1_all.deb
-sndfile-programs_1.0.25-5_amd64.deb
-sndfile-tools_1.03-2+b1_amd64.deb
-snmp_5.4.3~dfsg-2.7_amd64.deb
-software-properties-common_0.82.7.1debian1_all.deb
-software-properties-gtk_0.82.7.1debian1_all.deb
-solfege_3.20.6-1_all.deb
-soprano-daemon_2.7.6+dfsg.1-2wheezy1_amd64.deb
-sound-icons_0.1-3_all.deb
-sound-juicer_3.4.0-3_amd64.deb
-sound-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-sound-theme-freedesktop_0.7.pristine-2_all.deb
-sox_14.4.0-3_amd64.deb
-speech-dispatcher-festival_0.7.1-6.2_all.deb
-speech-dispatcher_0.7.1-6.2_amd64.deb
-sql-ledger_3.0.3-1_all.deb
-squashfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-squashfs-tools_4.2-5_amd64.deb
-squeak-plugins-scratch_1.4.0.2~svn.r83-1_amd64.deb
-squeak-vm_4.4.7.2357-1.1_amd64.deb
-squid-common_2.7.STABLE9-4.1_all.deb
-squid-langpack_20120616-1_all.deb
-squid_2.7.STABLE9-4.1_amd64.deb
-ssh_6.0p1-4_all.deb
-sshfs_2.4-1_amd64.deb
-ssl-cert_1.0.32_all.deb
-sssd_1.8.4-2_amd64.deb
-stellarium-data_0.11.3-1_all.deb
-stellarium_0.11.3-1_amd64.deb
-step_4.8.4-1_amd64.deb
-stk_4.4.3-2_amd64.deb
-stopmotion_0.6.2+git.1.10d2ea43-1.1_amd64.deb
-strace-udeb_4.5.20-2.3_amd64.udeb
-strace_4.5.20-2.3_amd64.deb
-subversion_1.6.17dfsg-4+deb7u3_amd64.deb
-sudo-ldap_1.8.5p2-1+nmu1_amd64.deb
-sudo_1.8.5p2-1+nmu1_amd64.deb
-sugar-artwork-0.96_0.96.2-1_amd64.deb
-sugar-calculate-activity_40-2_all.deb
-sugar-emulator-0.96_0.96.1-2.1_all.deb
-sugar-irc-activity_8-1.1_all.deb
-sugar-physics-activity_7+dfsg-1.1_all.deb
-sugar-pippy-activity_46~dfsg-2_all.deb
-sugar-record-activity_82-1.1_all.deb
-sugar-session-0.96_0.96.1-2.1_all.deb
-sugar-tools-0.96_0.96.1-2.1_all.deb
-sugar-turtleart-activity_98-1_all.deb
-sunclock-maps_3.57-2_all.deb
-sunclock_3.57-2_amd64.deb
-sweeper_4.8.4-1_amd64.deb
-swell-foop_3.4.2-3_amd64.deb
-swh-plugins_0.4.15+1-6_amd64.deb
-synaptic_0.75.13_amd64.deb
-sysfsutils_2.1.0+repack-2_amd64.deb
-syslinux-common_4.05+dfsg-6+deb7u1_all.deb
-syslinux-udeb_4.05+dfsg-6+deb7u1_amd64.udeb
-syslinux_4.05+dfsg-6+deb7u1_amd64.deb
-sysstat_10.0.5-1_amd64.deb
-system-config-lvm_1.1.16-1_all.deb
-systemsettings_4.8.4-6_amd64.deb
-sysv-rc_2.88dsf-41_all.deb
-sysvinit-utils_2.88dsf-41_amd64.deb
-sysvinit_2.88dsf-41_amd64.deb
-tap-plugins_0.7.2-1_amd64.deb
-tar_1.26+dfsg-0.1_amd64.deb
-tasksel-data_3.14+nmu2_all.deb
-tasksel_3.14+nmu2_all.deb
-tcl8.4_8.4.19-5_amd64.deb
-tcl8.5_8.5.11-2_amd64.deb
-tcpd_7.6.q-24_amd64.deb
-tcpdump_4.3.0-1_amd64.deb
-tcptraceroute_1.5beta7+debian-4_amd64.deb
-tdb-tools_1.2.10-2_amd64.deb
-telepathy-gabble_0.16.5-1+deb7u1_amd64.deb
-telepathy-haze_0.6.0-1_amd64.deb
-telepathy-idle_0.1.11-2_amd64.deb
-telepathy-logger_0.4.0-1_amd64.deb
-telepathy-mission-control-5_5.12.3-1_amd64.deb
-telepathy-rakia_0.7.4-1_amd64.deb
-telepathy-salut_0.8.1-1_amd64.deb
-terminatorx_3.84-2_amd64.deb
-tex-common_3.15_all.deb
-tex-gyre_2.004.1-4_all.deb
-texinfo_4.13a.dfsg.1-10_amd64.deb
-texlive-base_2012.20120611-5_all.deb
-texlive-binaries_2012.20120628-4_amd64.deb
-texlive-common_2012.20120611-5_all.deb
-texlive-doc-base_2012.20120611-1_all.deb
-texlive-extra-utils_2012.20120611-2_all.deb
-texlive-font-utils_2012.20120611-2_all.deb
-texlive-fonts-recommended-doc_2012.20120611-5_all.deb
-texlive-fonts-recommended_2012.20120611-5_all.deb
-texlive-generic-recommended_2012.20120611-5_all.deb
-texlive-latex-base-doc_2012.20120611-5_all.deb
-texlive-latex-base_2012.20120611-5_all.deb
-texlive-latex-extra-doc_2012.20120611-2_all.deb
-texlive-latex-recommended-doc_2012.20120611-5_all.deb
-texlive-latex-recommended_2012.20120611-5_all.deb
-texlive-luatex_2012.20120611-5_all.deb
-texlive-pictures-doc_2012.20120611-5_all.deb
-texlive-pictures_2012.20120611-5_all.deb
-texlive-pstricks-doc_2012.20120611-2_all.deb
-texlive-pstricks_2012.20120611-2_all.deb
-texlive_2012.20120611-5_all.deb
-tftp_0.17-18_amd64.deb
-tightvncserver_1.3.9-6.4_amd64.deb
-tilp2_1.12-1_amd64.deb
-tilp_7.0-1_all.deb
-timidity-daemon_2.13.2-40.1_all.deb
-timidity_2.13.2-40.1_amd64.deb
-tipa_1.3-19_all.deb
-tk8.4_8.4.19-5_amd64.deb
-tk8.5_8.5.11-2_amd64.deb
-tomboy_1.10.0-2_amd64.deb
-totem-common_3.0.1-8_all.deb
-totem-plugins_3.0.1-8_amd64.deb
-totem_3.0.1-8_amd64.deb
-traceroute_2.0.18-3_amd64.deb
-tracker-extract_0.14.1-3_amd64.deb
-tracker-gui_0.14.1-3_amd64.deb
-tracker-miner-fs_0.14.1-3_amd64.deb
-tracker-utils_0.14.1-3_amd64.deb
-tracker_0.14.1-3_amd64.deb
-trans-de-en_1.7-2_all.deb
-transfig_3.2.5.d-3_amd64.deb
-transmission-common_2.52-3+nmu1_all.deb
-transmission-gtk_2.52-3+nmu1_amd64.deb
-tsconf_1.0-11_all.deb
-ttf-arphic-bsmi00lp_2.10-12_all.deb
-ttf-arphic-gbsn00lp_2.11-12_all.deb
-ttf-arphic-ukai_0.2.20080216.2-3_all.deb
-ttf-arphic-uming_0.2.20080216.2-4_all.deb
-ttf-bengali-fonts_1.1_all.deb
-ttf-dejavu-core_2.33-3_all.deb
-ttf-dejavu-extra_2.33-3_all.deb
-ttf-dejavu_2.33-3_all.deb
-ttf-denemo_0.9.2-3_all.deb
-ttf-devanagari-fonts_1.1_all.deb
-ttf-freefont_20120503-1_all.deb
-ttf-gujarati-fonts_1.1_all.deb
-ttf-kannada-fonts_1.1_all.deb
-ttf-larabie-deco_20011216-4_all.deb
-ttf-liberation_1.07.2-6_all.deb
-ttf-linex_2.2-6_all.deb
-ttf-malayalam-fonts_1.1_all.deb
-ttf-marvosym_0.1+dfsg-2_all.deb
-ttf-mgopen_1.1-8_all.deb
-ttf-oriya-fonts_1.1_all.deb
-ttf-punjabi-fonts_1.1_all.deb
-ttf-sil-doulos_4.106-4_all.deb
-ttf-sil-gentium-basic_1.1-5_all.deb
-ttf-sjfonts_2.0.2-1.1_all.deb
-ttf-tamil-fonts_1.2_all.deb
-ttf-telugu-fonts_1.1_all.deb
-ttf-unifont_5.1.20080914-1.3_all.deb
-ttf-vlgothic_20120629-2_all.deb
-ttf-wqy-microhei_0.2.0-beta-1.1_all.deb
-ttf-wqy-zenhei_0.9.45-4_all.deb
-turtleart_98-1_all.deb
-tuxmath_1.8.0-4_amd64.deb
-tuxpaint-config_0.0.12-3_amd64.deb
-tuxpaint-data_0.9.21-1.1_all.deb
-tuxpaint-plugins-default_0.9.21-1.1_amd64.deb
-tuxpaint-stamps-default_2009.06.28-1_all.deb
-tuxpaint_0.9.21-1.1_amd64.deb
-tuxtype-data_1.8.1-5_all.deb
-tuxtype_1.8.1-5_amd64.deb
-tzdata-java_2013b-2_all.deb
-tzdata_2013b-2_all.deb
-tzsetup-udeb_0.42_all.udeb
-ucf_3.0025+nmu3_all.deb
-udev_175-7.2_amd64.deb
-udf-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-udisks_1.0.4-7_amd64.deb
-ufs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-ufsutils_8.2-3_amd64.deb
-uinput-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-umbrello_4.8.4+dfsg-1_amd64.deb
-unattended-upgrades_0.79.5_all.deb
-unifont_5.1.20080914-1.3_all.deb
-unison_2.40.65-2_amd64.deb
-uno-libs3_3.5.4+dfsg-4_amd64.deb
-unoconv_0.5-1_all.deb
-unzip_6.0-8_amd64.deb
-update-inetd_4.43_all.deb
-update-notifier-common_0.99.3debian11_all.deb
-update-notifier-kde_1.2.4_amd64.deb
-upower_0.9.17-1_amd64.deb
-ure_3.5.4+dfsg-4_amd64.deb
-usb-modeswitch-data_20120815-2_all.deb
-usb-modeswitch_1.2.3+repack0-1_amd64.deb
-usbmuxd_1.0.7-2_amd64.deb
-usbutils-udeb_005-3_amd64.udeb
-usbutils_005-3_amd64.deb
-user-setup-udeb_1.48_all.udeb
-util-linux-udeb_2.20.1-5.3_amd64.udeb
-util-linux_2.20.1-5.3_amd64.deb
-uuid-runtime_2.20.1-5.3_amd64.deb
-valgrind-dbg_3.7.0-6_amd64.deb
-valgrind_3.7.0-6_amd64.deb
-vbetool_1.1-2_amd64.deb
-vcdimager_0.7.24+dfsg-0.1_amd64.deb
-vgrabbj_0.9.6-5.1_amd64.deb
-viewmol_2.4.1-18_amd64.deb
-vim-common_7.3.547-7_amd64.deb
-vim-runtime_7.3.547-7_all.deb
-vim-tiny_7.3.547-7_amd64.deb
-vim_7.3.547-7_amd64.deb
-vinagre_3.4.2-2_amd64.deb
-vino_3.4.2-1+b1_amd64.deb
-virtio-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-virtuoso-minimal_6.1.4+dfsg1-7_all.deb
-virtuoso-opensource-6.1-bin_6.1.4+dfsg1-7_amd64.deb
-virtuoso-opensource-6.1-common_6.1.4+dfsg1-7_amd64.deb
-vlc-data_2.0.3-5_all.deb
-vlc-nox_2.0.3-5_amd64.deb
-vlc-plugin-notify_2.0.3-5_amd64.deb
-vlc-plugin-pulse_2.0.3-5_amd64.deb
-vlc_2.0.3-5_amd64.deb
-vnc4server_4.1.1+X4.3.0-37.1_amd64.deb
-voikko-fi_1.12-1_amd64.deb
-vorbis-tools_1.4.0-1_amd64.deb
-vpnc_0.5.3r512-2_amd64.deb
-vym_2.2.0-1_amd64.deb
-wakeonlan_0.41-11_all.deb
-wamerican_7.1-1_all.deb
-wavpack_4.60.1-3_amd64.deb
-wdanish_1.6.25-1.1_all.deb
-wfrench_1.2.3-10_all.deb
-wget_1.13.4-3_amd64.deb
-whiptail_0.52.14-11.1_amd64.deb
-whois_5.0.23_amd64.deb
-wicd-daemon_1.7.2.4-4_all.deb
-wicd-gtk_1.7.2.4-4_all.deb
-wicd_1.7.2.4-4_all.deb
-wide-dhcpv6-client-udeb_20080615-11.1_amd64.udeb
-winbind_3.6.6-6_amd64.deb
-wireless-regdb_2011.04.28-1_all.deb
-wireless-tools-udeb_30~pre9-8_amd64.udeb
-wireless-tools_30~pre9-8_amd64.deb
-wireshark-common_1.8.2-5wheezy3_amd64.deb
-wireshark_1.8.2-5wheezy3_amd64.deb
-witalian_1.7.5_all.deb
-wngerman_20120607-1_all.deb
-wnorwegian_2.0.10-5.1_all.deb
-wodim_1.1.11-2_amd64.deb
-wordnet-base_3.0-29_all.deb
-wordnet-gui_3.0-29_amd64.deb
-wordnet_3.0-29_amd64.deb
-wpasupplicant-udeb_1.0-3+b2_amd64.udeb
-wpasupplicant_1.0-3+b2_amd64.deb
-wspanish_1.0.26_all.deb
-wwwconfig-common_0.2.2_all.deb
-x11-apps_7.7~2_amd64.deb
-x11-common_7.7+2_all.deb
-x11-session-utils_7.6+2_amd64.deb
-x11-utils_7.7~1_amd64.deb
-x11-xfs-utils_7.7~1_amd64.deb
-x11-xkb-utils_7.7~1_amd64.deb
-x11-xserver-utils_7.7~3_amd64.deb
-x11proto-composite-dev_0.4.2-2_all.deb
-x11proto-core-dev_7.0.23-1_all.deb
-x11proto-damage-dev_1.2.1-2_all.deb
-x11proto-fixes-dev_5.0-2_all.deb
-x11proto-input-dev_2.2-1_all.deb
-x11proto-kb-dev_1.0.6-2_all.deb
-x11proto-randr-dev_1.3.2-2_all.deb
-x11proto-render-dev_0.11.1-2_all.deb
-x11proto-xext-dev_7.2.1-1_all.deb
-x11proto-xinerama-dev_1.2.1-2_all.deb
-xabacus_7.6.8-3_amd64.deb
-xarchiver_0.5.2+20090319+dfsg-4.1_amd64.deb
-xauth_1.0.7-1_amd64.deb
-xbase-clients_7.7+2_all.deb
-xbitmaps_1.1.1-1_all.deb
-xboard_4.6.2-1_amd64.deb
-xbrlapi_4.4-10_amd64.deb
-xchat-common_2.8.8-7.1_all.deb
-xchat_2.8.8-7.1_amd64.deb
-xdg-user-dirs-gtk_0.9-1_amd64.deb
-xdg-user-dirs_0.14-1_amd64.deb
-xdg-utils_1.1.0~rc1+git20111210-6_all.deb
-xdrawchem_2.0-2_amd64.deb
-xfonts-100dpi-transcoded_1.0.3_all.deb
-xfonts-100dpi_1.0.3_all.deb
-xfonts-75dpi-transcoded_1.0.3_all.deb
-xfonts-75dpi_1.0.3_all.deb
-xfonts-base_1.0.3_all.deb
-xfonts-encodings_1.0.4-1_all.deb
-xfonts-mathml_6_all.deb
-xfonts-scalable_1.0.3-1_all.deb
-xfonts-unifont_5.1.20080914-1.3_all.deb
-xfonts-utils_7.7~1_amd64.deb
-xfs-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-xfsprogs-udeb_3.1.7+b1_amd64.udeb
-xine-ui_0.99.7-1_amd64.deb
-xinit_1.3.2-1_amd64.deb
-xjig_2.4-13+b2_amd64.deb
-xkb-data_2.5.1-3_all.deb
-xmhtml1_1.1.7-18_amd64.deb
-xml-core_0.13+nmu2_all.deb
-xmms2-core_0.8+dfsg-4_amd64.deb
-xmms2-plugin-alsa_0.8+dfsg-4_amd64.deb
-xmms2-plugin-id3v2_0.8+dfsg-4_amd64.deb
-xmms2-plugin-mad_0.8+dfsg-4_amd64.deb
-xmms2-plugin-vorbis_0.8+dfsg-4_amd64.deb
-xorg-docs-core_1.6-1_all.deb
-xorg-sgml-doctools_1.10-1_all.deb
-xorg_7.7+2_amd64.deb
-xoscope_2.0-3.2_amd64.deb
-xpaint_2.9.1.4-3+b2_amd64.deb
-xpdf_3.03-10_amd64.deb
-xplanet-images_1.2.1-4.1_all.deb
-xplanet_1.2.1-4.1+b1_amd64.deb
-xrdp_0.5.0-2_amd64.deb
-xscreensaver-data-extra_5.15-3_amd64.deb
-xscreensaver-data_5.15-3_amd64.deb
-xscreensaver-gl-extra_5.15-3_amd64.deb
-xscreensaver-gl_5.15-3_amd64.deb
-xscreensaver-screensaver-bsod_5.15-3_amd64.deb
-xscreensaver_5.15-3_amd64.deb
-xserver-common_1.12.4-6_all.deb
-xserver-xephyr_1.12.4-6_amd64.deb
-xserver-xorg-core_1.12.4-6_amd64.deb
-xserver-xorg-input-all_7.7+2_amd64.deb
-xserver-xorg-input-evdev_2.7.0-1+b1_amd64.deb
-xserver-xorg-input-synaptics_1.6.2-2_amd64.deb
-xserver-xorg-input-wacom_0.15.0+20120515-2_amd64.deb
-xserver-xorg-video-all_7.7+2_amd64.deb
-xserver-xorg-video-apm_1.2.3-3_amd64.deb
-xserver-xorg-video-ark_0.7.4-1+b1_amd64.deb
-xserver-xorg-video-ati_6.14.4-8_amd64.deb
-xserver-xorg-video-chips_1.2.4-2_amd64.deb
-xserver-xorg-video-cirrus_1.4.0-2_amd64.deb
-xserver-xorg-video-fbdev_0.4.2-4+b3_amd64.deb
-xserver-xorg-video-i128_1.3.5-1+b1_amd64.deb
-xserver-xorg-video-intel_2.19.0-6_amd64.deb
-xserver-xorg-video-mach64_6.9.1-2_amd64.deb
-xserver-xorg-video-mga_1.5.0-3_amd64.deb
-xserver-xorg-video-neomagic_1.2.6-1_amd64.deb
-xserver-xorg-video-nouveau_1.0.1-5_amd64.deb
-xserver-xorg-video-openchrome_0.2.906-2+deb7u1_amd64.deb
-xserver-xorg-video-r128_6.8.2-1_amd64.deb
-xserver-xorg-video-radeon_6.14.4-8_amd64.deb
-xserver-xorg-video-rendition_4.2.4-3_amd64.deb
-xserver-xorg-video-s3_0.6.3-5_amd64.deb
-xserver-xorg-video-s3virge_1.10.4-5_amd64.deb
-xserver-xorg-video-savage_2.3.4-1_amd64.deb
-xserver-xorg-video-siliconmotion_1.7.6-1_amd64.deb
-xserver-xorg-video-sis_0.10.4-1_amd64.deb
-xserver-xorg-video-sisusb_0.9.4-3_amd64.deb
-xserver-xorg-video-tdfx_1.4.4-1_amd64.deb
-xserver-xorg-video-trident_1.3.5-1_amd64.deb
-xserver-xorg-video-tseng_1.2.4-3_amd64.deb
-xserver-xorg-video-vesa_2.3.1-1+b1_amd64.deb
-xserver-xorg-video-vmware_12.0.2-1+b1_amd64.deb
-xserver-xorg-video-voodoo_1.2.4-2+b3_amd64.deb
-xserver-xorg_7.7+2_amd64.deb
-xsltproc_1.1.26-14.1_amd64.deb
-xsok_1.02-17_amd64.deb
-xterm_278-4_amd64.deb
-xtide-data_20100529-1_all.deb
-xtide_2.11-1_amd64.deb
-xtrans-dev_1.2.7-1_all.deb
-xul-ext-adblock-plus_2.1-1_all.deb
-xul-ext-mozvoikko_2.0.1-1_all.deb
-xulrunner-10.0_10.0.12esr-1_amd64.deb
-xulrunner-17.0_17.0.6esr-1~deb7u1_amd64.deb
-xz-utils_5.1.1alpha+20120614-2_amd64.deb
-yelp-xsl_3.4.2-1_all.deb
-yelp_3.4.2-1+b1_amd64.deb
-zeitgeist-core_0.9.0.1-1_amd64.deb
-zenity-common_3.4.0-2_all.deb
-zenity_3.4.0-2_amd64.deb
-zip_3.0-6_amd64.deb
-zlib-modules-3.2.0-4-amd64-di_3.2.41-2_amd64.udeb
-zlib1g-dev_1.2.7.dfsg-13_amd64.deb
-zlib1g-udeb_1.2.7.dfsg-13_amd64.udeb
-zlib1g_1.2.7.dfsg-13_amd64.deb
Deleted: trunk/src/build/CD-administrator/sort-by-popcon-wheezy-test-dvd-amd64.txt
===================================================================
--- trunk/src/build/CD-administrator/sort-by-popcon-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:02 UTC (rev 80858)
+++ trunk/src/build/CD-administrator/sort-by-popcon-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:21 UTC (rev 80859)
@@ -1,16020 +0,0 @@
-100.0 97.9 popularity-contest (notwanted)
-100.0 97.4 perl (notwanted)
-100.0 94.0 openssh-server
-100.0 92.3 perl-modules (notwanted)
-100.0 91.9 python-minimal (notwanted)
-100.0 90.2 openssl
- 99.6 89.8 python-support (notwanted)
-100.0 80.0 usbutils (notwanted)
-100.0 79.1 pciutils
- 79.6 77.0 mlocate
- 96.6 74.5 python-imaging (notwanted)
-100.0 74.0 openssh-client
- 99.6 71.5 dbus (notwanted)
-100.0 67.2 psmisc
- 95.3 67.2 libwww-perl
- 99.6 66.4 liburi-perl (notwanted)
- 91.1 65.5 avahi-daemon
- 90.2 64.7 ntp
- 82.6 64.7 libpango1.0-0 (notwanted)
- 98.7 64.3 acpid (notwanted)
- 66.0 64.3 linux-sound-base (notoncd) (notwanted)
- 80.9 63.0 dmsetup (notwanted)
- 65.1 62.1 oss-compat (notwanted)
- 80.0 61.3 cups
- 70.2 61.3 powermgmt-base (notwanted)
- 83.8 56.2 cpp (notwanted)
- 77.4 55.3 console-setup (notwanted)
- 69.8 55.3 x11-xkb-utils (notwanted)
- 79.1 54.5 nfs-common
- 70.2 54.5 x11-xserver-utils
- 66.0 54.5 hal (notoncd) (notwanted)
-100.0 53.6 bind9-host
- 82.6 53.2 libgtk2.0-0 (notwanted)
- 81.7 53.2 librsvg2-common (notwanted)
- 70.2 53.2 xserver-xorg-core (notwanted)
- 70.2 52.8 pm-utils (notwanted)
- 82.6 51.9 libgconf2-4 (notwanted)
- 77.9 51.9 portmap (notoncd) (notwanted)
- 69.8 51.9 iceweasel
- 65.5 51.9 dbus-x11 (notwanted)
- 62.1 51.9 udisks (notwanted)
- 71.1 51.5 libwmf0.2-7 (notwanted)
- 94.0 51.1 libnet-ssleay-perl (notwanted)
- 78.3 51.1 python2.6-minimal (notwanted)
- 70.2 50.6 xserver-xorg
- 75.7 49.8 x11-utils (notwanted)
- 92.8 49.4 libnss3-1d (notwanted)
- 56.6 49.4 python2.5-minimal (notoncd) (notwanted)
- 51.5 49.4 gawk (notwanted)
- 70.2 48.5 alsa-utils
- 49.4 48.5 apache2.2-common (notwanted)
- 50.6 47.7 desktop-profiles (notwanted)
- 97.0 47.2 python-dbus (notwanted)
- 52.8 47.2 libxml-sax-perl (notwanted)
- 52.3 47.2 libxml-simple-perl (notwanted)
- 48.1 47.2 php5-common (notwanted)
- 62.1 46.8 gvfs (notwanted)
- 58.3 46.8 kbd (notwanted)
- 56.2 46.8 python2.5 (notoncd) (notwanted)
- 47.7 46.8 apache2-mpm-prefork (notwanted)
- 47.2 46.8 ocsinventory-agent (notoncd) (notwanted)
- 47.7 46.4 libapache2-mod-php5 (notwanted)
- 66.8 46.0 lvm2 (notwanted)
- 49.8 46.0 ng-utils
- 60.9 45.5 cpp-4.4 (notoncd) (notwanted)
- 82.6 45.1 laptop-detect (notwanted)
- 75.3 44.7 libgl1-mesa-dri
- 50.2 44.7 consolekit
- 46.8 44.7 libxml-libxml-perl (notwanted)
-100.0 43.8 libsasl2-2 (notwanted)
- 63.8 43.8 kdelibs4c2a (notoncd) (notwanted)
- 45.1 43.8 facter (notoncd) (notwanted)
- 44.7 43.8 php5-ldap (notwanted)
- 82.1 43.4 python-cairo (notwanted)
- 82.1 43.4 python-gtk2
- 49.4 43.4 lsscsi
- 97.4 43.0 python-gobject (notwanted)
- 44.3 43.0 sitesummary-client
- 43.8 43.0 puppet-common (notoncd) (notwanted)
- 79.6 42.6 ruby1.8 (notwanted)
- 52.3 42.6 ethtool
- 43.8 42.6 pkgsync (notoncd) (notwanted)
- 44.3 42.1 lockfile-progs (notwanted)
- 49.4 41.7 fping
- 48.1 41.7 libpam-ck-connector
- 93.2 41.3 bzip2
- 80.0 41.3 libruby1.8 (notwanted)
- 54.9 41.3 numlockx
- 63.8 40.4 timidity (notwanted)
- 42.6 40.4 squid
- 41.7 40.4 anacron (notwanted)
- 41.7 40.4 python-gst0.10
- 75.3 40.0 libgnomevfs2-0 (notwanted)
- 50.6 40.0 libnet-dns-perl (notwanted)
- 41.7 39.6 shutdown-at-night
- 78.3 39.1 python2.6 (notwanted)
- 68.9 39.1 lsb-release (notwanted)
- 60.9 38.3 python-notify (notwanted)
- 44.7 38.3 libshadow-ruby1.8 (notoncd) (notwanted)
- 62.1 37.9 libcanberra0 (notwanted)
- 60.0 37.9 iceweasel-l10n-es-es
- 43.4 37.9 munin-node
- 59.1 37.4 exim4-base (notwanted)
- 56.6 37.4 dhcp3-client (notoncd) (notwanted)
- 66.8 37.0 gtk2-engines (notwanted)
- 81.3 36.2 python-glade2 (notwanted)
- 82.6 35.7 gconf2 (notwanted)
- 42.1 35.3 slapd
- 41.7 34.9 python-openssl (notoncd) (notwanted)
- 37.0 34.9 apache2.2-bin (notwanted)
- 66.4 34.5 sox (notwanted)
- 66.0 34.5 ldap-utils
- 40.9 34.5 python-twisted-core (notoncd) (notwanted)
- 40.0 34.5 python-zope.interface (notwanted)
- 58.7 34.0 python-crypto (notoncd) (notwanted)
- 57.0 34.0 xulrunner-1.9.1 (notoncd) (notwanted)
- 41.3 34.0 python-wxversion (notwanted)
- 35.3 34.0 python-wxgtk2.8 (notwanted)
- 40.9 33.6 python-twisted-bin (notoncd) (notwanted)
- 34.0 33.6 acpi-fakekey (notoncd) (notwanted)
- 33.6 33.6 wicd-daemon (notwanted)
- 37.9 33.2 gdm (notoncd)
- 33.6 33.2 wicd-gtk (notwanted)
- 48.1 32.8 libimlib2 (notwanted)
- 34.5 32.8 exim4-daemon-light (notwanted)
- 75.7 31.9 cups-client
- 33.2 31.9 openbox (notwanted)
- 33.2 31.9 thunar (notoncd) (notwanted)
- 32.8 31.9 gamin (notoncd) (notwanted)
- 32.8 31.9 lxpanel (notwanted)
- 31.9 31.9 preload (notoncd) (notwanted)
- 31.9 31.5 controlaula (notoncd) (notwanted)
- 31.9 31.5 cryptsetup (notwanted)
- 31.5 31.5 splashy (notoncd) (notwanted)
- 44.3 31.1 puppet (notoncd) (notwanted)
- 31.1 31.1 feh (notoncd) (notwanted)
- 66.0 30.6 libsox-fmt-alsa (notwanted)
- 66.0 30.6 libsox-fmt-base (notwanted)
- 30.6 30.6 idesk (notoncd) (notwanted)
- 30.6 30.6 libmenu-cache0 (notoncd) (notwanted)
- 30.6 30.6 linex-colegios-artwork (notoncd) (notwanted)
- 30.6 30.6 zeroconf-services-client (notoncd) (notwanted)
- 68.5 30.2 xserver-xorg-video-intel (notwanted)
- 64.7 30.2 ntpdate
- 40.0 30.2 linux-image-2.6.32-5-686 (notoncd) (notwanted)
- 75.7 29.8 libpython2.6 (notoncd) (notwanted)
- 49.4 29.8 resolvconf
- 32.8 29.8 nagios-plugins-basic (notwanted)
- 59.1 29.4 exim4-config (notwanted)
- 51.1 29.4 xserver-xorg-video-vesa (notwanted)
- 47.2 29.4 debian-edu-config
- 41.3 29.4 php5-cli (notwanted)
- 30.2 29.4 python-parted (notoncd) (notwanted)
- 29.8 29.4 php5-mysql (notwanted)
- 29.4 29.4 usbhomeclient (notoncd) (notwanted)
- 70.6 28.9 gstreamer0.10-plugins-base
- 70.6 28.9 libqtgui4 (notwanted)
- 71.5 28.5 libgstreamer0.10-0 (notwanted)
- 70.2 28.5 xserver-xorg-input-evdev (notwanted)
- 34.0 28.5 ssmtp (notoncd) (notwanted)
- 82.1 28.1 python-apt (notwanted)
- 69.8 28.1 libqt4-svg (notwanted)
- 69.4 28.1 gstreamer0.10-plugins-good
- 37.9 28.1 xserver-common (notwanted)
- 68.9 27.7 cups-bsd
- 51.1 27.7 xserver-xorg-video-fbdev (notwanted)
- 37.0 27.2 python-simplejson (notwanted)
- 32.3 27.2 nagios-plugins-standard
-100.0 26.8 gettext-base (notwanted)
- 28.5 26.4 readahead-fedora
- 26.4 26.0 sitesummary
- 99.6 25.5 busybox (notwanted)
- 45.5 25.5 libhtml-template-perl (notwanted)
- 31.5 25.5 gxmessage (notoncd) (notwanted)
- 37.4 25.1 xserver-xorg-input-mouse (notoncd) (notwanted)
- 26.8 25.1 librrds-perl (notwanted)
-100.0 24.7 initramfs-tools (notwanted)
- 98.7 24.7 grub-common (notwanted)
- 71.1 24.7 openjdk-6-jre-headless (notwanted)
- 60.4 24.7 firmware-linux-nonfree (notoncd) (notwanted)
- 59.1 24.7 wpasupplicant (notwanted)
- 40.4 24.7 dnsutils (notwanted)
-100.0 24.3 klibc-utils (notwanted)
-100.0 24.3 tcpd (notwanted)
- 76.6 24.3 libsasl2-modules (notwanted)
- 72.3 24.3 libspeex1 (notwanted)
- 36.6 24.3 xserver-xorg-input-kbd (notoncd) (notwanted)
- 26.4 24.3 libc6-i686 (notoncd) (notwanted)
- 25.1 24.3 munin
- 24.7 24.3 exim4-daemon-heavy
- 42.6 23.8 nscd
- 26.0 23.4 libconfig-general-perl (notwanted)
- 80.0 23.0 grub-pc (notwanted)
- 66.8 23.0 libavutil49 (notoncd) (notwanted)
- 33.2 23.0 rdiff-backup
- 26.4 23.0 libpam-tmpdir
- 25.1 23.0 slbackup
- 70.6 22.6 openjdk-6-jre (notwanted)
- 24.3 22.6 munin-common (notwanted)
- 23.0 22.6 dhcpcd (notoncd) (notwanted)
- 30.2 22.1 git (notwanted)
- 99.1 21.7 less
- 92.3 21.7 openbsd-inetd
- 84.3 21.7 libuuid-perl (notwanted)
- 63.8 21.7 libdigest-sha1-perl (notoncd) (notwanted)
- 63.0 21.7 ed (notwanted)
- 23.4 21.7 gcc-4.4 (notoncd) (notwanted)
- 22.6 21.7 libfile-spec-perl (notoncd) (notwanted)
- 71.1 21.3 openjdk-6-jre-lib (notwanted)
- 24.3 21.3 apt-xapian-index (notwanted)
- 24.3 21.3 liblocale-maketext-lexicon-perl (notoncd) (notwanted)
- 24.3 21.3 libperlio-eol-perl (notoncd) (notwanted)
- 24.3 21.3 python-xapian (notwanted)
- 23.8 21.3 libpam-ldap (notoncd) (notwanted)
- 95.3 20.9 libhtml-parser-perl (notwanted)
- 69.4 20.9 gstreamer0.10-alsa
- 48.9 20.9 nullidentd
- 37.0 20.9 libyaml-syck-perl (notwanted)
- 28.5 20.9 libclass-accessor-perl (notwanted)
- 25.5 20.9 libsvn-perl (notoncd) (notwanted)
- 23.8 20.9 etckeeper (notoncd) (notwanted)
- 23.8 20.9 libclass-autouse-perl (notoncd) (notwanted)
- 23.8 20.9 libdata-hierarchy-perl (notoncd) (notwanted)
- 23.8 20.9 libperlio-via-dynamic-perl (notoncd) (notwanted)
- 23.8 20.9 libperlio-via-symlink-perl (notoncd) (notwanted)
- 22.6 20.9 svk (notoncd) (notwanted)
-100.0 20.4 bc
- 81.7 20.4 ghostscript (notwanted)
- 24.3 20.4 libuniversal-require-perl (notoncd) (notwanted)
- 23.8 20.4 libclass-data-inheritable-perl (notoncd) (notwanted)
- 23.8 20.4 libpath-class-perl (notoncd) (notwanted)
- 23.4 20.4 libpam-gnome-keyring (notwanted)
- 22.6 20.4 libstdc++6-4.4-dev (notoncd) (notwanted)
- 68.1 20.0 patch (notwanted)
- 54.0 20.0 libavcodec52 (notoncd) (notwanted)
- 52.8 20.0 libkdecore5 (notwanted)
- 49.8 20.0 libconvert-asn1-perl (notwanted)
- 49.4 20.0 libnet-ldap-perl (notwanted)
- 23.8 20.0 diff (notoncd) (notwanted)
- 23.0 20.0 libapp-cli-perl (notoncd) (notwanted)
- 21.7 20.0 etcinsvk (notoncd) (notwanted)
- 20.9 20.0 libpam-krb5
- 81.3 19.6 libgphoto2-2 (notwanted)
- 54.9 19.6 kdelibs-bin (notwanted)
- 53.2 19.6 kdebase-runtime (notwanted)
- 52.8 19.6 kdelibs5-plugins (notwanted)
- 41.7 19.6 console-tools (notoncd) (notwanted)
- 19.6 19.6 denyhosts (notoncd) (notwanted)
- 64.7 19.1 libxine1-misc-plugins (notoncd) (notwanted)
- 56.6 19.1 libaccess-bridge-java-jni (notoncd) (notwanted)
- 54.5 19.1 gstreamer0.10-plugins-bad (notwanted)
- 44.7 19.1 vlc-nox (notwanted)
- 33.2 19.1 libthunar-vfs-1-2 (notoncd) (notwanted)
- 30.6 19.1 kdm
- 19.1 19.1 libapache2-mod-python (notoncd) (notwanted)
- 64.3 18.7 libxine1-ffmpeg (notoncd) (notwanted)
- 20.4 18.7 killer
- 19.1 18.7 mysql-client-5.1 (notoncd) (notwanted)
- 65.5 18.3 notification-daemon (notwanted)
- 44.3 18.3 libnet-server-perl (notwanted)
- 18.3 18.3 libapache2-mod-wsgi (notoncd) (notwanted)
- 18.3 18.3 sarg (notoncd) (notwanted)
- 81.7 17.9 xauth (notwanted)
- 43.0 17.9 rwhod
- 33.6 17.9 atftpd
- 17.9 17.9 liblog-agent-perl (notoncd) (notwanted)
- 78.3 17.4 shared-mime-info (notwanted)
- 49.8 17.4 wakeonlan (notwanted)
- 44.7 17.4 vlc (notwanted)
- 41.3 17.4 evince (notwanted)
- 31.5 17.4 klipper (notwanted)
- 31.1 17.4 kmix
- 22.1 17.4 firmware-bnx2 (notwanted)
- 18.7 17.4 apt-spy (notoncd) (notwanted)
- 65.1 17.0 libgtk2.0-bin (notwanted)
- 51.1 17.0 libterm-readkey-perl (notwanted)
- 30.6 17.0 korganizer
- 27.7 17.0 at (notoncd) (notwanted)
- 26.0 17.0 network-manager
- 17.9 17.0 debmirror (notoncd) (notwanted)
- 17.9 17.0 liblockfile-simple-perl (notoncd) (notwanted)
- 17.4 17.0 gcc-4.3 (notoncd) (notwanted)
- 17.4 17.0 php5-gd (notwanted)
- 64.7 16.6 libswscale0 (notoncd) (notwanted)
- 53.6 16.6 python-cups (notwanted)
- 31.1 16.6 ooo4kids-debian-menus (notoncd) (notwanted)
- 28.9 16.6 lm-sensors (notoncd) (notwanted)
- 94.5 16.2 libnet-ip-perl (notwanted)
- 64.7 16.2 libpostproc51 (notoncd) (notwanted)
- 64.7 16.2 libxine1-bin (notoncd) (notwanted)
- 62.6 16.2 gcompris
- 31.1 16.2 rpm (notwanted)
- 48.9 15.7 phonon-backend-xine (notoncd) (notwanted)
- 31.1 15.7 konqueror-nsplugins (notwanted)
- 29.8 15.7 pdns-server (notoncd) (notwanted)
- 15.7 15.7 usplash (notoncd) (notwanted)
- 46.8 15.3 desktop-file-utils
- 31.9 15.3 linux-image-2.6.32-4-686 (notoncd) (notwanted)
- 29.8 15.3 iceweasel-l10n-de
- 15.7 15.3 php5-mcrypt (notwanted)
- 80.9 14.9 libkrb5-3 (notwanted)
- 56.2 14.9 python-gdbm (notwanted)
- 48.9 14.9 libfilesys-df-perl (notwanted)
- 42.6 14.9 gnome-menus (notwanted)
- 38.3 14.9 libevince2 (notoncd) (notwanted)
- 30.6 14.9 uno-libs3 (notwanted)
- 30.6 14.9 ure (notwanted)
- 29.4 14.9 pdns-backend-ldap (notoncd) (notwanted)
- 28.9 14.9 pulseaudio
- 28.5 14.9 rpm-common (notwanted)
- 21.7 14.9 python-ldap (notoncd) (notwanted)
-100.0 14.5 rsync
- 40.4 14.5 wireless-tools (notwanted)
- 32.3 14.5 smarty-gettext (notwanted)
- 20.9 14.5 libsasl2-modules-gssapi-mit
- 14.9 14.5 php5-suhosin (notoncd) (notwanted)
- 97.4 14.0 python-central (notwanted)
- 82.1 14.0 foomatic-filters (notwanted)
- 37.9 14.0 libdirectfb-extra (notwanted)
- 34.0 14.0 konsole
- 33.2 14.0 smarty (notoncd) (notwanted)
- 32.3 14.0 policykit-1 (notwanted)
- 14.0 14.0 haarpcache (notoncd) (notwanted)
- 82.6 13.6 poppler-utils (notwanted)
- 65.1 13.6 libavformat52 (notoncd) (notwanted)
- 63.0 13.6 tuxpaint
- 40.0 13.6 vlc-plugin-pulse (notwanted)
- 29.4 13.6 pdns-recursor (notoncd) (notwanted)
- 28.1 13.6 iceweasel-l10n-en-gb
- 26.0 13.6 openoffice.org-common (notoncd) (notwanted)
- 25.1 13.6 modemmanager (notwanted)
- 16.6 13.6 bind9utils (notwanted)
- 15.7 13.6 courier-authlib (notoncd) (notwanted)
-100.0 13.2 lsof (notwanted)
- 56.2 13.2 libdirectfb-1.2-9 (notwanted)
- 33.2 13.2 thunar-volman (notoncd) (notwanted)
- 27.2 13.2 iceweasel-l10n-el
- 27.2 13.2 iceweasel-l10n-it
- 18.7 13.2 nbd-server
- 14.5 13.2 courier-imap (notoncd) (notwanted)
- 14.5 13.2 courier-imap-ssl (notoncd) (notwanted)
- 14.0 13.2 liblog-log4perl-perl (notwanted)
- 69.8 12.8 menu
- 64.7 12.8 python-pygame (notwanted)
- 62.1 12.8 python-numpy (notwanted)
- 51.1 12.8 cpufrequtils
- 44.3 12.8 syslinux-common (notwanted)
- 27.2 12.8 iceweasel-l10n-fr
- 26.8 12.8 iceweasel-l10n-es-ar
- 26.8 12.8 iceweasel-l10n-eu
- 19.6 12.8 phpldapadmin (notoncd) (notwanted)
- 18.7 12.8 ltsp-server (notwanted)
- 15.3 12.8 courier-ssl (notoncd) (notwanted)
- 63.4 12.3 tuxpaint-plugins-default (notwanted)
- 51.9 12.3 hdparm
- 34.9 12.3 nfs-kernel-server
- 31.5 12.3 mysql-server-core-5.1 (notoncd) (notwanted)
- 25.5 12.3 openoffice.org-core (notoncd) (notwanted)
- 61.3 11.9 sudo
- 32.3 11.9 jclic (notoncd) (notwanted)
- 28.9 11.9 pulseaudio-utils
- 25.1 11.9 iceweasel-l10n-pt-br
- 25.1 11.9 iceweasel-l10n-sv-se
- 24.3 11.9 mktemp (notoncd) (notwanted)
- 24.3 11.9 nslcd (notwanted)
-100.0 11.5 eject
-100.0 11.5 file (notwanted)
-100.0 11.5 mime-support (notwanted)
- 80.0 11.5 libnfsidmap2 (notwanted)
- 58.7 11.5 libutempter0 (notwanted)
- 50.2 11.5 xserver-xorg-video-radeon (notwanted)
- 48.1 11.5 xserver-xorg-video-ati (notwanted)
- 33.2 11.5 exo-utils (notoncd) (notwanted)
- 11.9 11.5 php5-recode (notwanted)
- 72.8 11.1 libblas3gf (notwanted)
- 72.8 11.1 liblapack3gf (notoncd) (notwanted)
- 71.9 11.1 libqt3-mt (notoncd) (notwanted)
- 63.4 11.1 ktuberling
- 59.6 11.1 scrollkeeper (notwanted)
- 47.2 11.1 icedtea6-plugin
- 34.5 11.1 libalgorithm-diff-perl (notwanted)
- 29.4 11.1 libpaper-utils (notwanted)
- 28.9 11.1 libasound2-plugins (notwanted)
- 27.7 11.1 libcanberra-gtk-module (notwanted)
- 11.5 11.1 php5-imap (notwanted)
- 92.3 10.6 unzip
- 49.4 10.6 apt-listchanges
- 30.6 10.6 konqueror
- 30.2 10.6 kdebase-bin (notoncd) (notwanted)
- 29.8 10.6 ghostscript-x (notoncd) (notwanted)
- 27.2 10.6 samba
- 18.7 10.6 mysql-server-5.1 (notoncd) (notwanted)
- 18.7 10.6 update-notifier-common (notwanted)
- 17.4 10.6 kde-window-manager (notwanted)
- 11.1 10.6 ldap2zone
- 96.6 10.2 acpi (notwanted)
- 76.2 10.2 gnome-keyring (notwanted)
- 75.3 10.2 libgnome2-0 (notwanted)
- 63.8 10.2 libarts1c2a (notoncd) (notwanted)
- 61.3 10.2 xdg-utils (notwanted)
- 57.4 10.2 binutils (notwanted)
- 41.7 10.2 sun-java6-bin (notoncd) (notwanted)
- 25.1 10.2 pulseaudio-esound-compat
- 75.3 9.8 libbonobo2-0 (notwanted)
- 51.9 9.8 nmap
- 43.4 9.8 system-config-printer (notoncd) (notwanted)
- 31.1 9.8 cpp-4.3 (notoncd) (notwanted)
- 26.0 9.8 openoffice.org-writer
- 17.9 9.8 systemsettings (notwanted)
- 17.4 9.8 plasma-desktop (notwanted)
- 17.0 9.8 polkit-kde-1 (notwanted)
- 16.6 9.8 python-pylibacl (notwanted)
- 16.6 9.8 python-pyxattr (notwanted)
- 11.9 9.8 system-config-printer-udev (notoncd) (notwanted)
- 75.3 9.4 libbonobo2-common (notwanted)
- 43.8 9.4 brasero (notwanted)
- 32.3 9.4 samba-common-bin
- 26.4 9.4 kttsd (notoncd) (notwanted)
- 20.9 9.4 mozilla-openoffice.org (notoncd)
- 17.9 9.4 plasma-dataengines-workspace (notwanted)
- 17.9 9.4 plasma-widgets-workspace (notwanted)
- 17.4 9.4 gecko-mediaplayer
- 17.0 9.4 freespacenotifier
- 17.0 9.4 plasma-runners-addons (notwanted)
- 14.5 9.4 kdebase-workspace-kgreet-plugins (notoncd) (notwanted)
- 9.8 9.4 libapache2-mod-auth-kerb
-100.0 8.9 libpcre3 (notwanted)
-100.0 8.9 ucf (notwanted)
- 81.7 8.9 make (notwanted)
- 80.9 8.9 libvte9 (notwanted)
- 73.6 8.9 gksu (notwanted)
- 70.6 8.9 libqt4-dbus (notwanted)
- 34.9 8.9 vim
- 30.6 8.9 gwenview (notwanted)
- 30.6 8.9 konq-plugins
- 28.5 8.9 gnash-common (notwanted)
- 27.2 8.9 gnash (notwanted)
- 24.7 8.9 openoffice.org-l10n-es
- 23.8 8.9 openoffice.org-l10n-de
- 19.1 8.9 libkabc4 (notwanted)
- 18.3 8.9 kopete (notwanted)
- 17.0 8.9 update-notifier-kde
- 11.5 8.9 dovecot-common (notoncd) (notwanted)
- 9.4 8.9 libstdc++6-4.3-dev (notoncd) (notwanted)
- 81.3 8.5 libsane (notwanted)
- 67.2 8.5 gimp
- 52.8 8.5 libkfile4 (notwanted)
- 32.3 8.5 libexo-0.3-0 (notoncd) (notwanted)
- 26.0 8.5 openoffice.org-calc
- 24.3 8.5 autofs-ldap (notwanted)
- 22.1 8.5 python-qt4 (notwanted)
- 20.4 8.5 python-sip (notwanted)
- 19.6 8.5 nagios-nrpe-server
- 18.3 8.5 dolphin (notwanted)
- 17.4 8.5 python-kde4 (notwanted)
- 14.5 8.5 krb5-auth-dialog
- 13.6 8.5 gvfs-backends (notwanted)
- 13.6 8.5 kdebase-workspace-bin (notoncd) (notwanted)
-100.0 8.1 libglib2.0-0 (notwanted)
- 51.9 8.1 xserver-xorg-input-synaptics
- 47.2 8.1 hplip
- 26.0 8.1 openoffice.org-draw
- 23.4 8.1 openoffice.org-l10n-ca
- 23.4 8.1 openoffice.org-l10n-fr
- 23.4 8.1 openoffice.org-l10n-nl
- 23.0 8.1 openoffice.org-l10n-el
- 22.1 8.1 libqt4-sql-sqlite (notwanted)
- 21.3 8.1 openoffice.org-l10n-pt-br
- 21.3 8.1 sudo-ldap
- 20.0 8.1 python-qt4-dbus (notwanted)
- 18.7 8.1 okular (notwanted)
- 16.6 8.1 bind9
- 16.6 8.1 isc-dhcp-server (notwanted)
- 15.7 8.1 dhcdbd (notoncd) (notwanted)
- 14.9 8.1 plasma-widget-networkmanagement
- 14.5 8.1 printer-applet
- 13.6 8.1 nautilus (notwanted)
- 12.3 8.1 nagios3-core (notwanted)
- 11.5 8.1 metacity (notwanted)
- 97.9 7.7 dictionaries-common (notwanted)
- 70.6 7.7 libenchant1c2a (notwanted)
- 67.2 7.7 gstreamer0.10-ffmpeg
- 38.3 7.7 xscreensaver (notwanted)
- 31.9 7.7 gcc (notwanted)
- 31.5 7.7 ppp (notwanted)
- 26.0 7.7 openoffice.org-impress
- 20.9 7.7 openoffice.org-l10n-sv
- 18.7 7.7 browser-plugin-gnash (notwanted)
- 16.6 7.7 php-pear (notoncd) (notwanted)
- 15.3 7.7 kwin (notoncd) (notwanted)
- 14.0 7.7 kcontrol (notoncd) (notwanted)
- 14.0 7.7 kdebase-kio-plugins (notoncd) (notwanted)
- 14.0 7.7 kicker (notoncd) (notwanted)
- 13.6 7.7 ksmserver (notoncd) (notwanted)
- 13.6 7.7 upower (notwanted)
- 11.1 7.7 gnome-session-bin (notwanted)
- 10.6 7.7 file-roller (notwanted)
- 7.7 7.7 sysstat (notwanted)
- 80.9 7.2 libsane-extras (notwanted)
- 77.4 7.2 xfonts-utils (notwanted)
- 69.4 7.2 gstreamer0.10-plugins-ugly
- 65.5 7.2 inkscape
- 65.1 7.2 ktouch
- 64.3 7.2 ladspa-sdk (notwanted)
- 63.4 7.2 htop
- 33.6 7.2 bsd-mailx (notoncd) (notwanted)
- 31.5 7.2 ksysguardd (notwanted)
- 31.1 7.2 ceferino (notoncd) (notwanted)
- 28.5 7.2 amarok
- 28.5 7.2 libdbi-perl (notwanted)
- 26.0 7.2 openoffice.org-base
- 25.5 7.2 openoffice.org-math
- 23.8 7.2 nagios-nrpe-plugin
- 16.6 7.2 xfs (notoncd) (notwanted)
- 14.9 7.2 kdegraphics-kfile-plugins (notoncd) (notwanted)
- 13.6 7.2 kdesktop (notoncd) (notwanted)
- 13.6 7.2 ksplash (notoncd) (notwanted)
- 13.6 7.2 mozilla-mplayer (notoncd) (notwanted)
- 12.8 7.2 gnome-settings-daemon (notwanted)
- 9.8 7.2 libreoffice-calc (notwanted)
- 9.8 7.2 libreoffice-common (notwanted)
- 9.8 7.2 libreoffice-draw (notwanted)
- 9.8 7.2 libreoffice-impress (notwanted)
- 9.8 7.2 libreoffice-math (notwanted)
- 9.8 7.2 libreoffice-writer (notwanted)
- 75.3 6.8 libbonoboui2-0 (notwanted)
- 75.3 6.8 libgnomeui-0 (notwanted)
- 70.6 6.8 genisoimage (notwanted)
- 58.7 6.8 swh-plugins
- 45.5 6.8 flashplugin-nonfree (notoncd) (notwanted)
- 42.1 6.8 libnss-ldapd
- 37.4 6.8 fuse-utils (notwanted)
- 31.9 6.8 supertux (notoncd) (notwanted)
- 31.1 6.8 gstreamer0.10-pulseaudio
- 24.7 6.8 autofs (notwanted)
- 20.0 6.8 lwat (notoncd) (notwanted)
- 14.0 6.8 artsbuilder (notoncd) (notwanted)
- 11.5 6.8 gnome-panel (notwanted)
- 11.5 6.8 gosa
- 9.8 6.8 krb5-admin-server
- 9.8 6.8 krb5-kdc-ldap
- 9.4 6.8 libreoffice-base (notwanted)
- 80.4 6.4 hpijs
- 69.8 6.4 imagemagick (notwanted)
- 69.4 6.4 cdrdao (notwanted)
- 69.4 6.4 gstreamer0.10-x
- 63.8 6.4 childsplay
- 55.3 6.4 dvd+rw-tools (notwanted)
- 55.3 6.4 libmagickcore3 (notoncd) (notwanted)
- 31.1 6.4 ksnapshot
- 30.6 6.4 kscreensaver
- 30.2 6.4 kgpg (notwanted)
- 25.5 6.4 openoffice.org-filter-mobiledev (notwanted)
- 17.4 6.4 djvulibre-plugin
- 14.9 6.4 isc-dhcp-server-ldap
- 13.6 6.4 kmilo (notoncd) (notwanted)
- 13.2 6.4 libnss3 (notwanted)
- 12.3 6.4 iceweasel-l10n-da
- 11.5 6.4 gnome-power-manager (notwanted)
- 11.1 6.4 gnome-applets-data (notwanted)
- 7.7 6.4 bluez (notwanted)
- 70.6 6.0 libqtcore4 (notwanted)
- 56.2 6.0 libapt-pkg-perl (notwanted)
- 51.5 6.0 xserver-xorg-input-wacom (notwanted)
- 49.8 6.0 libbabl-0.0-0 (notoncd) (notwanted)
- 49.8 6.0 libgegl-0.0-0 (notoncd) (notwanted)
- 37.0 6.0 xarchiver (notwanted)
- 33.6 6.0 mozilla-plugin-vlc (notoncd) (notwanted)
- 33.6 6.0 mplayer (notoncd) (notwanted)
- 31.5 6.0 policykit-1-gnome (notwanted)
- 31.5 6.0 powermanga (notoncd) (notwanted)
- 31.1 6.0 kate (notwanted)
- 31.1 6.0 ri-li (notoncd) (notwanted)
- 28.9 6.0 os-prober (notwanted)
- 17.9 6.0 kdepim-runtime (notwanted)
- 11.5 6.0 dovecot-imapd
- 11.5 6.0 gnome-panel-data (notwanted)
- 11.1 6.0 gnome-terminal (notwanted)
- 11.1 6.0 smarty-acl-render (notoncd) (notwanted)
- 9.4 6.0 gnome-netstatus-applet (notoncd) (notwanted)
- 8.5 6.0 libreoffice-filter-binfilter (notwanted)
- 7.2 6.0 clamav (notwanted)
- 95.3 5.5 gettext (notwanted)
- 78.3 5.5 dialog (notwanted)
- 65.5 5.5 mono-runtime (notwanted)
- 65.5 5.5 python-pysqlite2 (notwanted)
- 55.7 5.5 rarian-compat (notwanted)
- 41.7 5.5 sun-java6-jre (notoncd) (notwanted)
- 36.2 5.5 rhythmbox (notwanted)
- 33.6 5.5 gstreamer0.10-fluendo-mp3
- 31.9 5.5 ghostscript-cups (notwanted)
- 31.5 5.5 cgoban
- 30.6 5.5 ark
- 30.6 5.5 fenix (notoncd) (notwanted)
- 29.4 5.5 cups-driver-gutenprint (notoncd) (notwanted)
- 26.4 5.5 libspeexdsp1 (notwanted)
- 24.7 5.5 python-uno (notwanted)
- 24.3 5.5 lynx-cur (notoncd) (notwanted)
- 22.6 5.5 autofs5 (notoncd) (notwanted)
- 21.3 5.5 gnome-dictionary (notwanted)
- 17.9 5.5 linux-image-2.6.32-5-amd64 (notoncd) (notwanted)
- 14.9 5.5 libkonq4 (notoncd) (notwanted)
- 13.2 5.5 openoffice.org-kde
- 11.5 5.5 iceweasel-l10n-ja
- 9.8 5.5 xrdp
- 8.9 5.5 deskbar-applet (notoncd) (notwanted)
- 82.1 5.1 libgutenprint2 (notwanted)
- 61.3 5.1 python-gconf (notwanted)
- 60.9 5.1 ntfs-3g (notwanted)
- 57.0 5.1 audacity
- 50.6 5.1 vcdimager (notwanted)
- 49.8 5.1 apache2-utils (notwanted)
- 33.2 5.1 gpicview (notwanted)
- 32.8 5.1 mcp-plugins
- 31.5 5.1 kfind (notwanted)
- 31.5 5.1 ksysguard (notwanted)
- 30.6 5.1 fenix-plugins-system (notoncd) (notwanted)
- 30.6 5.1 pixfrogger (notoncd) (notwanted)
- 29.8 5.1 g++ (notwanted)
- 27.7 5.1 frei0r-plugins (notwanted)
- 26.8 5.1 libcrypt-smbhash-perl (notwanted)
- 26.8 5.1 libdigest-md4-perl (notwanted)
- 20.9 5.1 libatlas3gf-base (notoncd) (notwanted)
- 19.1 5.1 libkcal4 (notwanted)
- 19.1 5.1 ltspfs
- 17.4 5.1 kwrite (notwanted)
- 13.6 5.1 php-net-ipv4 (notoncd) (notwanted)
- 13.6 5.1 xulrunner-1.9 (notoncd) (notwanted)
- 12.3 5.1 evolution-data-server (notwanted)
- 9.8 5.1 libreoffice-core (notwanted)
- 6.8 5.1 gnome-screensaver (notwanted)
- 5.5 5.1 libconfig-simple-perl (notoncd) (notwanted)
- 5.1 5.1 debsecan (notwanted)
- 5.1 5.1 php5-imagick (notoncd) (notwanted)
- 5.1 5.1 x2goserver (notoncd) (notwanted)
- 99.6 4.7 update-inetd (notwanted)
- 96.2 4.7 ispell (notwanted)
- 83.0 4.7 fontconfig (notwanted)
- 80.9 4.7 tcl8.4 (notwanted)
- 79.6 4.7 libc6-dev (notwanted)
- 74.0 4.7 libgksu2-0 (notwanted)
- 65.5 4.7 vorbis-tools (notwanted)
- 64.3 4.7 khangman
- 55.7 4.7 tcl8.5 (notwanted)
- 54.9 4.7 libstreamanalyzer0 (notwanted)
- 54.5 4.7 libao4 (notwanted)
- 52.3 4.7 texlive-binaries (notwanted)
- 50.6 4.7 foomatic-db-engine
- 50.6 4.7 libio-socket-ssl-perl (notwanted)
- 48.9 4.7 libmono-system2.0-cil (notoncd) (notwanted)
- 43.4 4.7 xserver-xorg-video-nv (notoncd) (notwanted)
- 40.9 4.7 libxml-parser-perl (notwanted)
- 33.6 4.7 gthumb (notoncd) (notwanted)
- 33.2 4.7 stopmotion
- 32.3 4.7 leafpad (notwanted)
- 31.9 4.7 libsdl-perl (notoncd) (notwanted)
- 31.5 4.7 frozen-bubble (notoncd) (notwanted)
- 31.5 4.7 gstreamer0.10-esd (notoncd)
- 31.1 4.7 links
- 25.5 4.7 usbmuxd (notwanted)
- 23.4 4.7 debian-edu-artwork-usplash (notoncd) (notwanted)
- 23.0 4.7 xpdf (notwanted)
- 22.1 4.7 tap-plugins (notwanted)
- 17.9 4.7 akonadi-server (notwanted)
- 16.2 4.7 kdegraphics-strigi-plugins
- 14.9 4.7 libkcal2b (notoncd) (notwanted)
- 14.9 4.7 python2.4-minimal (notoncd) (notwanted)
- 13.6 4.7 ktip (notoncd) (notwanted)
- 11.5 4.7 gnome-session (notwanted)
- 11.1 4.7 gnome-applets (notwanted)
- 9.4 4.7 libreoffice-filter-mobiledev (notwanted)
- 8.9 4.7 totem
- 6.4 4.7 krb5-multidev (notoncd) (notwanted)
- 6.0 4.7 libio-socket-inet6-perl (notwanted)
- 6.0 4.7 libsocket6-perl (notwanted)
- 5.1 4.7 laptop-mode-tools
- 4.7 4.7 apt-show-versions (notoncd) (notwanted)
- 83.8 4.3 linux-base (notwanted)
- 75.3 4.3 libgnomecanvas2-0 (notwanted)
- 68.5 4.3 debconf-utils
- 68.5 4.3 finger
- 65.5 4.3 firmware-linux-free (notwanted)
- 65.5 4.3 libglib2.0-cil (notwanted)
- 65.5 4.3 libgtk2.0-cil (notwanted)
- 64.3 4.3 libxine1-x (notoncd) (notwanted)
- 57.9 4.3 xterm (notwanted)
- 52.8 4.3 libxml-namespacesupport-perl (notwanted)
- 51.5 4.3 cheese
- 51.1 4.3 liblockfile1 (notwanted)
- 49.8 4.3 discover (notwanted)
- 49.8 4.3 p7zip-full (notwanted)
- 49.4 4.3 procmail
- 48.9 4.3 libmono-corlib2.0-cil (notoncd) (notwanted)
- 48.9 4.3 libmono-posix2.0-cil (notoncd) (notwanted)
- 48.9 4.3 ncftp
- 48.9 4.3 screen
- 48.9 4.3 tcptraceroute
- 45.5 4.3 m4 (notwanted)
- 43.8 4.3 expect (notoncd) (notwanted)
- 40.9 4.3 smbclient
- 38.3 4.3 gnome-media (notwanted)
- 37.0 4.3 dpkg-dev (notwanted)
- 34.0 4.3 sane
- 33.2 4.3 ruby (notwanted)
- 32.8 4.3 pymol
- 31.1 4.3 dia-gnome
- 31.1 4.3 hex-a-hop (notoncd) (notwanted)
- 31.1 4.3 kcalc
- 30.2 4.3 knotes
- 29.8 4.3 kmail
- 28.1 4.3 libqt4-sql-mysql (notwanted)
- 26.8 4.3 libnet-libidn-perl (notwanted)
- 25.5 4.3 openshot
- 24.3 4.3 unattended-upgrades (notwanted)
- 23.8 4.3 nagios3
- 23.4 4.3 binfmt-support (notwanted)
- 21.3 4.3 pulseaudio-module-x11 (notwanted)
- 19.6 4.3 readahead (notoncd) (notwanted)
- 18.3 4.3 gnome-mplayer (notwanted)
- 17.0 4.3 plasma-widgets-addons (notwanted)
- 15.7 4.3 courier-authdaemon (notoncd) (notwanted)
- 15.7 4.3 courier-base (notoncd) (notwanted)
- 11.5 4.3 icedove (notwanted)
- 10.6 4.3 iceweasel-l10n-nb-no
- 9.8 4.3 krb5-kdc
- 6.0 4.3 xdg-user-dirs (notwanted)
- 4.3 4.3 dirmngr (notoncd) (notwanted)
- 4.3 4.3 fail2ban (notoncd) (notwanted)
-100.0 3.8 python
- 80.9 3.8 ijsgutenprint
- 79.1 3.8 linux-libc-dev (notwanted)
- 75.7 3.8 xml-core (notwanted)
- 75.3 3.8 sane-utils
- 72.3 3.8 tk8.4 (notwanted)
- 72.3 3.8 zip
- 65.5 3.8 ffmpeg
- 65.5 3.8 mono-gac (notwanted)
- 65.1 3.8 mpg321 (notwanted)
- 64.3 3.8 kanagram
- 63.8 3.8 libxine1-console (notoncd) (notwanted)
- 60.9 3.8 libhpmud0 (notwanted)
- 60.4 3.8 aspell
- 59.6 3.8 pysycache
- 50.6 3.8 marble
- 48.9 3.8 strace
- 47.7 3.8 deborphan
- 45.5 3.8 mc
- 44.3 3.8 hpijs-ppds
- 40.9 3.8 libnet-snmp-perl (notwanted)
- 39.6 3.8 libbrasero-media0 (notoncd) (notwanted)
- 37.0 3.8 squeak-vm
- 36.2 3.8 wodim (notwanted)
- 34.5 3.8 debhelper (notwanted)
- 34.5 3.8 html2text (notwanted)
- 34.0 3.8 firmware-ralink (notoncd) (notwanted)
- 34.0 3.8 liballegro4.2 (notoncd) (notwanted)
- 33.2 3.8 lxterminal (notwanted)
- 31.9 3.8 viewmol
- 30.2 3.8 kdf
- 29.8 3.8 kwalletmanager
- 28.1 3.8 java-wrappers (notwanted)
- 26.0 3.8 curl (notwanted)
- 18.7 3.8 libgcj10 (notoncd) (notwanted)
- 17.4 3.8 dhcp3-server (notoncd) (notwanted)
- 17.4 3.8 plasma-widget-folderview (notwanted)
- 15.3 3.8 openoffice.org-filter-binfilter
- 14.5 3.8 kpdf (notoncd) (notwanted)
- 12.3 3.8 openoffice.org-l10n-ja
- 8.1 3.8 eog (notwanted)
- 7.7 3.8 google-chrome-stable (notoncd) (notwanted)
- 6.0 3.8 libevolution (notwanted)
- 5.1 3.8 acroread (notoncd) (notwanted)
- 5.1 3.8 gnome-bluetooth (notwanted)
- 5.1 3.8 tomboy (notwanted)
- 4.7 3.8 totem-mozilla (notoncd) (notwanted)
- 4.3 3.8 pyhoca-gui (notoncd) (notwanted)
- 3.8 3.8 fernwartung (notoncd) (notwanted)
- 3.8 3.8 network-manager-gnome (notwanted)
- 3.8 3.8 php5-curl (notwanted)
-100.0 3.4 locales (notwanted)
-100.0 3.4 ssl-cert (notwanted)
- 97.9 3.4 ca-certificates (notwanted)
- 95.3 3.4 libhtml-tagset-perl (notwanted)
- 83.0 3.4 unixodbc (notoncd) (notwanted)
- 81.7 3.4 ispanish
- 79.1 3.4 defoma (notoncd) (notwanted)
- 74.5 3.4 python-gnome2 (notwanted)
- 71.9 3.4 odbcinst (notwanted)
- 69.8 3.4 mtools
- 69.8 3.4 xinit
- 68.9 3.4 libtimedate-perl (notwanted)
- 67.7 3.4 synaptic
- 62.6 3.4 po-debconf (notwanted)
- 61.7 3.4 solfege
- 52.8 3.4 guile-1.8 (notwanted)
- 52.3 3.4 python-libxml2 (notwanted)
- 48.5 3.4 libmono-cairo2.0-cil (notoncd) (notwanted)
- 48.5 3.4 python-vte
- 44.7 3.4 kino (notwanted)
- 43.0 3.4 makedev (notoncd) (notwanted)
- 41.7 3.4 libjavascript-perl (notoncd) (notwanted)
- 40.4 3.4 mesa-utils (notwanted)
- 37.9 3.4 unrar (notoncd) (notwanted)
- 36.6 3.4 gvfs-bin (notwanted)
- 36.2 3.4 tk8.5 (notwanted)
- 34.9 3.4 gnupg2
- 34.0 3.4 k3b
- 33.2 3.4 f-spot (notoncd) (notwanted)
- 33.2 3.4 kalzium
- 33.2 3.4 libglib-perl (notwanted)
- 33.2 3.4 libgtk2-perl (notwanted)
- 32.3 3.4 kraptor (notoncd) (notwanted)
- 28.1 3.4 libsane-hpaio (notwanted)
- 26.4 3.4 tdb-tools
- 26.4 3.4 usb-modeswitch-data (notwanted)
- 21.7 3.4 autofs5-ldap
- 21.3 3.4 wine-bin (notoncd) (notwanted)
- 20.0 3.4 libpam-ccreds (notoncd) (notwanted)
- 19.6 3.4 caps (notwanted)
- 17.4 3.4 telnet (notoncd) (notwanted)
- 14.9 3.4 courier-ldap (notoncd) (notwanted)
- 14.0 3.4 java-gcj-compat-headless (notoncd) (notwanted)
- 10.6 3.4 openoffice.org-l10n-nb
- 9.8 3.4 iceweasel-l10n-nn-no
- 8.9 3.4 libxml-sax-expat-perl (notwanted)
- 7.2 3.4 aptdaemon (notwanted)
- 6.0 3.4 libdbd-sqlite3-perl (notoncd) (notwanted)
- 6.0 3.4 libreoffice-gtk (notwanted)
- 4.7 3.4 cpp-4.7 (notwanted)
- 4.7 3.4 gnome-disk-utility (notwanted)
- 4.7 3.4 kmod (notwanted)
- 4.7 3.4 python-gobject-2 (notwanted)
- 4.7 3.4 python2.7-minimal (notwanted)
- 4.7 3.4 xdg-user-dirs-gtk (notwanted)
- 4.3 3.4 gnome-user-share (notwanted)
- 4.3 3.4 rhythmbox-plugins (notwanted)
- 3.8 3.4 3s-clamav (notoncd) (notwanted)
- 3.8 3.4 gdm3 (notoncd) (notwanted)
- 3.4 3.4 gcc-4.1 (notoncd) (notwanted)
- 3.4 3.4 libpam-python (notwanted)
- 3.4 3.4 logcheck (notoncd) (notwanted)
- 3.4 3.4 logtail (notoncd) (notwanted)
- 99.6 3.0 libcroco3 (notwanted)
- 95.3 3.0 libhtml-tree-perl (notwanted)
- 91.5 3.0 libaspell15 (notwanted)
- 88.1 3.0 libfribidi0
- 81.3 3.0 dosfstools (notwanted)
- 75.7 3.0 sgml-base (notwanted)
- 71.5 3.0 libc-dev-bin (notwanted)
- 70.2 3.0 alsa-base
- 69.8 3.0 x11-apps (notwanted)
- 69.8 3.0 x11-session-utils (notwanted)
- 69.8 3.0 x11-xfs-utils (notwanted)
- 69.4 3.0 netpbm (notwanted)
- 67.7 3.0 texinfo (notwanted)
- 64.3 3.0 kgeography
- 63.8 3.0 kig
- 62.6 3.0 tuxmath
- 61.3 3.0 noteedit (notoncd)
- 58.3 3.0 libxml2-utils (notwanted)
- 52.8 3.0 libkdesu5 (notwanted)
- 50.2 3.0 sysfsutils
- 50.2 3.0 xserver-xorg-video-cirrus (notwanted)
- 49.8 3.0 dvdauthor (notwanted)
- 49.8 3.0 reportbug
- 49.4 3.0 procinfo
- 49.4 3.0 xserver-xorg-video-mga (notwanted)
- 46.8 3.0 iotop
- 45.5 3.0 texlive-base (notwanted)
- 43.8 3.0 syslinux
- 43.0 3.0 texlive-latex-base (notwanted)
- 37.0 3.0 telepathy-mission-control-5 (notwanted)
- 36.6 3.0 vim-runtime (notwanted)
- 36.2 3.0 media-player-info (notwanted)
- 35.7 3.0 libgcj-common (notwanted)
- 34.9 3.0 openssl-blacklist (notoncd) (notwanted)
- 34.0 3.0 kmplot
- 33.6 3.0 kstars
- 33.6 3.0 libmono-sqlite2.0-cil (notoncd) (notwanted)
- 33.6 3.0 libmono-system-data2.0-cil (notoncd) (notwanted)
- 33.2 3.0 libcairo-perl (notwanted)
- 32.8 3.0 libjpeg-progs (notwanted)
- 32.3 3.0 performous (notoncd) (notwanted)
- 32.3 3.0 zlib1g-dev (notwanted)
- 31.9 3.0 htdig (notwanted)
- 31.9 3.0 plopp (notoncd) (notwanted)
- 31.1 3.0 funnyboat (notoncd) (notwanted)
- 31.1 3.0 kdepasswd
- 30.6 3.0 kaddressbook
- 30.6 3.0 scrot (notoncd) (notwanted)
- 30.2 3.0 kmousetool (notwanted)
- 30.2 3.0 libdpkg-perl (notwanted)
- 30.2 3.0 libpango-perl (notwanted)
- 29.4 3.0 kipi-plugins
- 26.4 3.0 libunicode-map8-perl (notwanted)
- 26.0 3.0 pinentry-gtk2 (notwanted)
- 25.5 3.0 alien (notoncd) (notwanted)
- 23.0 3.0 libvisual-0.4-plugins (notwanted)
- 22.6 3.0 g++-4.4 (notoncd) (notwanted)
- 20.0 3.0 akregator (notwanted)
- 20.0 3.0 mailutils (notoncd) (notwanted)
- 19.6 3.0 libtool (notoncd) (notwanted)
- 19.1 3.0 scribus (notwanted)
- 16.2 3.0 cvs (notoncd) (notwanted)
- 16.2 3.0 zenity (notwanted)
- 15.7 3.0 fakeroot (notwanted)
- 14.9 3.0 courier-authlib-ldap (notoncd) (notwanted)
- 14.9 3.0 libkonq5 (notoncd) (notwanted)
- 14.9 3.0 openoffice.org-emailmerge (notoncd) (notwanted)
- 14.9 3.0 python2.4 (notoncd) (notwanted)
- 14.5 3.0 yelp (notwanted)
- 14.0 3.0 google-gadgets-qt (notoncd) (notwanted)
- 13.6 3.0 dhcp3-server-ldap (notoncd) (notwanted)
- 12.3 3.0 amarok-engine-xine (notoncd) (notwanted)
- 11.9 3.0 gnome-control-center (notwanted)
- 9.8 3.0 vlc-plugin-notify (notwanted)
- 9.4 3.0 ldm-server (notwanted)
- 8.1 3.0 gedit (notwanted)
- 7.7 3.0 xulrunner-10.0 (notwanted)
- 7.2 3.0 sshfs (notwanted)
- 6.8 3.0 libreoffice-l10n-de (notwanted)
- 6.4 3.0 ekiga (notoncd) (notwanted)
- 6.4 3.0 smartmontools (notoncd) (notwanted)
- 5.5 3.0 libreoffice-gnome (notwanted)
- 4.7 3.0 chromium-browser (notwanted)
- 4.7 3.0 debtags (notwanted)
- 4.7 3.0 opera (notoncd) (notwanted)
- 4.7 3.0 python2.7 (notwanted)
- 4.3 3.0 libgnome-speech7 (notwanted)
- 3.8 3.0 update-manager-gnome (notoncd) (notwanted)
- 3.0 3.0 cron-apt (notoncd) (notwanted)
- 3.0 3.0 locate (notoncd) (notwanted)
- 75.7 2.6 java-common (notwanted)
- 69.8 2.6 liboil0.3 (notwanted)
- 65.1 2.6 tuxtype
- 64.3 2.6 klettres
- 63.8 2.6 drgeo
- 63.8 2.6 kbruch
- 63.4 2.6 terminatorx
- 61.3 2.6 jackd
- 57.4 2.6 tex-common (notwanted)
- 54.0 2.6 soprano-daemon (notwanted)
- 52.8 2.6 kdoctools (notwanted)
- 52.8 2.6 pstoedit (notwanted)
- 51.9 2.6 lilypond (notwanted)
- 51.5 2.6 python-sqlalchemy (notwanted)
- 50.2 2.6 recordmydesktop (notwanted)
- 50.2 2.6 xscreensaver-data (notwanted)
- 50.2 2.6 xserver-xorg-video-vmware (notwanted)
- 49.8 2.6 installation-report (notwanted)
- 49.8 2.6 memtest86+
- 49.8 2.6 xserver-xorg-video-sis (notwanted)
- 49.4 2.6 hwinfo
- 49.4 2.6 xserver-xorg-video-savage (notwanted)
- 48.9 2.6 bash-completion
- 48.9 2.6 iftop
- 48.5 2.6 xscreensaver-gl (notwanted)
- 48.1 2.6 iputils-arping
- 47.7 2.6 gdebi-core
- 47.7 2.6 samba-common (notwanted)
- 47.2 2.6 tftp
- 46.0 2.6 lshw
- 44.7 2.6 mtr-tiny
- 43.8 2.6 melt (notwanted)
- 40.4 2.6 nvram-wakeup
- 39.6 2.6 gstreamer0.10-nice (notwanted)
- 37.4 2.6 libgstfarsight0.10-0 (notoncd) (notwanted)
- 37.0 2.6 psutils (notwanted)
- 36.2 2.6 blt (notwanted)
- 35.7 2.6 lp-solve (notwanted)
- 35.7 2.6 transfig (notwanted)
- 35.3 2.6 gnupg-agent
- 34.9 2.6 dict
- 34.9 2.6 xplanet
- 34.5 2.6 snmp (notwanted)
- 34.0 2.6 mathwar
- 32.8 2.6 gstreamer0.10-gnonlin (notwanted)
- 32.8 2.6 lxrandr (notwanted)
- 32.3 2.6 gtans
- 32.3 2.6 hydrogen
- 31.9 2.6 audacious
- 31.9 2.6 geomview
- 31.9 2.6 rosegarden
- 31.5 2.6 graphmonkey
- 31.5 2.6 kdemultimedia-kio-plugins
- 31.5 2.6 kturtle
- 31.1 2.6 cups-ppdc (notwanted)
- 31.1 2.6 empathy (notwanted)
- 31.1 2.6 pingus (notoncd) (notwanted)
- 31.1 2.6 vym
- 30.2 2.6 kmag (notwanted)
- 29.8 2.6 celestia-kde (notoncd) (notwanted)
- 29.8 2.6 ktimer (notwanted)
- 29.8 2.6 lzma (notoncd) (notwanted)
- 29.4 2.6 gtk-qt-engine (notoncd)
- 29.4 2.6 libnet-netmask-perl (notwanted)
- 28.5 2.6 digikam
- 28.5 2.6 openclipart-openoffice.org
- 25.1 2.6 openoffice.org-base-core (notoncd) (notwanted)
- 24.7 2.6 libpam-foreground (notoncd) (notwanted)
- 24.3 2.6 python-dev (notoncd) (notwanted)
- 23.4 2.6 dselect (notoncd) (notwanted)
- 22.6 2.6 exiv2 (notoncd) (notwanted)
- 22.1 2.6 libdbd-mysql-perl (notoncd) (notwanted)
- 21.7 2.6 mozilla-plugin-gnash
- 20.4 2.6 libgail-common (notwanted)
- 20.0 2.6 libopenmpi1.3 (notwanted)
- 20.0 2.6 python-numeric (notoncd) (notwanted)
- 19.1 2.6 gnome-screenshot (notwanted)
- 18.7 2.6 sharutils (notoncd) (notwanted)
- 17.9 2.6 enblend (notwanted)
- 17.4 2.6 djview4 (notwanted)
- 17.0 2.6 plasma-widget-lancelot (notwanted)
- 16.2 2.6 kdepim-kresources (notoncd) (notwanted)
- 14.5 2.6 gij-4.3 (notoncd) (notwanted)
- 14.5 2.6 libgcj9-0 (notoncd) (notwanted)
- 13.6 2.6 libavcodec51 (notoncd) (notwanted)
- 13.2 2.6 inorwegian
- 11.5 2.6 linux-image-2.6.26-2-686 (notoncd) (notwanted)
- 11.5 2.6 vnc4server
- 10.6 2.6 openoffice.org-l10n-nn
- 8.5 2.6 libsub-name-perl (notwanted)
- 8.1 2.6 firmware-realtek (notoncd) (notwanted)
- 7.7 2.6 dkms (notoncd) (notwanted)
- 7.7 2.6 nautilus-sendto (notwanted)
- 7.7 2.6 smbfs (notoncd) (notwanted)
- 7.2 2.6 clamav-freshclam (notwanted)
- 7.2 2.6 obex-data-server (notwanted)
- 6.8 2.6 libcap2-bin (notwanted)
- 6.4 2.6 libdbd-pg-perl (notwanted)
- 6.0 2.6 evolution (notwanted)
- 6.0 2.6 evolution-plugins (notwanted)
- 6.0 2.6 nxagent (notoncd) (notwanted)
- 5.5 2.6 autoconf
- 5.5 2.6 avahi-autoipd (notwanted)
- 5.1 2.6 acroread-debian-files (notoncd) (notwanted)
- 5.1 2.6 libclone-perl (notoncd) (notwanted)
- 5.1 2.6 libxml2-dev (notoncd) (notwanted)
- 5.1 2.6 python-pycurl (notwanted)
- 4.7 2.6 dconf-service (notwanted)
- 4.7 2.6 fuse (notwanted)
- 4.7 2.6 gir1.2-atk-1.0 (notwanted)
- 4.7 2.6 gir1.2-freedesktop (notwanted)
- 4.7 2.6 gir1.2-gdkpixbuf-2.0 (notwanted)
- 4.7 2.6 gir1.2-glib-2.0 (notwanted)
- 4.7 2.6 gir1.2-gtk-3.0 (notwanted)
- 4.7 2.6 gnome-mag (notwanted)
- 4.7 2.6 gvfs-daemons (notwanted)
- 4.7 2.6 libyaml-perl (notoncd) (notwanted)
- 4.7 2.6 mdadm (notwanted)
- 4.7 2.6 mousetweaks (notwanted)
- 4.3 2.6 hamster-applet (notwanted)
- 4.3 2.6 phpmyadmin (notoncd) (notwanted)
- 3.8 2.6 epiphany-browser (notoncd) (notwanted)
- 3.8 2.6 kget (notoncd) (notwanted)
- 3.8 2.6 libavutil-dev (notoncd) (notwanted)
- 3.8 2.6 mysql-server-core-5.5 (notwanted)
- 3.8 2.6 update-notifier (notoncd) (notwanted)
- 3.4 2.6 kde-config-touchpad
- 3.0 2.6 3s-zabbix-scripts (notoncd) (notwanted)
- 3.0 2.6 evolution-exchange (notoncd) (notwanted)
- 3.0 2.6 fglrx-driver (notoncd) (notwanted)
- 3.0 2.6 libglib2.0-bin (notwanted)
- 3.0 2.6 seahorse-plugins (notoncd) (notwanted)
- 3.0 2.6 xine-ui (notwanted)
- 2.6 2.6 cracklib-runtime (notwanted)
- 2.6 2.6 packagekit (notwanted)
- 2.6 2.6 r-cran-rcmdr (notoncd) (notwanted)
- 99.6 2.1 libavahi-common-data (notwanted)
- 80.9 2.1 libsnmp15 (notwanted)
- 80.0 2.1 libfile-copy-recursive-perl (notwanted)
- 65.1 2.1 tuxpaint-config
- 60.0 2.1 libcanberra-gtk0 (notwanted)
- 59.6 2.1 dvgrab
- 57.4 2.1 console-common (notoncd) (notwanted)
- 49.8 2.1 discover-data (notwanted)
- 49.8 2.1 etherwake
- 49.8 2.1 tcpdump
- 49.4 2.1 cfengine2
- 49.4 2.1 gtk-recordmydesktop
- 49.4 2.1 kwordquiz (notwanted)
- 49.4 2.1 libexporter-lite-perl (notwanted)
- 48.9 2.1 mono-2.0-gac (notoncd) (notwanted)
- 48.9 2.1 pnm2ppa
- 43.0 2.1 rwho
- 41.7 2.1 tcl (notoncd) (notwanted)
- 37.9 2.1 libpurple0 (notwanted)
- 37.9 2.1 scratch (notwanted)
- 37.4 2.1 libaprutil1-ldap (notwanted)
- 36.6 2.1 gtk2-engines-pixbuf (notwanted)
- 36.6 2.1 x11vnc (notoncd) (notwanted)
- 36.6 2.1 xsltproc (notwanted)
- 35.7 2.1 firmware-iwlwifi (notwanted)
- 35.7 2.1 recode (notwanted)
- 35.3 2.1 cdparanoia (notwanted)
- 35.3 2.1 dcraw (notoncd) (notwanted)
- 35.3 2.1 ocaml-base-nox (notwanted)
- 35.3 2.1 ocrad
- 34.9 2.1 gnome-codec-install (notoncd) (notwanted)
- 34.9 2.1 gnucap
- 34.9 2.1 tk (notoncd) (notwanted)
- 34.9 2.1 vgrabbj
- 34.5 2.1 gperiodic
- 34.5 2.1 gpsim
- 34.5 2.1 kompozer (notoncd) (notwanted)
- 34.5 2.1 wordnet
- 34.0 2.1 blinken
- 34.0 2.1 gnuchess
- 33.6 2.1 graphthing
- 33.6 2.1 liblist-moreutils-perl (notwanted)
- 33.2 2.1 flac (notwanted)
- 33.2 2.1 gchempaint
- 33.2 2.1 sndfile-programs (notwanted)
- 33.2 2.1 xdrawchem
- 32.8 2.1 atomix
- 32.8 2.1 liberror-perl (notwanted)
- 32.8 2.1 oregano
- 32.3 2.1 gnuplot-x11 (notwanted)
- 32.3 2.1 grace
- 32.3 2.1 jokosher (notoncd) (notwanted)
- 32.3 2.1 mpqc (notwanted)
- 32.3 2.1 wormux (notoncd) (notwanted)
- 31.9 2.1 blobwars (notoncd) (notwanted)
- 31.9 2.1 blobwars-data (notoncd) (notwanted)
- 31.9 2.1 gpredict
- 31.5 2.1 python-chardet (notwanted)
- 31.1 2.1 kcharselect
- 30.6 2.1 egoboo (notoncd) (notwanted)
- 30.6 2.1 flobopuyo (notoncd) (notwanted)
- 30.6 2.1 monsterz (notoncd) (notwanted)
- 30.6 2.1 pathological (notoncd) (notwanted)
- 30.6 2.1 score-reading-trainer (notoncd)
- 30.6 2.1 subversion
- 30.2 2.1 kguitar (notoncd)
- 29.8 2.1 libnotify-bin (notwanted)
- 29.4 2.1 kfloppy
- 29.4 2.1 kmouth (notwanted)
- 29.4 2.1 makepasswd
- 28.9 2.1 cifs-utils
- 28.9 2.1 gimp-ufraw
- 28.5 2.1 rpm2cpio (notwanted)
- 28.1 2.1 gdb
- 27.2 2.1 dc (notwanted)
- 27.2 2.1 gdbserver (notwanted)
- 27.2 2.1 libunicode-string-perl (notwanted)
- 27.2 2.1 ntfsprogs (notoncd) (notwanted)
- 27.2 2.1 rrdtool (notwanted)
- 26.8 2.1 convmv
- 26.8 2.1 junit (notwanted)
- 26.4 2.1 javahelp2 (notwanted)
- 26.0 2.1 system-config-lvm
- 26.0 2.1 time (notoncd) (notwanted)
- 24.7 2.1 libssl-dev (notoncd) (notwanted)
- 22.6 2.1 groff (notwanted)
- 22.6 2.1 libgoffice-0.8-8 (notwanted)
- 22.1 2.1 jxplorer
- 22.1 2.1 qt4-qtconfig (notoncd) (notwanted)
- 22.1 2.1 software-properties-gtk (notwanted)
- 22.1 2.1 ufraw-batch (notoncd) (notwanted)
- 21.3 2.1 liblucene2-java (notwanted)
- 20.9 2.1 autotools-dev (notwanted)
- 20.9 2.1 virtuoso-opensource-6.1-bin (notwanted)
- 20.4 2.1 kaboom (notoncd) (notwanted)
- 20.4 2.1 kalgebra
- 20.4 2.1 stk (notwanted)
- 20.0 2.1 libaudio-scrobbler-perl (notwanted)
- 20.0 2.1 libwmf-bin (notwanted)
- 20.0 2.1 parley
- 20.0 2.1 step
- 19.6 2.1 juk (notwanted)
- 19.1 2.1 debian-reference-common (notoncd) (notwanted)
- 18.7 2.1 baobab (notwanted)
- 18.7 2.1 buffer (notoncd) (notwanted)
- 18.7 2.1 enscript (notoncd) (notwanted)
- 18.7 2.1 gnome-search-tool (notoncd) (notwanted)
- 18.3 2.1 gnome-system-log (notwanted)
- 18.3 2.1 jackd2 (notwanted)
- 18.3 2.1 khelpcenter4 (notwanted)
- 17.9 2.1 enfuse (notwanted)
- 17.9 2.1 rocs
- 17.9 2.1 speech-dispatcher (notwanted)
- 17.4 2.1 freehdl (notoncd) (notwanted)
- 17.4 2.1 hugin-tools (notwanted)
- 17.0 2.1 dragonplayer
- 17.0 2.1 kiten (notwanted)
- 15.7 2.1 amarok-utils (notwanted)
- 15.7 2.1 cantor (notwanted)
- 14.9 2.1 libjasper-runtime (notoncd) (notwanted)
- 14.5 2.1 klinkstatus (notoncd) (notwanted)
- 14.5 2.1 ksokoban (notoncd) (notwanted)
- 14.5 2.1 libgcj9-0-awt (notoncd) (notwanted)
- 12.8 2.1 pkg-config (notwanted)
- 11.5 2.1 openoffice.org-style-andromeda (notoncd) (notwanted)
- 10.2 2.1 linux-kbuild-2.6.32 (notoncd) (notwanted)
- 10.2 2.1 python-gnomekeyring (notoncd) (notwanted)
- 8.9 2.1 libpng12-dev (notwanted)
- 8.9 2.1 totem-plugins (notwanted)
- 8.5 2.1 libfreetype6-dev (notwanted)
- 8.5 2.1 libgpod-common (notwanted)
- 8.1 2.1 apt-file (notoncd) (notwanted)
- 7.7 2.1 gcalctool (notwanted)
- 6.4 2.1 libreoffice-l10n-es (notwanted)
- 6.4 2.1 libreoffice-l10n-fr (notwanted)
- 6.4 2.1 libxcomp3 (notoncd) (notwanted)
- 6.0 2.1 gpgsm (notoncd) (notwanted)
- 6.0 2.1 libreoffice-l10n-ca (notwanted)
- 6.0 2.1 libreoffice-l10n-nl (notwanted)
- 5.5 2.1 gcj-jre-headless (notwanted)
- 5.5 2.1 libxcompext3 (notoncd) (notwanted)
- 5.5 2.1 libxcompshad3 (notoncd) (notwanted)
- 5.1 2.1 x2goagent (notoncd) (notwanted)
- 4.7 2.1 flashplayer-mozilla (notoncd) (notwanted)
- 4.7 2.1 gir1.2-pango-1.0 (notwanted)
- 4.7 2.1 libnx-x11 (notoncd) (notwanted)
- 4.7 2.1 libpython2.7 (notwanted)
- 4.7 2.1 python-gi (notwanted)
- 4.7 2.1 python-markupsafe (notwanted)
- 4.7 2.1 qdbus (notwanted)
- 4.3 2.1 automake (notwanted)
- 4.3 2.1 krfb (notwanted)
- 4.3 2.1 python-lxml (notoncd) (notwanted)
- 4.3 2.1 x2gognomebindings (notoncd) (notwanted)
- 3.8 2.1 fam (notoncd) (notwanted)
- 3.8 2.1 fortune-mod (notoncd) (notwanted)
- 3.8 2.1 kde-runtime (notwanted)
- 3.8 2.1 kgamma (notoncd) (notwanted)
- 3.8 2.1 mozilla-acroread (notoncd) (notwanted)
- 3.8 2.1 remmina (notoncd) (notwanted)
- 3.4 2.1 abiword (notoncd) (notwanted)
- 3.4 2.1 epiphany-extensions (notoncd) (notwanted)
- 3.4 2.1 gnumeric (notoncd) (notwanted)
- 3.4 2.1 gok (notoncd) (notwanted)
- 3.4 2.1 kde-style-oxygen (notwanted)
- 3.4 2.1 kde-workspace-bin (notwanted)
- 3.4 2.1 libavcodec-dev (notoncd) (notwanted)
- 3.4 2.1 libkactivities-bin (notwanted)
- 3.4 2.1 openoffice.org-gnome
- 3.4 2.1 openoffice.org-gtk
- 3.4 2.1 pdftk (notoncd) (notwanted)
- 3.4 2.1 phonon-backend-vlc (notwanted)
- 3.4 2.1 rtkit (notwanted)
- 3.4 2.1 xulrunner-20.0 (notoncd) (notwanted)
- 3.0 2.1 squidguard (notoncd) (notwanted)
- 3.0 2.1 winbind (notwanted)
- 2.6 2.1 at-spi (notoncd) (notwanted)
- 2.6 2.1 compiz-core (notoncd) (notwanted)
- 2.6 2.1 gvfs-fuse (notwanted)
- 2.6 2.1 libgail-gnome-module (notoncd) (notwanted)
- 2.6 2.1 rpcbind (notwanted)
- 2.6 2.1 skype (notoncd) (notwanted)
- 2.6 2.1 virtualbox-4.2 (notoncd) (notwanted)
- 2.1 2.1 qemu-system (notoncd) (notwanted)
- 91.5 1.7 libaprutil1 (notwanted)
- 81.3 1.7 libgphoto2-port0 (notwanted)
- 77.9 1.7 libpango1.0-common (notoncd) (notwanted)
- 74.5 1.7 python-pyorbit (notwanted)
- 63.0 1.7 libavdevice52 (notoncd) (notwanted)
- 53.6 1.7 parted (notoncd) (notwanted)
- 52.8 1.7 libqca2 (notwanted)
- 51.5 1.7 libconfig-inifiles-perl (notwanted)
- 50.6 1.7 libdigest-hmac-perl (notwanted)
- 50.6 1.7 libmailtools-perl (notwanted)
- 50.6 1.7 x11proto-core-dev (notwanted)
- 50.2 1.7 xserver-xorg-video-chips (notwanted)
- 50.2 1.7 xserver-xorg-video-i128 (notwanted)
- 50.2 1.7 xserver-xorg-video-neomagic (notwanted)
- 50.2 1.7 xserver-xorg-video-sisusb (notwanted)
- 50.2 1.7 xserver-xorg-video-voodoo (notwanted)
- 49.8 1.7 localization-config
- 49.8 1.7 marble-plugins (notwanted)
- 49.8 1.7 xserver-xorg-video-apm (notwanted)
- 49.8 1.7 xserver-xorg-video-ark (notwanted)
- 49.8 1.7 xserver-xorg-video-mach64 (notwanted)
- 49.8 1.7 xserver-xorg-video-r128 (notwanted)
- 49.8 1.7 xserver-xorg-video-s3 (notwanted)
- 49.8 1.7 xserver-xorg-video-s3virge (notwanted)
- 49.8 1.7 xserver-xorg-video-siliconmotion (notwanted)
- 49.4 1.7 libemail-valid-perl (notwanted)
- 49.4 1.7 libnet-domain-tld-perl (notwanted)
- 49.4 1.7 xserver-xorg-video-rendition (notwanted)
- 48.9 1.7 libtext-unaccent-perl (notwanted)
- 48.9 1.7 skanlite
- 48.9 1.7 xserver-xorg-video-tdfx (notwanted)
- 48.9 1.7 xserver-xorg-video-trident (notwanted)
- 48.5 1.7 libemail-find-perl (notwanted)
- 48.5 1.7 libhtml-fromtext-perl (notwanted)
- 48.5 1.7 mii-diag
- 48.5 1.7 nictools-pci
- 48.5 1.7 xserver-xorg-video-tseng (notwanted)
- 46.0 1.7 hddtemp
- 44.7 1.7 dhcping
- 43.4 1.7 kdenlive
- 41.3 1.7 luatex (notwanted)
- 38.3 1.7 python-twisted-conch (notoncd) (notwanted)
- 37.0 1.7 libaprutil1-dbd-sqlite3 (notwanted)
- 36.2 1.7 python-tk (notwanted)
- 35.3 1.7 texlive-latex-extra (notoncd) (notwanted)
- 35.3 1.7 texlive-pictures (notwanted)
- 35.3 1.7 xserver-xorg-video-nouveau (notwanted)
- 34.5 1.7 planets
- 34.0 1.7 iamerican
- 34.0 1.7 stellarium
- 33.6 1.7 gnuplot-nox (notwanted)
- 33.2 1.7 chemtool
- 33.2 1.7 gnugo
- 33.2 1.7 lxsession (notwanted)
- 33.2 1.7 xboard
- 33.2 1.7 xvnc4viewer (notoncd) (notwanted)
- 32.8 1.7 ibritish
- 32.8 1.7 xpaint
- 32.8 1.7 xsok
- 32.3 1.7 denemo
- 32.3 1.7 gdis
- 32.3 1.7 iitalian
- 32.3 1.7 qstat (notwanted)
- 32.3 1.7 scribus-ng
- 31.9 1.7 circuslinux (notoncd) (notwanted)
- 31.9 1.7 fretsonfire-game (notoncd) (notwanted)
- 31.9 1.7 qjackctl
- 31.5 1.7 ghemical
- 31.5 1.7 gnome-utils (notoncd)
- 31.1 1.7 calcoo (notoncd) (notwanted)
- 31.1 1.7 gamine (notoncd) (notwanted)
- 31.1 1.7 kamera
- 30.6 1.7 hedgewars (notoncd) (notwanted)
- 30.6 1.7 qucs (notoncd)
- 30.6 1.7 ruy (notoncd) (notwanted)
- 30.2 1.7 fluidsynth
- 29.4 1.7 ktechlab (notoncd)
- 28.5 1.7 libgnome2-canvas-perl (notoncd) (notwanted)
- 28.5 1.7 libgnome2-perl (notoncd) (notwanted)
- 28.5 1.7 libgnome2-vfs-perl (notoncd) (notwanted)
- 28.5 1.7 libnet-daemon-perl (notwanted)
- 28.5 1.7 libplrpc-perl (notwanted)
- 28.1 1.7 vbetool (notwanted)
- 27.7 1.7 kappfinder (notoncd) (notwanted)
- 27.7 1.7 whois (notwanted)
- 26.4 1.7 libjcode-pm-perl (notwanted)
- 26.4 1.7 libunicode-map-perl (notwanted)
- 26.4 1.7 libunicode-maputf8-perl (notwanted)
- 26.4 1.7 usb-modeswitch
- 26.0 1.7 dnsmasq-base (notwanted)
- 26.0 1.7 openoffice.org-java-common
- 26.0 1.7 smbldap-tools
- 25.5 1.7 git-core (notoncd) (notwanted)
- 25.1 1.7 rdesktop (notwanted)
- 24.7 1.7 agencia-evaluacion (notoncd) (notwanted)
- 24.7 1.7 gdebi (notwanted)
- 22.6 1.7 libpod-escapes-perl (notoncd) (notwanted)
- 22.1 1.7 krb5-user
- 21.7 1.7 python2.6-dev (notoncd) (notwanted)
- 21.3 1.7 libwine (notoncd) (notwanted)
- 20.4 1.7 libk3b6 (notwanted)
- 20.4 1.7 openbabel (notwanted)
- 20.0 1.7 gputils (notwanted)
- 20.0 1.7 krb5-clients
- 20.0 1.7 libk3b6-extracodecs (notwanted)
- 20.0 1.7 wordnet-gui (notwanted)
- 19.6 1.7 debootstrap (notwanted)
- 19.6 1.7 libxt-dev (notoncd) (notwanted)
- 19.1 1.7 apbs (notwanted)
- 19.1 1.7 fastjar (notoncd) (notwanted)
- 19.1 1.7 kdepimlibs-kio-plugins
- 19.1 1.7 librsvg2-bin (notwanted)
- 18.7 1.7 python-sqlalchemy-ext (notwanted)
- 18.7 1.7 squashfs-tools (notwanted)
- 18.3 1.7 csound (notwanted)
- 18.3 1.7 csound-utils (notwanted)
- 18.3 1.7 libffado2 (notwanted)
- 18.3 1.7 qcad (notwanted)
- 17.9 1.7 kscreensaver-xsavers (notwanted)
- 17.9 1.7 libimage-exiftool-perl (notwanted)
- 17.9 1.7 libopenssl-ruby1.8 (notoncd) (notwanted)
- 17.9 1.7 plasma-scriptengine-superkaramba (notwanted)
- 17.9 1.7 sweeper (notwanted)
- 17.4 1.7 hugin (notwanted)
- 17.4 1.7 iverilog (notoncd) (notwanted)
- 17.4 1.7 kinfocenter
- 17.4 1.7 poster (notoncd) (notwanted)
- 17.4 1.7 sndfile-tools (notwanted)
- 17.0 1.7 kmenuedit (notwanted)
- 17.0 1.7 libltdl-dev (notoncd) (notwanted)
- 16.6 1.7 espeak (notoncd) (notwanted)
- 16.6 1.7 kaffeine (notoncd) (notwanted)
- 16.2 1.7 kde-config-gtk-style (notoncd) (notwanted)
- 16.2 1.7 libpano13-bin (notwanted)
- 15.7 1.7 courier-authlib-userdb (notoncd) (notwanted)
- 15.7 1.7 kjots (notoncd) (notwanted)
- 15.3 1.7 kghostview (notoncd) (notwanted)
- 15.3 1.7 libdate-manip-perl (notwanted)
- 14.9 1.7 kdict (notoncd) (notwanted)
- 14.9 1.7 okteta (notoncd) (notwanted)
- 14.9 1.7 openvpn-blacklist (notoncd) (notwanted)
- 14.5 1.7 cabextract (notoncd) (notwanted)
- 14.5 1.7 google-gadgets-common (notoncd) (notwanted)
- 14.5 1.7 google-gadgets-gst (notoncd) (notwanted)
- 14.5 1.7 khelpcenter (notoncd) (notwanted)
- 14.0 1.7 google-gadgets-xul (notoncd) (notwanted)
- 14.0 1.7 xserver-xorg-video-vga (notoncd) (notwanted)
- 12.3 1.7 smart-linex (notoncd) (notwanted)
- 11.5 1.7 heirloom-mailx (notwanted)
- 11.1 1.7 libgii1 (notoncd) (notwanted)
- 10.6 1.7 mutt (notoncd) (notwanted)
- 9.8 1.7 libreoffice-base-core (notwanted)
- 9.4 1.7 mdetect (notwanted)
- 8.5 1.7 gv (notoncd) (notwanted)
- 8.5 1.7 libio-string-perl (notwanted)
- 8.5 1.7 w3m (notoncd) (notwanted)
- 8.5 1.7 xserver-xephyr
- 8.1 1.7 libconfig-file-perl (notoncd) (notwanted)
- 7.7 1.7 libglib2.0-dev (notwanted)
- 7.2 1.7 filezilla (notoncd) (notwanted)
- 7.2 1.7 libcrypt-ssleay-perl (notoncd) (notwanted)
- 7.2 1.7 libregexp-assemble-perl (notoncd) (notwanted)
- 6.8 1.7 linux-image-2.6.26-2-amd64 (notoncd) (notwanted)
- 6.4 1.7 libfile-basedir-perl (notwanted)
- 6.0 1.7 emacs23 (notwanted)
- 6.0 1.7 gparted (notoncd) (notwanted)
- 6.0 1.7 libpango1.0-dev (notwanted)
- 6.0 1.7 libreoffice-l10n-sv (notwanted)
- 6.0 1.7 totem-coherence (notoncd) (notwanted)
- 6.0 1.7 xli (notoncd) (notwanted)
- 5.5 1.7 gnome-system-tools (notoncd) (notwanted)
- 5.5 1.7 gucharmap (notwanted)
- 5.5 1.7 kbattleship (notoncd) (notwanted)
- 5.5 1.7 knetwalk (notoncd) (notwanted)
- 5.5 1.7 libgtk2.0-dev (notwanted)
- 5.5 1.7 libreoffice-l10n-el (notwanted)
- 5.5 1.7 libreoffice-l10n-pt-br (notwanted)
- 5.5 1.7 qt4-qmake (notoncd) (notwanted)
- 5.5 1.7 xsane (notoncd) (notwanted)
- 5.1 1.7 dbconfig-common (notoncd) (notwanted)
- 5.1 1.7 libio-pty-perl (notwanted)
- 5.1 1.7 libqt4-dev (notoncd) (notwanted)
- 4.7 1.7 doc-base (notoncd) (notwanted)
- 4.7 1.7 gnu-fdisk (notoncd) (notwanted)
- 4.7 1.7 krdc (notwanted)
- 4.7 1.7 vino (notwanted)
- 4.7 1.7 x2goserver-extensions (notoncd) (notwanted)
- 4.3 1.7 a2ps (notoncd) (notwanted)
- 4.3 1.7 bridge-utils (notoncd) (notwanted)
- 4.3 1.7 gstreamer0.10-tools (notoncd) (notwanted)
- 4.3 1.7 gtk2-engines-smooth (notoncd) (notwanted)
- 4.3 1.7 kalarm (notoncd) (notwanted)
- 4.3 1.7 katepart (notwanted)
- 4.3 1.7 kontact (notoncd) (notwanted)
- 4.3 1.7 libevdocument3-4 (notwanted)
- 4.3 1.7 libmtp-runtime (notwanted)
- 4.3 1.7 libtracker-sparql-0.14-0 (notwanted)
- 4.3 1.7 liferea (notoncd) (notwanted)
- 4.3 1.7 python-mako (notwanted)
- 4.3 1.7 x2godesktopsharing (notoncd) (notwanted)
- 3.8 1.7 kde-runtime-data (notwanted)
- 3.8 1.7 kscd (notwanted)
- 3.8 1.7 ksudoku (notoncd) (notwanted)
- 3.8 1.7 ntrack-module-libnl-0 (notwanted)
- 3.8 1.7 remmina-plugin-rdp (notoncd) (notwanted)
- 3.8 1.7 remmina-plugin-vnc (notoncd) (notwanted)
- 3.8 1.7 transmission-gtk (notwanted)
- 3.4 1.7 gcj-4.7-jre-headless (notwanted)
- 3.4 1.7 gedit-plugins (notwanted)
- 3.4 1.7 kde-baseapps-bin (notwanted)
- 3.4 1.7 kde-workspace-kgreet-plugins (notwanted)
- 3.4 1.7 libkonq-common (notwanted)
- 3.4 1.7 librecad (notwanted)
- 3.0 1.7 cervisia (notoncd) (notwanted)
- 3.0 1.7 jovie (notwanted)
- 3.0 1.7 kompare (notoncd) (notwanted)
- 3.0 1.7 kremotecontrol (notwanted)
- 3.0 1.7 libregexp-shellish-perl (notoncd) (notwanted)
- 3.0 1.7 linux-image-2.6.32-bpo.5-686 (notoncd) (notwanted)
- 3.0 1.7 postgresql-client-common (notwanted)
- 3.0 1.7 sun-java5-bin (notoncd) (notwanted)
- 3.0 1.7 uuid-runtime (notwanted)
- 2.6 1.7 bluedevil (notoncd) (notwanted)
- 2.6 1.7 gcc-4.7 (notwanted)
- 2.6 1.7 gnome-mount (notoncd) (notwanted)
- 2.6 1.7 libcompizconfig0 (notoncd) (notwanted)
- 2.6 1.7 libcurl4-gnutls-dev (notoncd) (notwanted)
- 2.6 1.7 libgstreamer0.10-dev (notoncd) (notwanted)
- 2.6 1.7 postgresql-common (notwanted)
- 2.1 1.7 accountsservice (notwanted)
- 2.1 1.7 gnome-shell (notwanted)
- 2.1 1.7 gnome-volume-manager (notoncd) (notwanted)
- 2.1 1.7 kdesdk-scripts (notoncd) (notwanted)
- 2.1 1.7 libpam-cracklib
- 2.1 1.7 libyaml-tiny-perl (notoncd) (notwanted)
- 2.1 1.7 normalize-audio (notoncd) (notwanted)
- 2.1 1.7 smart-notifier (notoncd) (notwanted)
- 2.1 1.7 unhide (notoncd) (notwanted)
- 2.1 1.7 xfishtank (notoncd) (notwanted)
- 1.7 1.7 3s-fprot-update (notoncd) (notwanted)
- 1.7 1.7 active-directory-client (notoncd) (notwanted)
- 1.7 1.7 dictzip (notoncd) (notwanted)
- 1.7 1.7 emerald (notoncd) (notwanted)
- 1.7 1.7 itzks-systems-mainserver (notoncd) (notwanted)
- 1.7 1.7 ksh (notoncd) (notwanted)
- 1.7 1.7 libktoblzcheck1c2a (notoncd) (notwanted)
- 1.7 1.7 minissdpd (notwanted)
- 1.7 1.7 mpt-status (notwanted)
- 1.7 1.7 nxnode (notoncd) (notwanted)
- 1.7 1.7 nxserver (notoncd) (notwanted)
- 1.7 1.7 olp-common (notoncd) (notwanted)
- 1.7 1.7 perl-suid (notoncd) (notwanted)
- 1.7 1.7 php5-pgsql (notoncd) (notwanted)
- 1.7 1.7 php5-sqlite (notoncd) (notwanted)
- 1.7 1.7 php5-xmlrpc (notoncd) (notwanted)
- 1.7 1.7 php5-xsl (notoncd) (notwanted)
- 1.7 1.7 postfix (notoncd) (notwanted)
- 1.7 1.7 python-setuptools (notoncd) (notwanted)
- 1.7 1.7 rkhunter (notoncd) (notwanted)
- 1.7 1.7 sysklogd (notoncd) (notwanted)
- 1.7 1.7 xprint (notoncd) (notwanted)
- 82.1 1.3 liborbit2 (notwanted)
- 63.8 1.3 kdelibs-data (notoncd) (notwanted)
- 63.4 1.3 xabacus
- 60.9 1.3 libquicktime1 (notoncd) (notwanted)
- 50.6 1.3 libx11-dev (notwanted)
- 50.6 1.3 libxau-dev (notwanted)
- 50.6 1.3 libxdmcp-dev (notwanted)
- 50.6 1.3 x11proto-input-dev (notwanted)
- 50.6 1.3 x11proto-kb-dev (notwanted)
- 50.2 1.3 education-tasks (notwanted)
- 48.5 1.3 libemail-address-perl (notwanted)
- 48.5 1.3 libregexp-common-perl (notwanted)
- 47.7 1.3 libproc-daemon-perl (notoncd) (notwanted)
- 47.2 1.3 debian-edu-install
- 47.2 1.3 lingot (notwanted)
- 46.8 1.3 gtick (notwanted)
- 45.5 1.3 python-pkg-resources (notwanted)
- 44.7 1.3 odbcinst1debian2 (notwanted)
- 44.3 1.3 libio-multiplex-perl (notwanted)
- 44.3 1.3 libnet-cidr-perl (notwanted)
- 43.0 1.3 language-env (notoncd) (notwanted)
- 43.0 1.3 libcrypt-passwdmd5-perl (notwanted)
- 41.7 1.3 ingerman
- 41.7 1.3 ldapvi
- 40.4 1.3 texlive-latex-recommended (notwanted)
- 40.0 1.3 texlive-pstricks (notwanted)
- 37.9 1.3 libmlt2 (notoncd) (notwanted)
- 37.9 1.3 libxml-twig-perl (notwanted)
- 35.3 1.3 acpi-support (notoncd) (notwanted)
- 35.3 1.3 ocaml-base (notwanted)
- 33.2 1.3 easychem
- 32.8 1.3 ifrench
- 32.8 1.3 kdelibs5 (notoncd) (notwanted)
- 32.3 1.3 idutch
- 32.3 1.3 libopenbabel3 (notoncd) (notwanted)
- 32.3 1.3 lxappearance (notwanted)
- 32.3 1.3 lxde-common (notwanted)
- 32.3 1.3 obconf (notwanted)
- 32.3 1.3 xserver-xorg-video-i740 (notoncd) (notwanted)
- 31.9 1.3 audacious-plugins (notwanted)
- 31.9 1.3 icatalan
- 31.5 1.3 ffmpeg2theora (notoncd) (notwanted)
- 31.5 1.3 ibrazilian
- 31.5 1.3 ifinnish-large
- 31.5 1.3 pmidi (notoncd) (notwanted)
- 31.5 1.3 telepathy-haze (notwanted)
- 31.1 1.3 briquolo (notoncd) (notwanted)
- 31.1 1.3 gmrun (notoncd) (notwanted)
- 31.1 1.3 stormbaancoureur (notoncd) (notwanted)
- 30.6 1.3 netcat-openbsd (notoncd) (notwanted)
- 29.8 1.3 libmcs1 (notoncd) (notwanted)
- 29.8 1.3 qsynth
- 28.9 1.3 autopoint (notwanted)
- 26.8 1.3 libcrypt-openssl-random-perl (notwanted)
- 26.8 1.3 python-pygoocanvas (notwanted)
- 26.4 1.3 slbackup-php
- 26.0 1.3 libfreezethaw-perl (notoncd) (notwanted)
- 25.5 1.3 min12xxw (notoncd) (notwanted)
- 25.1 1.3 libtie-ixhash-perl (notwanted)
- 25.1 1.3 python-pymad (notoncd) (notwanted)
- 25.1 1.3 radeontool (notoncd) (notwanted)
- 24.7 1.3 hplip-cups (notoncd) (notwanted)
- 24.7 1.3 klash (notwanted)
- 24.3 1.3 xresprobe (notoncd) (notwanted)
- 23.8 1.3 libpam-ssh (notoncd) (notwanted)
- 23.4 1.3 ddccontrol (notwanted)
- 23.0 1.3 libsvn-mirror-perl (notoncd) (notwanted)
- 23.0 1.3 libsvn-simple-perl (notoncd) (notwanted)
- 23.0 1.3 scsiadd (notoncd) (notwanted)
- 22.6 1.3 python-mlt2 (notoncd) (notwanted)
- 22.1 1.3 libcompress-raw-zlib-perl (notoncd) (notwanted)
- 20.9 1.3 virtuoso-opensource-6.1-common (notwanted)
- 20.4 1.3 pavucontrol
- 20.4 1.3 pax (notoncd) (notwanted)
- 20.0 1.3 lsb-core (notoncd) (notwanted)
- 19.1 1.3 fairymax (notwanted)
- 19.1 1.3 geogebra
- 19.1 1.3 lmms
- 18.7 1.3 aspell-es (notoncd) (notwanted)
- 18.7 1.3 libgnomeprint2.2-0 (notoncd) (notwanted)
- 18.7 1.3 lmemory
- 18.7 1.3 maxima (notoncd) (notwanted)
- 18.3 1.3 csound-gui (notwanted)
- 18.3 1.3 libmtp8 (notoncd) (notwanted)
- 18.3 1.3 pmount (notoncd) (notwanted)
- 18.3 1.3 python-m2crypto (notoncd) (notwanted)
- 17.9 1.3 planner
- 17.9 1.3 xscreensaver-data-extra (notwanted)
- 17.4 1.3 openvpn (notwanted)
- 17.4 1.3 xscreensaver-gl-extra (notwanted)
- 17.0 1.3 libticables2-1 (notwanted)
- 17.0 1.3 lprng (notoncd) (notwanted)
- 17.0 1.3 openjdk-6-jdk (notoncd) (notwanted)
- 17.0 1.3 plasma-dataengines-addons (notwanted)
- 17.0 1.3 plasma-wallpapers-addons (notwanted)
- 17.0 1.3 tilp2 (notwanted)
- 16.2 1.3 freerdp-x11
- 15.7 1.3 vpnc (notwanted)
- 14.9 1.3 kommander
- 14.5 1.3 kfilereplace (notwanted)
- 14.5 1.3 tidy (notoncd) (notwanted)
- 14.0 1.3 libkde4-ruby1.8 (notoncd) (notwanted)
- 14.0 1.3 libqt4-ruby1.8 (notoncd) (notwanted)
- 13.6 1.3 lmodern (notwanted)
- 13.2 1.3 kedit (notoncd) (notwanted)
- 12.8 1.3 ding (notoncd) (notwanted)
- 12.3 1.3 mlock (notwanted)
- 12.3 1.3 nagios3-cgi (notwanted)
- 11.9 1.3 acl (notwanted)
- 11.9 1.3 emacsen-common (notwanted)
- 11.9 1.3 lame (notoncd) (notwanted)
- 11.5 1.3 alacarte (notwanted)
- 11.5 1.3 debian-installer-6.0-netboot-amd64 (notoncd)
- 11.1 1.3 gnome-doc-utils (notoncd) (notwanted)
- 11.1 1.3 gnome-system-monitor (notwanted)
- 11.1 1.3 libgnome-window-settings1 (notoncd) (notwanted)
- 10.6 1.3 libio-stringy-perl (notoncd) (notwanted)
- 10.6 1.3 system-tools-backends (notoncd) (notwanted)
- 10.2 1.3 libgii1-target-x (notoncd) (notwanted)
- 9.8 1.3 bsh (notoncd) (notwanted)
- 9.4 1.3 g++-4.3 (notoncd) (notwanted)
- 8.9 1.3 pinentry-qt4 (notoncd) (notwanted)
- 8.5 1.3 libexpat1-dev (notwanted)
- 8.5 1.3 ps2eps (notwanted)
- 7.7 1.3 libwine-alsa (notoncd) (notwanted)
- 7.7 1.3 wamerican (notwanted)
- 7.2 1.3 ftp (notoncd) (notwanted)
- 7.2 1.3 libfontconfig1-dev (notwanted)
- 7.2 1.3 python-rdflib (notoncd) (notwanted)
- 7.2 1.3 texlive-font-utils (notwanted)
- 6.8 1.3 comerr-dev (notoncd) (notwanted)
- 6.8 1.3 emacs23-bin-common (notwanted)
- 6.8 1.3 libggi-target-x (notoncd) (notwanted)
- 6.8 1.3 libkrb5-dev (notoncd) (notwanted)
- 6.8 1.3 pcmciautils (notwanted)
- 6.8 1.3 pidgin
- 6.4 1.3 libauthen-sasl-perl (notoncd) (notwanted)
- 6.4 1.3 libgpg-error-dev (notoncd) (notwanted)
- 6.0 1.3 im-switch
- 6.0 1.3 libatk1.0-dev (notwanted)
- 6.0 1.3 libcairo2-dev (notwanted)
- 6.0 1.3 libwine-print (notoncd) (notwanted)
- 6.0 1.3 wdiff (notoncd) (notwanted)
- 5.5 1.3 gconf-editor (notoncd) (notwanted)
- 5.5 1.3 keyutils (notwanted)
- 5.5 1.3 kmahjongg (notoncd) (notwanted)
- 5.5 1.3 patchutils (notoncd) (notwanted)
- 5.5 1.3 sound-juicer (notwanted)
- 5.1 1.3 acroread-data (notoncd) (notwanted)
- 5.1 1.3 cpp-4.1 (notoncd) (notwanted)
- 5.1 1.3 kreversi (notoncd) (notwanted)
- 5.1 1.3 kshisen (notoncd) (notwanted)
- 5.1 1.3 libsoap-lite-perl (notoncd) (notwanted)
- 5.1 1.3 scim (notwanted)
- 5.1 1.3 seahorse (notwanted)
- 5.1 1.3 wireshark-common (notwanted)
- 4.7 1.3 blcr-util (notwanted)
- 4.7 1.3 devscripts (notoncd) (notwanted)
- 4.7 1.3 grub2-common (notwanted)
- 4.7 1.3 konsolekalendar (notoncd) (notwanted)
- 4.7 1.3 libapache2-mod-dnssd (notwanted)
- 4.7 1.3 libgtk-3-bin (notwanted)
- 4.7 1.3 liblapack3 (notwanted)
- 4.7 1.3 libpam-modules-bin (notwanted)
- 4.7 1.3 libqt4-opengl-dev (notoncd) (notwanted)
- 4.7 1.3 nautilus-sendto-empathy (notwanted)
- 4.7 1.3 openmpi-bin (notwanted)
- 4.7 1.3 wireshark (notwanted)
- 4.3 1.3 acroread-escript (notoncd) (notwanted)
- 4.3 1.3 bogofilter-bdb (notwanted)
- 4.3 1.3 cups-filters (notwanted)
- 4.3 1.3 diffstat (notoncd) (notwanted)
- 4.3 1.3 extra-xdg-menus (notoncd) (notwanted)
- 4.3 1.3 flashplugin-nonfree-extrasound (notoncd) (notwanted)
- 4.3 1.3 gnome-nettool (notwanted)
- 4.3 1.3 gnome-orca (notwanted)
- 4.3 1.3 kdepim-wizards (notoncd) (notwanted)
- 4.3 1.3 kleopatra (notoncd) (notwanted)
- 4.3 1.3 knode (notwanted)
- 4.3 1.3 liba52-0.7.4-dev (notwanted)
- 4.3 1.3 libfile-desktopentry-perl (notwanted)
- 4.3 1.3 libfile-mimeinfo-perl (notwanted)
- 4.3 1.3 libmtp-common (notwanted)
- 4.3 1.3 libopal3.6.8 (notoncd) (notwanted)
- 4.3 1.3 libpt2.6.7 (notoncd) (notwanted)
- 4.3 1.3 libtiff-tools (notoncd) (notwanted)
- 4.3 1.3 openmpi-checkpoint (notwanted)
- 3.8 1.3 acroread-plugins (notoncd) (notwanted)
- 3.8 1.3 amor (notoncd) (notwanted)
- 3.8 1.3 bison (notoncd) (notwanted)
- 3.8 1.3 blender (notoncd) (notwanted)
- 3.8 1.3 colord (notwanted)
- 3.8 1.3 cups-pdf (notoncd) (notwanted)
- 3.8 1.3 kdeartwork-style (notoncd) (notwanted)
- 3.8 1.3 kppp (notoncd) (notwanted)
- 3.8 1.3 kruler (notwanted)
- 3.8 1.3 kuser (notwanted)
- 3.8 1.3 libots0 (notoncd) (notwanted)
- 3.8 1.3 libsdl1.2-dev (notwanted)
- 3.8 1.3 libtext-diff-perl (notoncd) (notwanted)
- 3.8 1.3 proj-bin (notoncd) (notwanted)
- 3.8 1.3 pwgen (notoncd) (notwanted)
- 3.8 1.3 yakuake (notoncd) (notwanted)
- 3.4 1.3 celestia-gnome (notwanted)
- 3.4 1.3 dvipng (notoncd) (notwanted)
- 3.4 1.3 equivs (notoncd) (notwanted)
- 3.4 1.3 filelight (notwanted)
- 3.4 1.3 flex (notoncd) (notwanted)
- 3.4 1.3 gcj-4.4-jre-headless (notoncd) (notwanted)
- 3.4 1.3 graphviz (notoncd) (notwanted)
- 3.4 1.3 kimagemapeditor (notoncd) (notwanted)
- 3.4 1.3 ktux (notoncd) (notwanted)
- 3.4 1.3 libavformat-dev (notoncd) (notwanted)
- 3.4 1.3 libfile-type-perl (notoncd) (notwanted)
- 3.4 1.3 libfinance-quote-perl (notoncd) (notwanted)
- 3.4 1.3 libhtml-tableextract-perl (notoncd) (notwanted)
- 3.4 1.3 libreoffice-kde (notwanted)
- 3.4 1.3 libsqlite3-dev (notoncd) (notwanted)
- 3.4 1.3 libxml-xpath-perl (notoncd) (notwanted)
- 3.4 1.3 lirc (notwanted)
- 3.4 1.3 quilt (notoncd) (notwanted)
- 3.4 1.3 rhythmbox-plugin-cdrecorder (notwanted)
- 3.4 1.3 shotwell (notwanted)
- 3.0 1.3 bluefish (notwanted)
- 3.0 1.3 dstat (notoncd) (notwanted)
- 3.0 1.3 gambas2-runtime (notoncd) (notwanted)
- 3.0 1.3 gpsbabel (notoncd) (notwanted)
- 3.0 1.3 hplip-gui (notoncd) (notwanted)
- 3.0 1.3 kdesudo (notoncd) (notwanted)
- 3.0 1.3 kigo (notoncd) (notwanted)
- 3.0 1.3 killbots (notoncd) (notwanted)
- 3.0 1.3 ksquares (notoncd) (notwanted)
- 3.0 1.3 kubrick (notoncd) (notwanted)
- 3.0 1.3 libarchive-zip-perl (notoncd) (notwanted)
- 3.0 1.3 libarts1-akode (notoncd) (notwanted)
- 3.0 1.3 libbatik-java (notoncd) (notwanted)
- 3.0 1.3 libgcj10-awt (notoncd) (notwanted)
- 3.0 1.3 libswscale-dev (notoncd) (notwanted)
- 3.0 1.3 libusb-dev (notoncd) (notwanted)
- 3.0 1.3 mjpegtools (notoncd) (notwanted)
- 3.0 1.3 mysql-admin (notoncd) (notwanted)
- 3.0 1.3 palapeli (notoncd) (notwanted)
- 3.0 1.3 xfconf (notoncd) (notwanted)
- 3.0 1.3 xinput (notoncd) (notwanted)
- 3.0 1.3 xtightvncviewer (notoncd) (notwanted)
- 2.6 1.3 antiword (notoncd) (notwanted)
- 2.6 1.3 apg (notwanted)
- 2.6 1.3 aspectj (notoncd) (notwanted)
- 2.6 1.3 cmake (notoncd) (notwanted)
- 2.6 1.3 compiz-fusion-plugins-extra (notoncd) (notwanted)
- 2.6 1.3 compiz-fusion-plugins-main (notoncd) (notwanted)
- 2.6 1.3 compiz-gtk (notoncd) (notwanted)
- 2.6 1.3 compiz-plugins (notoncd) (notwanted)
- 2.6 1.3 daemon (notwanted)
- 2.6 1.3 dpatch (notoncd) (notwanted)
- 2.6 1.3 gftp-common (notoncd) (notwanted)
- 2.6 1.3 gkbd-capplet (notwanted)
- 2.6 1.3 gocr (notoncd) (notwanted)
- 2.6 1.3 gtk2-engines-xfce (notoncd) (notwanted)
- 2.6 1.3 intltool (notoncd) (notwanted)
- 2.6 1.3 kdelibs5-dev (notoncd) (notwanted)
- 2.6 1.3 kerneloops (notoncd) (notwanted)
- 2.6 1.3 kpowersave (notoncd) (notwanted)
- 2.6 1.3 libauthen-pam-perl (notoncd) (notwanted)
- 2.6 1.3 libgif-dev (notoncd) (notwanted)
- 2.6 1.3 libmysqlclient-dev (notoncd) (notwanted)
- 2.6 1.3 libpcre3-dev (notwanted)
- 2.6 1.3 libpq-dev (notoncd) (notwanted)
- 2.6 1.3 libsocket-perl (notoncd) (notwanted)
- 2.6 1.3 lsdvd (notoncd) (notwanted)
- 2.6 1.3 plasma-netbook (notoncd) (notwanted)
- 2.6 1.3 python-compizconfig (notoncd) (notwanted)
- 2.6 1.3 re2c (notoncd) (notwanted)
- 2.6 1.3 scim-gtk2-immodule (notoncd) (notwanted)
- 2.6 1.3 sp (notoncd) (notwanted)
- 2.6 1.3 sqlite (notoncd) (notwanted)
- 2.6 1.3 texlive-math-extra (notoncd) (notwanted)
- 2.6 1.3 tightvncserver (notwanted)
- 2.6 1.3 v4l-conf (notoncd) (notwanted)
- 2.6 1.3 vde2 (notoncd) (notwanted)
- 2.6 1.3 vinagre (notwanted)
- 2.6 1.3 xfce4-mixer (notoncd) (notwanted)
- 2.6 1.3 xfce4-panel (notoncd) (notwanted)
- 2.6 1.3 xfce4-session (notoncd) (notwanted)
- 2.6 1.3 xfce4-settings (notoncd) (notwanted)
- 2.6 1.3 xfdesktop4 (notoncd) (notwanted)
- 2.6 1.3 xfwm4 (notoncd) (notwanted)
- 2.1 1.3 advancecomp (notoncd) (notwanted)
- 2.1 1.3 alsa-oss (notoncd) (notwanted)
- 2.1 1.3 cdbs (notoncd) (notwanted)
- 2.1 1.3 cmake-data (notoncd) (notwanted)
- 2.1 1.3 compizconfig-backend-gconf (notoncd) (notwanted)
- 2.1 1.3 cvsservice (notoncd) (notwanted)
- 2.1 1.3 dia (notwanted)
- 2.1 1.3 doxygen (notoncd) (notwanted)
- 2.1 1.3 g++-4.7 (notwanted)
- 2.1 1.3 gftp-text (notoncd) (notwanted)
- 2.1 1.3 gir1.2-peas-1.0 (notwanted)
- 2.1 1.3 gnome-session-fallback (notwanted)
- 2.1 1.3 guile-2.0-libs (notwanted)
- 2.1 1.3 icoutils (notoncd) (notwanted)
- 2.1 1.3 kcachegrind (notoncd) (notwanted)
- 2.1 1.3 kdesdk-kio-plugins (notoncd) (notwanted)
- 2.1 1.3 kpartloader (notoncd) (notwanted)
- 2.1 1.3 ktimetracker (notoncd) (notwanted)
- 2.1 1.3 kview (notoncd) (notwanted)
- 2.1 1.3 libfcgi0ldbl (notoncd) (notwanted)
- 2.1 1.3 libgstreamer-plugins-base0.10-dev (notoncd) (notwanted)
- 2.1 1.3 libjava3d-jni (notoncd) (notwanted)
- 2.1 1.3 libwww-curl-perl (notoncd) (notwanted)
- 2.1 1.3 libwww-mechanize-perl (notoncd) (notwanted)
- 2.1 1.3 linux-image-2.6.26-2-486 (notoncd) (notwanted)
- 2.1 1.3 networkstatus (notoncd) (notwanted)
- 2.1 1.3 pcmanfm (notwanted)
- 2.1 1.3 poxml (notoncd) (notwanted)
- 2.1 1.3 pvm (notoncd) (notwanted)
- 2.1 1.3 python-django (notoncd) (notwanted)
- 2.1 1.3 python-egenix-mxdatetime (notoncd) (notwanted)
- 2.1 1.3 python-mysqldb (notoncd) (notwanted)
- 2.1 1.3 python-pygments (notoncd) (notwanted)
- 2.1 1.3 rar (notoncd) (notwanted)
- 2.1 1.3 slib (notoncd) (notwanted)
- 2.1 1.3 spamassassin (notoncd) (notwanted)
- 2.1 1.3 spamc (notoncd) (notwanted)
- 2.1 1.3 vim-gnome (notoncd) (notwanted)
- 2.1 1.3 xfprint4 (notoncd) (notwanted)
- 2.1 1.3 xmms2-core (notwanted)
- 2.1 1.3 zsh (notoncd) (notwanted)
- 1.7 1.3 alsaplayer-gtk (notoncd) (notwanted)
- 1.7 1.3 apcupsd (notoncd) (notwanted)
- 1.7 1.3 argyll (notwanted)
- 1.7 1.3 blackbox (notoncd) (notwanted)
- 1.7 1.3 chkrootkit (notoncd) (notwanted)
- 1.7 1.3 ddclient (notoncd) (notwanted)
- 1.7 1.3 faad (notoncd) (notwanted)
- 1.7 1.3 fusion-icon (notoncd) (notwanted)
- 1.7 1.3 gfortran-4.4 (notoncd) (notwanted)
- 1.7 1.3 gnucash (notoncd) (notwanted)
- 1.7 1.3 gpm (notoncd) (notwanted)
- 1.7 1.3 gpsd (notoncd) (notwanted)
- 1.7 1.3 id3v2 (notoncd) (notwanted)
- 1.7 1.3 kdiff3 (notoncd) (notwanted)
- 1.7 1.3 ldm (notwanted)
- 1.7 1.3 libatlas3-base (notoncd) (notwanted)
- 1.7 1.3 libming-util (notoncd) (notwanted)
- 1.7 1.3 liborbit2-dev (notoncd) (notwanted)
- 1.7 1.3 libqt4-dev-bin (notoncd) (notwanted)
- 1.7 1.3 libreoffice-evolution (notoncd) (notwanted)
- 1.7 1.3 libspeex-dev (notoncd) (notwanted)
- 1.7 1.3 linux-image-3.2.0-0.bpo.2-amd64 (notoncd) (notwanted)
- 1.7 1.3 nautilus-open-terminal (notoncd) (notwanted)
- 1.7 1.3 pdfmod (notoncd) (notwanted)
- 1.7 1.3 policycoreutils (notoncd) (notwanted)
- 1.7 1.3 protobuf-compiler (notoncd) (notwanted)
- 1.7 1.3 python-lazr.uri (notoncd) (notwanted)
- 1.7 1.3 qhull-bin (notoncd) (notwanted)
- 1.7 1.3 qt3-dev-tools (notoncd) (notwanted)
- 1.7 1.3 ristretto (notoncd) (notwanted)
- 1.7 1.3 squeeze (notoncd) (notwanted)
- 1.7 1.3 texi2html (notoncd) (notwanted)
- 1.7 1.3 unrar-free (notoncd) (notwanted)
- 1.7 1.3 webmin (notoncd) (notwanted)
- 1.7 1.3 xdotool (notoncd) (notwanted)
- 1.7 1.3 xfce4-datetime-plugin (notoncd) (notwanted)
- 1.7 1.3 xfce4-taskmanager (notoncd) (notwanted)
- 1.7 1.3 xfig (notoncd) (notwanted)
- 1.7 1.3 xvfb (notoncd) (notwanted)
- 1.3 1.3 alltray (notoncd) (notwanted)
- 1.3 1.3 alsamixergui (notoncd) (notwanted)
- 1.3 1.3 amsn (notoncd) (notwanted)
- 1.3 1.3 apache2-mpm-worker (notoncd) (notwanted)
- 1.3 1.3 apper (notoncd) (notwanted)
- 1.3 1.3 atop (notoncd) (notwanted)
- 1.3 1.3 azureus (notoncd) (notwanted)
- 1.3 1.3 bzr-gtk (notoncd) (notwanted)
- 1.3 1.3 ccache (notoncd) (notwanted)
- 1.3 1.3 cdpr (notoncd) (notwanted)
- 1.3 1.3 clamav-daemon (notoncd) (notwanted)
- 1.3 1.3 cuetools (notoncd) (notwanted)
- 1.3 1.3 dictd (notoncd) (notwanted)
- 1.3 1.3 dropbox (notoncd) (notwanted)
- 1.3 1.3 dvdisaster (notoncd) (notwanted)
- 1.3 1.3 ebtables (notoncd) (notwanted)
- 1.3 1.3 gpdftext (notoncd) (notwanted)
- 1.3 1.3 gstreamer-tools (notoncd) (notwanted)
- 1.3 1.3 jhead (notoncd) (notwanted)
- 1.3 1.3 kdevelop
- 1.3 1.3 lcov (notoncd) (notwanted)
- 1.3 1.3 liballegro4.2-plugin-jack (notoncd) (notwanted)
- 1.3 1.3 libapache2-mod-perl2 (notoncd) (notwanted)
- 1.3 1.3 libemeraldengine0 (notoncd) (notwanted)
- 1.3 1.3 libipc-signal-perl (notoncd) (notwanted)
- 1.3 1.3 libpam-sss
- 1.3 1.3 libproc-waitstat-perl (notoncd) (notwanted)
- 1.3 1.3 libreoffice-pdfimport (notoncd) (notwanted)
- 1.3 1.3 libspeexdsp-dev (notoncd) (notwanted)
- 1.3 1.3 memcached (notoncd) (notwanted)
- 1.3 1.3 mime-construct (notoncd) (notwanted)
- 1.3 1.3 mysql-client-5.0 (notoncd) (notwanted)
- 1.3 1.3 mysql-client-5.5 (notoncd) (notwanted)
- 1.3 1.3 mysql-server-5.5 (notoncd) (notwanted)
- 1.3 1.3 nautilus-actions (notoncd) (notwanted)
- 1.3 1.3 okular-extra-backends (notoncd) (notwanted)
- 1.3 1.3 openoffice.org-l10n-it
- 1.3 1.3 pdfsam (notoncd) (notwanted)
- 1.3 1.3 php5-cgi (notoncd) (notwanted)
- 1.3 1.3 python-gtk2-dev (notoncd) (notwanted)
- 1.3 1.3 python-zopeinterface (notoncd) (notwanted)
- 1.3 1.3 qpdf (notoncd) (notwanted)
- 1.3 1.3 quvi (notoncd) (notwanted)
- 1.3 1.3 ripperx (notoncd) (notwanted)
- 1.3 1.3 sepiida-server (notoncd) (notwanted)
- 1.3 1.3 setserial (notoncd) (notwanted)
- 1.3 1.3 sssd (notwanted)
- 1.3 1.3 stardict-tools (notoncd) (notwanted)
- 1.3 1.3 swish++ (notoncd) (notwanted)
- 1.3 1.3 tipptrainer (notoncd) (notwanted)
- 1.3 1.3 tracker (notwanted)
- 1.3 1.3 tracker-extract (notwanted)
- 1.3 1.3 tracker-gui (notwanted)
- 1.3 1.3 tracker-miner-fs (notwanted)
- 1.3 1.3 transmageddon (notoncd) (notwanted)
- 1.3 1.3 tsclient (notoncd) (notwanted)
- 1.3 1.3 vamps (notoncd) (notwanted)
- 1.3 1.3 vuze (notoncd) (notwanted)
- 1.3 1.3 xbrlapi (notwanted)
- 1.3 1.3 xserver-xorg-input-vmmouse (notoncd) (notwanted)
- 76.2 0.9 libts-0.0-0 (notwanted)
- 71.5 0.9 libcaca0 (notwanted)
- 70.6 0.9 libqt4-script (notwanted)
- 70.2 0.9 libqt4-qt3support (notwanted)
- 62.1 0.9 libv4l-0 (notwanted)
- 56.6 0.9 texlive-common (notwanted)
- 56.2 0.9 libproxy0 (notwanted)
- 55.7 0.9 dhcp3-common (notoncd) (notwanted)
- 54.5 0.9 libgnome-media0 (notoncd) (notwanted)
- 52.8 0.9 libpstoedit0c2a (notwanted)
- 52.3 0.9 plasma-scriptengine-javascript (notwanted)
- 50.6 0.9 libxcb1-dev (notwanted)
- 50.6 0.9 xtrans-dev (notwanted)
- 48.9 0.9 libmono-security2.0-cil (notoncd) (notwanted)
- 48.5 0.9 xserver-xorg-video-openchrome (notwanted)
- 44.7 0.9 libavfilter0 (notoncd) (notwanted)
- 40.9 0.9 texlive-fonts-recommended (notwanted)
- 40.0 0.9 python-twisted-web (notoncd) (notwanted)
- 37.0 0.9 geoclue (notwanted)
- 37.0 0.9 libgdiplus (notwanted)
- 36.2 0.9 libmono-addins-gui0.2-cil (notwanted)
- 36.2 0.9 libmono-addins0.2-cil (notwanted)
- 35.7 0.9 libgnome2.24-cil (notoncd) (notwanted)
- 35.7 0.9 telepathy-gabble (notwanted)
- 35.7 0.9 telepathy-salut (notwanted)
- 34.5 0.9 wspanish
- 33.6 0.9 xjig
- 33.2 0.9 libgcu0 (notwanted)
- 32.8 0.9 criticalmass (notoncd) (notwanted)
- 32.8 0.9 python-twisted-mail (notoncd) (notwanted)
- 32.8 0.9 trophy (notoncd) (notwanted)
- 32.3 0.9 catfish (notoncd) (notwanted)
- 32.3 0.9 gstreamer0.10-gnomevfs (notoncd) (notwanted)
- 32.3 0.9 libgnomevfs2-extra (notwanted)
- 31.9 0.9 dia-libs (notwanted)
- 31.9 0.9 hal-cups-utils (notoncd) (notwanted)
- 31.9 0.9 iportuguese
- 31.9 0.9 python-twisted-lore (notoncd) (notwanted)
- 31.5 0.9 jfractionlab (notoncd) (notwanted)
- 31.1 0.9 cdrskin (notoncd) (notwanted)
- 31.1 0.9 gbrainy (notoncd) (notwanted)
- 31.1 0.9 solarwolf (notoncd) (notwanted)
- 31.1 0.9 svgalib-bin (notoncd) (notwanted)
- 28.5 0.9 libtunepimp5 (notoncd) (notwanted)
- 28.1 0.9 libfont-afm-perl (notwanted)
- 28.1 0.9 libhtml-format-perl (notwanted)
- 28.1 0.9 povray (notoncd) (notwanted)
- 28.1 0.9 ufraw (notoncd) (notwanted)
- 27.2 0.9 musixtex (notoncd) (notwanted)
- 26.0 0.9 xvkbd (notoncd) (notwanted)
- 25.5 0.9 openoffice.org-officebean (notoncd) (notwanted)
- 25.1 0.9 libfont-freetype-perl (notoncd) (notwanted)
- 24.7 0.9 fancontrol (notoncd) (notwanted)
- 24.7 0.9 openoffice.org-report-builder-bin (notoncd) (notwanted)
- 24.7 0.9 python-pyaudio (notoncd) (notwanted)
- 23.8 0.9 libalgorithm-annotate-perl (notoncd) (notwanted)
- 23.8 0.9 libfile-chdir-perl (notoncd) (notwanted)
- 23.8 0.9 libio-digest-perl (notoncd) (notwanted)
- 23.4 0.9 libextutils-autoinstall-perl (notoncd) (notwanted)
- 23.0 0.9 grub (notoncd) (notwanted)
- 23.0 0.9 poppler-data (notwanted)
- 23.0 0.9 python-software-properties (notwanted)
- 22.6 0.9 libgoffice-0.8-8-common (notwanted)
- 22.6 0.9 libqt-perl (notoncd) (notwanted)
- 21.7 0.9 perlmagick (notwanted)
- 21.3 0.9 libxml-xpathengine-perl (notwanted)
- 20.9 0.9 libvirtodbc0 (notwanted)
- 20.4 0.9 libgraphicsmagick3 (notwanted)
- 20.4 0.9 xserver-xorg-video-radeonhd (notoncd) (notwanted)
- 20.0 0.9 libice-dev (notwanted)
- 20.0 0.9 libsm-dev (notwanted)
- 19.1 0.9 libkresources4 (notwanted)
- 19.1 0.9 libmailtransport4 (notwanted)
- 18.7 0.9 krosspython (notwanted)
- 18.7 0.9 xserver-xorg-video-v4l (notoncd) (notwanted)
- 18.3 0.9 cupsddk-drivers (notoncd) (notwanted)
- 18.3 0.9 libgvc5 (notoncd) (notwanted)
- 17.9 0.9 libakonadi-contact4 (notwanted)
- 17.9 0.9 libfreehdl0 (notoncd) (notwanted)
- 17.9 0.9 libfreehdl0-dev (notoncd) (notwanted)
- 17.9 0.9 libkdepim4 (notwanted)
- 17.9 0.9 libmailutils2 (notoncd) (notwanted)
- 17.9 0.9 starplot (notoncd) (notwanted)
- 17.9 0.9 wngerman
- 17.9 0.9 wxmaxima (notoncd) (notwanted)
- 17.4 0.9 gcj-4.4-jre-lib (notoncd) (notwanted)
- 17.4 0.9 libapache2-mod-gnutls (notoncd) (notwanted)
- 17.4 0.9 libqca2-plugin-ossl (notwanted)
- 17.0 0.9 kicad (notoncd) (notwanted)
- 17.0 0.9 plasma-scriptengine-webkit (notwanted)
- 17.0 0.9 servidor-ldap-installer (notoncd) (notwanted)
- 17.0 0.9 xserver-xorg-video-dummy (notoncd) (notwanted)
- 16.6 0.9 kseg (notoncd) (notwanted)
- 16.6 0.9 libmono-i18n-west2.0-cil (notoncd) (notwanted)
- 16.2 0.9 xscreensaver-screensaver-bsod (notwanted)
- 16.2 0.9 xserver-xorg-video-glint (notoncd) (notwanted)
- 15.7 0.9 cantor-backend-kalgebra (notwanted)
- 15.7 0.9 libmono-cairo1.0-cil (notoncd) (notwanted)
- 15.7 0.9 libmono-corlib1.0-cil (notoncd) (notwanted)
- 15.7 0.9 pptp-linux (notwanted)
- 15.7 0.9 radiusclient1 (notoncd) (notwanted)
- 15.7 0.9 sweep (notoncd) (notwanted)
- 15.3 0.9 idanish
- 15.3 0.9 kdeprint (notoncd) (notwanted)
- 15.3 0.9 kpercentage (notoncd) (notwanted)
- 15.3 0.9 libmono-system1.0-cil (notoncd) (notwanted)
- 14.9 0.9 libapache2-mod-auth-mysql (notoncd) (notwanted)
- 14.9 0.9 libgraphviz4 (notoncd) (notwanted)
- 14.9 0.9 libmagick10 (notoncd) (notwanted)
- 14.9 0.9 libparams-validate-perl (notwanted)
- 14.9 0.9 network-manager-pptp (notwanted)
- 14.9 0.9 network-manager-vpnc (notwanted)
- 14.9 0.9 python-eggtrayicon (notoncd) (notwanted)
- 14.9 0.9 python-gtkmozembed (notoncd) (notwanted)
- 14.9 0.9 wordtrans-kde (notoncd) (notwanted)
- 14.9 0.9 xserver-xorg-video-tga (notoncd) (notwanted)
- 14.5 0.9 kdeeject (notoncd) (notwanted)
- 14.5 0.9 konversation
- 14.5 0.9 libkcddb1 (notoncd) (notwanted)
- 14.0 0.9 ksirc (notoncd) (notwanted)
- 14.0 0.9 libipc-shareable-perl (notwanted)
- 14.0 0.9 libk3b3 (notoncd) (notwanted)
- 14.0 0.9 liblog-dispatch-perl (notwanted)
- 14.0 0.9 libnet-dbus-perl (notwanted)
- 14.0 0.9 libpisock9 (notoncd) (notwanted)
- 14.0 0.9 octave3.0 (notoncd) (notwanted)
- 13.6 0.9 kdebase-bin-kde3 (notoncd) (notwanted)
- 13.6 0.9 keduca (notoncd) (notwanted)
- 13.6 0.9 kiosktool (notoncd)
- 13.6 0.9 klatin (notoncd) (notwanted)
- 13.6 0.9 kooka (notoncd) (notwanted)
- 13.6 0.9 kverbos (notoncd) (notwanted)
- 13.6 0.9 kvoctrain (notoncd) (notwanted)
- 13.6 0.9 mono-jit (notoncd) (notwanted)
- 13.6 0.9 xserver-xorg-video-cyrix (notoncd) (notwanted)
- 13.2 0.9 kbstate (notoncd) (notwanted)
- 13.2 0.9 ksim (notoncd) (notwanted)
- 13.2 0.9 ttf-mscorefonts-installer (notoncd) (notwanted)
- 12.3 0.9 openmovieeditor (notoncd) (notwanted)
- 12.3 0.9 superkaramba (notoncd) (notwanted)
- 11.5 0.9 libalgorithm-diff-xs-perl (notwanted)
- 11.5 0.9 python-httplib2 (notwanted)
- 11.5 0.9 wnorwegian
- 11.1 0.9 gosa-plugin-ldapmanager
- 11.1 0.9 python-wnck (notwanted)
- 10.2 0.9 xserver-xorg-video-geode (notoncd) (notwanted)
- 10.2 0.9 xserver-xorg-video-imstt (notoncd) (notwanted)
- 10.2 0.9 xserver-xorg-video-nsc (notoncd) (notwanted)
- 9.8 0.9 libreoffice-java-common (notwanted)
- 9.4 0.9 arj (notwanted)
- 9.4 0.9 gnome-about (notoncd) (notwanted)
- 9.4 0.9 libreoffice-report-builder-bin (notwanted)
- 9.4 0.9 python-pam (notoncd) (notwanted)
- 9.4 0.9 tree (notoncd) (notwanted)
- 8.5 0.9 python-reportlab (notwanted)
- 8.5 0.9 texlive-extra-utils (notwanted)
- 8.5 0.9 x11proto-xext-dev (notwanted)
- 7.7 0.9 aspell-no
- 7.7 0.9 lacheck (notwanted)
- 7.7 0.9 read-edid (notoncd) (notwanted)
- 7.7 0.9 rhino (notoncd) (notwanted)
- 7.7 0.9 tipa (notwanted)
- 7.2 0.9 ant (notwanted)
- 7.2 0.9 x11proto-render-dev (notwanted)
- 6.8 0.9 libavutil50 (notoncd) (notwanted)
- 6.8 0.9 libxcomposite-dev (notwanted)
- 6.8 0.9 libxft-dev (notwanted)
- 6.8 0.9 python-reportlab-accel (notwanted)
- 6.8 0.9 realpath (notoncd) (notwanted)
- 6.8 0.9 x11proto-composite-dev (notwanted)
- 6.8 0.9 x11proto-fixes-dev (notwanted)
- 6.8 0.9 x11proto-randr-dev (notwanted)
- 6.8 0.9 x11proto-xinerama-dev (notwanted)
- 6.4 0.9 libconvert-binhex-perl (notoncd) (notwanted)
- 6.4 0.9 libgcrypt11-dev (notoncd) (notwanted)
- 6.4 0.9 libm17n-0 (notwanted)
- 6.4 0.9 libmime-tools-perl (notoncd) (notwanted)
- 6.4 0.9 libncurses5-dev (notoncd) (notwanted)
- 6.4 0.9 libpixman-1-dev (notwanted)
- 6.4 0.9 libpurple-bin (notwanted)
- 6.4 0.9 libxdamage-dev (notwanted)
- 6.4 0.9 obexd-client (notwanted)
- 6.4 0.9 python-axiom (notoncd) (notwanted)
- 6.4 0.9 python-coherence (notoncd) (notwanted)
- 6.4 0.9 python-epsilon (notoncd) (notwanted)
- 6.4 0.9 python-nevow (notoncd) (notwanted)
- 6.4 0.9 x11proto-damage-dev (notwanted)
- 6.0 0.9 common-lisp-controller (notoncd) (notwanted)
- 6.0 0.9 dctrl-tools (notwanted)
- 6.0 0.9 evolution-webcal (notwanted)
- 6.0 0.9 gnupg-curl (notwanted)
- 6.0 0.9 kpat (notoncd) (notwanted)
- 6.0 0.9 libmime-types-perl (notoncd) (notwanted)
- 6.0 0.9 libtasn1-3-dev (notoncd) (notwanted)
- 6.0 0.9 m17n-db (notwanted)
- 5.5 0.9 geoclue-hostip (notwanted)
- 5.5 0.9 geoclue-localnet (notwanted)
- 5.5 0.9 geoclue-manual (notwanted)
- 5.5 0.9 geoclue-yahoo (notwanted)
- 5.5 0.9 libgnutls-dev (notoncd) (notwanted)
- 5.5 0.9 libparse-debianchangelog-perl (notwanted)
- 5.5 0.9 libwine-cms (notoncd) (notwanted)
- 5.5 0.9 libwine-ldap (notoncd) (notwanted)
- 5.5 0.9 purifyeps (notoncd) (notwanted)
- 5.5 0.9 python-sip4 (notoncd) (notwanted)
- 5.5 0.9 squeak-plugins-scratch (notwanted)
- 5.1 0.9 avahi-utils (notoncd) (notwanted)
- 5.1 0.9 libfcgi-perl (notwanted)
- 5.1 0.9 liblinear-tools (notwanted)
- 5.1 0.9 libossp-uuid-perl (notoncd) (notwanted)
- 5.1 0.9 libsvm-tools (notwanted)
- 5.1 0.9 linuxlogo (notoncd) (notwanted)
- 5.1 0.9 powertop
- 5.1 0.9 python-renderpm (notwanted)
- 4.7 0.9 acroread-l10n-en (notoncd) (notwanted)
- 4.7 0.9 aptitude-common (notwanted)
- 4.7 0.9 bluez-gstreamer (notoncd) (notwanted)
- 4.7 0.9 gir1.2-vte-2.90 (notwanted)
- 4.7 0.9 gnome-games (notwanted)
- 4.7 0.9 grub-pc-bin (notwanted)
- 4.7 0.9 katomic (notoncd) (notwanted)
- 4.7 0.9 kgoldrunner (notoncd) (notwanted)
- 4.7 0.9 kjumpingcube (notoncd) (notwanted)
- 4.7 0.9 klines (notoncd) (notwanted)
- 4.7 0.9 kmines (notoncd) (notwanted)
- 4.7 0.9 libavogadro1 (notwanted)
- 4.7 0.9 libclass-inspector-perl (notoncd) (notwanted)
- 4.7 0.9 libdbus-1-dev (notwanted)
- 4.7 0.9 libencode-locale-perl (notwanted)
- 4.7 0.9 libgnome-mag2 (notwanted)
- 4.7 0.9 libhttp-date-perl (notwanted)
- 4.7 0.9 libhttp-message-perl (notwanted)
- 4.7 0.9 libjpeg62-dev (notoncd) (notwanted)
- 4.7 0.9 libjson-perl (notoncd) (notwanted)
- 4.7 0.9 libjson-xs-perl (notoncd) (notwanted)
- 4.7 0.9 libparse-recdescent-perl (notwanted)
- 4.7 0.9 libtask-weaken-perl (notoncd) (notwanted)
- 4.7 0.9 printer-driver-min12xxw (notwanted)
- 4.7 0.9 python-brlapi (notwanted)
- 4.7 0.9 python-greenlet (notoncd) (notwanted)
- 4.7 0.9 python-webkit (notoncd) (notwanted)
- 4.7 0.9 scim-anthy (notoncd)
- 4.7 0.9 xindy (notoncd) (notwanted)
- 4.3 0.9 chromium-browser-inspector (notoncd) (notwanted)
- 4.3 0.9 esound-clients (notoncd) (notwanted)
- 4.3 0.9 freemind (notwanted)
- 4.3 0.9 gir1.2-clutter-1.0 (notwanted)
- 4.3 0.9 gir1.2-cogl-1.0 (notwanted)
- 4.3 0.9 gir1.2-coglpango-1.0 (notwanted)
- 4.3 0.9 gir1.2-evince-3.0 (notwanted)
- 4.3 0.9 gir1.2-gtkclutter-1.0 (notwanted)
- 4.3 0.9 gir1.2-json-1.0 (notwanted)
- 4.3 0.9 gnome-js-common (notwanted)
- 4.3 0.9 iw (notwanted)
- 4.3 0.9 kblackbox (notoncd) (notwanted)
- 4.3 0.9 kbounce (notoncd) (notwanted)
- 4.3 0.9 kolf (notoncd) (notwanted)
- 4.3 0.9 konquest (notoncd) (notwanted)
- 4.3 0.9 kspaceduel (notoncd) (notwanted)
- 4.3 0.9 ktron (notoncd) (notwanted)
- 4.3 0.9 libcommon-sense-perl (notoncd) (notwanted)
- 4.3 0.9 libgjs0b (notwanted)
- 4.3 0.9 libldap2-dev (notoncd) (notwanted)
- 4.3 0.9 liblockfile-bin (notwanted)
- 4.3 0.9 libmono-corlib4.0-cil (notwanted)
- 4.3 0.9 libmono-security4.0-cil (notwanted)
- 4.3 0.9 libmono-system-configuration4.0-cil (notwanted)
- 4.3 0.9 libmono-system-drawing4.0-cil (notwanted)
- 4.3 0.9 libmono-system-security4.0-cil (notwanted)
- 4.3 0.9 libmono-system-xml4.0-cil (notwanted)
- 4.3 0.9 libmono-system4.0-cil (notwanted)
- 4.3 0.9 libogdi3.2 (notoncd) (notwanted)
- 4.3 0.9 libx11-protocol-perl (notwanted)
- 4.3 0.9 lskat (notoncd) (notwanted)
- 4.3 0.9 mscompress (notwanted)
- 4.3 0.9 printer-driver-foo2zjs (notwanted)
- 4.3 0.9 printer-driver-gutenprint (notwanted)
- 4.3 0.9 python-qt3 (notoncd) (notwanted)
- 4.3 0.9 software-properties-common (notwanted)
- 4.3 0.9 stunnel4 (notoncd) (notwanted)
- 4.3 0.9 texlive-base-bin (notoncd) (notwanted)
- 4.3 0.9 w32codecs (notoncd) (notwanted)
- 3.8 0.9 acroread-dictionary-en (notoncd) (notwanted)
- 3.8 0.9 antlr (notoncd) (notwanted)
- 3.8 0.9 cryptsetup-bin (notwanted)
- 3.8 0.9 festival (notwanted)
- 3.8 0.9 firmware-ipw2x00 (notwanted)
- 3.8 0.9 joe (notoncd) (notwanted)
- 3.8 0.9 kolourpaint4 (notoncd) (notwanted)
- 3.8 0.9 kteatime (notoncd) (notwanted)
- 3.8 0.9 kweather (notoncd) (notwanted)
- 3.8 0.9 libcaca-dev (notwanted)
- 3.8 0.9 libdirectfb-dev (notwanted)
- 3.8 0.9 libipc-run-perl (notwanted)
- 3.8 0.9 libparse-debcontrol-perl (notoncd) (notwanted)
- 3.8 0.9 libpod-simple-perl (notoncd) (notwanted)
- 3.8 0.9 odt2txt (notoncd) (notwanted)
- 3.8 0.9 python-sqlite (notoncd) (notwanted)
- 3.8 0.9 simple-scan (notwanted)
- 3.8 0.9 valgrind (notwanted)
- 3.4 0.9 abiword-plugin-grammar (notoncd) (notwanted)
- 3.4 0.9 abiword-plugin-mathview (notoncd) (notwanted)
- 3.4 0.9 crda (notwanted)
- 3.4 0.9 dput (notoncd) (notwanted)
- 3.4 0.9 ggzcore-bin (notoncd) (notwanted)
- 3.4 0.9 iptraf (notoncd) (notwanted)
- 3.4 0.9 libappconfig-perl (notoncd) (notwanted)
- 3.4 0.9 libdevel-symdump-perl (notoncd) (notwanted)
- 3.4 0.9 libmono-i18n-west4.0-cil (notwanted)
- 3.4 0.9 libmono-i18n4.0-cil (notwanted)
- 3.4 0.9 libreadonly-perl (notwanted)
- 3.4 0.9 lintian (notoncd) (notwanted)
- 3.4 0.9 plasma-containments-addons (notwanted)
- 3.4 0.9 printer-driver-splix (notwanted)
- 3.4 0.9 python-avogadro (notwanted)
- 3.4 0.9 python-imaging-tk (notwanted)
- 3.4 0.9 rubberband-cli (notwanted)
- 3.4 0.9 scim-modules-socket (notoncd) (notwanted)
- 3.4 0.9 scim-modules-table (notwanted)
- 3.4 0.9 scim-prime (notoncd)
- 3.4 0.9 sqlite3 (notoncd) (notwanted)
- 3.4 0.9 wireless-regdb (notwanted)
- 3.4 0.9 xdebconfigurator (notoncd) (notwanted)
- 3.0 0.9 apertium (notoncd) (notwanted)
- 3.0 0.9 apmd (notoncd) (notwanted)
- 3.0 0.9 automoc (notoncd) (notwanted)
- 3.0 0.9 cmt (notoncd) (notwanted)
- 3.0 0.9 fil-plugins (notoncd) (notwanted)
- 3.0 0.9 fop (notoncd) (notwanted)
- 3.0 0.9 freeciv-client-gtk (notoncd) (notwanted)
- 3.0 0.9 freeciv-server (notoncd) (notwanted)
- 3.0 0.9 gambas2-gb-qt (notoncd) (notwanted)
- 3.0 0.9 gfortran (notoncd) (notwanted)
- 3.0 0.9 kaccessible (notwanted)
- 3.0 0.9 kdegraphics-strigi-analyzer (notwanted)
- 3.0 0.9 libgtk2-gladexml-perl (notoncd) (notwanted)
- 3.0 0.9 libidn11-dev (notoncd) (notwanted)
- 3.0 0.9 libjetty-java (notoncd) (notwanted)
- 3.0 0.9 libjogl-jni (notoncd) (notwanted)
- 3.0 0.9 libreadline6-dev (notoncd) (notwanted)
- 3.0 0.9 libsaxon-java (notoncd) (notwanted)
- 3.0 0.9 libxfce4util-bin (notoncd) (notwanted)
- 3.0 0.9 libxfcegui4-4 (notoncd) (notwanted)
- 3.0 0.9 lttoolbox (notoncd) (notwanted)
- 3.0 0.9 perl-tk (notoncd) (notwanted)
- 3.0 0.9 psfontmgr (notoncd) (notwanted)
- 3.0 0.9 python-gtkglext1 (notoncd) (notwanted)
- 3.0 0.9 qt4-designer (notoncd) (notwanted)
- 3.0 0.9 r-base-core (notoncd) (notwanted)
- 3.0 0.9 r-cran-boot (notoncd) (notwanted)
- 3.0 0.9 r-cran-class (notoncd) (notwanted)
- 3.0 0.9 r-cran-cluster (notoncd) (notwanted)
- 3.0 0.9 r-cran-codetools (notoncd) (notwanted)
- 3.0 0.9 r-cran-foreign (notoncd) (notwanted)
- 3.0 0.9 r-cran-kernsmooth (notoncd) (notwanted)
- 3.0 0.9 r-cran-lattice (notoncd) (notwanted)
- 3.0 0.9 r-cran-mass (notoncd) (notwanted)
- 3.0 0.9 r-cran-matrix (notoncd) (notwanted)
- 3.0 0.9 r-cran-mgcv (notoncd) (notwanted)
- 3.0 0.9 r-cran-nlme (notoncd) (notwanted)
- 3.0 0.9 r-cran-nnet (notoncd) (notwanted)
- 3.0 0.9 r-cran-rpart (notoncd) (notwanted)
- 3.0 0.9 r-cran-spatial (notoncd) (notwanted)
- 3.0 0.9 r-cran-survival (notoncd) (notwanted)
- 3.0 0.9 subversion-tools (notoncd) (notwanted)
- 3.0 0.9 sun-java5-jre (notoncd) (notwanted)
- 3.0 0.9 tcllib (notoncd) (notwanted)
- 3.0 0.9 uswsusp (notoncd) (notwanted)
- 2.6 0.9 bomber (notoncd) (notwanted)
- 2.6 0.9 bovo (notoncd) (notwanted)
- 2.6 0.9 bzr (notoncd) (notwanted)
- 2.6 0.9 compizconfig-settings-manager (notoncd) (notwanted)
- 2.6 0.9 dos2unix (notoncd) (notwanted)
- 2.6 0.9 erlang-base (notoncd) (notwanted)
- 2.6 0.9 fotoxx
- 2.6 0.9 gdal-bin (notoncd) (notwanted)
- 2.6 0.9 gftp-gtk (notoncd) (notwanted)
- 2.6 0.9 gir1.2-gconf-2.0 (notwanted)
- 2.6 0.9 granatier (notoncd) (notwanted)
- 2.6 0.9 guile-1.6 (notoncd) (notwanted)
- 2.6 0.9 jarwrapper (notoncd) (notwanted)
- 2.6 0.9 josm (notoncd) (notwanted)
- 2.6 0.9 kapman (notoncd) (notwanted)
- 2.6 0.9 kapptemplate (notoncd) (notwanted)
- 2.6 0.9 kblocks (notoncd) (notwanted)
- 2.6 0.9 kbreakout (notoncd) (notwanted)
- 2.6 0.9 kcolorchooser (notoncd) (notwanted)
- 2.6 0.9 kde-config-cron (notwanted)
- 2.6 0.9 kdenetwork-filesharing (notoncd) (notwanted)
- 2.6 0.9 kdepim-groupware (notoncd) (notwanted)
- 2.6 0.9 kdiamond (notoncd) (notwanted)
- 2.6 0.9 kdvi (notoncd) (notwanted)
- 2.6 0.9 kernel-package (notoncd) (notwanted)
- 2.6 0.9 kfourinline (notoncd) (notwanted)
- 2.6 0.9 kiriki (notoncd) (notwanted)
- 2.6 0.9 kollision (notoncd) (notwanted)
- 2.6 0.9 ksirk (notoncd) (notwanted)
- 2.6 0.9 ksystemlog (notoncd) (notwanted)
- 2.6 0.9 ktnef (notoncd) (notwanted)
- 2.6 0.9 libmono-i18n1.0-cil (notoncd) (notwanted)
- 2.6 0.9 libruby1.9.1 (notwanted)
- 2.6 0.9 libxcb-render-util0-dev (notoncd) (notwanted)
- 2.6 0.9 libxml-perl (notoncd) (notwanted)
- 2.6 0.9 libxml-writer-perl (notoncd) (notwanted)
- 2.6 0.9 orage (notoncd) (notwanted)
- 2.6 0.9 packagekit-tools (notwanted)
- 2.6 0.9 pdfedit (notoncd) (notwanted)
- 2.6 0.9 perl-doc (notoncd) (notwanted)
- 2.6 0.9 python-matplotlib (notwanted)
- 2.6 0.9 python-rsvg (notwanted)
- 2.6 0.9 python-tz (notwanted)
- 2.6 0.9 qt3-assistant (notoncd) (notwanted)
- 2.6 0.9 quota (notoncd) (notwanted)
- 2.6 0.9 r-base-html (notoncd) (notwanted)
- 2.6 0.9 r-cran-abind (notoncd) (notwanted)
- 2.6 0.9 r-cran-car (notoncd) (notwanted)
- 2.6 0.9 r-cran-colorspace (notoncd) (notwanted)
- 2.6 0.9 r-cran-effects (notoncd) (notwanted)
- 2.6 0.9 r-cran-lmtest (notoncd) (notwanted)
- 2.6 0.9 r-cran-multcomp (notoncd) (notwanted)
- 2.6 0.9 r-cran-mvtnorm (notoncd) (notwanted)
- 2.6 0.9 r-cran-relimp (notoncd) (notwanted)
- 2.6 0.9 r-cran-rgl (notoncd) (notwanted)
- 2.6 0.9 r-cran-sandwich (notoncd) (notwanted)
- 2.6 0.9 r-cran-sm (notoncd) (notwanted)
- 2.6 0.9 r-cran-strucchange (notoncd) (notwanted)
- 2.6 0.9 r-cran-zoo (notoncd) (notwanted)
- 2.6 0.9 ruby1.9.1 (notwanted)
- 2.6 0.9 sat4j (notoncd) (notwanted)
- 2.6 0.9 software-center (notoncd) (notwanted)
- 2.6 0.9 torcs (notoncd) (notwanted)
- 2.6 0.9 twm (notoncd) (notwanted)
- 2.6 0.9 twolame (notoncd) (notwanted)
- 2.6 0.9 xfce4-appfinder (notoncd) (notwanted)
- 2.6 0.9 zeitgeist-core (notwanted)
- 2.1 0.9 aisleriot (notwanted)
- 2.1 0.9 akonadiconsole (notoncd) (notwanted)
- 2.1 0.9 antlr3 (notoncd) (notwanted)
- 2.1 0.9 armagetronad (notoncd) (notwanted)
- 2.1 0.9 aumix-common (notoncd) (notwanted)
- 2.1 0.9 automake1.9 (notoncd) (notwanted)
- 2.1 0.9 b43-fwcutter (notoncd) (notwanted)
- 2.1 0.9 blogilo (notoncd) (notwanted)
- 2.1 0.9 bluefish-plugins (notwanted)
- 2.1 0.9 bzflag-client (notoncd) (notwanted)
- 2.1 0.9 bzflag-server (notoncd) (notwanted)
- 2.1 0.9 comix (notoncd) (notwanted)
- 2.1 0.9 compiz-fusion-plugins-unsupported (notoncd) (notwanted)
- 2.1 0.9 conduit (notoncd) (notwanted)
- 2.1 0.9 dconf-tools (notwanted)
- 2.1 0.9 docbook-dsssl (notoncd) (notwanted)
- 2.1 0.9 eclipse-platform (notoncd) (notwanted)
- 2.1 0.9 extremetuxracer (notoncd) (notwanted)
- 2.1 0.9 freeradius (notoncd) (notwanted)
- 2.1 0.9 gir1.2-accountsservice-1.0 (notwanted)
- 2.1 0.9 gir1.2-caribou-1.0 (notwanted)
- 2.1 0.9 gir1.2-folks-0.6 (notwanted)
- 2.1 0.9 gir1.2-gck-1 (notwanted)
- 2.1 0.9 gir1.2-gcr-3 (notwanted)
- 2.1 0.9 gir1.2-gdesktopenums-3.0 (notwanted)
- 2.1 0.9 gir1.2-gee-1.0 (notwanted)
- 2.1 0.9 gir1.2-gkbd-3.0 (notwanted)
- 2.1 0.9 gir1.2-gmenu-3.0 (notwanted)
- 2.1 0.9 gir1.2-gnomebluetooth-1.0 (notwanted)
- 2.1 0.9 gir1.2-mutter-3.0 (notwanted)
- 2.1 0.9 gir1.2-networkmanager-1.0 (notwanted)
- 2.1 0.9 gir1.2-polkit-1.0 (notwanted)
- 2.1 0.9 gir1.2-soup-2.4 (notwanted)
- 2.1 0.9 gir1.2-telepathyglib-0.12 (notwanted)
- 2.1 0.9 gir1.2-telepathylogger-0.2 (notwanted)
- 2.1 0.9 gir1.2-upowerglib-1.0 (notwanted)
- 2.1 0.9 gir1.2-xkl-1.0 (notwanted)
- 2.1 0.9 gjs (notwanted)
- 2.1 0.9 gnome-font-viewer (notwanted)
- 2.1 0.9 graphicsmagick (notoncd) (notwanted)
- 2.1 0.9 icaclient (notoncd) (notwanted)
- 2.1 0.9 icedax (notoncd) (notwanted)
- 2.1 0.9 ipython (notoncd) (notwanted)
- 2.1 0.9 kde-config-cddb (notoncd) (notwanted)
- 2.1 0.9 kdepim-strigi-plugins (notoncd) (notwanted)
- 2.1 0.9 kdesdk-misc (notoncd) (notwanted)
- 2.1 0.9 kdesdk-strigi-plugins (notoncd) (notwanted)
- 2.1 0.9 kuiviewer (notoncd) (notwanted)
- 2.1 0.9 libbit-vector-perl (notoncd) (notwanted)
- 2.1 0.9 libbz2-dev (notoncd) (notwanted)
- 2.1 0.9 libcarp-clan-perl (notoncd) (notwanted)
- 2.1 0.9 libfile-slurp-perl (notoncd) (notwanted)
- 2.1 0.9 libfolks-eds25 (notwanted)
- 2.1 0.9 libfolks-telepathy25 (notwanted)
- 2.1 0.9 libfolks25 (notwanted)
- 2.1 0.9 libfreeradius2 (notoncd) (notwanted)
- 2.1 0.9 libgconf2-dev (notoncd) (notwanted)
- 2.1 0.9 libhttp-server-simple-perl (notoncd) (notwanted)
- 2.1 0.9 libitext-java-gcj (notoncd) (notwanted)
- 2.1 0.9 libmail-spf-perl (notoncd) (notwanted)
- 2.1 0.9 libmono-posix4.0-cil (notwanted)
- 2.1 0.9 libmono-system-core4.0-cil (notwanted)
- 2.1 0.9 libmono-wcf3.0-cil (notoncd) (notwanted)
- 2.1 0.9 libnetaddr-ip-perl (notoncd) (notwanted)
- 2.1 0.9 libsgmls-perl (notoncd) (notwanted)
- 2.1 0.9 libsnack2-alsa (notoncd) (notwanted)
- 2.1 0.9 libstdc++6-4.7-dev (notwanted)
- 2.1 0.9 libuim6 (notoncd) (notwanted)
- 2.1 0.9 libxml-dom-perl (notoncd) (notwanted)
- 2.1 0.9 libxml-regexp-perl (notoncd) (notwanted)
- 2.1 0.9 libxslt1-dev (notoncd) (notwanted)
- 2.1 0.9 linux-headers-3.2.0-4-common (notwanted)
- 2.1 0.9 lokalize (notoncd) (notwanted)
- 2.1 0.9 miro (notoncd) (notwanted)
- 2.1 0.9 mousepad (notoncd) (notwanted)
- 2.1 0.9 neverball (notoncd) (notwanted)
- 2.1 0.9 optipng (notoncd) (notwanted)
- 2.1 0.9 postgresql-client-8.4 (notoncd) (notwanted)
- 2.1 0.9 python-egenix-mxtools (notoncd) (notwanted)
- 2.1 0.9 python-libtorrent (notoncd) (notwanted)
- 2.1 0.9 python-speechd (notwanted)
- 2.1 0.9 python2.7-dev (notoncd) (notwanted)
- 2.1 0.9 qemu-user (notoncd) (notwanted)
- 2.1 0.9 qemu-utils (notoncd) (notwanted)
- 2.1 0.9 rygel (notwanted)
- 2.1 0.9 soundconverter (notoncd) (notwanted)
- 2.1 0.9 swig (notoncd) (notwanted)
- 2.1 0.9 tcsh (notoncd) (notwanted)
- 2.1 0.9 testdisk (notoncd) (notwanted)
- 2.1 0.9 texlive-fonts-extra (notoncd) (notwanted)
- 2.1 0.9 tofrodos (notoncd) (notwanted)
- 2.1 0.9 translate-toolkit (notoncd) (notwanted)
- 2.1 0.9 umbrello
- 2.1 0.9 xfce4-utils (notoncd) (notwanted)
- 2.1 0.9 xulrunner-15.0 (notoncd) (notwanted)
- 2.1 0.9 yauap (notoncd) (notwanted)
- 1.7 0.9 alsa-tools (notoncd) (notwanted)
- 1.7 0.9 alsaplayer-common (notoncd) (notwanted)
- 1.7 0.9 array-info (notoncd) (notwanted)
- 1.7 0.9 axiom (notoncd) (notwanted)
- 1.7 0.9 axiom-databases (notoncd) (notwanted)
- 1.7 0.9 axiom-graphics (notoncd) (notwanted)
- 1.7 0.9 axiom-graphics-data (notoncd) (notwanted)
- 1.7 0.9 axiom-hypertex (notoncd) (notwanted)
- 1.7 0.9 db4.8-util (notoncd) (notwanted)
- 1.7 0.9 djvulibre-bin (notoncd) (notwanted)
- 1.7 0.9 dreamchess (notoncd) (notwanted)
- 1.7 0.9 erlang-crypto (notoncd) (notwanted)
- 1.7 0.9 erlang-esdl (notoncd) (notwanted)
- 1.7 0.9 erlang-syntax-tools (notoncd) (notwanted)
- 1.7 0.9 exiftran (notoncd) (notwanted)
- 1.7 0.9 exuberant-ctags (notoncd) (notwanted)
- 1.7 0.9 fdutils (notoncd) (notwanted)
- 1.7 0.9 firebird2.5-common (notoncd) (notwanted)
- 1.7 0.9 freeciv-client-sdl (notoncd) (notwanted)
- 1.7 0.9 gambas2-gb-qt-kde (notoncd) (notwanted)
- 1.7 0.9 gambas2-gb-qt-kde-html (notoncd) (notwanted)
- 1.7 0.9 geany (notoncd) (notwanted)
- 1.7 0.9 geoip-bin (notoncd) (notwanted)
- 1.7 0.9 gimp-gutenprint (notoncd) (notwanted)
- 1.7 0.9 glest (notoncd) (notwanted)
- 1.7 0.9 gnome-color-manager (notwanted)
- 1.7 0.9 gnome-tweak-tool (notwanted)
- 1.7 0.9 gnucash-common (notoncd) (notwanted)
- 1.7 0.9 gpaint (notoncd) (notwanted)
- 1.7 0.9 gtk2-engines-ubuntulooks (notoncd) (notwanted)
- 1.7 0.9 iceape (notoncd) (notwanted)
- 1.7 0.9 jadetex (notoncd) (notwanted)
- 1.7 0.9 john (notoncd) (notwanted)
- 1.7 0.9 kbugbuster (notoncd) (notwanted)
- 1.7 0.9 kdeaddons-kfile-plugins (notoncd) (notwanted)
- 1.7 0.9 kerberizedprinting (notoncd) (notwanted)
- 1.7 0.9 kexec-tools (notwanted)
- 1.7 0.9 kfax (notoncd) (notwanted)
- 1.7 0.9 kismet (notoncd) (notwanted)
- 1.7 0.9 kmtrace (notoncd) (notwanted)
- 1.7 0.9 libdate-calc-perl (notoncd) (notwanted)
- 1.7 0.9 libdesktop-agnostic-cfg-gconf (notoncd) (notwanted)
- 1.7 0.9 libdesktop-agnostic-vfs-gio (notoncd) (notwanted)
- 1.7 0.9 libdesktop-agnostic0 (notoncd) (notwanted)
- 1.7 0.9 libffi-dev (notoncd) (notwanted)
- 1.7 0.9 libgd-gd2-perl (notoncd) (notwanted)
- 1.7 0.9 libgwenhywfar47 (notoncd) (notwanted)
- 1.7 0.9 libidl-dev (notoncd) (notwanted)
- 1.7 0.9 libjhdf5-jni (notoncd) (notwanted)
- 1.7 0.9 libjna-java (notoncd) (notwanted)
- 1.7 0.9 libmono-i18n2.0-cil (notoncd) (notwanted)
- 1.7 0.9 libmpich1.0gf (notoncd) (notwanted)
- 1.7 0.9 libpam-winbind (notwanted)
- 1.7 0.9 libparams-util-perl (notwanted)
- 1.7 0.9 libpcap0.8-dev (notoncd) (notwanted)
- 1.7 0.9 libpdf-api2-perl (notoncd) (notwanted)
- 1.7 0.9 libqt3-headers (notoncd) (notwanted)
- 1.7 0.9 libsnmp-perl (notoncd) (notwanted)
- 1.7 0.9 libtemplate-perl (notoncd) (notwanted)
- 1.7 0.9 libtry-tiny-perl (notwanted)
- 1.7 0.9 libwebservice-musicbrainz-perl (notoncd) (notwanted)
- 1.7 0.9 libxine-dev (notoncd) (notwanted)
- 1.7 0.9 libxine2-bin (notwanted)
- 1.7 0.9 linux-image-2.6.32-5-486 (notoncd) (notwanted)
- 1.7 0.9 lksctp-tools (notoncd) (notwanted)
- 1.7 0.9 lxinput (notwanted)
- 1.7 0.9 lxsession-edit (notwanted)
- 1.7 0.9 lxshortcut (notwanted)
- 1.7 0.9 mathomatic (notoncd) (notwanted)
- 1.7 0.9 mencoder (notoncd) (notwanted)
- 1.7 0.9 nxclient (notoncd) (notwanted)
- 1.7 0.9 openjade (notoncd) (notwanted)
- 1.7 0.9 opensp (notoncd) (notwanted)
- 1.7 0.9 orbit2 (notoncd) (notwanted)
- 1.7 0.9 p7zip (notoncd) (notwanted)
- 1.7 0.9 papercut-olp (notoncd) (notwanted)
- 1.7 0.9 pdf2djvu (notoncd) (notwanted)
- 1.7 0.9 performous-tools (notoncd) (notwanted)
- 1.7 0.9 php-auth-sasl (notoncd) (notwanted)
- 1.7 0.9 php-net-smtp (notoncd) (notwanted)
- 1.7 0.9 php-net-socket (notoncd) (notwanted)
- 1.7 0.9 pia (notoncd) (notwanted)
- 1.7 0.9 postgresql-8.4 (notoncd) (notwanted)
- 1.7 0.9 pulseaudio-module-gconf (notoncd) (notwanted)
- 1.7 0.9 pulseaudio-module-zeroconf (notoncd) (notwanted)
- 1.7 0.9 python-cheetah (notoncd) (notwanted)
- 1.7 0.9 python-gtk2-doc (notoncd) (notwanted)
- 1.7 0.9 python-lazr.restfulclient (notoncd) (notwanted)
- 1.7 0.9 python-qt4-gl (notoncd) (notwanted)
- 1.7 0.9 python-yaml (notoncd) (notwanted)
- 1.7 0.9 python3-minimal (notoncd) (notwanted)
- 1.7 0.9 qt4-linguist-tools (notoncd) (notwanted)
- 1.7 0.9 rlwrap (notoncd) (notwanted)
- 1.7 0.9 scantv (notoncd) (notwanted)
- 1.7 0.9 scilab (notoncd) (notwanted)
- 1.7 0.9 scilab-cli (notoncd) (notwanted)
- 1.7 0.9 scilab-data (notoncd) (notwanted)
- 1.7 0.9 scilab-full-bin (notoncd) (notwanted)
- 1.7 0.9 scilab-include (notoncd) (notwanted)
- 1.7 0.9 scilab-minimal-bin (notoncd) (notwanted)
- 1.7 0.9 sg3-utils (notoncd) (notwanted)
- 1.7 0.9 sgmlspl (notoncd) (notwanted)
- 1.7 0.9 smc (notoncd) (notwanted)
- 1.7 0.9 thunar-archive-plugin (notoncd) (notwanted)
- 1.7 0.9 thunar-media-tags-plugin (notoncd) (notwanted)
- 1.7 0.9 tix (notoncd) (notwanted)
- 1.7 0.9 tremulous (notoncd) (notwanted)
- 1.7 0.9 trigger-rally (notoncd) (notwanted)
- 1.7 0.9 uim-utils (notoncd) (notwanted)
- 1.7 0.9 userinfo (notoncd) (notwanted)
- 1.7 0.9 vlock (notoncd) (notwanted)
- 1.7 0.9 wings3d (notoncd) (notwanted)
- 1.7 0.9 xawtv (notoncd) (notwanted)
- 1.7 0.9 xfburn (notoncd) (notwanted)
- 1.7 0.9 xfce4-clipman (notoncd) (notwanted)
- 1.7 0.9 xfce4-dict (notoncd) (notwanted)
- 1.7 0.9 xfce4-mount-plugin (notoncd) (notwanted)
- 1.7 0.9 xfce4-notes (notoncd) (notwanted)
- 1.7 0.9 xfce4-notes-plugin (notoncd) (notwanted)
- 1.7 0.9 xfce4-places-plugin (notoncd) (notwanted)
- 1.7 0.9 xfce4-power-manager (notoncd) (notwanted)
- 1.7 0.9 xfce4-quicklauncher-plugin (notoncd) (notwanted)
- 1.7 0.9 xfce4-screenshooter (notoncd) (notwanted)
- 1.7 0.9 xfce4-sensors-plugin (notoncd) (notwanted)
- 1.7 0.9 xfce4-smartbookmark-plugin (notoncd) (notwanted)
- 1.7 0.9 xfce4-terminal (notoncd) (notwanted)
- 1.7 0.9 xfce4-verve-plugin (notoncd) (notwanted)
- 1.7 0.9 xulrunner-18.0 (notoncd) (notwanted)
- 1.3 0.9 alsa-tools-gui (notoncd) (notwanted)
- 1.3 0.9 alsaplayer-alsa (notoncd) (notwanted)
- 1.3 0.9 aqbanking-tools (notoncd) (notwanted)
- 1.3 0.9 bleachbit (notoncd) (notwanted)
- 1.3 0.9 brasero-cdrkit (notoncd) (notwanted)
- 1.3 0.9 ccd2iso (notoncd) (notwanted)
- 1.3 0.9 chromium-bsu (notoncd) (notwanted)
- 1.3 0.9 cup (notoncd) (notwanted)
- 1.3 0.9 debian-goodies (notwanted)
- 1.3 0.9 dejagnu (notoncd) (notwanted)
- 1.3 0.9 dnet-common (notoncd) (notwanted)
- 1.3 0.9 drawmap (notoncd) (notwanted)
- 1.3 0.9 dvb-apps (notoncd) (notwanted)
- 1.3 0.9 dvdbackup (notoncd) (notwanted)
- 1.3 0.9 dvdrtools (notoncd) (notwanted)
- 1.3 0.9 e00compr (notoncd) (notwanted)
- 1.3 0.9 etherape (notoncd) (notwanted)
- 1.3 0.9 euler (notoncd) (notwanted)
- 1.3 0.9 exif (notoncd) (notwanted)
- 1.3 0.9 fetchyahoo (notoncd) (notwanted)
- 1.3 0.9 ffmpegthumbnailer (notoncd) (notwanted)
- 1.3 0.9 flvstreamer (notoncd) (notwanted)
- 1.3 0.9 freecol (notoncd) (notwanted)
- 1.3 0.9 freefem (notoncd) (notwanted)
- 1.3 0.9 galculator
- 1.3 0.9 gap-core (notoncd) (notwanted)
- 1.3 0.9 gap-dev (notoncd) (notwanted)
- 1.3 0.9 geeqie (notoncd) (notwanted)
- 1.3 0.9 geeqie-common (notoncd) (notwanted)
- 1.3 0.9 ggobi (notoncd) (notwanted)
- 1.3 0.9 gimp-dcraw (notoncd) (notwanted)
- 1.3 0.9 gir1.2-gdata-0.0 (notwanted)
- 1.3 0.9 gir1.2-goa-1.0 (notwanted)
- 1.3 0.9 gir1.2-tracker-0.14 (notwanted)
- 1.3 0.9 gkrellm (notoncd) (notwanted)
- 1.3 0.9 glabels (notoncd) (notwanted)
- 1.3 0.9 global (notoncd) (notwanted)
- 1.3 0.9 gnubik (notoncd) (notwanted)
- 1.3 0.9 gnustep-base-runtime (notoncd) (notwanted)
- 1.3 0.9 gosmore (notoncd) (notwanted)
- 1.3 0.9 gpscorrelate (notoncd) (notwanted)
- 1.3 0.9 gpsdrive (notoncd) (notwanted)
- 1.3 0.9 gpsdrive-scripts (notoncd) (notwanted)
- 1.3 0.9 groovy (notoncd) (notwanted)
- 1.3 0.9 gtkorphan (notoncd) (notwanted)
- 1.3 0.9 guile-g-wrap (notoncd) (notwanted)
- 1.3 0.9 guile-gnome2-glib (notoncd) (notwanted)
- 1.3 0.9 hotkey-setup (notoncd) (notwanted)
- 1.3 0.9 indicator-messages (notoncd) (notwanted)
- 1.3 0.9 jack (notoncd) (notwanted)
- 1.3 0.9 kde-config-phonon-xine (notoncd) (notwanted)
- 1.3 0.9 kmobiletools (notoncd) (notwanted)
- 1.3 0.9 krename (notoncd) (notwanted)
- 1.3 0.9 libagg-dev (notoncd) (notwanted)
- 1.3 0.9 libapache2-reload-perl (notoncd) (notwanted)
- 1.3 0.9 libart-2.0-dev (notoncd) (notwanted)
- 1.3 0.9 libblas-dev (notoncd) (notwanted)
- 1.3 0.9 libbonoboui2-dev (notoncd) (notwanted)
- 1.3 0.9 libbsd-resource-perl (notoncd) (notwanted)
- 1.3 0.9 libcddb-get-perl (notoncd) (notwanted)
- 1.3 0.9 libdata-optlist-perl (notwanted)
- 1.3 0.9 libdbus-glib-1-dev (notoncd) (notwanted)
- 1.3 0.9 libdesktop-agnostic-fdo-glib (notoncd) (notwanted)
- 1.3 0.9 libdv-bin (notoncd) (notwanted)
- 1.3 0.9 libextutils-depends-perl (notoncd) (notwanted)
- 1.3 0.9 libextutils-pkgconfig-perl (notoncd) (notwanted)
- 1.3 0.9 libfm0 (notoncd) (notwanted)
- 1.3 0.9 libfont-ttf-perl (notoncd) (notwanted)
- 1.3 0.9 libgetopt-argvfile-perl (notoncd) (notwanted)
- 1.3 0.9 libgtkglext1-dev (notoncd) (notwanted)
- 1.3 0.9 libgts-bin (notoncd) (notwanted)
- 1.3 0.9 libintl-perl (notoncd) (notwanted)
- 1.3 0.9 libjpeg8-dev (notwanted)
- 1.3 0.9 liblapack-dev (notoncd) (notwanted)
- 1.3 0.9 libming-dev (notoncd) (notwanted)
- 1.3 0.9 libmono-system-data4.0-cil (notoncd) (notwanted)
- 1.3 0.9 libmusicbrainz-discid-perl (notoncd) (notwanted)
- 1.3 0.9 libnet-imap-simple-perl (notoncd) (notwanted)
- 1.3 0.9 libpackage-deprecationmanager-perl (notwanted)
- 1.3 0.9 libpackage-stash-perl (notwanted)
- 1.3 0.9 libpam-ldapd (notwanted)
- 1.3 0.9 libqt3-mt-psql (notoncd) (notwanted)
- 1.3 0.9 libsub-install-perl (notwanted)
- 1.3 0.9 libterm-readline-gnu-perl (notoncd) (notwanted)
- 1.3 0.9 libtext-format-perl (notoncd) (notwanted)
- 1.3 0.9 lie (notoncd) (notwanted)
- 1.3 0.9 lincity (notoncd) (notwanted)
- 1.3 0.9 linux-image-3.2.0-0.bpo.3-amd64 (notoncd) (notwanted)
- 1.3 0.9 littler (notoncd) (notwanted)
- 1.3 0.9 ltspfsd (notwanted)
- 1.3 0.9 medcon (notoncd) (notwanted)
- 1.3 0.9 mimms (notoncd) (notwanted)
- 1.3 0.9 mozplugger (notoncd) (notwanted)
- 1.3 0.9 mpeg3-utils (notoncd) (notwanted)
- 1.3 0.9 mysql-server-5.0 (notoncd) (notwanted)
- 1.3 0.9 nautilus-share (notoncd) (notwanted)
- 1.3 0.9 ogmtools (notoncd) (notwanted)
- 1.3 0.9 oneko (notoncd) (notwanted)
- 1.3 0.9 ooo-thumbnailer (notoncd) (notwanted)
- 1.3 0.9 openoffice.org-l10n-tr (notoncd) (notwanted)
- 1.3 0.9 paman (notoncd) (notwanted)
- 1.3 0.9 pari-gp (notoncd) (notwanted)
- 1.3 0.9 pdfcrack (notoncd) (notwanted)
- 1.3 0.9 pdfcube (notoncd) (notwanted)
- 1.3 0.9 pdfshuffler (notoncd) (notwanted)
- 1.3 0.9 pgadmin3 (notoncd) (notwanted)
- 1.3 0.9 pgagent (notoncd) (notwanted)
- 1.3 0.9 pgpgpg (notoncd) (notwanted)
- 1.3 0.9 php-geshi (notoncd) (notwanted)
- 1.3 0.9 php-mail (notoncd) (notwanted)
- 1.3 0.9 picasa (notoncd) (notwanted)
- 1.3 0.9 psignifit (notoncd) (notwanted)
- 1.3 0.9 pspp (notoncd) (notwanted)
- 1.3 0.9 python-alsaaudio (notoncd) (notwanted)
- 1.3 0.9 python-bzrlib (notoncd) (notwanted)
- 1.3 0.9 python-foolscap (notoncd) (notwanted)
- 1.3 0.9 python-hippocanvas (notwanted)
- 1.3 0.9 python-poppler (notoncd) (notwanted)
- 1.3 0.9 python-psycopg2 (notoncd) (notwanted)
- 1.3 0.9 python-traits (notoncd) (notwanted)
- 1.3 0.9 pythoncad (notoncd) (notwanted)
- 1.3 0.9 qc-usb-utils (notoncd) (notwanted)
- 1.3 0.9 r-cran-amore (notoncd) (notwanted)
- 1.3 0.9 r-cran-bayesm (notoncd) (notwanted)
- 1.3 0.9 r-cran-bitops (notoncd) (notwanted)
- 1.3 0.9 r-cran-cairodevice (notoncd) (notwanted)
- 1.3 0.9 r-cran-catools (notoncd) (notwanted)
- 1.3 0.9 r-cran-chron (notoncd) (notwanted)
- 1.3 0.9 r-cran-coda (notoncd) (notwanted)
- 1.3 0.9 r-cran-date (notoncd) (notwanted)
- 1.3 0.9 r-cran-dbi (notoncd) (notwanted)
- 1.3 0.9 r-cran-eco (notoncd) (notwanted)
- 1.3 0.9 r-cran-fassets (notoncd) (notwanted)
- 1.3 0.9 r-cran-fbasics (notoncd) (notwanted)
- 1.3 0.9 r-cran-fcopulae (notoncd) (notwanted)
- 1.3 0.9 r-cran-fextremes (notoncd) (notwanted)
- 1.3 0.9 r-cran-fgarch (notoncd) (notwanted)
- 1.3 0.9 r-cran-fmultivar (notoncd) (notwanted)
- 1.3 0.9 r-cran-foptions (notoncd) (notwanted)
- 1.3 0.9 r-cran-fportfolio (notoncd) (notwanted)
- 1.3 0.9 r-cran-ftrading (notoncd) (notwanted)
- 1.3 0.9 r-cran-gdata (notoncd) (notwanted)
- 1.3 0.9 r-cran-gmodels (notoncd) (notwanted)
- 1.3 0.9 r-cran-gplots (notoncd) (notwanted)
- 1.3 0.9 r-cran-gregmisc (notoncd) (notwanted)
- 1.3 0.9 r-cran-gtools (notoncd) (notwanted)
- 1.3 0.9 r-cran-hdf5 (notoncd) (notwanted)
- 1.3 0.9 r-cran-hmisc (notoncd) (notwanted)
- 1.3 0.9 r-cran-its (notoncd) (notwanted)
- 1.3 0.9 r-cran-latticeextra (notoncd) (notwanted)
- 1.3 0.9 r-cran-lme4 (notoncd) (notwanted)
- 1.3 0.9 r-cran-mapdata (notoncd) (notwanted)
- 1.3 0.9 r-cran-mapproj (notoncd) (notwanted)
- 1.3 0.9 r-cran-maps (notoncd) (notwanted)
- 1.3 0.9 r-cran-matchit (notoncd) (notwanted)
- 1.3 0.9 r-cran-mcmcpack (notoncd) (notwanted)
- 1.3 0.9 r-cran-misc3d (notoncd) (notwanted)
- 1.3 0.9 r-cran-mnormt (notoncd) (notwanted)
- 1.3 0.9 r-cran-mnp (notoncd) (notwanted)
- 1.3 0.9 r-cran-msm (notoncd) (notwanted)
- 1.3 0.9 r-cran-pscl (notoncd) (notwanted)
- 1.3 0.9 r-cran-psy (notoncd) (notwanted)
- 1.3 0.9 r-cran-qtl (notoncd) (notwanted)
- 1.3 0.9 r-cran-quadprog (notoncd) (notwanted)
- 1.3 0.9 r-cran-rcolorbrewer (notoncd) (notwanted)
- 1.3 0.9 r-cran-rcpp (notoncd) (notwanted)
- 1.3 0.9 r-cran-rggobi (notoncd) (notwanted)
- 1.3 0.9 r-cran-rglpk (notoncd) (notwanted)
- 1.3 0.9 r-cran-rgtk2 (notoncd) (notwanted)
- 1.3 0.9 r-cran-rmpi (notoncd) (notwanted)
- 1.3 0.9 r-cran-rmysql (notoncd) (notwanted)
- 1.3 0.9 r-cran-robustbase (notoncd) (notwanted)
- 1.3 0.9 r-cran-rodbc (notoncd) (notwanted)
- 1.3 0.9 r-cran-rquantlib (notoncd) (notwanted)
- 1.3 0.9 r-cran-rserve (notoncd) (notwanted)
- 1.3 0.9 r-cran-rsprng (notoncd) (notwanted)
- 1.3 0.9 r-cran-slam (notoncd) (notwanted)
- 1.3 0.9 r-cran-sn (notoncd) (notwanted)
- 1.3 0.9 r-cran-snow (notoncd) (notwanted)
- 1.3 0.9 r-cran-sp (notoncd) (notwanted)
- 1.3 0.9 r-cran-teachingdemos (notoncd) (notwanted)
- 1.3 0.9 r-cran-timedate (notoncd) (notwanted)
- 1.3 0.9 r-cran-timeseries (notoncd) (notwanted)
- 1.3 0.9 r-cran-tkrplot (notoncd) (notwanted)
- 1.3 0.9 r-cran-tseries (notoncd) (notwanted)
- 1.3 0.9 r-cran-vcd (notoncd) (notwanted)
- 1.3 0.9 r-cran-vgam (notoncd) (notwanted)
- 1.3 0.9 r-cran-xml (notoncd) (notwanted)
- 1.3 0.9 r-cran-zelig (notoncd) (notwanted)
- 1.3 0.9 ripit (notoncd) (notwanted)
- 1.3 0.9 rkward (notoncd) (notwanted)
- 1.3 0.9 rygel-tracker (notwanted)
- 1.3 0.9 sailcut (notoncd) (notwanted)
- 1.3 0.9 sepiida-common (notoncd) (notwanted)
- 1.3 0.9 showfoto (notoncd) (notwanted)
- 1.3 0.9 sketch (notoncd) (notwanted)
- 1.3 0.9 snmpd (notoncd) (notwanted)
- 1.3 0.9 socat (notoncd) (notwanted)
- 1.3 0.9 subtitleeditor (notoncd) (notwanted)
- 1.3 0.9 swfmill (notoncd) (notwanted)
- 1.3 0.9 swig2.0 (notoncd) (notwanted)
- 1.3 0.9 teamviewer6 (notoncd) (notwanted)
- 1.3 0.9 telepathy-rakia (notwanted)
- 1.3 0.9 texlive-lang-polish (notoncd) (notwanted)
- 1.3 0.9 tftpd-hpa (notoncd) (notwanted)
- 1.3 0.9 tightvnc-java (notoncd) (notwanted)
- 1.3 0.9 tracker-utils (notwanted)
- 1.3 0.9 transcode (notoncd) (notwanted)
- 1.3 0.9 units (notoncd) (notwanted)
- 1.3 0.9 unixodbc-dev (notoncd) (notwanted)
- 1.3 0.9 vim-addon-manager (notoncd) (notwanted)
- 1.3 0.9 virtualbox-4.1 (notoncd) (notwanted)
- 1.3 0.9 vnc-java (notoncd) (notwanted)
- 1.3 0.9 vnstat (notoncd) (notwanted)
- 1.3 0.9 wammu (notoncd) (notwanted)
- 1.3 0.9 wukrainian (notoncd) (notwanted)
- 1.3 0.9 xfce4-notifyd (notoncd) (notwanted)
- 1.3 0.9 xfce4-volumed (notoncd) (notwanted)
- 1.3 0.9 xfe (notoncd) (notwanted)
- 1.3 0.9 xine-console (notoncd) (notwanted)
- 1.3 0.9 xmedcon (notoncd) (notwanted)
- 1.3 0.9 xpenguins (notoncd) (notwanted)
- 1.3 0.9 xprint-utils (notoncd) (notwanted)
- 1.3 0.9 xsel (notoncd) (notwanted)
- 1.3 0.9 zoo (notoncd) (notwanted)
- 0.9 0.9 abcde (notoncd) (notwanted)
- 0.9 0.9 acct (notoncd) (notwanted)
- 0.9 0.9 achilles (notoncd) (notwanted)
- 0.9 0.9 aide (notoncd) (notwanted)
- 0.9 0.9 aide-common (notoncd) (notwanted)
- 0.9 0.9 alarm-clock-applet (notoncd) (notwanted)
- 0.9 0.9 alsa-firmware-loaders (notoncd) (notwanted)
- 0.9 0.9 anjuta (notoncd) (notwanted)
- 0.9 0.9 approx (notoncd) (notwanted)
- 0.9 0.9 apt-cacher-ng (notoncd) (notwanted)
- 0.9 0.9 apt-zip (notoncd) (notwanted)
- 0.9 0.9 apticron (notwanted)
- 0.9 0.9 aqsis (notoncd) (notwanted)
- 0.9 0.9 asterisk (notoncd) (notwanted)
- 0.9 0.9 authbind (notoncd) (notwanted)
- 0.9 0.9 autocutsel (notoncd) (notwanted)
- 0.9 0.9 autogen (notoncd) (notwanted)
- 0.9 0.9 avant-window-navigator (notoncd) (notwanted)
- 0.9 0.9 aview (notoncd) (notwanted)
- 0.9 0.9 avinfo (notoncd) (notwanted)
- 0.9 0.9 awesfx (notoncd) (notwanted)
- 0.9 0.9 bb (notoncd) (notwanted)
- 0.9 0.9 bbrun (notoncd) (notwanted)
- 0.9 0.9 bbtime (notoncd) (notwanted)
- 0.9 0.9 bible-kjv (notoncd) (notwanted)
- 0.9 0.9 bibletime (notoncd) (notwanted)
- 0.9 0.9 binutils-avr (notoncd) (notwanted)
- 0.9 0.9 blcr-dkms (notoncd) (notwanted)
- 0.9 0.9 bouml (notoncd) (notwanted)
- 0.9 0.9 browser-plugin-parole (notoncd) (notwanted)
- 0.9 0.9 cairo-dock-core (notoncd) (notwanted)
- 0.9 0.9 cakephp-scripts (notoncd) (notwanted)
- 0.9 0.9 calamaris (notoncd) (notwanted)
- 0.9 0.9 camstream (notoncd) (notwanted)
- 0.9 0.9 catdoc (notoncd) (notwanted)
- 0.9 0.9 cdbackup (notoncd) (notwanted)
- 0.9 0.9 cdck (notoncd) (notwanted)
- 0.9 0.9 cdlabelgen (notoncd) (notwanted)
- 0.9 0.9 checksecurity (notoncd) (notwanted)
- 0.9 0.9 chkconfig (notoncd) (notwanted)
- 0.9 0.9 chmsee
- 0.9 0.9 clamav-unofficial-sigs (notoncd) (notwanted)
- 0.9 0.9 claws-mail (notoncd) (notwanted)
- 0.9 0.9 clive (notoncd) (notwanted)
- 0.9 0.9 compiz-fusion-bcop (notoncd) (notwanted)
- 0.9 0.9 convertall (notoncd) (notwanted)
- 0.9 0.9 cscope (notoncd) (notwanted)
- 0.9 0.9 cue2toc (notoncd) (notwanted)
- 0.9 0.9 cups-autoflush (notoncd) (notwanted)
- 0.9 0.9 debiandoc-sgml (notoncd) (notwanted)
- 0.9 0.9 devhelp (notoncd) (notwanted)
- 0.9 0.9 devilspie (notoncd) (notwanted)
- 0.9 0.9 dhelp (notoncd) (notwanted)
- 0.9 0.9 diatheke (notoncd) (notwanted)
- 0.9 0.9 dictconv (notoncd) (notwanted)
- 0.9 0.9 dlocate (notoncd) (notwanted)
- 0.9 0.9 docker (notoncd) (notwanted)
- 0.9 0.9 docky (notoncd) (notwanted)
- 0.9 0.9 donkey (notoncd) (notwanted)
- 0.9 0.9 dsh (notoncd) (notwanted)
- 0.9 0.9 dwww (notoncd) (notwanted)
- 0.9 0.9 eog-plugins (notoncd) (notwanted)
- 0.9 0.9 espeakedit (notoncd) (notwanted)
- 0.9 0.9 evolution-rss (notoncd) (notwanted)
- 0.9 0.9 flake (notoncd) (notwanted)
- 0.9 0.9 fluxbox (notoncd) (notwanted)
- 0.9 0.9 font-manager (notoncd) (notwanted)
- 0.9 0.9 foxtrotgps (notoncd) (notwanted)
- 0.9 0.9 freecad (notoncd) (notwanted)
- 0.9 0.9 freecell-solver-bin (notoncd) (notwanted)
- 0.9 0.9 fso-frameworkd (notoncd) (notwanted)
- 0.9 0.9 fusioninventory-agent (notoncd) (notwanted)
- 0.9 0.9 gcc-avr (notoncd) (notwanted)
- 0.9 0.9 gcj-4.4-jdk (notoncd) (notwanted)
- 0.9 0.9 gcj-4.6-jre-headless (notoncd) (notwanted)
- 0.9 0.9 gconf-cleaner (notoncd) (notwanted)
- 0.9 0.9 gdmap (notoncd) (notwanted)
- 0.9 0.9 geotranz (notoncd) (notwanted)
- 0.9 0.9 gir1.2-gtk-2.0 (notoncd) (notwanted)
- 0.9 0.9 glade (notoncd) (notwanted)
- 0.9 0.9 gmusicbrowser (notoncd) (notwanted)
- 0.9 0.9 gnokii-cli (notoncd) (notwanted)
- 0.9 0.9 gnome-documents (notwanted)
- 0.9 0.9 gnome-main-menu (notoncd) (notwanted)
- 0.9 0.9 gnome-specimen (notoncd) (notwanted)
- 0.9 0.9 gnome-xcf-thumbnailer (notoncd) (notwanted)
- 0.9 0.9 goldendict (notoncd) (notwanted)
- 0.9 0.9 goobox (notoncd) (notwanted)
- 0.9 0.9 google-talkplugin (notoncd) (notwanted)
- 0.9 0.9 gpac (notoncd) (notwanted)
- 0.9 0.9 gpscorrelate-gui (notoncd) (notwanted)
- 0.9 0.9 gpsprune (notoncd) (notwanted)
- 0.9 0.9 grass-core (notoncd) (notwanted)
- 0.9 0.9 gtk-doc-tools (notoncd) (notwanted)
- 0.9 0.9 gtk2-engines-nodoka (notoncd) (notwanted)
- 0.9 0.9 gworldclock (notoncd) (notwanted)
- 0.9 0.9 gxmms2 (notoncd) (notwanted)
- 0.9 0.9 hardening-includes (notoncd) (notwanted)
- 0.9 0.9 haxe (notoncd) (notwanted)
- 0.9 0.9 hdate-applet (notoncd) (notwanted)
- 0.9 0.9 homebank (notoncd) (notwanted)
- 0.9 0.9 hostapd (notoncd) (notwanted)
- 0.9 0.9 indicator-applet (notoncd) (notwanted)
- 0.9 0.9 inputattach (notwanted)
- 0.9 0.9 jade (notoncd) (notwanted)
- 0.9 0.9 jedit (notoncd) (notwanted)
- 0.9 0.9 jlgui (notoncd) (notwanted)
- 0.9 0.9 jwm (notoncd) (notwanted)
- 0.9 0.9 k3d (notoncd) (notwanted)
- 0.9 0.9 k3dsurf (notoncd) (notwanted)
- 0.9 0.9 kbarcode (notoncd) (notwanted)
- 0.9 0.9 kchmviewer (notoncd) (notwanted)
- 0.9 0.9 kde-style-qtcurve (notoncd) (notwanted)
- 0.9 0.9 kdm-gdmcompat (notoncd) (notwanted)
- 0.9 0.9 kerneloops-applet (notoncd) (notwanted)
- 0.9 0.9 kerneloops-daemon (notoncd) (notwanted)
- 0.9 0.9 klamav (notoncd) (notwanted)
- 0.9 0.9 kplayer (notoncd) (notwanted)
- 0.9 0.9 krusader (notoncd) (notwanted)
- 0.9 0.9 ktoon (notoncd) (notwanted)
- 0.9 0.9 ktorrent (notoncd) (notwanted)
- 0.9 0.9 lcdproc (notoncd) (notwanted)
- 0.9 0.9 libapache2-mod-log-sql (notoncd) (notwanted)
- 0.9 0.9 libaqbanking-plugins-libgwenhywfar60 (notoncd) (notwanted)
- 0.9 0.9 libaqbanking29-plugins (notoncd) (notwanted)
- 0.9 0.9 libaqbanking34-plugins (notoncd) (notwanted)
- 0.9 0.9 libccid (notoncd) (notwanted)
- 0.9 0.9 libchipcard-tools (notoncd) (notwanted)
- 0.9 0.9 libchm-bin (notoncd) (notwanted)
- 0.9 0.9 libdb-ruby1.8 (notoncd) (notwanted)
- 0.9 0.9 libdevice-serialport-perl (notoncd) (notwanted)
- 0.9 0.9 libdvdnav-dev (notoncd) (notwanted)
- 0.9 0.9 libdvdread-dev (notoncd) (notwanted)
- 0.9 0.9 libfile-find-rule-perl (notoncd) (notwanted)
- 0.9 0.9 libfile-ncopy-perl (notoncd) (notwanted)
- 0.9 0.9 libgda-4.0-4 (notoncd) (notwanted)
- 0.9 0.9 libgdk-pixbuf2.0-dev (notwanted)
- 0.9 0.9 libgstreamer-perl (notoncd) (notwanted)
- 0.9 0.9 libgtk2-imageview-perl (notoncd) (notwanted)
- 0.9 0.9 libgwenhywfar60 (notoncd) (notwanted)
- 0.9 0.9 libhdate1 (notoncd) (notwanted)
- 0.9 0.9 libimage-size-perl (notoncd) (notwanted)
- 0.9 0.9 libjmac-java (notoncd) (notwanted)
- 0.9 0.9 libjs-edit-area (notoncd) (notwanted)
- 0.9 0.9 libmikmod2-dev (notwanted)
- 0.9 0.9 libopenmpi-dev (notoncd) (notwanted)
- 0.9 0.9 libpam-mklocaluser
- 0.9 0.9 libreoffice-debian-menus (notoncd) (notwanted)
- 0.9 0.9 libreoffice-l10n-en-gb (notoncd) (notwanted)
- 0.9 0.9 libreoffice-l10n-nb (notwanted)
- 0.9 0.9 libreoffice-presentation-minimizer (notoncd) (notwanted)
- 0.9 0.9 libreoffice-report-builder (notoncd) (notwanted)
- 0.9 0.9 libreoffice-wiki-publisher (notoncd) (notwanted)
- 0.9 0.9 libroman-perl (notoncd) (notwanted)
- 0.9 0.9 libset-intspan-perl (notoncd) (notwanted)
- 0.9 0.9 libtext-english-perl (notoncd) (notwanted)
- 0.9 0.9 libtext-pdf-perl (notoncd) (notwanted)
- 0.9 0.9 libtheora-bin (notoncd) (notwanted)
- 0.9 0.9 libvirt-bin (notoncd) (notwanted)
- 0.9 0.9 lifeograph (notoncd) (notwanted)
- 0.9 0.9 linex-laptops-artwork-personal (notoncd) (notwanted)
- 0.9 0.9 linux-image-2.6.32-5-686-bigmem (notoncd) (notwanted)
- 0.9 0.9 linux-image-2.6.39-bpo.2-amd64 (notoncd) (notwanted)
- 0.9 0.9 linuxdoc-tools (notoncd) (notwanted)
- 0.9 0.9 liquidwar (notoncd) (notwanted)
- 0.9 0.9 localepurge (notoncd) (notwanted)
- 0.9 0.9 lshw-gtk (notoncd) (notwanted)
- 0.9 0.9 matchbox-keyboard (notoncd) (notwanted)
- 0.9 0.9 matchbox-window-manager (notoncd) (notwanted)
- 0.9 0.9 meld (notoncd) (notwanted)
- 0.9 0.9 microcode.ctl (notoncd) (notwanted)
- 0.9 0.9 mimetex (notoncd) (notwanted)
- 0.9 0.9 monkeystudio-common (notoncd) (notwanted)
- 0.9 0.9 mono-devel (notoncd) (notwanted)
- 0.9 0.9 mono-gmcs (notoncd) (notwanted)
- 0.9 0.9 mono-jay (notoncd) (notwanted)
- 0.9 0.9 mono-mcs (notoncd) (notwanted)
- 0.9 0.9 mono-utils (notoncd) (notwanted)
- 0.9 0.9 monodoc-base (notoncd) (notwanted)
- 0.9 0.9 monodoc-browser (notoncd) (notwanted)
- 0.9 0.9 mp3splt (notoncd) (notwanted)
- 0.9 0.9 mpage (notoncd) (notwanted)
- 0.9 0.9 mpc (notoncd) (notwanted)
- 0.9 0.9 mpd (notoncd) (notwanted)
- 0.9 0.9 mpeg2dec (notoncd) (notwanted)
- 0.9 0.9 mpg123 (notoncd) (notwanted)
- 0.9 0.9 mpgtx (notoncd) (notwanted)
- 0.9 0.9 mplayer-gui (notoncd) (notwanted)
- 0.9 0.9 mppenc (notoncd) (notwanted)
- 0.9 0.9 mtasc (notoncd) (notwanted)
- 0.9 0.9 mtpaint
- 0.9 0.9 musescore (notoncd) (notwanted)
- 0.9 0.9 mypaint (notoncd) (notwanted)
- 0.9 0.9 mysql-navigator (notoncd) (notwanted)
- 0.9 0.9 nagiosgrapher (notoncd) (notwanted)
- 0.9 0.9 nautilus-filename-repairer (notoncd) (notwanted)
- 0.9 0.9 nautilus-image-converter (notoncd) (notwanted)
- 0.9 0.9 nautilus-scripts-manager (notoncd) (notwanted)
- 0.9 0.9 navit (notoncd) (notwanted)
- 0.9 0.9 navit-graphics-gtk-drawing-area (notoncd) (notwanted)
- 0.9 0.9 navit-gui-gtk (notoncd) (notwanted)
- 0.9 0.9 navit-gui-internal (notoncd) (notwanted)
- 0.9 0.9 nbd-client (notwanted)
- 0.9 0.9 netatalk (notoncd) (notwanted)
- 0.9 0.9 ngrep (notoncd) (notwanted)
- 0.9 0.9 obmenu (notoncd) (notwanted)
- 0.9 0.9 oggconvert (notoncd) (notwanted)
- 0.9 0.9 ogre-tools (notoncd) (notwanted)
- 0.9 0.9 oinkmaster (notoncd) (notwanted)
- 0.9 0.9 open-vm-tools (notoncd) (notwanted)
- 0.9 0.9 openscenegraph-examples (notoncd) (notwanted)
- 0.9 0.9 parrot (notoncd) (notwanted)
- 0.9 0.9 parrot-minimal (notoncd) (notwanted)
- 0.9 0.9 passepartout (notoncd) (notwanted)
- 0.9 0.9 pbuilder (notoncd) (notwanted)
- 0.9 0.9 pcscd (notoncd) (notwanted)
- 0.9 0.9 pdf2svg (notoncd) (notwanted)
- 0.9 0.9 pdfgrep (notoncd) (notwanted)
- 0.9 0.9 pdfposter (notoncd) (notwanted)
- 0.9 0.9 pdfresurrect (notoncd) (notwanted)
- 0.9 0.9 pdnsd (notoncd) (notwanted)
- 0.9 0.9 perlindex (notoncd) (notwanted)
- 0.9 0.9 php-auth (notoncd) (notwanted)
- 0.9 0.9 php-codesniffer (notoncd) (notwanted)
- 0.9 0.9 php-db (notoncd) (notwanted)
- 0.9 0.9 php-http-request (notoncd) (notwanted)
- 0.9 0.9 php-mail-mime (notoncd) (notwanted)
- 0.9 0.9 php-mail-mimedecode (notoncd) (notwanted)
- 0.9 0.9 php-mdb2 (notoncd) (notwanted)
- 0.9 0.9 php-mdb2-driver-sqlite (notoncd) (notwanted)
- 0.9 0.9 php-net-url (notoncd) (notwanted)
- 0.9 0.9 php5-gmp (notoncd) (notwanted)
- 0.9 0.9 php5-intl (notoncd) (notwanted)
- 0.9 0.9 php5-mapscript (notoncd) (notwanted)
- 0.9 0.9 php5-memcache (notoncd) (notwanted)
- 0.9 0.9 php5-odbc (notoncd) (notwanted)
- 0.9 0.9 php5-xdebug (notoncd) (notwanted)
- 0.9 0.9 pidgin-plugin-pack (notoncd) (notwanted)
- 0.9 0.9 plan (notoncd) (notwanted)
- 0.9 0.9 prismstumbler (notoncd) (notwanted)
- 0.9 0.9 privoxy (notoncd) (notwanted)
- 0.9 0.9 proftpd-basic (notoncd) (notwanted)
- 0.9 0.9 psi (notoncd) (notwanted)
- 0.9 0.9 pstotext (notoncd) (notwanted)
- 0.9 0.9 pv (notoncd) (notwanted)
- 0.9 0.9 pylint (notoncd) (notwanted)
- 0.9 0.9 python-genshi (notoncd) (notwanted)
- 0.9 0.9 python-gobject-dev (notoncd) (notwanted)
- 0.9 0.9 python-hachoir-metadata (notoncd) (notwanted)
- 0.9 0.9 python-logilab-common (notoncd) (notwanted)
- 0.9 0.9 python-mutagen (notoncd) (notwanted)
- 0.9 0.9 python-nautilus (notoncd) (notwanted)
- 0.9 0.9 python-pivy (notoncd) (notwanted)
- 0.9 0.9 python-qscintilla2 (notoncd) (notwanted)
- 0.9 0.9 python3.2-minimal (notoncd) (notwanted)
- 0.9 0.9 qstardict (notoncd) (notwanted)
- 0.9 0.9 qt3-designer (notoncd) (notwanted)
- 0.9 0.9 qt3-linguist (notoncd) (notwanted)
- 0.9 0.9 quickplot (notoncd) (notwanted)
- 0.9 0.9 quicktime-utils (notoncd) (notwanted)
- 0.9 0.9 quicktime-x11utils (notoncd) (notwanted)
- 0.9 0.9 r-cran-fimport (notoncd) (notwanted)
- 0.9 0.9 r-cran-spc (notoncd) (notwanted)
- 0.9 0.9 r-cran-xtable (notoncd) (notwanted)
- 0.9 0.9 r-mathlib (notoncd) (notwanted)
- 0.9 0.9 remmina-gnome (notoncd) (notwanted)
- 0.9 0.9 reprepro (notoncd) (notwanted)
- 0.9 0.9 rezound (notoncd) (notwanted)
- 0.9 0.9 rsyslog-pgsql (notoncd) (notwanted)
- 0.9 0.9 rubber (notoncd) (notwanted)
- 0.9 0.9 salasaga (notoncd) (notwanted)
- 0.9 0.9 schoolcluster-server (notoncd) (notwanted)
- 0.9 0.9 scim-bridge-client-gtk (notoncd) (notwanted)
- 0.9 0.9 scotch (notoncd) (notwanted)
- 0.9 0.9 scponly (notoncd) (notwanted)
- 0.9 0.9 screenlets (notoncd) (notwanted)
- 0.9 0.9 screenruler (notoncd) (notwanted)
- 0.9 0.9 setpwc (notoncd) (notwanted)
- 0.9 0.9 sgmltools-lite (notoncd) (notwanted)
- 0.9 0.9 shapelib (notoncd) (notwanted)
- 0.9 0.9 shntool (notoncd) (notwanted)
- 0.9 0.9 skysentials (notoncd) (notwanted)
- 0.9 0.9 slim (notoncd) (notwanted)
- 0.9 0.9 smart-notebook (notoncd) (notwanted)
- 0.9 0.9 smart-product-drivers (notoncd) (notwanted)
- 0.9 0.9 smpeg-plaympeg (notoncd) (notwanted)
- 0.9 0.9 snd-nox (notoncd) (notwanted)
- 0.9 0.9 speakup-tools (notoncd) (notwanted)
- 0.9 0.9 speex (notoncd) (notwanted)
- 0.9 0.9 sphinx2-bin (notoncd) (notwanted)
- 0.9 0.9 ssvnc (notoncd) (notwanted)
- 0.9 0.9 streamripper (notoncd) (notwanted)
- 0.9 0.9 streamtuner (notoncd) (notwanted)
- 0.9 0.9 strigi-daemon (notoncd) (notwanted)
- 0.9 0.9 swish-e (notoncd) (notwanted)
- 0.9 0.9 sysinfo (notoncd) (notwanted)
- 0.9 0.9 tagua (notoncd) (notwanted)
- 0.9 0.9 tamil-gtk2im (notoncd) (notwanted)
- 0.9 0.9 taskjuggler (notoncd) (notwanted)
- 0.9 0.9 telak (notoncd) (notwanted)
- 0.9 0.9 texlive-formats-extra (notoncd) (notwanted)
- 0.9 0.9 themonospot (notoncd) (notwanted)
- 0.9 0.9 tiger (notoncd) (notwanted)
- 0.9 0.9 tor (notoncd) (notwanted)
- 0.9 0.9 tpconfig (notoncd) (notwanted)
- 0.9 0.9 translate (notoncd) (notwanted)
- 0.9 0.9 translate-docformat (notoncd) (notwanted)
- 0.9 0.9 trayer (notoncd) (notwanted)
- 0.9 0.9 txt2tags (notoncd) (notwanted)
- 0.9 0.9 udftools (notoncd) (notwanted)
- 0.9 0.9 uim-qt (notoncd) (notwanted)
- 0.9 0.9 uvcdynctrl (notoncd) (notwanted)
- 0.9 0.9 videocut (notoncd) (notwanted)
- 0.9 0.9 vorbisgain (notoncd) (notwanted)
- 0.9 0.9 vtwm (notoncd) (notwanted)
- 0.9 0.9 workrave (notoncd) (notwanted)
- 0.9 0.9 wv (notoncd) (notwanted)
- 0.9 0.9 x2vnc (notoncd) (notwanted)
- 0.9 0.9 xcftools (notoncd) (notwanted)
- 0.9 0.9 xclip (notoncd) (notwanted)
- 0.9 0.9 xcompmgr (notoncd) (notwanted)
- 0.9 0.9 xcwcp (notoncd) (notwanted)
- 0.9 0.9 xdm (notoncd) (notwanted)
- 0.9 0.9 xfce4-dev-tools (notoncd) (notwanted)
- 0.9 0.9 xfstt (notoncd) (notwanted)
- 0.9 0.9 xiphos (notoncd) (notwanted)
- 0.9 0.9 xloadimage (notoncd) (notwanted)
- 0.9 0.9 xmltv-util (notoncd) (notwanted)
- 0.9 0.9 xmms2-client-cli (notoncd) (notwanted)
- 0.9 0.9 xmms2-client-nycli (notoncd) (notwanted)
- 0.9 0.9 xournal (notoncd) (notwanted)
- 0.9 0.9 xpenguins-applet (notoncd) (notwanted)
- 0.9 0.9 xulrunner-dev (notoncd) (notwanted)
- 0.9 0.9 zenmap (notoncd) (notwanted)
- 0.9 0.9 zerofree (notoncd) (notwanted)
-100.0 0.4 libwrap0 (notwanted)
- 81.7 0.4 libsnmp-base (notwanted)
- 72.8 0.4 guile-1.8-libs (notwanted)
- 69.4 0.4 libqt4-opengl (notwanted)
- 58.7 0.4 python-pexpect (notwanted)
- 57.9 0.4 xbitmaps (notwanted)
- 53.6 0.4 libqt4-webkit (notoncd) (notwanted)
- 52.3 0.4 libksane0 (notwanted)
- 51.9 0.4 libwebkit-1.0-2 (notoncd) (notwanted)
- 49.8 0.4 cheese-common (notwanted)
- 47.7 0.4 libjack0 (notoncd) (notwanted)
- 46.4 0.4 odbcinst1debian1 (notoncd) (notwanted)
- 41.7 0.4 python-gmenu (notoncd) (notwanted)
- 40.0 0.4 libtracker-client-0.8-0 (notoncd) (notwanted)
- 37.0 0.4 libgconf2.0-cil (notwanted)
- 36.6 0.4 libsilc-1.1-2 (notoncd) (notwanted)
- 36.2 0.4 libglade2.0-cil (notoncd) (notwanted)
- 35.7 0.4 libart2.0-cil (notoncd) (notwanted)
- 35.7 0.4 libgnome-vfs2.0-cil (notoncd) (notwanted)
- 35.7 0.4 libmono-sharpzip2.84-cil (notoncd) (notwanted)
- 35.7 0.4 mesa-common-dev (notwanted)
- 35.3 0.4 python-opengl (notoncd) (notwanted)
- 34.9 0.4 libhsqldb-java (notwanted)
- 34.9 0.4 libndesk-dbus1.0-cil (notoncd) (notwanted)
- 34.5 0.4 libndesk-dbus-glib1.0-cil (notoncd) (notwanted)
- 34.5 0.4 python-pmw (notwanted)
- 34.0 0.4 python-iniparse (notoncd) (notwanted)
- 33.6 0.4 libgnome-keyring1.0-cil (notoncd) (notwanted)
- 33.6 0.4 libmono-data-tds2.0-cil (notoncd) (notwanted)
- 33.6 0.4 libmono-system-web2.0-cil (notoncd) (notwanted)
- 33.6 0.4 libmono2.0-cil (notoncd) (notwanted)
- 33.6 0.4 myspell-fr
- 33.6 0.4 python-ogg (notoncd) (notwanted)
- 33.6 0.4 python-twisted-names (notoncd) (notwanted)
- 33.6 0.4 python-wicd (notwanted)
- 33.2 0.4 libflickrnet2.2-cil (notoncd) (notwanted)
- 33.2 0.4 libsdl-gfx1.2-4 (notoncd) (notwanted)
- 32.8 0.4 python-pyvorbis (notoncd) (notwanted)
- 32.8 0.4 python-twisted-words (notoncd) (notwanted)
- 32.3 0.4 myspell-pt-br
- 32.3 0.4 python-decorator (notwanted)
- 31.9 0.4 apache2
- 31.9 0.4 python-pyromaths (notoncd) (notwanted)
- 31.9 0.4 python-twisted (notoncd) (notwanted)
- 31.9 0.4 python-twisted-news (notoncd) (notwanted)
- 31.9 0.4 python-twisted-runner (notoncd) (notwanted)
- 31.5 0.4 myspell-pt-pt
- 31.1 0.4 jigzo (notoncd) (notwanted)
- 30.6 0.4 python-debian (notwanted)
- 30.6 0.4 sshpass (notoncd) (notwanted)
- 30.6 0.4 xbindkeys (notoncd) (notwanted)
- 30.6 0.4 xsidplay (notoncd) (notwanted)
- 29.8 0.4 tilp
- 29.4 0.4 exe (notoncd) (notwanted)
- 28.1 0.4 amarok-common (notwanted)
- 27.2 0.4 gphoto2 (notoncd) (notwanted)
- 26.8 0.4 rdoc (notoncd) (notwanted)
- 25.1 0.4 onboard (notoncd) (notwanted)
- 24.7 0.4 python-farsight (notoncd) (notwanted)
- 24.7 0.4 python-paramiko (notoncd) (notwanted)
- 23.4 0.4 libcompress-zlib-perl (notoncd) (notwanted)
- 22.1 0.4 cupsddk (notoncd) (notwanted)
- 21.3 0.4 libdirectfb-1.0-0 (notoncd) (notwanted)
- 21.3 0.4 openoffice.org-help-es
- 20.9 0.4 libio-compress-base-perl (notoncd) (notwanted)
- 20.9 0.4 openoffice.org-help-fr
- 20.4 0.4 libio-compress-zlib-perl (notoncd) (notwanted)
- 19.1 0.4 libkholidays4 (notwanted)
- 18.7 0.4 python-memcache (notoncd) (notwanted)
- 17.9 0.4 libcsound64-5.2 (notwanted)
- 17.9 0.4 verilog (notoncd) (notwanted)
- 17.4 0.4 jackd2-firewire (notwanted)
- 17.4 0.4 libjaxp1.3-java-gcj (notoncd) (notwanted)
- 17.4 0.4 libmagickcore3-extra (notoncd) (notwanted)
- 17.4 0.4 libxerces2-java-gcj (notoncd) (notwanted)
- 17.0 0.4 plasma-scriptengine-python (notwanted)
- 16.2 0.4 libdb4.7-java-gcj (notoncd) (notwanted)
- 15.7 0.4 ksimus (notoncd) (notwanted)
- 15.7 0.4 ksimus-boolean (notoncd) (notwanted)
- 15.7 0.4 ksimus-datarecorder (notoncd) (notwanted)
- 15.7 0.4 ksimus-floatingpoint (notoncd) (notwanted)
- 15.3 0.4 i2e (notoncd)
- 15.3 0.4 libao2 (notoncd) (notwanted)
- 15.3 0.4 libqtscript4-core (notwanted)
- 15.3 0.4 libqtscript4-gui (notwanted)
- 15.3 0.4 libqtscript4-network (notwanted)
- 15.3 0.4 libqtscript4-sql (notwanted)
- 15.3 0.4 libqtscript4-uitools (notwanted)
- 15.3 0.4 libqtscript4-xml (notwanted)
- 15.3 0.4 ssystem (notoncd) (notwanted)
- 14.9 0.4 geg (notoncd) (notwanted)
- 14.9 0.4 indi (notoncd) (notwanted)
- 14.9 0.4 libkdepim1a (notoncd) (notwanted)
- 14.9 0.4 libsys-hostname-long-perl (notwanted)
- 14.9 0.4 python-gtkhtml2 (notoncd) (notwanted)
- 14.5 0.4 kdepim-kio-plugins (notoncd) (notwanted)
- 14.5 0.4 kpager (notoncd) (notwanted)
- 14.5 0.4 libc6-i386 (notoncd) (notwanted)
- 14.5 0.4 libvtk5 (notoncd) (notwanted)
- 14.5 0.4 network-manager-openvpn (notwanted)
- 14.0 0.4 db4.2-util (notoncd) (notwanted)
- 14.0 0.4 kaddressbook-plugins (notoncd)
- 14.0 0.4 kdelirc (notoncd) (notwanted)
- 14.0 0.4 kdenetwork-kfile-plugins (notoncd)
- 14.0 0.4 kregexpeditor (notoncd) (notwanted)
- 14.0 0.4 libdbi0 (notoncd) (notwanted)
- 14.0 0.4 libgksu1.2-0 (notoncd) (notwanted)
- 14.0 0.4 libkpimexchange1 (notoncd) (notwanted)
- 14.0 0.4 libmail-sendmail-perl (notwanted)
- 14.0 0.4 libplasma-ruby1.8 (notoncd) (notwanted)
- 14.0 0.4 octaviz (notoncd) (notwanted)
- 14.0 0.4 plasma-scriptengine-googlegadgets (notoncd) (notwanted)
- 13.6 0.4 kpersonalizer (notoncd) (notwanted)
- 13.6 0.4 libakode2 (notoncd) (notwanted)
- 13.6 0.4 libgoffice-0-4 (notoncd) (notwanted)
- 13.6 0.4 libkdcraw3 (notoncd) (notwanted)
- 13.6 0.4 mono-common (notoncd) (notwanted)
- 13.6 0.4 nautilus-data (notwanted)
- 13.6 0.4 plasma-scriptengine-qedje (notoncd) (notwanted)
- 13.6 0.4 python-gnome2-desktop (notoncd) (notwanted)
- 13.6 0.4 python-gnome2-extras (notoncd) (notwanted)
- 13.2 0.4 kdessh (notoncd) (notwanted)
- 13.2 0.4 khexedit (notoncd) (notwanted)
- 13.2 0.4 kpilot (notoncd) (notwanted)
- 13.2 0.4 quanta-data (notoncd) (notwanted)
- 12.8 0.4 ksayit (notoncd) (notwanted)
- 12.3 0.4 cups-pk-helper (notwanted)
- 12.3 0.4 ia32-libs (notoncd) (notwanted)
- 12.3 0.4 libcvsservice0 (notoncd) (notwanted)
- 11.9 0.4 libva1 (notwanted)
- 11.9 0.4 quanta (notoncd)
- 11.5 0.4 aspell-en (notwanted)
- 11.5 0.4 debian-installer-6.0-netboot-i386 (notoncd)
- 11.5 0.4 knm-runtime (notoncd) (notwanted)
- 11.1 0.4 gnome-terminal-data (notwanted)
- 10.6 0.4 libalgorithm-merge-perl (notwanted)
- 10.2 0.4 python-gnomedesktop (notoncd) (notwanted)
- 9.8 0.4 python-feedparser (notwanted)
- 9.4 0.4 python-serial (notwanted)
- 8.9 0.4 python-beautifulsoup (notwanted)
- 8.9 0.4 python-gnomeapplet (notoncd) (notwanted)
- 8.9 0.4 python-utidylib (notwanted)
- 8.5 0.4 libreoffice-emailmerge (notwanted)
- 8.5 0.4 libxext-dev (notwanted)
- 8.1 0.4 libavformat53 (notwanted)
- 8.1 0.4 libavutil51 (notwanted)
- 8.1 0.4 libesd-alsa0 (notoncd) (notwanted)
- 8.1 0.4 libpostproc52 (notwanted)
- 8.1 0.4 libswscale2 (notwanted)
- 8.1 0.4 memtest86 (notoncd) (notwanted)
- 8.1 0.4 python-gtksourceview2 (notwanted)
- 7.7 0.4 libfreerdp-plugins-standard (notwanted)
- 7.7 0.4 linux-headers-2.6.32-5-common (notoncd) (notwanted)
- 7.7 0.4 python-configobj (notoncd) (notwanted)
- 7.2 0.4 libwine-gl (notoncd) (notwanted)
- 7.2 0.4 libxrender-dev (notwanted)
- 7.2 0.4 openprinting-ppds (notoncd) (notwanted)
- 7.2 0.4 python-aptdaemon (notwanted)
- 6.8 0.4 libxcursor-dev (notwanted)
- 6.8 0.4 libxfixes-dev (notwanted)
- 6.8 0.4 libxi-dev (notwanted)
- 6.8 0.4 libxinerama-dev (notwanted)
- 6.8 0.4 libxrandr-dev (notwanted)
- 6.4 0.4 feynmf (notoncd) (notwanted)
- 6.4 0.4 libxcb-render0-dev (notwanted)
- 6.4 0.4 python-tagpy (notoncd) (notwanted)
- 6.0 0.4 clisp (notoncd) (notwanted)
- 6.0 0.4 libogg-dev (notwanted)
- 6.0 0.4 libreoffice-style-tango (notwanted)
- 6.0 0.4 libvorbis-dev (notwanted)
- 6.0 0.4 linux-headers-2.6.32-5-amd64 (notoncd) (notwanted)
- 6.0 0.4 nxproxy (notoncd) (notwanted)
- 5.5 0.4 libwine-gphoto2 (notoncd) (notwanted)
- 5.5 0.4 libwine-sane (notoncd) (notwanted)
- 5.5 0.4 sdparm (notwanted)
- 5.5 0.4 texlive-metapost (notoncd) (notwanted)
- 5.5 0.4 wine-utils (notoncd) (notwanted)
- 5.1 0.4 aspell-he
- 5.1 0.4 gconf-defaults-service (notoncd) (notwanted)
- 5.1 0.4 libglu1-mesa-dev (notwanted)
- 5.1 0.4 libreoffice-officebean (notoncd) (notwanted)
- 5.1 0.4 module-assistant (notoncd) (notwanted)
- 5.1 0.4 python-evolution (notoncd) (notwanted)
- 4.7 0.4 anthy (notoncd) (notwanted)
- 4.7 0.4 bluez-alsa (notoncd) (notwanted)
- 4.7 0.4 bluez-cups (notoncd) (notwanted)
- 4.7 0.4 chromium (notwanted)
- 4.7 0.4 gcr (notwanted)
- 4.7 0.4 gir1.2-gst-plugins-base-0.10 (notwanted)
- 4.7 0.4 gir1.2-gstreamer-0.10 (notwanted)
- 4.7 0.4 hspell
- 4.7 0.4 libblas3 (notwanted)
- 4.7 0.4 libclass-isa-perl (notwanted)
- 4.7 0.4 libclutter-imcontext-0.1-0 (notwanted)
- 4.7 0.4 libfile-listing-perl (notwanted)
- 4.7 0.4 libhttp-cookies-perl (notwanted)
- 4.7 0.4 libhttp-negotiate-perl (notwanted)
- 4.7 0.4 liblouis2 (notwanted)
- 4.7 0.4 liblwp-mediatypes-perl (notwanted)
- 4.7 0.4 liblwp-protocol-https-perl (notwanted)
- 4.7 0.4 libmad0-dev (notwanted)
- 4.7 0.4 libmath-bigint-perl (notoncd) (notwanted)
- 4.7 0.4 libnet-http-perl (notwanted)
- 4.7 0.4 libswitch-perl (notwanted)
- 4.7 0.4 libwww-robotrules-perl (notwanted)
- 4.7 0.4 printer-driver-hpijs (notwanted)
- 4.7 0.4 printer-driver-pnm2ppa (notwanted)
- 4.7 0.4 python-dateutil (notwanted)
- 4.7 0.4 python-louis (notwanted)
- 4.7 0.4 python-pyatspi (notwanted)
- 4.3 0.4 foo2zjs (notwanted)
- 4.3 0.4 gir1.2-clutter-gst-1.0 (notwanted)
- 4.3 0.4 gir1.2-gtksource-3.0 (notwanted)
- 4.3 0.4 glib-networking-services (notwanted)
- 4.3 0.4 gnome-sushi (notwanted)
- 4.3 0.4 growisofs (notwanted)
- 4.3 0.4 libasound2-dev (notwanted)
- 4.3 0.4 libavahi-client-dev (notwanted)
- 4.3 0.4 libavahi-common-dev (notwanted)
- 4.3 0.4 libbrasero-media3-1 (notwanted)
- 4.3 0.4 libc6-dbg (notwanted)
- 4.3 0.4 libdca-dev (notwanted)
- 4.3 0.4 libdts-dev (notwanted)
- 4.3 0.4 libhtml-form-perl (notwanted)
- 4.3 0.4 libhttp-daemon-perl (notwanted)
- 4.3 0.4 libmono-cairo4.0-cil (notwanted)
- 4.3 0.4 libquvi-scripts (notwanted)
- 4.3 0.4 mono-4.0-gac (notwanted)
- 4.3 0.4 mplayerthumbs (notwanted)
- 4.3 0.4 printer-driver-hpcups (notwanted)
- 4.3 0.4 python-aptdaemon.gtk3widgets (notwanted)
- 4.3 0.4 python-dbus-dev (notwanted)
- 4.3 0.4 python-defer (notwanted)
- 4.3 0.4 python-x2go (notoncd) (notwanted)
- 4.3 0.4 zlib-bin (notoncd) (notwanted)
- 3.8 0.4 bsh-gcj (notoncd) (notwanted)
- 3.8 0.4 enchant (notwanted)
- 3.8 0.4 fp-compiler
- 3.8 0.4 fp-ide
- 3.8 0.4 fp-units-gfx
- 3.8 0.4 fp-utils
- 3.8 0.4 gnome-session-canberra (notoncd) (notwanted)
- 3.8 0.4 ksame (notoncd) (notwanted)
- 3.8 0.4 libaudiofile-dev (notoncd) (notwanted)
- 3.8 0.4 libclutter-imcontext-0.1-bin (notwanted)
- 3.8 0.4 libcups2-dev (notoncd) (notwanted)
- 3.8 0.4 libesd0-dev (notoncd) (notwanted)
- 3.8 0.4 libmx-bin (notwanted)
- 3.8 0.4 libopenbabel4 (notwanted)
- 3.8 0.4 libprogressbar-ruby1.8 (notoncd) (notwanted)
- 3.8 0.4 libsary-ruby1.8 (notoncd) (notwanted)
- 3.8 0.4 libslang2-dev (notwanted)
- 3.8 0.4 libsuikyo-ruby1.8 (notoncd) (notwanted)
- 3.8 0.4 libtest-pod-perl (notoncd) (notwanted)
- 3.8 0.4 libx264-120 (notoncd) (notwanted)
- 3.8 0.4 openoffice.org-style-tango (notoncd) (notwanted)
- 3.8 0.4 prime (notoncd) (notwanted)
- 3.8 0.4 prime-dict (notoncd) (notwanted)
- 3.8 0.4 printer-driver-c2050 (notwanted)
- 3.8 0.4 printer-driver-c2esp (notwanted)
- 3.8 0.4 printer-driver-cjet (notwanted)
- 3.8 0.4 printer-driver-escpr (notwanted)
- 3.8 0.4 printer-driver-m2300w (notwanted)
- 3.8 0.4 printer-driver-postscript-hp (notwanted)
- 3.8 0.4 printer-driver-ptouch (notwanted)
- 3.8 0.4 printer-driver-pxljr (notwanted)
- 3.8 0.4 printer-driver-sag-gdi (notwanted)
- 3.8 0.4 python-pyparsing (notwanted)
- 3.4 0.4 kmailcvt (notoncd) (notwanted)
- 3.4 0.4 knetworkconf (notoncd) (notwanted)
- 3.4 0.4 lazarus-ide (notoncd) (notwanted)
- 3.4 0.4 lcl-utils (notoncd) (notwanted)
- 3.4 0.4 libggiwmh0-target-x (notoncd) (notwanted)
- 3.4 0.4 libgmime2.4-cil (notoncd) (notwanted)
- 3.4 0.4 libgnomepanel2.24-cil (notoncd) (notwanted)
- 3.4 0.4 liblog4j1.2-java-gcj (notoncd) (notwanted)
- 3.4 0.4 libmldbm-perl (notoncd) (notwanted)
- 3.4 0.4 libsdl-sound1.2 (notoncd) (notwanted)
- 3.4 0.4 libsmi2ldbl (notwanted)
- 3.4 0.4 libsvga1-dev (notwanted)
- 3.4 0.4 libsysfs-dev (notoncd) (notwanted)
- 3.4 0.4 nss-updatedb (notoncd) (notwanted)
- 3.4 0.4 nted (notoncd) (notwanted)
- 3.4 0.4 python-wxgtk2.6 (notoncd) (notwanted)
- 3.4 0.4 ruby-kde4 (notwanted)
- 3.4 0.4 ruby-plasma (notwanted)
- 3.4 0.4 ruby-qt4 (notwanted)
- 3.4 0.4 ruby-qt4-webkit (notwanted)
- 3.4 0.4 sun-java6-jdk (notoncd) (notwanted)
- 3.4 0.4 xemacs21-bin (notoncd) (notwanted)
- 3.4 0.4 xemacs21-mule (notoncd) (notwanted)
- 3.4 0.4 xemacs21-support (notoncd) (notwanted)
- 3.4 0.4 xpdf-reader (notoncd) (notwanted)
- 3.4 0.4 zabbix-agent (notoncd) (notwanted)
- 3.0 0.4 autossh (notoncd) (notwanted)
- 3.0 0.4 avidemux (notoncd) (notwanted)
- 3.0 0.4 dasher (notwanted)
- 3.0 0.4 dvipdfmx (notoncd) (notwanted)
- 3.0 0.4 emacs22-bin-common (notoncd) (notwanted)
- 3.0 0.4 firmware-bnx2x (notoncd) (notwanted)
- 3.0 0.4 freebirth (notwanted)
- 3.0 0.4 goplay (notwanted)
- 3.0 0.4 inetutils-inetd (notoncd) (notwanted)
- 3.0 0.4 kalgebra-common (notwanted)
- 3.0 0.4 kdeartwork-theme-window (notoncd) (notwanted)
- 3.0 0.4 kdegraphics-thumbnailers (notwanted)
- 3.0 0.4 klickety (notoncd) (notwanted)
- 3.0 0.4 kxsldbg (notoncd) (notwanted)
- 3.0 0.4 libaa1-dev (notoncd) (notwanted)
- 3.0 0.4 libartsc0-dev (notoncd) (notwanted)
- 3.0 0.4 libexif-dev (notoncd) (notwanted)
- 3.0 0.4 libpod-coverage-perl (notoncd) (notwanted)
- 3.0 0.4 libpopt-dev (notoncd) (notwanted)
- 3.0 0.4 libproj-dev (notoncd) (notwanted)
- 3.0 0.4 libpulse-dev (notwanted)
- 3.0 0.4 libsmbios-bin (notoncd) (notwanted)
- 3.0 0.4 libsox-fmt-mp3 (notoncd) (notwanted)
- 3.0 0.4 libterm-size-perl (notoncd) (notwanted)
- 3.0 0.4 locales-all (notoncd) (notwanted)
- 3.0 0.4 redland-utils (notoncd) (notwanted)
- 3.0 0.4 scim-canna
- 3.0 0.4 texlive-bibtex-extra (notoncd) (notwanted)
- 3.0 0.4 wavpack (notwanted)
- 3.0 0.4 xserver-xorg-video-via (notoncd) (notwanted)
- 2.6 0.4 cpp-4.6 (notwanted)
- 2.6 0.4 djview-plugin (notwanted)
- 2.6 0.4 fai-client (notoncd) (notwanted)
- 2.6 0.4 firmware-qlogic (notwanted)
- 2.6 0.4 gambas2-gb-gtk (notoncd) (notwanted)
- 2.6 0.4 gambas2-gb-gui (notoncd) (notwanted)
- 2.6 0.4 gcc-4.6 (notwanted)
- 2.6 0.4 googleearth (notoncd) (notwanted)
- 2.6 0.4 grass (notoncd) (notwanted)
- 2.6 0.4 libcanberra-pulse (notwanted)
- 2.6 0.4 libequinox-osgi-java (notoncd) (notwanted)
- 2.6 0.4 libio-compress-perl (notoncd) (notwanted)
- 2.6 0.4 libminiupnpc5 (notwanted)
- 2.6 0.4 libopensync0 (notoncd) (notwanted)
- 2.6 0.4 libphonon-dev (notoncd) (notwanted)
- 2.6 0.4 libsoprano-dev (notoncd) (notwanted)
- 2.6 0.4 libxmu-dev (notoncd) (notwanted)
- 2.6 0.4 libxmu-headers (notoncd) (notwanted)
- 2.6 0.4 lightspeed (notoncd) (notwanted)
- 2.6 0.4 linux-image-3.2.0-4-amd64 (notwanted)
- 2.6 0.4 miscfiles (notoncd) (notwanted)
- 2.6 0.4 mpack (notoncd) (notwanted)
- 2.6 0.4 openuniverse (notoncd) (notwanted)
- 2.6 0.4 python-gdal (notoncd) (notwanted)
- 2.6 0.4 python-newt (notoncd) (notwanted)
- 2.6 0.4 python-packagekit (notwanted)
- 2.6 0.4 r-cran-vr (notoncd) (notwanted)
- 2.6 0.4 raptor-utils (notoncd) (notwanted)
- 2.6 0.4 scim-skk
- 2.6 0.4 sux (notoncd) (notwanted)
- 2.6 0.4 tex-gyre (notwanted)
- 2.6 0.4 vim-gui-common (notoncd) (notwanted)
- 2.6 0.4 wfrench
- 2.6 0.4 xutils-dev (notoncd) (notwanted)
- 2.1 0.4 arpwatch (notoncd) (notwanted)
- 2.1 0.4 artha (notoncd) (notwanted)
- 2.1 0.4 bittorrent (notoncd) (notwanted)
- 2.1 0.4 canorus (notoncd) (notwanted)
- 2.1 0.4 ccze (notoncd) (notwanted)
- 2.1 0.4 compiz-gnome (notoncd) (notwanted)
- 2.1 0.4 csh (notoncd) (notwanted)
- 2.1 0.4 drpython (notwanted)
- 2.1 0.4 eclipse-jdt (notoncd) (notwanted)
- 2.1 0.4 eclipse-pde (notoncd) (notwanted)
- 2.1 0.4 eclipse-platform-data (notoncd) (notwanted)
- 2.1 0.4 eclipse-rcp (notoncd) (notwanted)
- 2.1 0.4 emacs22 (notoncd) (notwanted)
- 2.1 0.4 escputil (notoncd) (notwanted)
- 2.1 0.4 firmware-intelwimax (notoncd) (notwanted)
- 2.1 0.4 firmware-ivtv (notoncd) (notwanted)
- 2.1 0.4 gimp-gnomevfs (notoncd) (notwanted)
- 2.1 0.4 gimp-python (notoncd) (notwanted)
- 2.1 0.4 gir1.0-clutter-1.0 (notoncd) (notwanted)
- 2.1 0.4 gir1.0-freedesktop (notoncd) (notwanted)
- 2.1 0.4 gir1.0-glib-2.0 (notoncd) (notwanted)
- 2.1 0.4 gir1.0-gstreamer-0.10 (notoncd) (notwanted)
- 2.1 0.4 gir1.0-gtk-2.0 (notoncd) (notwanted)
- 2.1 0.4 gir1.0-json-glib-1.0 (notoncd) (notwanted)
- 2.1 0.4 gir1.2-atspi-2.0 (notwanted)
- 2.1 0.4 gir1.2-gnomekeyring-1.0 (notwanted)
- 2.1 0.4 gir1.2-javascriptcoregtk-3.0 (notwanted)
- 2.1 0.4 gir1.2-rb-3.0 (notwanted)
- 2.1 0.4 gir1.2-totem-1.0 (notwanted)
- 2.1 0.4 gir1.2-totem-plparser-1.0 (notwanted)
- 2.1 0.4 gir1.2-webkit-3.0 (notwanted)
- 2.1 0.4 gir1.2-wnck-3.0 (notwanted)
- 2.1 0.4 glchess (notwanted)
- 2.1 0.4 glines (notwanted)
- 2.1 0.4 gnect (notwanted)
- 2.1 0.4 gnibbles (notwanted)
- 2.1 0.4 gnobots2 (notwanted)
- 2.1 0.4 gnome-contacts (notwanted)
- 2.1 0.4 gnome-packagekit (notwanted)
- 2.1 0.4 gnome-sudoku (notwanted)
- 2.1 0.4 gnomine (notwanted)
- 2.1 0.4 gnotravex (notwanted)
- 2.1 0.4 gnotski (notwanted)
- 2.1 0.4 gpsman (notoncd) (notwanted)
- 2.1 0.4 gpsmanshp (notoncd) (notwanted)
- 2.1 0.4 gpx2shp (notoncd) (notwanted)
- 2.1 0.4 gramps (notoncd) (notwanted)
- 2.1 0.4 gtali (notwanted)
- 2.1 0.4 iagno (notwanted)
- 2.1 0.4 libbcmail-java-gcj (notoncd) (notwanted)
- 2.1 0.4 libbcprov-java-gcj (notoncd) (notwanted)
- 2.1 0.4 libboost1.42-dev (notoncd) (notwanted)
- 2.1 0.4 libclass-singleton-perl (notoncd) (notwanted)
- 2.1 0.4 libconfig-tiny-perl (notwanted)
- 2.1 0.4 libdatetime-locale-perl (notoncd) (notwanted)
- 2.1 0.4 libdatetime-perl (notoncd) (notwanted)
- 2.1 0.4 libdatetime-timezone-perl (notoncd) (notwanted)
- 2.1 0.4 libdevil1c2 (notoncd) (notwanted)
- 2.1 0.4 libgphoto2-2-dev (notoncd) (notwanted)
- 2.1 0.4 libhsqldb-java-gcj (notoncd) (notwanted)
- 2.1 0.4 libicu-dev (notoncd) (notwanted)
- 2.1 0.4 libk3b3-extracodecs (notoncd) (notwanted)
- 2.1 0.4 libmailutils4 (notoncd) (notwanted)
- 2.1 0.4 libmenu-cache1 (notwanted)
- 2.1 0.4 libmono-messaging2.0-cil (notoncd) (notwanted)
- 2.1 0.4 libmono-sharpzip4.84-cil (notwanted)
- 2.1 0.4 libmono-system-data-linq2.0-cil (notoncd) (notwanted)
- 2.1 0.4 libmono-system-messaging2.0-cil (notoncd) (notwanted)
- 2.1 0.4 libmotif3 (notoncd) (notwanted)
- 2.1 0.4 libnspr4-dev (notoncd) (notwanted)
- 2.1 0.4 libpeas-1.0-0 (notwanted)
- 2.1 0.4 libpt-1.10.10-plugins-alsa (notoncd) (notwanted)
- 2.1 0.4 libraw1394-dev (notoncd) (notwanted)
- 2.1 0.4 libreadonly-xs-perl (notwanted)
- 2.1 0.4 libsamplerate0-dev (notoncd) (notwanted)
- 2.1 0.4 libseed-gtk3-0 (notwanted)
- 2.1 0.4 libseed0 (notoncd) (notwanted)
- 2.1 0.4 libtasn1-3-bin (notoncd) (notwanted)
- 2.1 0.4 libtheora-dev (notoncd) (notwanted)
- 2.1 0.4 libtiff4-dev (notoncd) (notwanted)
- 2.1 0.4 libwrap0-dev (notoncd) (notwanted)
- 2.1 0.4 libxalan2-java-gcj (notoncd) (notwanted)
- 2.1 0.4 libxine1-gnome (notoncd) (notwanted)
- 2.1 0.4 libxml-sax-base-perl (notwanted)
- 2.1 0.4 lightsoff (notwanted)
- 2.1 0.4 linux-headers-2.6.32-bpo.5-common (notoncd) (notwanted)
- 2.1 0.4 linux-image-3.2.0-0.bpo.4-amd64 (notoncd) (notwanted)
- 2.1 0.4 lyx (notoncd) (notwanted)
- 2.1 0.4 lzop (notoncd) (notwanted)
- 2.1 0.4 mahjongg (notwanted)
- 2.1 0.4 modconf (notoncd) (notwanted)
- 2.1 0.4 mtr (notoncd) (notwanted)
- 2.1 0.4 nkf (notoncd) (notwanted)
- 2.1 0.4 python-bluez (notoncd) (notwanted)
- 2.1 0.4 python-chm (notoncd) (notwanted)
- 2.1 0.4 python-enchant (notoncd) (notwanted)
- 2.1 0.4 python-gi-cairo (notwanted)
- 2.1 0.4 python-gtkspell (notoncd) (notwanted)
- 2.1 0.4 python-pyudev (notwanted)
- 2.1 0.4 python-zeitgeist (notwanted)
- 2.1 0.4 qt4-dev-tools (notoncd) (notwanted)
- 2.1 0.4 quadrapassel (notwanted)
- 2.1 0.4 scim-uim (notoncd)
- 2.1 0.4 swell-foop (notwanted)
- 2.1 0.4 tcl-tls (notoncd) (notwanted)
- 2.1 0.4 thuban (notoncd) (notwanted)
- 2.1 0.4 toolame (notoncd) (notwanted)
- 2.1 0.4 uuid-dev (notoncd) (notwanted)
- 2.1 0.4 wdanish
- 2.1 0.4 xulrunner-17.0 (notwanted)
- 1.7 0.4 apertium-tolk (notoncd) (notwanted)
- 1.7 0.4 ardour (notoncd) (notwanted)
- 1.7 0.4 aumix (notoncd) (notwanted)
- 1.7 0.4 avogadro (notoncd) (notwanted)
- 1.7 0.4 billard-gl (notoncd) (notwanted)
- 1.7 0.4 bkchem (notoncd) (notwanted)
- 1.7 0.4 bsdgames (notoncd) (notwanted)
- 1.7 0.4 cddb (notoncd) (notwanted)
- 1.7 0.4 collatinus9 (notoncd) (notwanted)
- 1.7 0.4 dblatex (notoncd) (notwanted)
- 1.7 0.4 dh-buildinfo (notoncd) (notwanted)
- 1.7 0.4 eagle (notoncd) (notwanted)
- 1.7 0.4 eagle-data (notoncd) (notwanted)
- 1.7 0.4 etherboot-qemu (notoncd) (notwanted)
- 1.7 0.4 fglrx-control (notoncd) (notwanted)
- 1.7 0.4 gimp-gap (notoncd) (notwanted)
- 1.7 0.4 gimp-resynthesizer (notoncd) (notwanted)
- 1.7 0.4 gimp-texturize (notoncd) (notwanted)
- 1.7 0.4 gir1.2-gtop-2.0 (notwanted)
- 1.7 0.4 gir1.2-gucharmap-2.90 (notwanted)
- 1.7 0.4 gir1.2-panelapplet-4.0 (notwanted)
- 1.7 0.4 gnome-bin (notoncd) (notwanted)
- 1.7 0.4 google-earth-stable (notoncd) (notwanted)
- 1.7 0.4 googleearth-package (notoncd) (notwanted)
- 1.7 0.4 gpodder (notoncd) (notwanted)
- 1.7 0.4 gtk2-engines-murrine (notoncd) (notwanted)
- 1.7 0.4 holotz-castle (notoncd) (notwanted)
- 1.7 0.4 host-policygroups (notoncd) (notwanted)
- 1.7 0.4 iceape-browser (notoncd) (notwanted)
- 1.7 0.4 iceape-chatzilla (notoncd) (notwanted)
- 1.7 0.4 indent (notoncd) (notwanted)
- 1.7 0.4 intel-microcode (notoncd) (notwanted)
- 1.7 0.4 ipmitool (notoncd) (notwanted)
- 1.7 0.4 iputils-tracepath (notwanted)
- 1.7 0.4 itzks-systems-disklserver (notoncd) (notwanted)
- 1.7 0.4 kaffeine-mozilla (notoncd) (notwanted)
- 1.7 0.4 kbibtex (notoncd) (notwanted)
- 1.7 0.4 kdat (notoncd) (notwanted)
- 1.7 0.4 kile (notoncd) (notwanted)
- 1.7 0.4 klogd (notoncd) (notwanted)
- 1.7 0.4 klogic (notoncd) (notwanted)
- 1.7 0.4 kmplayer (notoncd) (notwanted)
- 1.7 0.4 kmrml (notoncd) (notwanted)
- 1.7 0.4 korn (notoncd) (notwanted)
- 1.7 0.4 kpackage (notoncd) (notwanted)
- 1.7 0.4 ksig (notoncd) (notwanted)
- 1.7 0.4 ksvg (notoncd) (notwanted)
- 1.7 0.4 ksysv (notoncd) (notwanted)
- 1.7 0.4 kwifimanager (notoncd) (notwanted)
- 1.7 0.4 kworldclock (notoncd) (notwanted)
- 1.7 0.4 libacl1-dev (notoncd) (notwanted)
- 1.7 0.4 libattr1-dev (notoncd) (notwanted)
- 1.7 0.4 libavifile-0.7c2 (notoncd) (notwanted)
- 1.7 0.4 libc6-dev-i386 (notoncd) (notwanted)
- 1.7 0.4 libcomedi0 (notwanted)
- 1.7 0.4 libdatetime-format-mail-perl (notoncd) (notwanted)
- 1.7 0.4 libdatetime-format-w3cdtf-perl (notoncd) (notwanted)
- 1.7 0.4 libfilter-perl (notoncd) (notwanted)
- 1.7 0.4 libgcj7-0 (notoncd) (notwanted)
- 1.7 0.4 libglade2-dev (notoncd) (notwanted)
- 1.7 0.4 libgraphics-magick-perl (notoncd) (notwanted)
- 1.7 0.4 libgssapi-perl (notoncd) (notwanted)
- 1.7 0.4 libicc2 (notwanted)
- 1.7 0.4 liblcms1-dev (notoncd) (notwanted)
- 1.7 0.4 libmono-i18n-west1.0-cil (notoncd) (notwanted)
- 1.7 0.4 libopal3.10.4 (notoncd) (notwanted)
- 1.7 0.4 libpt-1.10.10-plugins-v4l (notoncd) (notwanted)
- 1.7 0.4 libpt2.10.4 (notoncd) (notwanted)
- 1.7 0.4 libqtwebkit-dev (notoncd) (notwanted)
- 1.7 0.4 libsigc++-2.0-dev (notoncd) (notwanted)
- 1.7 0.4 libsocialweb-service (notwanted)
- 1.7 0.4 libsox-fmt-oss (notoncd) (notwanted)
- 1.7 0.4 libtext-csv-perl (notoncd) (notwanted)
- 1.7 0.4 libtext-csv-xs-perl (notoncd) (notwanted)
- 1.7 0.4 libxss-dev (notoncd) (notwanted)
- 1.7 0.4 linphone (notoncd) (notwanted)
- 1.7 0.4 linux-headers-2.6.32-bpo.5-686 (notoncd) (notwanted)
- 1.7 0.4 linux-image-3.2.0-4-686-pae (notoncd) (notwanted)
- 1.7 0.4 luma (notoncd) (notwanted)
- 1.7 0.4 lxmusic (notwanted)
- 1.7 0.4 mysql-query-browser (notoncd) (notwanted)
- 1.7 0.4 network-manager-kde (notoncd) (notwanted)
- 1.7 0.4 openoffice.org-evolution (notoncd) (notwanted)
- 1.7 0.4 openoffice.org-gcj (notoncd) (notwanted)
- 1.7 0.4 paprefs (notoncd) (notwanted)
- 1.7 0.4 partimage (notoncd) (notwanted)
- 1.7 0.4 pavumeter (notoncd) (notwanted)
- 1.7 0.4 pitivi (notwanted)
- 1.7 0.4 python-evince (notoncd) (notwanted)
- 1.7 0.4 python-levenshtein (notoncd) (notwanted)
- 1.7 0.4 python-mygpoclient (notoncd) (notwanted)
- 1.7 0.4 python-scipy (notoncd) (notwanted)
- 1.7 0.4 python3 (notoncd) (notwanted)
- 1.7 0.4 python3.1 (notoncd) (notwanted)
- 1.7 0.4 python3.1-minimal (notoncd) (notwanted)
- 1.7 0.4 swat (notoncd) (notwanted)
- 1.7 0.4 systemconfigurator (notoncd) (notwanted)
- 1.7 0.4 telepathy-logger (notwanted)
- 1.7 0.4 tshark (notoncd) (notwanted)
- 1.7 0.4 unoconv (notwanted)
- 1.7 0.4 viking (notoncd) (notwanted)
- 1.7 0.4 virtualbox-ose-guest-dkms (notoncd) (notwanted)
- 1.7 0.4 x11proto-scrnsaver-dev (notoncd) (notwanted)
- 1.7 0.4 x264 (notoncd) (notwanted)
- 1.7 0.4 xawtv-plugins (notoncd) (notwanted)
- 1.7 0.4 xfce4-battery-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-clipman-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-cpufreq-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-cpugraph-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-diskperf-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-fsguard-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-genmon-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-mailwatch-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-netload-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-systemload-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-timer-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-wavelan-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-weather-plugin (notoncd) (notwanted)
- 1.7 0.4 xfce4-xkb-plugin (notoncd) (notwanted)
- 1.7 0.4 xmlstarlet (notoncd) (notwanted)
- 1.7 0.4 xmms2-plugin-alsa (notwanted)
- 1.7 0.4 xmms2-plugin-id3v2 (notwanted)
- 1.7 0.4 xmms2-plugin-mad (notwanted)
- 1.7 0.4 xmms2-plugin-vorbis (notwanted)
- 1.7 0.4 xpdf-common (notoncd) (notwanted)
- 1.7 0.4 xscreensaver-screensaver-webcollage (notoncd) (notwanted)
- 1.7 0.4 xulrunner-16.0 (notoncd) (notwanted)
- 1.7 0.4 yafray (notoncd) (notwanted)
- 1.3 0.4 3dchess (notoncd) (notwanted)
- 1.3 0.4 ace-of-penguins (notoncd) (notwanted)
- 1.3 0.4 amarok-engine-yauap (notoncd) (notwanted)
- 1.3 0.4 amsn-data (notoncd) (notwanted)
- 1.3 0.4 amule (notoncd) (notwanted)
- 1.3 0.4 amule-utils (notoncd) (notwanted)
- 1.3 0.4 animals (notoncd) (notwanted)
- 1.3 0.4 apt-dater (notoncd) (notwanted)
- 1.3 0.4 blends-common (notoncd) (notwanted)
- 1.3 0.4 bugsquish (notoncd) (notwanted)
- 1.3 0.4 bumprace (notoncd) (notwanted)
- 1.3 0.4 bygfoot (notoncd) (notwanted)
- 1.3 0.4 bzr-dbus (notoncd) (notwanted)
- 1.3 0.4 camlp4 (notoncd) (notwanted)
- 1.3 0.4 caribou (notwanted)
- 1.3 0.4 caribou-antler (notwanted)
- 1.3 0.4 context (notoncd) (notwanted)
- 1.3 0.4 crafty (notoncd) (notwanted)
- 1.3 0.4 cuyo (notoncd) (notwanted)
- 1.3 0.4 db5.1-util (notoncd) (notwanted)
- 1.3 0.4 dsniff (notoncd) (notwanted)
- 1.3 0.4 earth3d (notoncd) (notwanted)
- 1.3 0.4 echoping (notoncd) (notwanted)
- 1.3 0.4 ecj (notoncd) (notwanted)
- 1.3 0.4 ecj-gcj (notoncd) (notwanted)
- 1.3 0.4 elinks (notoncd) (notwanted)
- 1.3 0.4 erlang-inets (notoncd) (notwanted)
- 1.3 0.4 erlang-mnesia (notoncd) (notwanted)
- 1.3 0.4 erlang-public-key (notoncd) (notwanted)
- 1.3 0.4 erlang-runtime-tools (notoncd) (notwanted)
- 1.3 0.4 erlang-ssl (notoncd) (notwanted)
- 1.3 0.4 fckeditor (notoncd) (notwanted)
- 1.3 0.4 freeglut3-dev (notoncd) (notwanted)
- 1.3 0.4 fusesmb (notoncd) (notwanted)
- 1.3 0.4 fxload (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-compress (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-compress-bzlib2 (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-compress-zlib (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-db (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-db-postgresql (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-form (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-pdf (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-qt-ext (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-settings (notoncd) (notwanted)
- 1.3 0.4 gambas2-gb-xml (notoncd) (notwanted)
- 1.3 0.4 gaupol (notoncd) (notwanted)
- 1.3 0.4 gfortran-4.3 (notoncd) (notwanted)
- 1.3 0.4 ghex (notoncd) (notwanted)
- 1.3 0.4 gimp-dds (notoncd) (notwanted)
- 1.3 0.4 gimp-plugin-registry (notoncd) (notwanted)
- 1.3 0.4 gitk (notoncd) (notwanted)
- 1.3 0.4 gnome-btdownload (notoncd) (notwanted)
- 1.3 0.4 gnustep-common (notoncd) (notwanted)
- 1.3 0.4 gosa-desktop (notoncd) (notwanted)
- 1.3 0.4 gvncviewer (notoncd) (notwanted)
- 1.3 0.4 gxine (notoncd) (notwanted)
- 1.3 0.4 hexedit (notoncd) (notwanted)
- 1.3 0.4 isomaster (notoncd) (notwanted)
- 1.3 0.4 janino (notoncd) (notwanted)
- 1.3 0.4 jed (notoncd) (notwanted)
- 1.3 0.4 jed-common (notoncd) (notwanted)
- 1.3 0.4 junior-config (notoncd) (notwanted)
- 1.3 0.4 karbon (notwanted)
- 1.3 0.4 kball (notoncd) (notwanted)
- 1.3 0.4 kchart (notoncd) (notwanted)
- 1.3 0.4 kdnssd (notoncd) (notwanted)
- 1.3 0.4 kexi (notwanted)
- 1.3 0.4 kformula (notoncd) (notwanted)
- 1.3 0.4 kiki (notoncd) (notwanted)
- 1.3 0.4 koffice-libs (notoncd) (notwanted)
- 1.3 0.4 kpartx (notwanted)
- 1.3 0.4 kphone (notoncd) (notwanted)
- 1.3 0.4 kplato (notoncd) (notwanted)
- 1.3 0.4 kpresenter (notwanted)
- 1.3 0.4 kspread (notwanted)
- 1.3 0.4 kthesaurus (notwanted)
- 1.3 0.4 kword (notwanted)
- 1.3 0.4 lbreakout2 (notoncd) (notwanted)
- 1.3 0.4 ledit (notoncd) (notwanted)
- 1.3 0.4 libantlr-java-gcj (notoncd) (notwanted)
- 1.3 0.4 libarts1-audiofile (notoncd) (notwanted)
- 1.3 0.4 libarts1-mpeglib (notoncd) (notwanted)
- 1.3 0.4 libarts1-xine (notoncd) (notwanted)
- 1.3 0.4 libavahi-glib-dev (notoncd) (notwanted)
- 1.3 0.4 libavc1394-dev (notoncd) (notwanted)
- 1.3 0.4 libbonobo2-dev (notoncd) (notwanted)
- 1.3 0.4 libcairomm-1.0-dev (notoncd) (notwanted)
- 1.3 0.4 libcalendar-simple-perl (notoncd) (notwanted)
- 1.3 0.4 libcelt-dev (notoncd) (notwanted)
- 1.3 0.4 libclass-accessor-chained-perl (notoncd) (notwanted)
- 1.3 0.4 libdata-page-perl (notoncd) (notwanted)
- 1.3 0.4 libdirectfb-1.2-0 (notoncd) (notwanted)
- 1.3 0.4 libecj-java-gcj (notoncd) (notwanted)
- 1.3 0.4 libenchant-dev (notoncd) (notwanted)
- 1.3 0.4 libevent-perl (notoncd) (notwanted)
- 1.3 0.4 libexosip2-4 (notoncd) (notwanted)
- 1.3 0.4 libffado-dev (notoncd) (notwanted)
- 1.3 0.4 libfftw3-dev (notoncd) (notwanted)
- 1.3 0.4 libfile-which-perl (notoncd) (notwanted)
- 1.3 0.4 libflac-dev (notwanted)
- 1.3 0.4 libflexdock-jni (notoncd) (notwanted)
- 1.3 0.4 libfm-gtk0 (notoncd) (notwanted)
- 1.3 0.4 libgail-dev (notoncd) (notwanted)
- 1.3 0.4 libgd-graph-perl (notoncd) (notwanted)
- 1.3 0.4 libgd-text-perl (notoncd) (notwanted)
- 1.3 0.4 libgeos-dev (notoncd) (notwanted)
- 1.3 0.4 libgettext-ruby1.8 (notoncd) (notwanted)
- 1.3 0.4 libgnome-keyring-dev (notoncd) (notwanted)
- 1.3 0.4 libgnome2-dev (notoncd) (notwanted)
- 1.3 0.4 libgnomecanvas2-dev (notoncd) (notwanted)
- 1.3 0.4 libgnomeui-dev (notoncd) (notwanted)
- 1.3 0.4 libgnomevfs2-dev (notoncd) (notwanted)
- 1.3 0.4 libhal-dev (notoncd) (notwanted)
- 1.3 0.4 libheap-perl (notoncd) (notwanted)
- 1.3 0.4 libhtml-scrubber-perl (notoncd) (notwanted)
- 1.3 0.4 libhttp-cache-transparent-perl (notoncd) (notwanted)
- 1.3 0.4 libmath-round-perl (notoncd) (notwanted)
- 1.3 0.4 libmodule-implementation-perl (notwanted)
- 1.3 0.4 libmodule-runtime-perl (notwanted)
- 1.3 0.4 libmono-cecil-private-cil (notoncd) (notwanted)
- 1.3 0.4 libmono-data-tds4.0-cil (notoncd) (notwanted)
- 1.3 0.4 libmono-sqlite4.0-cil (notoncd) (notwanted)
- 1.3 0.4 libmono-system-enterpriseservices4.0-cil (notoncd) (notwanted)
- 1.3 0.4 libmono-system-transactions4.0-cil (notoncd) (notwanted)
- 1.3 0.4 libnet-smtp-ssl-perl (notoncd) (notwanted)
- 1.3 0.4 libnss3-dev (notoncd) (notwanted)
- 1.3 0.4 libp11-kit-dev (notoncd) (notwanted)
- 1.3 0.4 libparams-classify-perl (notwanted)
- 1.3 0.4 libparse-yapp-perl (notoncd) (notwanted)
- 1.3 0.4 libpod-plainer-perl (notoncd) (notwanted)
- 1.3 0.4 libprefork-perl (notoncd) (notwanted)
- 1.3 0.4 libprintsys (notoncd) (notwanted)
- 1.3 0.4 libqt3-compat-headers (notoncd) (notwanted)
- 1.3 0.4 libquicktime-dev (notoncd) (notwanted)
- 1.3 0.4 librsvg2-2.18-cil (notoncd) (notwanted)
- 1.3 0.4 librtmp-dev (notoncd) (notwanted)
- 1.3 0.4 libsac-java-gcj (notoncd) (notwanted)
- 1.3 0.4 libselinux1-dev (notoncd) (notwanted)
- 1.3 0.4 libsensors-dev (notoncd) (notwanted)
- 1.3 0.4 libsepol1-dev (notoncd) (notwanted)
- 1.3 0.4 libsql-abstract-perl (notoncd) (notwanted)
- 1.3 0.4 libssh2-1-dev (notoncd) (notwanted)
- 1.3 0.4 libsubtitleeditor0 (notoncd) (notwanted)
- 1.3 0.4 libswt-cairo-gtk-3-jni (notoncd) (notwanted)
- 1.3 0.4 libswt-glx-gtk-3-jni (notoncd) (notwanted)
- 1.3 0.4 libswt-gnome-gtk-3-jni (notoncd) (notwanted)
- 1.3 0.4 libswt-gtk-3-java (notoncd) (notwanted)
- 1.3 0.4 libswt-gtk-3-jni (notoncd) (notwanted)
- 1.3 0.4 libswt-webkit-gtk-3-jni (notoncd) (notwanted)
- 1.3 0.4 libsynfig0 (notoncd) (notwanted)
- 1.3 0.4 libtext-glob-perl (notoncd) (notwanted)
- 1.3 0.4 libtk-img (notoncd) (notwanted)
- 1.3 0.4 libwebkit1.1-cil (notoncd) (notwanted)
- 1.3 0.4 libwireshark2 (notwanted)
- 1.3 0.4 libxml-rss-perl (notoncd) (notwanted)
- 1.3 0.4 libxpm-dev (notoncd) (notwanted)
- 1.3 0.4 linphone-nox (notoncd) (notwanted)
- 1.3 0.4 linux-headers-3.2.0-4-amd64 (notwanted)
- 1.3 0.4 linux-image-2.6.18-6-686 (notoncd) (notwanted)
- 1.3 0.4 lletters (notoncd) (notwanted)
- 1.3 0.4 logicalprint (notoncd) (notwanted)
- 1.3 0.4 madbomber (notoncd) (notwanted)
- 1.3 0.4 mailprogramselector (notoncd) (notwanted)
- 1.3 0.4 mathomatic-primes (notoncd) (notwanted)
- 1.3 0.4 mbr (notoncd) (notwanted)
- 1.3 0.4 mdbtools (notoncd) (notwanted)
- 1.3 0.4 mkisofs (notoncd) (notwanted)
- 1.3 0.4 mksh (notoncd) (notwanted)
- 1.3 0.4 nagios-plugins-common (notwanted)
- 1.3 0.4 nmon (notoncd) (notwanted)
- 1.3 0.4 noatun (notoncd) (notwanted)
- 1.3 0.4 nuttcp (notoncd) (notwanted)
- 1.3 0.4 ocaml-interp (notoncd) (notwanted)
- 1.3 0.4 ocaml-nox (notoncd) (notwanted)
- 1.3 0.4 openoffice.org-onlyodf (notoncd) (notwanted)
- 1.3 0.4 openttd (notoncd) (notwanted)
- 1.3 0.4 pacman (notoncd) (notwanted)
- 1.3 0.4 pandoc (notoncd) (notwanted)
- 1.3 0.4 pdfjam (notoncd) (notwanted)
- 1.3 0.4 pgplot5 (notoncd) (notwanted)
- 1.3 0.4 phonon-backend-gstreamer (notoncd) (notwanted)
- 1.3 0.4 php-gettext (notoncd) (notwanted)
- 1.3 0.4 pinta (notoncd) (notwanted)
- 1.3 0.4 plotdrop (notoncd) (notwanted)
- 1.3 0.4 pulseaudio-module-hal (notoncd) (notwanted)
- 1.3 0.4 pychecker (notoncd) (notwanted)
- 1.3 0.4 pyro (notoncd) (notwanted)
- 1.3 0.4 python-cddb (notoncd) (notwanted)
- 1.3 0.4 python-desktop-agnostic (notoncd) (notwanted)
- 1.3 0.4 python-django-tagging (notoncd) (notwanted)
- 1.3 0.4 python-gammu (notoncd) (notwanted)
- 1.3 0.4 python-magic (notoncd) (notwanted)
- 1.3 0.4 python-mapscript (notoncd) (notwanted)
- 1.3 0.4 python-netaddr (notoncd) (notwanted)
- 1.3 0.4 python-netcdf (notoncd) (notwanted)
- 1.3 0.4 python-osmgpsmap (notoncd) (notwanted)
- 1.3 0.4 python-scapy (notoncd) (notwanted)
- 1.3 0.4 python-scientific (notoncd) (notwanted)
- 1.3 0.4 python-werkzeug (notoncd) (notwanted)
- 1.3 0.4 python-wxglade (notoncd) (notwanted)
- 1.3 0.4 python-xklavier (notwanted)
- 1.3 0.4 python2.5-dev (notoncd) (notwanted)
- 1.3 0.4 rcs (notoncd) (notwanted)
- 1.3 0.4 referencer (notoncd) (notwanted)
- 1.3 0.4 remuco-base (notoncd) (notwanted)
- 1.3 0.4 ruby1.8-dev (notoncd) (notwanted)
- 1.3 0.4 rygel-playbin (notwanted)
- 1.3 0.4 rygel-preferences (notwanted)
- 1.3 0.4 scdaemon (notoncd) (notwanted)
- 1.3 0.4 spe (notoncd) (notwanted)
- 1.3 0.4 sqlitebrowser (notoncd) (notwanted)
- 1.3 0.4 stardict-plugin (notoncd) (notwanted)
- 1.3 0.4 stardict-plugin-espeak (notoncd) (notwanted)
- 1.3 0.4 stardict-plugin-festival (notoncd) (notwanted)
- 1.3 0.4 startupmanager (notoncd) (notwanted)
- 1.3 0.4 synfig (notoncd) (notwanted)
- 1.3 0.4 synfigstudio (notoncd) (notwanted)
- 1.3 0.4 systemimager-initrd-template-i386 (notoncd) (notwanted)
- 1.3 0.4 tcl8.5-dev (notoncd) (notwanted)
- 1.3 0.4 tex4ht (notoncd) (notwanted)
- 1.3 0.4 texlive-games (notoncd) (notwanted)
- 1.3 0.4 texlive-lang-cyrillic (notoncd) (notwanted)
- 1.3 0.4 texlive-lang-italian (notoncd) (notwanted)
- 1.3 0.4 tk8.5-dev (notoncd) (notwanted)
- 1.3 0.4 tkgate (notoncd) (notwanted)
- 1.3 0.4 uml-utilities (notoncd) (notwanted)
- 1.3 0.4 unixodbc-bin (notoncd) (notwanted)
- 1.3 0.4 vim-gtk (notoncd) (notwanted)
- 1.3 0.4 virtualbox-guest-utils (notoncd) (notwanted)
- 1.3 0.4 virtualbox-ose-guest-x11 (notoncd) (notwanted)
- 1.3 0.4 vlc-plugin-sdl (notoncd) (notwanted)
- 1.3 0.4 winpdb (notoncd) (notwanted)
- 1.3 0.4 wswedish (notoncd) (notwanted)
- 1.3 0.4 xfsprogs (notoncd) (notwanted)
- 1.3 0.4 xmoto (notoncd) (notwanted)
- 1.3 0.4 xulrunner-1.9.2 (notoncd) (notwanted)
- 0.9 0.4 abby (notoncd) (notwanted)
- 0.9 0.4 acm (notoncd) (notwanted)
- 0.9 0.4 adept (notoncd) (notwanted)
- 0.9 0.4 adun.app (notoncd) (notwanted)
- 0.9 0.4 aircrack-ng (notoncd) (notwanted)
- 0.9 0.4 alien-arena (notoncd) (notwanted)
- 0.9 0.4 alien-arena-common (notoncd) (notwanted)
- 0.9 0.4 alien-arena-server (notoncd) (notwanted)
- 0.9 0.4 alsaplayer-oss (notoncd) (notwanted)
- 0.9 0.4 amide (notoncd) (notwanted)
- 0.9 0.4 analog (notoncd) (notwanted)
- 0.9 0.4 anjuta-common (notoncd) (notwanted)
- 0.9 0.4 anjuta-extras (notoncd) (notwanted)
- 0.9 0.4 aoetools (notoncd) (notwanted)
- 0.9 0.4 apel (notoncd) (notwanted)
- 0.9 0.4 apt-dater-host (notoncd) (notwanted)
- 0.9 0.4 apt-show-source (notoncd) (notwanted)
- 0.9 0.4 arista (notoncd) (notwanted)
- 0.9 0.4 atris (notoncd) (notwanted)
- 0.9 0.4 audacious-dumb (notoncd) (notwanted)
- 0.9 0.4 augeas-tools (notoncd) (notwanted)
- 0.9 0.4 autoconf2.13 (notoncd) (notwanted)
- 0.9 0.4 avce00 (notoncd) (notwanted)
- 0.9 0.4 awn-settings (notoncd) (notwanted)
- 0.9 0.4 axiom-test (notoncd) (notwanted)
- 0.9 0.4 bacula-fd (notoncd) (notwanted)
- 0.9 0.4 barcode (notoncd) (notwanted)
- 0.9 0.4 bareftp (notoncd) (notwanted)
- 0.9 0.4 barrage (notoncd) (notwanted)
- 0.9 0.4 bastet (notoncd) (notwanted)
- 0.9 0.4 battleball (notoncd) (notwanted)
- 0.9 0.4 bbpager (notoncd) (notwanted)
- 0.9 0.4 bibledit (notoncd) (notwanted)
- 0.9 0.4 bibus (notoncd) (notwanted)
- 0.9 0.4 bibutils (notoncd) (notwanted)
- 0.9 0.4 biloba (notoncd) (notwanted)
- 0.9 0.4 black-box (notoncd) (notwanted)
- 0.9 0.4 blast (notoncd) (notwanted)
- 0.9 0.4 bloboats (notoncd) (notwanted)
- 0.9 0.4 bomberclone (notoncd) (notwanted)
- 0.9 0.4 boxshade (notoncd) (notwanted)
- 0.9 0.4 browser-plugin-vlc (notoncd) (notwanted)
- 0.9 0.4 brscan2 (notoncd) (notwanted)
- 0.9 0.4 brutalchess (notoncd) (notwanted)
- 0.9 0.4 buildbot (notoncd) (notwanted)
- 0.9 0.4 burgerspace (notoncd) (notwanted)
- 0.9 0.4 bximage (notoncd) (notwanted)
- 0.9 0.4 cadabra (notoncd) (notwanted)
- 0.9 0.4 cairo-clock (notoncd) (notwanted)
- 0.9 0.4 cairo-dock-compiz-icon-plugin (notoncd) (notwanted)
- 0.9 0.4 cairo-dock-kde-integration-plugin (notoncd) (notwanted)
- 0.9 0.4 cakephp (notoncd) (notwanted)
- 0.9 0.4 calendar-timezones (notoncd) (notwanted)
- 0.9 0.4 calibre (notoncd) (notwanted)
- 0.9 0.4 calibre-bin (notoncd) (notwanted)
- 0.9 0.4 camorama (notoncd) (notwanted)
- 0.9 0.4 cantor-backend-maxima (notoncd) (notwanted)
- 0.9 0.4 cclive (notoncd) (notwanted)
- 0.9 0.4 cd-discid (notoncd) (notwanted)
- 0.9 0.4 cdtool (notoncd) (notwanted)
- 0.9 0.4 clamtk (notoncd) (notwanted)
- 0.9 0.4 claws-mail-perl-filter (notoncd) (notwanted)
- 0.9 0.4 code-saturne-data (notoncd) (notwanted)
- 0.9 0.4 code-saturne-include (notoncd) (notwanted)
- 0.9 0.4 confluence (notoncd) (notwanted)
- 0.9 0.4 conkeror (notoncd) (notwanted)
- 0.9 0.4 conkeror-spawn-process-helper (notoncd) (notwanted)
- 0.9 0.4 covered (notoncd) (notwanted)
- 0.9 0.4 cowsay (notoncd) (notwanted)
- 0.9 0.4 cpqarrayd (notwanted)
- 0.9 0.4 cque-en (notoncd) (notwanted)
- 0.9 0.4 crack-attack (notoncd) (notwanted)
- 0.9 0.4 crossfire-client (notoncd) (notwanted)
- 0.9 0.4 cruft (notoncd) (notwanted)
- 0.9 0.4 cssed (notoncd) (notwanted)
- 0.9 0.4 dahdi (notoncd) (notwanted)
- 0.9 0.4 dahdi-linux (notoncd) (notwanted)
- 0.9 0.4 darktable (notoncd) (notwanted)
- 0.9 0.4 ddd
- 0.9 0.4 defendguin (notoncd) (notwanted)
- 0.9 0.4 devede (notoncd) (notwanted)
- 0.9 0.4 devhelp-common (notoncd) (notwanted)
- 0.9 0.4 diffpdf (notoncd) (notwanted)
- 0.9 0.4 disktype (notoncd) (notwanted)
- 0.9 0.4 dmake (notoncd) (notwanted)
- 0.9 0.4 docbook-to-man (notoncd) (notwanted)
- 0.9 0.4 drawxtl (notoncd) (notwanted)
- 0.9 0.4 dvbtune (notoncd) (notwanted)
- 0.9 0.4 easyspice (notoncd) (notwanted)
- 0.9 0.4 eboard (notoncd) (notwanted)
- 0.9 0.4 einstein (notoncd) (notwanted)
- 0.9 0.4 electric (notoncd) (notwanted)
- 0.9 0.4 elinks-lite (notoncd) (notwanted)
- 0.9 0.4 elvis-console (notoncd) (notwanted)
- 0.9 0.4 emesene (notoncd) (notwanted)
- 0.9 0.4 enigmail (notoncd) (notwanted)
- 0.9 0.4 epdfview
- 0.9 0.4 erlang-asn1 (notoncd) (notwanted)
- 0.9 0.4 erlang-tools (notoncd) (notwanted)
- 0.9 0.4 erlang-webtool (notoncd) (notwanted)
- 0.9 0.4 erlang-xmerl (notoncd) (notwanted)
- 0.9 0.4 espeakup (notoncd) (notwanted)
- 0.9 0.4 ess (notoncd) (notwanted)
- 0.9 0.4 etoys (notoncd) (notwanted)
- 0.9 0.4 eukleides (notoncd) (notwanted)
- 0.9 0.4 evolution-dbg (notoncd) (notwanted)
- 0.9 0.4 evolution-plugins-experimental (notoncd) (notwanted)
- 0.9 0.4 fgetty (notoncd) (notwanted)
- 0.9 0.4 fglrx-atieventsd (notoncd) (notwanted)
- 0.9 0.4 firestarter (notoncd) (notwanted)
- 0.9 0.4 flexbackup (notoncd) (notwanted)
- 0.9 0.4 foremost (notoncd) (notwanted)
- 0.9 0.4 freedoom (notoncd) (notwanted)
- 0.9 0.4 freemat (notoncd) (notwanted)
- 0.9 0.4 freenx-server (notoncd) (notwanted)
- 0.9 0.4 freeradius-ldap (notoncd) (notwanted)
- 0.9 0.4 freetennis (notoncd) (notwanted)
- 0.9 0.4 gambas2-dev (notoncd) (notwanted)
- 0.9 0.4 gambas2-ide (notoncd) (notwanted)
- 0.9 0.4 gcc-4.4-multilib (notoncd) (notwanted)
- 0.9 0.4 gcj-jdk (notoncd) (notwanted)
- 0.9 0.4 geany-common (notoncd) (notwanted)
- 0.9 0.4 geda-gattrib (notoncd) (notwanted)
- 0.9 0.4 geda-gnetlist (notoncd) (notwanted)
- 0.9 0.4 geda-gschem (notoncd) (notwanted)
- 0.9 0.4 geda-gsymcheck (notoncd) (notwanted)
- 0.9 0.4 geographiclib-tools (notoncd) (notwanted)
- 0.9 0.4 gerbv (notoncd) (notwanted)
- 0.9 0.4 getlive (notoncd) (notwanted)
- 0.9 0.4 gff2aplot (notoncd) (notwanted)
- 0.9 0.4 gff2ps (notoncd) (notwanted)
- 0.9 0.4 gfortran-4.7 (notoncd) (notwanted)
- 0.9 0.4 ghdl (notoncd) (notwanted)
- 0.9 0.4 ginac-tools (notoncd) (notwanted)
- 0.9 0.4 gkrellmoon (notoncd) (notwanted)
- 0.9 0.4 gkrelltop (notoncd) (notwanted)
- 0.9 0.4 gkrellweather (notoncd) (notwanted)
- 0.9 0.4 gl-117 (notoncd) (notwanted)
- 0.9 0.4 gle-graphics (notoncd) (notwanted)
- 0.9 0.4 gltron (notoncd) (notwanted)
- 0.9 0.4 gmameui (notoncd) (notwanted)
- 0.9 0.4 gmsh (notoncd) (notwanted)
- 0.9 0.4 gnat-4.4 (notoncd) (notwanted)
- 0.9 0.4 gnokii-smsd (notoncd) (notwanted)
- 0.9 0.4 gnome-commander (notoncd) (notwanted)
- 0.9 0.4 gnome-common (notoncd) (notwanted)
- 0.9 0.4 gnome-subtitles (notoncd) (notwanted)
- 0.9 0.4 gnomebaker (notoncd) (notwanted)
- 0.9 0.4 gnomint (notoncd) (notwanted)
- 0.9 0.4 gnuboy-x (notoncd) (notwanted)
- 0.9 0.4 gnustep-back0.18-art (notoncd) (notwanted)
- 0.9 0.4 gnustep-gpbs (notoncd) (notwanted)
- 0.9 0.4 gnustep-gui-runtime (notoncd) (notwanted)
- 0.9 0.4 gpart (notoncd) (notwanted)
- 0.9 0.4 gprolog (notoncd) (notwanted)
- 0.9 0.4 gpsd-clients (notoncd) (notwanted)
- 0.9 0.4 gqview (notoncd) (notwanted)
- 0.9 0.4 grads (notoncd) (notwanted)
- 0.9 0.4 grass-gui (notoncd) (notwanted)
- 0.9 0.4 gri (notoncd) (notwanted)
- 0.9 0.4 gringotts (notoncd) (notwanted)
- 0.9 0.4 gsl-bin (notoncd) (notwanted)
- 0.9 0.4 gspiceui (notoncd) (notwanted)
- 0.9 0.4 gst123 (notoncd) (notwanted)
- 0.9 0.4 gstreamer0.10-sdl (notoncd) (notwanted)
- 0.9 0.4 gtk2-engines-qtcurve (notoncd) (notwanted)
- 0.9 0.4 gtkboard (notoncd) (notwanted)
- 0.9 0.4 gtklp (notoncd) (notwanted)
- 0.9 0.4 gtkwave (notoncd) (notwanted)
- 0.9 0.4 guayadeque (notoncd) (notwanted)
- 0.9 0.4 guile-gnome2-gtk (notoncd) (notwanted)
- 0.9 0.4 gwave (notoncd) (notwanted)
- 0.9 0.4 hannah (notoncd) (notwanted)
- 0.9 0.4 highlight (notoncd) (notwanted)
- 0.9 0.4 horae (notoncd) (notwanted)
- 0.9 0.4 hotkeys (notoncd) (notwanted)
- 0.9 0.4 htmldoc (notoncd) (notwanted)
- 0.9 0.4 httrack (notoncd) (notwanted)
- 0.9 0.4 icedove-l10n-da (notoncd) (notwanted)
- 0.9 0.4 idle-python2.6 (notoncd) (notwanted)
- 0.9 0.4 ifeffit (notoncd) (notwanted)
- 0.9 0.4 ifenslave-2.6 (notoncd) (notwanted)
- 0.9 0.4 ifhp (notoncd) (notwanted)
- 0.9 0.4 im-config (notoncd) (notwanted)
- 0.9 0.4 imagej (notoncd) (notwanted)
- 0.9 0.4 imagination (notoncd) (notwanted)
- 0.9 0.4 imms-common (notoncd) (notwanted)
- 0.9 0.4 impose+ (notoncd) (notwanted)
- 0.9 0.4 imvirt (notoncd) (notwanted)
- 0.9 0.4 info2www (notoncd) (notwanted)
- 0.9 0.4 inventor-clients (notoncd) (notwanted)
- 0.9 0.4 istanbul (notoncd) (notwanted)
- 0.9 0.4 jabref (notoncd) (notwanted)
- 0.9 0.4 jester (notoncd) (notwanted)
- 0.9 0.4 jumpnbump (notoncd) (notwanted)
- 0.9 0.4 k3d-data (notoncd) (notwanted)
- 0.9 0.4 kajongg (notoncd) (notwanted)
- 0.9 0.4 kasablanca (notoncd) (notwanted)
- 0.9 0.4 kcheckers (notoncd) (notwanted)
- 0.9 0.4 kdegraphics-mobipocket (notoncd) (notwanted)
- 0.9 0.4 kdesdk-dolphin-plugins (notoncd) (notwanted)
- 0.9 0.4 kdetv (notoncd) (notwanted)
- 0.9 0.4 kdevelop-php (notoncd) (notwanted)
- 0.9 0.4 kdevplatform5-libs (notwanted)
- 0.9 0.4 kdissert (notoncd) (notwanted)
- 0.9 0.4 kid3 (notoncd) (notwanted)
- 0.9 0.4 kino-brightness-contrast-plugin (notoncd) (notwanted)
- 0.9 0.4 kino-hsv-color-space-plugin (notoncd) (notwanted)
- 0.9 0.4 kmymoney (notoncd) (notwanted)
- 0.9 0.4 konwert (notoncd) (notwanted)
- 0.9 0.4 krita (notwanted)
- 0.9 0.4 ksaneplugin (notoncd) (notwanted)
- 0.9 0.4 ktimetrace (notoncd) (notwanted)
- 0.9 0.4 kvpnc (notoncd) (notwanted)
- 0.9 0.4 kwin-style-crystal (notoncd) (notwanted)
- 0.9 0.4 kwin-style-dekorator (notoncd) (notwanted)
- 0.9 0.4 labplot (notoncd) (notwanted)
- 0.9 0.4 latex-cjk-chinese (notoncd) (notwanted)
- 0.9 0.4 latex-cjk-japanese (notoncd) (notwanted)
- 0.9 0.4 latexdiff (notoncd) (notwanted)
- 0.9 0.4 lavaps (notoncd) (notwanted)
- 0.9 0.4 lcdf-typetools (notoncd) (notwanted)
- 0.9 0.4 lgc-pg (notoncd) (notwanted)
- 0.9 0.4 lgeneral (notoncd) (notwanted)
- 0.9 0.4 lha (notoncd) (notwanted)
- 0.9 0.4 lib32asound2-dev (notoncd) (notwanted)
- 0.9 0.4 libactionpack-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libactiveresource-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libalgorithm-c3-perl (notoncd) (notwanted)
- 0.9 0.4 libanyevent-perl (notoncd) (notwanted)
- 0.9 0.4 libao-dev (notoncd) (notwanted)
- 0.9 0.4 libaqbanking-plugins-libgwenhywfar47 (notoncd) (notwanted)
- 0.9 0.4 libaqsis1 (notoncd) (notwanted)
- 0.9 0.4 libatk1-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libaudio-flac-header-perl (notoncd) (notwanted)
- 0.9 0.4 libcairo-ocaml (notoncd) (notwanted)
- 0.9 0.4 libcairo-ocaml-dev (notoncd) (notwanted)
- 0.9 0.4 libcairo-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libcanberra-dev (notoncd) (notwanted)
- 0.9 0.4 libccss-1-5 (notoncd) (notwanted)
- 0.9 0.4 libchemistry-elements-perl (notoncd) (notwanted)
- 0.9 0.4 libchemistry-formula-perl (notoncd) (notwanted)
- 0.9 0.4 libclass-c3-perl (notoncd) (notwanted)
- 0.9 0.4 libclass-c3-xs-perl (notoncd) (notwanted)
- 0.9 0.4 libclass-load-perl (notwanted)
- 0.9 0.4 libclass-methodmaker-perl (notoncd) (notwanted)
- 0.9 0.4 libclass-returnvalue-perl (notoncd) (notwanted)
- 0.9 0.4 libcommandline-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libdaemons-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libdata-ical-perl (notoncd) (notwanted)
- 0.9 0.4 libdate-calc-xs-perl (notoncd) (notwanted)
- 0.9 0.4 libdate-pcalc-perl (notoncd) (notwanted)
- 0.9 0.4 libdatetime-format-strptime-perl (notoncd) (notwanted)
- 0.9 0.4 libdbd-sqlite2-perl (notoncd) (notwanted)
- 0.9 0.4 libdbi-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libdecoration0-dev (notoncd) (notwanted)
- 0.9 0.4 libdeprecated-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libdevel-stacktrace-perl (notoncd) (notwanted)
- 0.9 0.4 libdistro-info-perl (notoncd) (notwanted)
- 0.9 0.4 libdpkg-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libemail-date-format-perl (notoncd) (notwanted)
- 0.9 0.4 libexpect-perl (notoncd) (notwanted)
- 0.9 0.4 libfaad-dev (notoncd) (notwanted)
- 0.9 0.4 libfann-dev (notoncd) (notwanted)
- 0.9 0.4 libfile-rsyncp-perl (notoncd) (notwanted)
- 0.9 0.4 libfindlib-ocaml (notoncd) (notwanted)
- 0.9 0.4 libfindlib-ocaml-dev (notoncd) (notwanted)
- 0.9 0.4 libfm-gtk-bin (notwanted)
- 0.9 0.4 libg3d-plugins (notoncd) (notwanted)
- 0.9 0.4 libg3d0 (notoncd) (notwanted)
- 0.9 0.4 libgcc1-dbg (notoncd) (notwanted)
- 0.9 0.4 libgcj10-dev (notoncd) (notwanted)
- 0.9 0.4 libgd-gd2-noxpm-perl (notoncd) (notwanted)
- 0.9 0.4 libgdk-pixbuf2-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libglade2.0-cil-dev (notoncd) (notwanted)
- 0.9 0.4 libglib2-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libglib2.0-cil-dev (notoncd) (notwanted)
- 0.9 0.4 libgmp3-dev (notoncd) (notwanted)
- 0.9 0.4 libgnome2-gconf-perl (notoncd) (notwanted)
- 0.9 0.4 libgnomedesktop2.20-cil (notoncd) (notwanted)
- 0.9 0.4 libgraph-perl (notoncd) (notwanted)
- 0.9 0.4 libgsf-bin (notoncd) (notwanted)
- 0.9 0.4 libgsl0-dev (notoncd) (notwanted)
- 0.9 0.4 libgtk1.2-dev (notoncd) (notwanted)
- 0.9 0.4 libgtk2-ex-simple-list-perl (notoncd) (notwanted)
- 0.9 0.4 libgtk2-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libgtk2.0-cil-dev (notoncd) (notwanted)
- 0.9 0.4 libgtkspell-dev (notoncd) (notwanted)
- 0.9 0.4 libhttpclient-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libident (notoncd) (notwanted)
- 0.9 0.4 libiec61883-dev (notoncd) (notwanted)
- 0.9 0.4 libifeffit-perl (notoncd) (notwanted)
- 0.9 0.4 libilmbase-dev (notoncd) (notwanted)
- 0.9 0.4 libimvirt-perl (notoncd) (notwanted)
- 0.9 0.4 libinsighttoolkit3.18 (notoncd) (notwanted)
- 0.9 0.4 libio-all-perl (notoncd) (notwanted)
- 0.9 0.4 libio-dirent-perl (notoncd) (notwanted)
- 0.9 0.4 libio-stty-perl (notoncd) (notwanted)
- 0.9 0.4 liblablgtk2-ocaml (notoncd) (notwanted)
- 0.9 0.4 liblablgtk2-ocaml-dev (notoncd) (notwanted)
- 0.9 0.4 liblingua-pt-stemmer-perl (notoncd) (notwanted)
- 0.9 0.4 liblingua-stem-perl (notoncd) (notwanted)
- 0.9 0.4 liblingua-stem-snowball-da-perl (notoncd) (notwanted)
- 0.9 0.4 liblocale-maketext-simple-perl (notoncd) (notwanted)
- 0.9 0.4 liblocale-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 liblog4r-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libmail-pop3client-perl (notoncd) (notwanted)
- 0.9 0.4 libmapnik0.7 (notoncd) (notwanted)
- 0.9 0.4 libmath-combinatorics-perl (notoncd) (notwanted)
- 0.9 0.4 libmath-derivative-perl (notoncd) (notwanted)
- 0.9 0.4 libmath-spline-perl (notoncd) (notwanted)
- 0.9 0.4 libmime-lite-perl (notoncd) (notwanted)
- 0.9 0.4 libmng-dev (notoncd) (notwanted)
- 0.9 0.4 libmocha-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libmodglue1 (notoncd) (notwanted)
- 0.9 0.4 libmodule-find-perl (notoncd) (notwanted)
- 0.9 0.4 libmono-accessibility2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-c5-1.1-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-cil-dev (notoncd) (notwanted)
- 0.9 0.4 libmono-cscompmgd8.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-data-tds1.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-db2-1.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-ldap2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-management2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-messaging-rabbitmq2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-microsoft-build2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-microsoft8.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-npgsql2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-oracle2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-peapi2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-rabbitmq2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-relaxng2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-security1.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-sharpzip0.84-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-sharpzip2.6-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-simd2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-system-data1.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-system-ldap2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-system-runtime2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-system-web-mvc1.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-system-web-mvc2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-system-web1.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-tasklets2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-windowsbase3.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono-winforms2.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmono1.0-cil (notoncd) (notwanted)
- 0.9 0.4 libmpcdec-dev (notoncd) (notwanted)
- 0.9 0.4 libmpg123-dev (notoncd) (notwanted)
- 0.9 0.4 libmro-compat-perl (notoncd) (notwanted)
- 0.9 0.4 libmysqlclient15-dev (notoncd) (notwanted)
- 0.9 0.4 libnet-arp-perl (notoncd) (notwanted)
- 0.9 0.4 libnet-imap-simple-ssl-perl (notoncd) (notwanted)
- 0.9 0.4 libnet-pcap-perl (notoncd) (notwanted)
- 0.9 0.4 libnetcdf-dev (notoncd) (notwanted)
- 0.9 0.4 libnotify0.4-cil (notoncd) (notwanted)
- 0.9 0.4 libnspr4-0d-dbg (notoncd) (notwanted)
- 0.9 0.4 libnumber-compare-perl (notoncd) (notwanted)
- 0.9 0.4 libnumber-format-perl (notoncd) (notwanted)
- 0.9 0.4 libnunit-cil-dev (notoncd) (notwanted)
- 0.9 0.4 libocas-dev (notoncd) (notwanted)
- 0.9 0.4 libocas-tools (notoncd) (notwanted)
- 0.9 0.4 libole-storage-lite-perl (notoncd) (notwanted)
- 0.9 0.4 libopal3.6.6 (notoncd) (notwanted)
- 0.9 0.4 libopen4-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libopenal-dev (notoncd) (notwanted)
- 0.9 0.4 libopenexr-dev (notoncd) (notwanted)
- 0.9 0.4 libopengl-perl (notoncd) (notwanted)
- 0.9 0.4 libopenh323-1.18.0 (notoncd) (notwanted)
- 0.9 0.4 libopenscenegraph65 (notoncd) (notwanted)
- 0.9 0.4 libopenscenegraph80 (notoncd) (notwanted)
- 0.9 0.4 libopts25-dev (notoncd) (notwanted)
- 0.9 0.4 liborbit-dev (notoncd) (notwanted)
- 0.9 0.4 libpackage-stash-xs-perl (notwanted)
- 0.9 0.4 libpango1-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libpdf-reuse-perl (notoncd) (notwanted)
- 0.9 0.4 libphp-adodb (notoncd) (notwanted)
- 0.9 0.4 libplplot9 (notoncd) (notwanted)
- 0.9 0.4 libpt2.6.5-plugins (notoncd) (notwanted)
- 0.9 0.4 libpython3.2 (notoncd) (notwanted)
- 0.9 0.4 libqt3-mt-dev (notoncd) (notwanted)
- 0.9 0.4 libqt4-sql-odbc (notoncd) (notwanted)
- 0.9 0.4 librack-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libredcloth-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libroar-compat2 (notoncd) (notwanted)
- 0.9 0.4 librxtx-java (notoncd) (notwanted)
- 0.9 0.4 libscotch-5.1 (notoncd) (notwanted)
- 0.9 0.4 libsdl-image1.2-dev (notoncd) (notwanted)
- 0.9 0.4 libsdl-mixer1.2-dev (notwanted)
- 0.9 0.4 libsnowball-norwegian-perl (notoncd) (notwanted)
- 0.9 0.4 libsnowball-swedish-perl (notoncd) (notwanted)
- 0.9 0.4 libsoup2.4-dev (notoncd) (notwanted)
- 0.9 0.4 libsox-fmt-pulse (notoncd) (notwanted)
- 0.9 0.4 libspiffy-perl (notoncd) (notwanted)
- 0.9 0.4 libspreadsheet-writeexcel-perl (notoncd) (notwanted)
- 0.9 0.4 libsqlite0-dev (notoncd) (notwanted)
- 0.9 0.4 libsqlite3-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libstartup-notification0-dev (notoncd) (notwanted)
- 0.9 0.4 libstatistics-descriptive-perl (notoncd) (notwanted)
- 0.9 0.4 libstring-crc32-perl (notoncd) (notwanted)
- 0.9 0.4 libsub-exporter-perl (notoncd) (notwanted)
- 0.9 0.4 libsub-identify-perl (notoncd) (notwanted)
- 0.9 0.4 libterm-progressbar-perl (notoncd) (notwanted)
- 0.9 0.4 libterm-readline-perl-perl (notoncd) (notwanted)
- 0.9 0.4 libtext-bidi-perl (notoncd) (notwanted)
- 0.9 0.4 libtext-format-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libtext-german-perl (notoncd) (notwanted)
- 0.9 0.4 libtext-vfile-asdata-perl (notoncd) (notwanted)
- 0.9 0.4 libtime-modules-perl (notoncd) (notwanted)
- 0.9 0.4 libtime-stopwatch-perl (notoncd) (notwanted)
- 0.9 0.4 libtinfo-dev (notoncd) (notwanted)
- 0.9 0.4 libtk-filedialog-perl (notoncd) (notwanted)
- 0.9 0.4 libtk-gbarr-perl (notoncd) (notwanted)
- 0.9 0.4 libtk-histentry-perl (notoncd) (notwanted)
- 0.9 0.4 libtk-pod-perl (notoncd) (notwanted)
- 0.9 0.4 libtk-splashscreen-perl (notoncd) (notwanted)
- 0.9 0.4 libtmail-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libts-dev (notwanted)
- 0.9 0.4 libuconv-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libvideo-capture-v4l-perl (notoncd) (notwanted)
- 0.9 0.4 libvlc-dev (notoncd) (notwanted)
- 0.9 0.4 libvlccore-dev (notoncd) (notwanted)
- 0.9 0.4 libvpb0 (notoncd) (notwanted)
- 0.9 0.4 libwine-oss (notoncd) (notwanted)
- 0.9 0.4 libwnck2.20-cil (notoncd) (notwanted)
- 0.9 0.4 libwwwbrowser-perl (notoncd) (notwanted)
- 0.9 0.4 libxaw7-dev (notoncd) (notwanted)
- 0.9 0.4 libxml-feedpp-perl (notoncd) (notwanted)
- 0.9 0.4 libxml-libxslt-perl (notoncd) (notwanted)
- 0.9 0.4 libxml-parser-ruby1.8 (notoncd) (notwanted)
- 0.9 0.4 libxml-treepp-perl (notoncd) (notwanted)
- 0.9 0.4 libxml-xql-perl (notoncd) (notwanted)
- 0.9 0.4 libxmltv-perl (notoncd) (notwanted)
- 0.9 0.4 libxray-absorption-perl (notoncd) (notwanted)
- 0.9 0.4 libxray-scattering-perl (notoncd) (notwanted)
- 0.9 0.4 link-grammar (notoncd) (notwanted)
- 0.9 0.4 links2 (notoncd) (notwanted)
- 0.9 0.4 linsmith (notoncd) (notwanted)
- 0.9 0.4 linux-headers-3.2.0-4-686-pae (notoncd) (notwanted)
- 0.9 0.4 linux-image-3.2.0-0.bpo.4-686-pae (notoncd) (notwanted)
- 0.9 0.4 linux-image-3.2.0-4-486 (notoncd) (notwanted)
- 0.9 0.4 linuxvnc (notoncd) (notwanted)
- 0.9 0.4 liquidwar-server (notoncd) (notwanted)
- 0.9 0.4 livemedia-utils (notoncd) (notwanted)
- 0.9 0.4 lordsawar (notoncd) (notwanted)
- 0.9 0.4 lrslib (notoncd) (notwanted)
- 0.9 0.4 lrzsz (notoncd) (notwanted)
- 0.9 0.4 lsb-build-base3 (notoncd) (notwanted)
- 0.9 0.4 ltspfsd-core (notwanted)
- 0.9 0.4 magnus (notoncd) (notwanted)
- 0.9 0.4 mail-notification (notoncd) (notwanted)
- 0.9 0.4 mail-notification-evolution (notoncd) (notwanted)
- 0.9 0.4 mailagent (notoncd) (notwanted)
- 0.9 0.4 mapnik-utils (notoncd) (notwanted)
- 0.9 0.4 mapserver-bin (notoncd) (notwanted)
- 0.9 0.4 matchbox-keyboard-im (notoncd) (notwanted)
- 0.9 0.4 mathgl (notoncd) (notwanted)
- 0.9 0.4 matita (notoncd) (notwanted)
- 0.9 0.4 mayavi2 (notoncd) (notwanted)
- 0.9 0.4 mbrola (notoncd) (notwanted)
- 0.9 0.4 milkytracker (notoncd) (notwanted)
- 0.9 0.4 minicom (notoncd) (notwanted)
- 0.9 0.4 mknfonts.tool (notoncd) (notwanted)
- 0.9 0.4 mm3d (notoncd) (notwanted)
- 0.9 0.4 moc (notoncd) (notwanted)
- 0.9 0.4 moc-ffmpeg-plugin (notoncd) (notwanted)
- 0.9 0.4 mono-2.0-service (notoncd) (notwanted)
- 0.9 0.4 mono-csharp-shell (notoncd) (notwanted)
- 0.9 0.4 mono-xbuild (notoncd) (notwanted)
- 0.9 0.4 monodoc-manual (notoncd) (notwanted)
- 0.9 0.4 moon-buggy (notoncd) (notwanted)
- 0.9 0.4 mpc123 (notoncd) (notwanted)
- 0.9 0.4 multisync0.90 (notoncd) (notwanted)
- 0.9 0.4 mumble (notoncd) (notwanted)
- 0.9 0.4 nagstamon (notoncd) (notwanted)
- 0.9 0.4 ncompress (notoncd) (notwanted)
- 0.9 0.4 netwag (notoncd) (notwanted)
- 0.9 0.4 netwox (notoncd) (notwanted)
- 0.9 0.4 nifti-bin (notoncd) (notwanted)
- 0.9 0.4 nis (notoncd) (notwanted)
- 0.9 0.4 nspluginwrapper (notoncd) (notwanted)
- 0.9 0.4 ntfs-config (notoncd) (notwanted)
- 0.9 0.4 ocaml-findlib (notoncd) (notwanted)
- 0.9 0.4 octave-miscellaneous (notoncd) (notwanted)
- 0.9 0.4 octave-optim (notoncd) (notwanted)
- 0.9 0.4 octave-signal (notoncd) (notwanted)
- 0.9 0.4 octave-specfun (notoncd) (notwanted)
- 0.9 0.4 octave3.2 (notoncd) (notwanted)
- 0.9 0.4 oolite (notoncd) (notwanted)
- 0.9 0.4 oolite-data (notoncd) (notwanted)
- 0.9 0.4 openarena (notoncd) (notwanted)
- 0.9 0.4 openarena-server (notoncd) (notwanted)
- 0.9 0.4 opencubicplayer (notoncd) (notwanted)
- 0.9 0.4 opendict (notoncd) (notwanted)
- 0.9 0.4 openjdk-7-jre-headless (notoncd) (notwanted)
- 0.9 0.4 openjump (notoncd) (notwanted)
- 0.9 0.4 openrocket (notoncd) (notwanted)
- 0.9 0.4 openscenegraph (notoncd) (notwanted)
- 0.9 0.4 openvas-plugins-base (notoncd) (notwanted)
- 0.9 0.4 openvas-plugins-dfsg (notoncd) (notwanted)
- 0.9 0.4 openvas-server (notoncd) (notwanted)
- 0.9 0.4 ophcrack (notoncd) (notwanted)
- 0.9 0.4 orbit (notoncd) (notwanted)
- 0.9 0.4 osm2pgsql (notoncd) (notwanted)
- 0.9 0.4 p0f (notoncd) (notwanted)
- 0.9 0.4 p7zip-rar (notoncd) (notwanted)
- 0.9 0.4 padevchooser (notoncd) (notwanted)
- 0.9 0.4 pcb-gtk (notoncd) (notwanted)
- 0.9 0.4 pfb2t1c2pfb (notoncd) (notwanted)
- 0.9 0.4 phatch (notoncd) (notwanted)
- 0.9 0.4 phatch-cli (notoncd) (notwanted)
- 0.9 0.4 php-benchmark (notoncd) (notwanted)
- 0.9 0.4 php-codecoverage (notoncd) (notwanted)
- 0.9 0.4 php-file-iterator (notoncd) (notwanted)
- 0.9 0.4 php-fpdf (notoncd) (notwanted)
- 0.9 0.4 php-net-ldap (notoncd) (notwanted)
- 0.9 0.4 php-symfony-yaml (notoncd) (notwanted)
- 0.9 0.4 php-text-template (notoncd) (notwanted)
- 0.9 0.4 php-timer (notoncd) (notwanted)
- 0.9 0.4 php-token-stream (notoncd) (notwanted)
- 0.9 0.4 php-xml-parser (notoncd) (notwanted)
- 0.9 0.4 phppgadmin (notoncd) (notwanted)
- 0.9 0.4 phpunit (notoncd) (notwanted)
- 0.9 0.4 phpunit-mock-object (notoncd) (notwanted)
- 0.9 0.4 pidgin-skype (notoncd) (notwanted)
- 0.9 0.4 pinball (notoncd) (notwanted)
- 0.9 0.4 plasmidomics (notoncd) (notwanted)
- 0.9 0.4 playonlinux (notoncd) (notwanted)
- 0.9 0.4 pnscan (notoncd) (notwanted)
- 0.9 0.4 poedit (notoncd) (notwanted)
- 0.9 0.4 postgis (notoncd) (notwanted)
- 0.9 0.4 postgresql-client-8.3 (notoncd) (notwanted)
- 0.9 0.4 postgresql-contrib-8.4 (notoncd) (notwanted)
- 0.9 0.4 potrace (notoncd) (notwanted)
- 0.9 0.4 pppstatus (notoncd) (notwanted)
- 0.9 0.4 prboom (notoncd) (notwanted)
- 0.9 0.4 proofgeneral (notoncd) (notwanted)
- 0.9 0.4 proofgeneral-misc (notoncd) (notwanted)
- 0.9 0.4 pybliographer (notoncd) (notwanted)
- 0.9 0.4 python-4suite-xml (notoncd) (notwanted)
- 0.9 0.4 python-apptools (notoncd) (notwanted)
- 0.9 0.4 python-awn (notoncd) (notwanted)
- 0.9 0.4 python-bibtex (notoncd) (notwanted)
- 0.9 0.4 python-boto (notoncd) (notwanted)
- 0.9 0.4 python-cherrypy3 (notoncd) (notwanted)
- 0.9 0.4 python-cjson (notwanted)
- 0.9 0.4 python-cssutils (notoncd) (notwanted)
- 0.9 0.4 python-django-registration (notoncd) (notwanted)
- 0.9 0.4 python-fuse (notoncd) (notwanted)
- 0.9 0.4 python-gobject-2-dev (notoncd) (notwanted)
- 0.9 0.4 python-gpgme (notoncd) (notwanted)
- 0.9 0.4 python-gpod (notoncd) (notwanted)
- 0.9 0.4 python-gps (notoncd) (notwanted)
- 0.9 0.4 python-gtk-vnc (notoncd) (notwanted)
- 0.9 0.4 python-gudev (notoncd) (notwanted)
- 0.9 0.4 python-gweather (notoncd) (notwanted)
- 0.9 0.4 python-hulahop (notoncd) (notwanted)
- 0.9 0.4 python-libmimic (notoncd) (notwanted)
- 0.9 0.4 python-libvirt (notoncd) (notwanted)
- 0.9 0.4 python-mapnik (notoncd) (notwanted)
- 0.9 0.4 python-migrate (notoncd) (notwanted)
- 0.9 0.4 python-moinmoin (notoncd) (notwanted)
- 0.9 0.4 python-nose (notoncd) (notwanted)
- 0.9 0.4 python-opencv (notoncd) (notwanted)
- 0.9 0.4 python-parsedatetime (notoncd) (notwanted)
- 0.9 0.4 python-pyevolve (notoncd) (notwanted)
- 0.9 0.4 python-pyexiv2 (notoncd) (notwanted)
- 0.9 0.4 python-pyicu (notoncd) (notwanted)
- 0.9 0.4 python-qt4-phonon (notoncd) (notwanted)
- 0.9 0.4 python-qt4-sql (notoncd) (notwanted)
- 0.9 0.4 python-rpy2 (notoncd) (notwanted)
- 0.9 0.4 python-simplegeneric (notoncd) (notwanted)
- 0.9 0.4 python-tables (notoncd) (notwanted)
- 0.9 0.4 python-tempita (notoncd) (notwanted)
- 0.9 0.4 python-urlgrabber (notoncd) (notwanted)
- 0.9 0.4 python-vtk (notoncd) (notwanted)
- 0.9 0.4 python-xpcom (notoncd) (notwanted)
- 0.9 0.4 python2.4-dev (notoncd) (notwanted)
- 0.9 0.4 python3.2 (notoncd) (notwanted)
- 0.9 0.4 pyvnc2swf (notoncd) (notwanted)
- 0.9 0.4 qcam (notoncd) (notwanted)
- 0.9 0.4 qcomicbook (notoncd) (notwanted)
- 0.9 0.4 qelectrotech (notoncd) (notwanted)
- 0.9 0.4 qemu-kvm (notoncd) (notwanted)
- 0.9 0.4 qlandkartegt (notoncd) (notwanted)
- 0.9 0.4 qlandkartegt-garmin (notoncd) (notwanted)
- 0.9 0.4 qpopper (notoncd) (notwanted)
- 0.9 0.4 qtiplot (notoncd) (notwanted)
- 0.9 0.4 qtnx (notoncd) (notwanted)
- 0.9 0.4 r-cran-design (notoncd) (notwanted)
- 0.9 0.4 r-cran-fecofin (notoncd) (notwanted)
- 0.9 0.4 r-cran-g.data (notoncd) (notwanted)
- 0.9 0.4 r-cran-rpvm (notoncd) (notwanted)
- 0.9 0.4 r-other-bio3d (notoncd) (notwanted)
- 0.9 0.4 r-other-mott-happy (notoncd) (notwanted)
- 0.9 0.4 rake (notoncd) (notwanted)
- 0.9 0.4 rat (notoncd) (notwanted)
- 0.9 0.4 rc (notoncd) (notwanted)
- 0.9 0.4 re (notoncd) (notwanted)
- 0.9 0.4 regionset (notoncd) (notwanted)
- 0.9 0.4 renameutils (notoncd) (notwanted)
- 0.9 0.4 rfkill (notwanted)
- 0.9 0.4 rplay-client (notoncd) (notwanted)
- 0.9 0.4 rss-glx (notoncd) (notwanted)
- 0.9 0.4 rtmpdump (notoncd) (notwanted)
- 0.9 0.4 ruby-atk (notoncd) (notwanted)
- 0.9 0.4 ruby-cairo (notoncd) (notwanted)
- 0.9 0.4 ruby-gdk-pixbuf2 (notoncd) (notwanted)
- 0.9 0.4 ruby-glib2 (notoncd) (notwanted)
- 0.9 0.4 ruby-gtk2 (notoncd) (notwanted)
- 0.9 0.4 ruby-pango (notoncd) (notwanted)
- 0.9 0.4 rubygems1.8 (notoncd) (notwanted)
- 0.9 0.4 runit (notoncd) (notwanted)
- 0.9 0.4 sa-exim (notoncd) (notwanted)
- 0.9 0.4 saga (notoncd) (notwanted)
- 0.9 0.4 schism (notoncd) (notwanted)
- 0.9 0.4 scilab-ann (notoncd) (notwanted)
- 0.9 0.4 scilab-overload (notoncd) (notwanted)
- 0.9 0.4 scilab-scimax (notoncd) (notwanted)
- 0.9 0.4 scilab-scimax-doc (notoncd) (notwanted)
- 0.9 0.4 scim-bridge-agent (notoncd) (notwanted)
- 0.9 0.4 sepiida-agent (notoncd) (notwanted)
- 0.9 0.4 sessioninstaller (notoncd) (notwanted)
- 0.9 0.4 sgt-puzzles (notoncd) (notwanted)
- 0.9 0.4 siggen (notoncd) (notwanted)
- 0.9 0.4 sl (notoncd) (notwanted)
- 0.9 0.4 slang-cfitsio (notoncd) (notwanted)
- 0.9 0.4 slay (notoncd) (notwanted)
- 0.9 0.4 speedy-cgi-perl (notoncd) (notwanted)
- 0.9 0.4 spring (notoncd) (notwanted)
- 0.9 0.4 springlobby (notoncd) (notwanted)
- 0.9 0.4 squidview (notoncd) (notwanted)
- 0.9 0.4 ssh-askpass-gnome (notoncd) (notwanted)
- 0.9 0.4 staden-io-lib-utils (notoncd) (notwanted)
- 0.9 0.4 stardict-gtk (notoncd) (notwanted)
- 0.9 0.4 stardict-plugin-gucharmap (notoncd) (notwanted)
- 0.9 0.4 svgpart (notoncd) (notwanted)
- 0.9 0.4 sweethome3d (notoncd) (notwanted)
- 0.9 0.4 syslog-summary (notoncd) (notwanted)
- 0.9 0.4 t1utils (notoncd) (notwanted)
- 0.9 0.4 tcl8.5-kwwidgets (notoncd) (notwanted)
- 0.9 0.4 tdfsb (notoncd) (notwanted)
- 0.9 0.4 tdsodbc (notoncd) (notwanted)
- 0.9 0.4 telepathy-idle (notwanted)
- 0.9 0.4 tellico (notoncd) (notwanted)
- 0.9 0.4 tessa (notoncd) (notwanted)
- 0.9 0.4 tesseract-ocr (notoncd) (notwanted)
- 0.9 0.4 texlive-lang-czechslovak (notoncd) (notwanted)
- 0.9 0.4 texlive-xetex (notoncd) (notwanted)
- 0.9 0.4 texmacs (notoncd) (notwanted)
- 0.9 0.4 texworks (notoncd) (notwanted)
- 0.9 0.4 totem-gstreamer (notoncd) (notwanted)
- 0.9 0.4 tp-smapi-dkms (notoncd) (notwanted)
- 0.9 0.4 transcode-utils (notoncd) (notwanted)
- 0.9 0.4 transmission-cli (notoncd) (notwanted)
- 0.9 0.4 tsocks (notoncd) (notwanted)
- 0.9 0.4 tuxcmd (notoncd) (notwanted)
- 0.9 0.4 twinkle (notoncd) (notwanted)
- 0.9 0.4 udav (notoncd) (notwanted)
- 0.9 0.4 ufc (notoncd) (notwanted)
- 0.9 0.4 unmo3 (notoncd) (notwanted)
- 0.9 0.4 uw-imapd (notoncd) (notwanted)
- 0.9 0.4 valac (notoncd) (notwanted)
- 0.9 0.4 virt-manager (notoncd) (notwanted)
- 0.9 0.4 virt-viewer (notoncd) (notwanted)
- 0.9 0.4 virtinst (notoncd) (notwanted)
- 0.9 0.4 virtuoso-opensource-6.1 (notoncd) (notwanted)
- 0.9 0.4 virtuoso-vsp-startpage (notoncd) (notwanted)
- 0.9 0.4 vlc-dbg (notoncd) (notwanted)
- 0.9 0.4 vlc-plugin-ggi (notoncd) (notwanted)
- 0.9 0.4 vnc-common (notoncd) (notwanted)
- 0.9 0.4 vobcopy (notoncd) (notwanted)
- 0.9 0.4 warzone2100 (notoncd) (notwanted)
- 0.9 0.4 wesnoth-1.10-core (notoncd) (notwanted)
- 0.9 0.4 wesnoth-1.8-core (notoncd) (notwanted)
- 0.9 0.4 winff (notoncd) (notwanted)
- 0.9 0.4 witalian
- 0.9 0.4 wmaker (notoncd) (notwanted)
- 0.9 0.4 wpolish (notoncd) (notwanted)
- 0.9 0.4 wportuguese (notoncd) (notwanted)
- 0.9 0.4 wvdial (notoncd) (notwanted)
- 0.9 0.4 x11proto-print-dev (notoncd) (notwanted)
- 0.9 0.4 xchat
- 0.9 0.4 xfce4-indicator-plugin (notoncd) (notwanted)
- 0.9 0.4 xfce4-linelight-plugin (notoncd) (notwanted)
- 0.9 0.4 xfce4-messenger-plugin (notoncd) (notwanted)
- 0.9 0.4 xfce4-power-manager-plugins (notoncd) (notwanted)
- 0.9 0.4 xfireworks (notoncd) (notwanted)
- 0.9 0.4 xfrisk (notoncd) (notwanted)
- 0.9 0.4 xgnokii (notoncd) (notwanted)
- 0.9 0.4 xine-plugin (notoncd) (notwanted)
- 0.9 0.4 xinv3d (notoncd) (notwanted)
- 0.9 0.4 xmlto (notoncd) (notwanted)
- 0.9 0.4 xmms (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-airplay (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-ao (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-apefile (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-asf (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-asx (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-avcodec (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-cdda (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-cue (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-curl (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-daap (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-faad (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-flac (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-flv (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-gme (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-gvfs (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-html (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-ices (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-icymetaint (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-jack (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-karaoke (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-m3u (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-mms (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-modplug (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-mp4 (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-mpg123 (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-musepack (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-normalize (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-ofa (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-oss (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-pls (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-pulse (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-rss (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-sid (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-smb (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-speex (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-tta (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-vocoder (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-wavpack (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-xml (notoncd) (notwanted)
- 0.9 0.4 xmms2-plugin-xspf (notoncd) (notwanted)
- 0.9 0.4 xmp (notoncd) (notwanted)
- 0.9 0.4 xoscope (notwanted)
- 0.9 0.4 xracer (notoncd) (notwanted)
- 0.9 0.4 xracer-tools (notoncd) (notwanted)
- 0.9 0.4 xserver-xorg-video-ivtv (notoncd) (notwanted)
- 0.9 0.4 xsettings-kde (notoncd) (notwanted)
- 0.9 0.4 xsoldier (notoncd) (notwanted)
- 0.9 0.4 xteddy (notoncd) (notwanted)
- 0.9 0.4 xulrunner-1.9-gnome-support (notoncd) (notwanted)
- 0.9 0.4 xvidcap (notoncd) (notwanted)
- 0.9 0.4 xxkb (notoncd) (notwanted)
- 0.9 0.4 youtube-dl (notoncd) (notwanted)
- 0.9 0.4 zbar-tools (notoncd) (notwanted)
- 0.9 0.4 zivot (notoncd) (notwanted)
- 0.9 0.4 zsync (notoncd) (notwanted)
- 0.4 0.4 2mandvd (notoncd) (notwanted)
- 0.4 0.4 4g8 (notoncd) (notwanted)
- 0.4 0.4 9menu (notoncd) (notwanted)
- 0.4 0.4 9wm (notoncd) (notwanted)
- 0.4 0.4 a7xpg (notoncd) (notwanted)
- 0.4 0.4 aajm (notoncd) (notwanted)
- 0.4 0.4 aaphoto (notoncd) (notwanted)
- 0.4 0.4 abakus (notoncd) (notwanted)
- 0.4 0.4 abe (notoncd) (notwanted)
- 0.4 0.4 aboot-cross (notoncd) (notwanted)
- 0.4 0.4 abraca (notoncd) (notwanted)
- 0.4 0.4 abuse (notoncd) (notwanted)
- 0.4 0.4 accerciser (notoncd) (notwanted)
- 0.4 0.4 acetoneiso (notoncd) (notwanted)
- 0.4 0.4 acheck (notoncd) (notwanted)
- 0.4 0.4 acidbase (notoncd) (notwanted)
- 0.4 0.4 aclock.app (notoncd) (notwanted)
- 0.4 0.4 acm4 (notoncd) (notwanted)
- 0.4 0.4 aconnectgui (notoncd) (notwanted)
- 0.4 0.4 acorn-fdisk (notoncd) (notwanted)
- 0.4 0.4 acpidump (notoncd) (notwanted)
- 0.4 0.4 acroread-fonts-jpn (notoncd) (notwanted)
- 0.4 0.4 acroread-plugin-speech (notoncd) (notwanted)
- 0.4 0.4 adanaxisgpl (notoncd) (notwanted)
- 0.4 0.4 addressmanager.app (notoncd) (notwanted)
- 0.4 0.4 adjtimex (notoncd) (notwanted)
- 0.4 0.4 adobe-flashplugin (notoncd) (notwanted)
- 0.4 0.4 adobereader-esp (notoncd) (notwanted)
- 0.4 0.4 adonthell (notoncd) (notwanted)
- 0.4 0.4 adonthell-data (notoncd) (notwanted)
- 0.4 0.4 adplay (notoncd) (notwanted)
- 0.4 0.4 adplug-utils (notoncd) (notwanted)
- 0.4 0.4 adtool (notoncd) (notwanted)
- 0.4 0.4 adtos (notoncd) (notwanted)
- 0.4 0.4 aee (notoncd) (notwanted)
- 0.4 0.4 aeolus (notoncd) (notwanted)
- 0.4 0.4 aewm (notoncd) (notwanted)
- 0.4 0.4 aewm++ (notoncd) (notwanted)
- 0.4 0.4 aewm++-goodies (notoncd) (notwanted)
- 0.4 0.4 affiche.app (notoncd) (notwanted)
- 0.4 0.4 afnix (notoncd) (notwanted)
- 0.4 0.4 afterstep (notoncd) (notwanted)
- 0.4 0.4 agave (notoncd) (notwanted)
- 0.4 0.4 agenda.app (notoncd) (notwanted)
- 0.4 0.4 aggregate (notoncd) (notwanted)
- 0.4 0.4 agrep (notoncd) (notwanted)
- 0.4 0.4 airstrike (notoncd) (notwanted)
- 0.4 0.4 akonadi-kde-resource-googledata (notoncd) (notwanted)
- 0.4 0.4 album (notoncd) (notwanted)
- 0.4 0.4 album-data (notoncd) (notwanted)
- 0.4 0.4 albumshaper (notoncd) (notwanted)
- 0.4 0.4 ale (notoncd) (notwanted)
- 0.4 0.4 alevt (notoncd) (notwanted)
- 0.4 0.4 alex4 (notoncd) (notwanted)
- 0.4 0.4 alexandria (notoncd) (notwanted)
- 0.4 0.4 alienblaster (notoncd) (notwanted)
- 0.4 0.4 allegro-demo (notoncd) (notwanted)
- 0.4 0.4 almanah (notoncd) (notwanted)
- 0.4 0.4 alsaplayer-daemon (notoncd) (notwanted)
- 0.4 0.4 alsaplayer-esd (notoncd) (notwanted)
- 0.4 0.4 alsaplayer-jack (notoncd) (notwanted)
- 0.4 0.4 alsaplayer-nas (notoncd) (notwanted)
- 0.4 0.4 alsaplayer-text (notoncd) (notwanted)
- 0.4 0.4 alsaplayer-xosd (notoncd) (notwanted)
- 0.4 0.4 alsoft-conf (notoncd) (notwanted)
- 0.4 0.4 amb-plugins (notoncd) (notwanted)
- 0.4 0.4 amd64-microcode (notoncd) (notwanted)
- 0.4 0.4 amiga-fdisk-cross (notoncd) (notwanted)
- 0.4 0.4 amoeba (notoncd) (notwanted)
- 0.4 0.4 amora-applet (notoncd) (notwanted)
- 0.4 0.4 amora-cli (notoncd) (notwanted)
- 0.4 0.4 ampache (notoncd) (notwanted)
- 0.4 0.4 ampache-themes (notoncd) (notwanted)
- 0.4 0.4 amphetamine (notoncd) (notwanted)
- 0.4 0.4 ams (notoncd) (notwanted)
- 0.4 0.4 amsynth (notoncd) (notwanted)
- 0.4 0.4 amule-utils-gui (notoncd) (notwanted)
- 0.4 0.4 an (notoncd) (notwanted)
- 0.4 0.4 and (notoncd) (notwanted)
- 0.4 0.4 angband (notoncd) (notwanted)
- 0.4 0.4 angrydd (notoncd) (notwanted)
- 0.4 0.4 animals-dbg (notoncd) (notwanted)
- 0.4 0.4 anjuta-dbg (notoncd) (notwanted)
- 0.4 0.4 anki (notoncd) (notwanted)
- 0.4 0.4 ant-gcj (notoncd) (notwanted)
- 0.4 0.4 antigravitaattori (notoncd) (notwanted)
- 0.4 0.4 ants (notoncd) (notwanted)
- 0.4 0.4 anyremote (notoncd) (notwanted)
- 0.4 0.4 aolserver4-core (notoncd) (notwanted)
- 0.4 0.4 aolserver4-daemon (notoncd) (notwanted)
- 0.4 0.4 aolserver4-dev (notoncd) (notwanted)
- 0.4 0.4 aolserver4-nspostgres (notoncd) (notwanted)
- 0.4 0.4 aolserver4-nssha1 (notoncd) (notwanted)
- 0.4 0.4 aolserver4-xotcl (notoncd) (notwanted)
- 0.4 0.4 aosd-cat (notoncd) (notwanted)
- 0.4 0.4 apache2-bin (notoncd) (notwanted)
- 0.4 0.4 apache2-mpm-itk (notoncd) (notwanted)
- 0.4 0.4 apachetop (notoncd) (notwanted)
- 0.4 0.4 apt-cacher (notoncd) (notwanted)
- 0.4 0.4 apt-forktracer (notoncd) (notwanted)
- 0.4 0.4 apt-listbugs (notoncd) (notwanted)
- 0.4 0.4 apt-move (notoncd) (notwanted)
- 0.4 0.4 apt-offline (notoncd) (notwanted)
- 0.4 0.4 apt-src (notoncd) (notwanted)
- 0.4 0.4 apt-transport-debtorrent (notoncd) (notwanted)
- 0.4 0.4 apt-transport-https (notoncd) (notwanted)
- 0.4 0.4 apt-watch-backend (notoncd) (notwanted)
- 0.4 0.4 apt-watch-gnome (notoncd) (notwanted)
- 0.4 0.4 aptitude-gtk (notoncd) (notwanted)
- 0.4 0.4 aptoncd (notoncd) (notwanted)
- 0.4 0.4 aptsh (notoncd) (notwanted)
- 0.4 0.4 apwal (notoncd) (notwanted)
- 0.4 0.4 aqemu (notoncd) (notwanted)
- 0.4 0.4 aqualung
- 0.4 0.4 arandr (notoncd) (notwanted)
- 0.4 0.4 arduino (notoncd) (notwanted)
- 0.4 0.4 arduino-core (notoncd) (notwanted)
- 0.4 0.4 arename (notoncd) (notwanted)
- 0.4 0.4 aria2 (notoncd) (notwanted)
- 0.4 0.4 ario (notoncd) (notwanted)
- 0.4 0.4 armagetronad-dedicated (notoncd) (notwanted)
- 0.4 0.4 arp-scan (notoncd) (notwanted)
- 0.4 0.4 arpon (notoncd) (notwanted)
- 0.4 0.4 arrayprobe (notoncd) (notwanted)
- 0.4 0.4 asc (notoncd) (notwanted)
- 0.4 0.4 asciijump (notoncd) (notwanted)
- 0.4 0.4 asclock (notoncd) (notwanted)
- 0.4 0.4 ash (notoncd) (notwanted)
- 0.4 0.4 asmix (notoncd) (notwanted)
- 0.4 0.4 asmixer (notoncd) (notwanted)
- 0.4 0.4 asmon (notoncd) (notwanted)
- 0.4 0.4 asp.net-examples (notoncd) (notwanted)
- 0.4 0.4 asp.net2-examples (notoncd) (notwanted)
- 0.4 0.4 aspell-ar-large (notoncd) (notwanted)
- 0.4 0.4 aspell-it (notoncd) (notwanted)
- 0.4 0.4 asql (notoncd) (notwanted)
- 0.4 0.4 astyle (notoncd) (notwanted)
- 0.4 0.4 asunder (notoncd) (notwanted)
- 0.4 0.4 aswiki (notoncd) (notwanted)
- 0.4 0.4 asylum (notoncd) (notwanted)
- 0.4 0.4 atari800 (notoncd) (notwanted)
- 0.4 0.4 aterm (notoncd) (notwanted)
- 0.4 0.4 aterm-ml (notoncd) (notwanted)
- 0.4 0.4 atlc (notoncd) (notwanted)
- 0.4 0.4 atomicparsley (notoncd) (notwanted)
- 0.4 0.4 atsar (notoncd) (notwanted)
- 0.4 0.4 attal (notoncd) (notwanted)
- 0.4 0.4 aubio-tools (notoncd) (notwanted)
- 0.4 0.4 auctex (notwanted)
- 0.4 0.4 audacity-dbg (notoncd) (notwanted)
- 0.4 0.4 audex (notoncd) (notwanted)
- 0.4 0.4 audiolink (notoncd) (notwanted)
- 0.4 0.4 audiopreview (notoncd) (notwanted)
- 0.4 0.4 audispd-plugins (notoncd) (notwanted)
- 0.4 0.4 auditd (notoncd) (notwanted)
- 0.4 0.4 aumix-gtk (notoncd) (notwanted)
- 0.4 0.4 auth2db (notoncd) (notwanted)
- 0.4 0.4 auth2db-frontend (notoncd) (notwanted)
- 0.4 0.4 auto-apt (notoncd) (notwanted)
- 0.4 0.4 autokey-gtk (notoncd) (notwanted)
- 0.4 0.4 autokey-qt (notoncd) (notwanted)
- 0.4 0.4 autolog (notoncd) (notwanted)
- 0.4 0.4 automysqlbackup (notoncd) (notwanted)
- 0.4 0.4 autopsy (notoncd) (notwanted)
- 0.4 0.4 avarice (notoncd) (notwanted)
- 0.4 0.4 avfs (notoncd) (notwanted)
- 0.4 0.4 avidemux-qt (notoncd) (notwanted)
- 0.4 0.4 avifile-mad-plugin (notoncd) (notwanted)
- 0.4 0.4 avifile-vorbis-plugin (notoncd) (notwanted)
- 0.4 0.4 avr-libc (notoncd) (notwanted)
- 0.4 0.4 avra (notoncd) (notwanted)
- 0.4 0.4 avrdude (notoncd) (notwanted)
- 0.4 0.4 avrp (notoncd) (notwanted)
- 0.4 0.4 avrprog (notoncd) (notwanted)
- 0.4 0.4 awn-applets-c-core (notoncd) (notwanted)
- 0.4 0.4 awn-applets-c-extras (notoncd) (notwanted)
- 0.4 0.4 awstats (notoncd) (notwanted)
- 0.4 0.4 aylet (notoncd) (notwanted)
- 0.4 0.4 ayttm (notoncd) (notwanted)
- 0.4 0.4 backup-manager (notoncd) (notwanted)
- 0.4 0.4 backupninja (notoncd) (notwanted)
- 0.4 0.4 backuppc (notoncd) (notwanted)
- 0.4 0.4 balazar (notoncd) (notwanted)
- 0.4 0.4 balazar3-common (notoncd) (notwanted)
- 0.4 0.4 balazarbrothers (notoncd) (notwanted)
- 0.4 0.4 ballz (notoncd) (notwanted)
- 0.4 0.4 balsa (notoncd) (notwanted)
- 0.4 0.4 balsa-dbg (notoncd) (notwanted)
- 0.4 0.4 bangarang (notoncd) (notwanted)
- 0.4 0.4 banshee (notoncd) (notwanted)
- 0.4 0.4 banshee-dbg (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-alarm (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-awn (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-coverwallpaper (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-lcd (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-liveradio (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-lyrics (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-magnatune (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-mirage (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-radiostationfetcher (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-streamrecorder (notoncd) (notwanted)
- 0.4 0.4 banshee-extension-telepathy (notoncd) (notwanted)
- 0.4 0.4 basket (notoncd) (notwanted)
- 0.4 0.4 batmon.app (notoncd) (notwanted)
- 0.4 0.4 battery-stats (notoncd) (notwanted)
- 0.4 0.4 bbmail (notoncd) (notwanted)
- 0.4 0.4 bchunk (notoncd) (notwanted)
- 0.4 0.4 bcpp (notoncd) (notwanted)
- 0.4 0.4 bcrelay (notoncd) (notwanted)
- 0.4 0.4 bdf2psf (notoncd) (notwanted)
- 0.4 0.4 bear-factory (notoncd) (notwanted)
- 0.4 0.4 beav (notoncd) (notwanted)
- 0.4 0.4 beep (notoncd) (notwanted)
- 0.4 0.4 beep-media-player (notoncd) (notwanted)
- 0.4 0.4 beid-common (notoncd) (notwanted)
- 0.4 0.4 beidgui (notoncd) (notwanted)
- 0.4 0.4 beneath-a-steel-sky (notoncd) (notwanted)
- 0.4 0.4 berusky (notoncd) (notwanted)
- 0.4 0.4 bibledit-bibletime (notoncd) (notwanted)
- 0.4 0.4 bibledit-gtk (notoncd) (notwanted)
- 0.4 0.4 bibledit-xiphos (notoncd) (notwanted)
- 0.4 0.4 biblememorizer (notoncd) (notwanted)
- 0.4 0.4 bickley-daemons (notoncd) (notwanted)
- 0.4 0.4 biniax2 (notoncd) (notwanted)
- 0.4 0.4 binstats (notoncd) (notwanted)
- 0.4 0.4 binutils-gold (notoncd) (notwanted)
- 0.4 0.4 biococoa.app (notoncd) (notwanted)
- 0.4 0.4 bisonc++ (notoncd) (notwanted)
- 0.4 0.4 bist (notoncd) (notwanted)
- 0.4 0.4 bitmeter (notoncd) (notwanted)
- 0.4 0.4 bittornado (notoncd) (notwanted)
- 0.4 0.4 bittorrent-gui (notoncd) (notwanted)
- 0.4 0.4 bkhive (notoncd) (notwanted)
- 0.4 0.4 bladeenc (notoncd) (notwanted)
- 0.4 0.4 blam (notoncd) (notwanted)
- 0.4 0.4 blepvco (notoncd) (notwanted)
- 0.4 0.4 bless (notoncd) (notwanted)
- 0.4 0.4 blobandconquer (notoncd) (notwanted)
- 0.4 0.4 blobandconquer-data (notoncd) (notwanted)
- 0.4 0.4 blobby (notoncd) (notwanted)
- 0.4 0.4 blobby-server (notoncd) (notwanted)
- 0.4 0.4 blockade (notoncd) (notwanted)
- 0.4 0.4 blockattack (notoncd) (notwanted)
- 0.4 0.4 blockout2 (notoncd) (notwanted)
- 0.4 0.4 blocks-of-the-undead (notoncd) (notwanted)
- 0.4 0.4 blop (notoncd) (notwanted)
- 0.4 0.4 bluefish-dbg (notoncd) (notwanted)
- 0.4 0.4 bluemindo (notoncd) (notwanted)
- 0.4 0.4 bnd (notoncd) (notwanted)
- 0.4 0.4 boats (notoncd) (notwanted)
- 0.4 0.4 bombardier (notoncd) (notwanted)
- 0.4 0.4 boo (notoncd) (notwanted)
- 0.4 0.4 bootcd (notoncd) (notwanted)
- 0.4 0.4 boswars (notoncd) (notwanted)
- 0.4 0.4 bottlerocket (notoncd) (notwanted)
- 0.4 0.4 bouncy (notoncd) (notwanted)
- 0.4 0.4 bplay (notoncd) (notwanted)
- 0.4 0.4 brightside (notoncd) (notwanted)
- 0.4 0.4 bristol (notoncd) (notwanted)
- 0.4 0.4 brlcad (notoncd) (notwanted)
- 0.4 0.4 brltty (notoncd) (notwanted)
- 0.4 0.4 brltty-flite (notoncd) (notwanted)
- 0.4 0.4 brltty-speechd (notoncd) (notwanted)
- 0.4 0.4 brltty-x11 (notoncd) (notwanted)
- 0.4 0.4 brmfc7340lpr (notoncd) (notwanted)
- 0.4 0.4 brmfc7820nlpr (notoncd) (notwanted)
- 0.4 0.4 broffice.org (notoncd) (notwanted)
- 0.4 0.4 brscan3 (notoncd) (notwanted)
- 0.4 0.4 brutefir (notoncd) (notwanted)
- 0.4 0.4 bsfilter (notoncd) (notwanted)
- 0.4 0.4 btanks (notoncd) (notwanted)
- 0.4 0.4 btrfs-tools (notwanted)
- 0.4 0.4 bubblemon (notoncd) (notwanted)
- 0.4 0.4 bubbros (notoncd) (notwanted)
- 0.4 0.4 bug-buddy (notoncd) (notwanted)
- 0.4 0.4 buildbot-slave (notoncd) (notwanted)
- 0.4 0.4 bum (notoncd) (notwanted)
- 0.4 0.4 burn (notoncd) (notwanted)
- 0.4 0.4 buzztard (notoncd) (notwanted)
- 0.4 0.4 bwbasic
- 0.4 0.4 byzanz (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-alsamixer-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-animated-icons-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-cairo-penguin-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-clipper-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-clock-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-dbus-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-desklet-rendering-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-dev (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-dialog-rendering-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-dnd2share-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-drop-indicator-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-dustbin-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-gmenu-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-gnome-integration-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-icon-effect-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-illusion-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-keyboard-indicator-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-logout-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-mail-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-motion-blur-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-musicplayer-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-netspeed-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-network-monitor-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-powermanager-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-quick-browser-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-rendering-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-rssreader-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-scooby-do-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-shortcuts-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-showdesktop-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-showmouse-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-slider-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-stack-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-switcher-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-system-monitor-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-systray-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-terminal-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-tomboy-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-toons-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-weather-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-weblets-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-wifi-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-xfce-integration-plugin (notoncd) (notwanted)
- 0.4 0.4 cairo-dock-xgamma-plugin (notoncd) (notwanted)
- 0.4 0.4 cakephp-instaweb (notoncd) (notwanted)
- 0.4 0.4 calf-plugins (notoncd) (notwanted)
- 0.4 0.4 calligra-libs (notwanted)
- 0.4 0.4 cam (notoncd) (notwanted)
- 0.4 0.4 camera.app (notoncd) (notwanted)
- 0.4 0.4 cameramonitor (notoncd) (notwanted)
- 0.4 0.4 cantor-backend-r (notoncd) (notwanted)
- 0.4 0.4 cantor-backend-sage (notoncd) (notwanted)
- 0.4 0.4 capiutils (notoncd) (notwanted)
- 0.4 0.4 cappuccino (notoncd) (notwanted)
- 0.4 0.4 castle-combat (notoncd) (notwanted)
- 0.4 0.4 cba (notoncd) (notwanted)
- 0.4 0.4 cbedic (notoncd) (notwanted)
- 0.4 0.4 cbrpager (notoncd) (notwanted)
- 0.4 0.4 ccextractor (notoncd) (notwanted)
- 0.4 0.4 cd-circleprint (notoncd) (notwanted)
- 0.4 0.4 cdcat (notoncd) (notwanted)
- 0.4 0.4 cdcover (notoncd) (notwanted)
- 0.4 0.4 cdda2wav (notoncd) (notwanted)
- 0.4 0.4 cdde (notoncd) (notwanted)
- 0.4 0.4 cdecl (notoncd) (notwanted)
- 0.4 0.4 cdparanoia-dbg (notoncd) (notwanted)
- 0.4 0.4 cdw (notoncd) (notwanted)
- 0.4 0.4 cecilia (notoncd) (notwanted)
- 0.4 0.4 cedar-backup2 (notoncd) (notwanted)
- 0.4 0.4 cedet-common (notoncd) (notwanted)
- 0.4 0.4 cedet-contrib (notoncd) (notwanted)
- 0.4 0.4 celestia-glut (notoncd) (notwanted)
- 0.4 0.4 cellwriter (notoncd) (notwanted)
- 0.4 0.4 celt (notoncd) (notwanted)
- 0.4 0.4 cenon.app (notoncd) (notwanted)
- 0.4 0.4 cgi-mapserver (notoncd) (notwanted)
- 0.4 0.4 cgmail (notoncd) (notwanted)
- 0.4 0.4 charmap.app (notoncd) (notwanted)
- 0.4 0.4 chase (notoncd) (notwanted)
- 0.4 0.4 check-mk-agent (notoncd) (notwanted)
- 0.4 0.4 checkpw (notoncd) (notwanted)
- 0.4 0.4 checkservice (notoncd) (notwanted)
- 0.4 0.4 checkstyle (notoncd) (notwanted)
- 0.4 0.4 chemeq (notoncd) (notwanted)
- 0.4 0.4 chiark-rwbuffer (notoncd) (notwanted)
- 0.4 0.4 chm2pdf (notoncd) (notwanted)
- 0.4 0.4 chntpw (notoncd) (notwanted)
- 0.4 0.4 chocolate-doom (notoncd) (notwanted)
- 0.4 0.4 choqok (notoncd) (notwanted)
- 0.4 0.4 chromium-browser-dbg (notoncd) (notwanted)
- 0.4 0.4 chromium-browser-l10n (notoncd) (notwanted)
- 0.4 0.4 chromium-l10n (notoncd) (notwanted)
- 0.4 0.4 chuck (notoncd) (notwanted)
- 0.4 0.4 cinelerra-data (notoncd) (notwanted)
- 0.4 0.4 cjet (notoncd) (notwanted)
- 0.4 0.4 cl-sql-mysql (notoncd) (notwanted)
- 0.4 0.4 cl-sql-uffi (notoncd) (notwanted)
- 0.4 0.4 cl-uffi-tests (notoncd) (notwanted)
- 0.4 0.4 clamav-dbg (notoncd) (notwanted)
- 0.4 0.4 clamav-milter (notoncd) (notwanted)
- 0.4 0.4 clips (notoncd) (notwanted)
- 0.4 0.4 clive-utils (notoncd) (notwanted)
- 0.4 0.4 clustalw (notoncd) (notwanted)
- 0.4 0.4 cmospwd (notoncd) (notwanted)
- 0.4 0.4 cmus (notoncd) (notwanted)
- 0.4 0.4 cmus-plugin-ffmpeg (notoncd) (notwanted)
- 0.4 0.4 cnee (notoncd) (notwanted)
- 0.4 0.4 cobex (notoncd) (notwanted)
- 0.4 0.4 code2html (notoncd) (notwanted)
- 0.4 0.4 codegroup (notoncd) (notwanted)
- 0.4 0.4 cogre (notoncd) (notwanted)
- 0.4 0.4 coinor-libclp0 (notoncd) (notwanted)
- 0.4 0.4 coinor-libsymphony0 (notoncd) (notwanted)
- 0.4 0.4 compartment (notoncd) (notwanted)
- 0.4 0.4 compiz-dev (notoncd) (notwanted)
- 0.4 0.4 compiz-kde (notoncd) (notwanted)
- 0.4 0.4 compizconfig-backend-kconfig (notoncd) (notwanted)
- 0.4 0.4 composite (notoncd) (notwanted)
- 0.4 0.4 composite-dbg (notoncd) (notwanted)
- 0.4 0.4 computertemp (notoncd) (notwanted)
- 0.4 0.4 concalc (notoncd) (notwanted)
- 0.4 0.4 configure-debian (notoncd) (notwanted)
- 0.4 0.4 conglomerate (notoncd) (notwanted)
- 0.4 0.4 conky-std (notoncd) (notwanted)
- 0.4 0.4 connectagram (notoncd) (notwanted)
- 0.4 0.4 console-braille (notoncd) (notwanted)
- 0.4 0.4 console-cyrillic (notoncd) (notwanted)
- 0.4 0.4 contacts (notoncd) (notwanted)
- 0.4 0.4 convert-pgn (notoncd) (notwanted)
- 0.4 0.4 convlit (notoncd) (notwanted)
- 0.4 0.4 coriander (notoncd) (notwanted)
- 0.4 0.4 courier-maildrop (notoncd) (notwanted)
- 0.4 0.4 cover-thumbnailer (notoncd) (notwanted)
- 0.4 0.4 cowbell (notoncd) (notwanted)
- 0.4 0.4 cplay (notoncd) (notwanted)
- 0.4 0.4 cpp-4.5 (notoncd) (notwanted)
- 0.4 0.4 cpufire-applet (notoncd) (notwanted)
- 0.4 0.4 crack (notoncd) (notwanted)
- 0.4 0.4 crack-md5 (notoncd) (notwanted)
- 0.4 0.4 creox (notoncd) (notwanted)
- 0.4 0.4 crimson (notoncd) (notwanted)
- 0.4 0.4 critterding (notoncd) (notwanted)
- 0.4 0.4 crossfire-server (notoncd) (notwanted)
- 0.4 0.4 csladspa (notoncd) (notwanted)
- 0.4 0.4 csmash (notoncd) (notwanted)
- 0.4 0.4 csstidy (notoncd) (notwanted)
- 0.4 0.4 ctorrent (notoncd) (notwanted)
- 0.4 0.4 ctwm (notoncd) (notwanted)
- 0.4 0.4 cu (notoncd) (notwanted)
- 0.4 0.4 cvs-buildpackage (notoncd) (notwanted)
- 0.4 0.4 cycfx2prog (notoncd) (notwanted)
- 0.4 0.4 cycle (notoncd) (notwanted)
- 0.4 0.4 cynthiune.app (notoncd) (notwanted)
- 0.4 0.4 cytadela (notoncd) (notwanted)
- 0.4 0.4 cytadela-dbg (notoncd) (notwanted)
- 0.4 0.4 daa2iso (notoncd) (notwanted)
- 0.4 0.4 dadadodo (notoncd) (notwanted)
- 0.4 0.4 daemonlogger (notoncd) (notwanted)
- 0.4 0.4 daemontools (notoncd) (notwanted)
- 0.4 0.4 dangen (notoncd) (notwanted)
- 0.4 0.4 darcs (notoncd) (notwanted)
- 0.4 0.4 dares (notoncd) (notwanted)
- 0.4 0.4 dares-qt (notoncd) (notwanted)
- 0.4 0.4 darkice (notoncd) (notwanted)
- 0.4 0.4 darkstat (notoncd) (notwanted)
- 0.4 0.4 datapacker (notoncd) (notwanted)
- 0.4 0.4 dates (notoncd) (notwanted)
- 0.4 0.4 db-util (notoncd) (notwanted)
- 0.4 0.4 dbf2mysql (notoncd) (notwanted)
- 0.4 0.4 dbmix (notoncd) (notwanted)
- 0.4 0.4 dbus-java-bin (notoncd) (notwanted)
- 0.4 0.4 dc-qt (notoncd) (notwanted)
- 0.4 0.4 dconf (notoncd) (notwanted)
- 0.4 0.4 debian-builder (notoncd) (notwanted)
- 0.4 0.4 debsums (notoncd) (notwanted)
- 0.4 0.4 debtorrent (notoncd) (notwanted)
- 0.4 0.4 decibel-audio-player (notoncd) (notwanted)
- 0.4 0.4 deejayd (notoncd) (notwanted)
- 0.4 0.4 deejayd-client (notoncd) (notwanted)
- 0.4 0.4 deja-dup (notoncd) (notwanted)
- 0.4 0.4 deskbar-plugins-strigi (notoncd) (notwanted)
- 0.4 0.4 deskmenu (notoncd) (notwanted)
- 0.4 0.4 desktopnova (notoncd) (notwanted)
- 0.4 0.4 desktopnova-module-gnome (notoncd) (notwanted)
- 0.4 0.4 desktopnova-tray (notoncd) (notwanted)
- 0.4 0.4 desmume (notoncd) (notwanted)
- 0.4 0.4 dfu-util (notoncd) (notwanted)
- 0.4 0.4 dh-kpatches (notoncd) (notwanted)
- 0.4 0.4 dh-make (notoncd) (notwanted)
- 0.4 0.4 di (notoncd) (notwanted)
- 0.4 0.4 dia2code (notoncd) (notwanted)
- 0.4 0.4 dicom3tools (notoncd) (notwanted)
- 0.4 0.4 diction (notoncd) (notwanted)
- 0.4 0.4 dictionaryreader.app (notoncd) (notwanted)
- 0.4 0.4 diffuse (notoncd) (notwanted)
- 0.4 0.4 digitemp (notoncd) (notwanted)
- 0.4 0.4 dime (notoncd) (notwanted)
- 0.4 0.4 dir2ogg (notoncd) (notwanted)
- 0.4 0.4 directvnc (notoncd) (notwanted)
- 0.4 0.4 disc-cover (notoncd) (notwanted)
- 0.4 0.4 disk-manager (notoncd) (notwanted)
- 0.4 0.4 distmp3 (notoncd) (notwanted)
- 0.4 0.4 divxenc (notoncd) (notwanted)
- 0.4 0.4 dizzy (notoncd) (notwanted)
- 0.4 0.4 djmount (notoncd) (notwanted)
- 0.4 0.4 djplay (notoncd) (notwanted)
- 0.4 0.4 djtools (notoncd) (notwanted)
- 0.4 0.4 djvusmooth (notoncd) (notwanted)
- 0.4 0.4 dlint (notoncd) (notwanted)
- 0.4 0.4 dmraid (notwanted)
- 0.4 0.4 doctrine (notoncd) (notwanted)
- 0.4 0.4 dodgindiamond2 (notoncd) (notwanted)
- 0.4 0.4 dome (notoncd) (notwanted)
- 0.4 0.4 doodle (notoncd) (notwanted)
- 0.4 0.4 dopewars (notoncd) (notwanted)
- 0.4 0.4 doscan (notoncd) (notwanted)
- 0.4 0.4 dosemu (notoncd) (notwanted)
- 0.4 0.4 dossizola (notoncd) (notwanted)
- 0.4 0.4 dots (notoncd) (notwanted)
- 0.4 0.4 dovecot-core (notwanted)
- 0.4 0.4 doxygen-gui (notoncd) (notwanted)
- 0.4 0.4 draai (notoncd) (notwanted)
- 0.4 0.4 dradio (notoncd) (notwanted)
- 0.4 0.4 drapes (notoncd) (notwanted)
- 0.4 0.4 drawtiming (notoncd) (notwanted)
- 0.4 0.4 dssi-example-plugins (notoncd) (notwanted)
- 0.4 0.4 dssi-host-jack (notoncd) (notwanted)
- 0.4 0.4 dssi-utils (notoncd) (notwanted)
- 0.4 0.4 dssi-vst (notoncd) (notwanted)
- 0.4 0.4 duplicity (notoncd) (notwanted)
- 0.4 0.4 durep (notoncd) (notwanted)
- 0.4 0.4 dvblast (notoncd) (notwanted)
- 0.4 0.4 dvbsnoop (notoncd) (notwanted)
- 0.4 0.4 dvbstream (notoncd) (notwanted)
- 0.4 0.4 dvd+rw-tools-dbg (notoncd) (notwanted)
- 0.4 0.4 dvd-slideshow (notoncd) (notwanted)
- 0.4 0.4 dvd95 (notoncd) (notwanted)
- 0.4 0.4 dvdbackup-dbg (notoncd) (notwanted)
- 0.4 0.4 dvdtape (notoncd) (notwanted)
- 0.4 0.4 dvdwizard (notoncd) (notwanted)
- 0.4 0.4 dvi2ps (notoncd) (notwanted)
- 0.4 0.4 dvipsk-ja (notoncd) (notwanted)
- 0.4 0.4 dvorak7min (notoncd) (notwanted)
- 0.4 0.4 dvsource (notoncd) (notwanted)
- 0.4 0.4 dwm (notoncd) (notwanted)
- 0.4 0.4 dwoo (notoncd) (notwanted)
- 0.4 0.4 dynagen (notoncd) (notwanted)
- 0.4 0.4 dynamips (notoncd) (notwanted)
- 0.4 0.4 dynare (notoncd) (notwanted)
- 0.4 0.4 dynare-matlab (notoncd) (notwanted)
- 0.4 0.4 e-uae (notoncd) (notwanted)
- 0.4 0.4 e-uae-dbg (notoncd) (notwanted)
- 0.4 0.4 e16 (notoncd) (notwanted)
- 0.4 0.4 e16keyedit (notoncd) (notwanted)
- 0.4 0.4 e16menuedit2 (notoncd) (notwanted)
- 0.4 0.4 e2fslibs-dev (notoncd) (notwanted)
- 0.4 0.4 e3 (notoncd) (notwanted)
- 0.4 0.4 earcandy (notoncd) (notwanted)
- 0.4 0.4 easydiff.app (notoncd) (notwanted)
- 0.4 0.4 easyh10 (notoncd) (notwanted)
- 0.4 0.4 easymp3gain-gtk (notoncd) (notwanted)
- 0.4 0.4 easytag (notoncd) (notwanted)
- 0.4 0.4 ebook-tools-dbg (notoncd) (notwanted)
- 0.4 0.4 ecasound (notoncd) (notwanted)
- 0.4 0.4 ecasound-el (notoncd) (notwanted)
- 0.4 0.4 ecb (notoncd) (notwanted)
- 0.4 0.4 ede (notoncd) (notwanted)
- 0.4 0.4 edenmath.app (notoncd) (notwanted)
- 0.4 0.4 eekboek (notoncd) (notwanted)
- 0.4 0.4 eep24c (notoncd) (notwanted)
- 0.4 0.4 efax (notoncd) (notwanted)
- 0.4 0.4 efax-gtk (notoncd) (notwanted)
- 0.4 0.4 eiciel (notoncd) (notwanted)
- 0.4 0.4 eieio (notoncd) (notwanted)
- 0.4 0.4 ejabberd (notoncd) (notwanted)
- 0.4 0.4 ekiga-dbg (notoncd) (notwanted)
- 0.4 0.4 eleeye (notoncd) (notwanted)
- 0.4 0.4 elib (notoncd) (notwanted)
- 0.4 0.4 elvis-tiny (notoncd) (notwanted)
- 0.4 0.4 elvis-tools (notoncd) (notwanted)
- 0.4 0.4 elyxer (notoncd) (notwanted)
- 0.4 0.4 emacspeak (notoncd) (notwanted)
- 0.4 0.4 ember (notoncd) (notwanted)
- 0.4 0.4 emerillon (notoncd) (notwanted)
- 0.4 0.4 emma (notoncd) (notwanted)
- 0.4 0.4 empire (notoncd) (notwanted)
- 0.4 0.4 emu8051 (notoncd) (notwanted)
- 0.4 0.4 enemylines3 (notoncd) (notwanted)
- 0.4 0.4 enemylines7 (notoncd) (notwanted)
- 0.4 0.4 enigma (notoncd) (notwanted)
- 0.4 0.4 enscribe (notoncd) (notwanted)
- 0.4 0.4 entagged (notoncd) (notwanted)
- 0.4 0.4 eog-dbg (notoncd) (notwanted)
- 0.4 0.4 eog-dev (notoncd) (notwanted)
- 0.4 0.4 epigrass (notoncd) (notwanted)
- 0.4 0.4 epiphany-browser-dbg (notoncd) (notwanted)
- 0.4 0.4 epiphany-extensions-more (notoncd) (notwanted)
- 0.4 0.4 epix (notoncd) (notwanted)
- 0.4 0.4 epub-utils (notoncd) (notwanted)
- 0.4 0.4 eqonomize (notoncd) (notwanted)
- 0.4 0.4 erlang-base-hipe (notoncd) (notwanted)
- 0.4 0.4 erlang-wx (notoncd) (notwanted)
- 0.4 0.4 esix (notoncd) (notwanted)
- 0.4 0.4 eterm (notoncd) (notwanted)
- 0.4 0.4 etherpuppet (notoncd) (notwanted)
- 0.4 0.4 ettercap-common (notoncd) (notwanted)
- 0.4 0.4 ettercap-gtk (notoncd) (notwanted)
- 0.4 0.4 etw (notoncd) (notwanted)
- 0.4 0.4 evilwm (notoncd) (notwanted)
- 0.4 0.4 evince-dbg (notoncd) (notwanted)
- 0.4 0.4 evolution-data-server-dbg (notoncd) (notwanted)
- 0.4 0.4 evolvotron (notoncd) (notwanted)
- 0.4 0.4 exactimage (notoncd) (notwanted)
- 0.4 0.4 exaile (notoncd) (notwanted)
- 0.4 0.4 excellent-bifurcation (notoncd) (notwanted)
- 0.4 0.4 exfalso (notoncd) (notwanted)
- 0.4 0.4 exim (notoncd) (notwanted)
- 0.4 0.4 expat (notoncd) (notwanted)
- 0.4 0.4 extace (notoncd) (notwanted)
- 0.4 0.4 extcalc (notoncd) (notwanted)
- 0.4 0.4 extplorer (notoncd) (notwanted)
- 0.4 0.4 exult (notoncd) (notwanted)
- 0.4 0.4 exult-studio (notoncd) (notwanted)
- 0.4 0.4 eyed3 (notoncd) (notwanted)
- 0.4 0.4 ezstream (notoncd) (notwanted)
- 0.4 0.4 faac (notoncd) (notwanted)
- 0.4 0.4 faad2-dbg (notoncd) (notwanted)
- 0.4 0.4 facturalux (notoncd) (notwanted)
- 0.4 0.4 facturalux-dev (notoncd) (notwanted)
- 0.4 0.4 fake (notoncd) (notwanted)
- 0.4 0.4 fakepop (notoncd) (notwanted)
- 0.4 0.4 fantasdic (notoncd) (notwanted)
- 0.4 0.4 fapg (notoncd) (notwanted)
- 0.4 0.4 farpd (notoncd) (notwanted)
- 0.4 0.4 fatrat (notoncd) (notwanted)
- 0.4 0.4 fatrat-unpack (notoncd) (notwanted)
- 0.4 0.4 fauhdlc (notoncd) (notwanted)
- 0.4 0.4 faumachine (notoncd) (notwanted)
- 0.4 0.4 fbi (notoncd) (notwanted)
- 0.4 0.4 fbpager (notoncd) (notwanted)
- 0.4 0.4 fceu (notoncd) (notwanted)
- 0.4 0.4 fcrackzip (notoncd) (notwanted)
- 0.4 0.4 fdupes (notoncd) (notwanted)
- 0.4 0.4 fetchmail (notoncd) (notwanted)
- 0.4 0.4 ffado-dbus-server (notoncd) (notwanted)
- 0.4 0.4 ffado-mixer-qt4 (notoncd) (notwanted)
- 0.4 0.4 ffado-tools (notoncd) (notwanted)
- 0.4 0.4 ffgtk (notoncd) (notwanted)
- 0.4 0.4 ffgtk-plugins-ebook (notoncd) (notwanted)
- 0.4 0.4 ffgtk-plugins-gdata (notoncd) (notwanted)
- 0.4 0.4 ffgtk-plugins-gnome-keyring (notoncd) (notwanted)
- 0.4 0.4 ffgtk-plugins-pulseaudio (notoncd) (notwanted)
- 0.4 0.4 ffmpegthumbs (notoncd) (notwanted)
- 0.4 0.4 fftw-dev (notoncd) (notwanted)
- 0.4 0.4 file-browser-applet (notoncd) (notwanted)
- 0.4 0.4 filetraq (notoncd) (notwanted)
- 0.4 0.4 filtergen (notoncd) (notwanted)
- 0.4 0.4 findimagedupes (notoncd) (notwanted)
- 0.4 0.4 fische (notoncd) (notwanted)
- 0.4 0.4 fish (notoncd) (notwanted)
- 0.4 0.4 flashrom (notoncd) (notwanted)
- 0.4 0.4 fldiff (notoncd) (notwanted)
- 0.4 0.4 flexloader (notoncd) (notwanted)
- 0.4 0.4 flexml (notoncd) (notwanted)
- 0.4 0.4 flight-of-the-amazon-queen (notoncd) (notwanted)
- 0.4 0.4 flightgear (notoncd) (notwanted)
- 0.4 0.4 flite (notoncd) (notwanted)
- 0.4 0.4 flite1-dev (notoncd) (notwanted)
- 0.4 0.4 flow-tools (notoncd) (notwanted)
- 0.4 0.4 flowscan (notoncd) (notwanted)
- 0.4 0.4 fltk1.1-games (notoncd) (notwanted)
- 0.4 0.4 fluidsynth-dssi (notoncd) (notwanted)
- 0.4 0.4 fmit (notoncd) (notwanted)
- 0.4 0.4 foff (notoncd) (notwanted)
- 0.4 0.4 fondu (notoncd) (notwanted)
- 0.4 0.4 fontforge-extras (notoncd) (notwanted)
- 0.4 0.4 fontmatrix (notoncd) (notwanted)
- 0.4 0.4 fonttools (notoncd) (notwanted)
- 0.4 0.4 foobillard (notoncd) (notwanted)
- 0.4 0.4 forked-daapd (notoncd) (notwanted)
- 0.4 0.4 fotowall (notoncd) (notwanted)
- 0.4 0.4 fp-compiler-2.6.0 (notwanted)
- 0.4 0.4 fp-ide-2.6.0 (notwanted)
- 0.4 0.4 fp-utils-2.6.0 (notwanted)
- 0.4 0.4 fpm2 (notoncd) (notwanted)
- 0.4 0.4 fraqtive (notoncd) (notwanted)
- 0.4 0.4 freecad-dev (notoncd) (notwanted)
- 0.4 0.4 freeciv-client-xaw3d (notoncd) (notwanted)
- 0.4 0.4 freecycle (notoncd) (notwanted)
- 0.4 0.4 freedink-dfarc (notoncd) (notwanted)
- 0.4 0.4 freedink-engine (notoncd) (notwanted)
- 0.4 0.4 freedroid (notoncd) (notwanted)
- 0.4 0.4 freefem3d (notoncd) (notwanted)
- 0.4 0.4 freej (notoncd) (notwanted)
- 0.4 0.4 freej-dbg (notoncd) (notwanted)
- 0.4 0.4 freesci (notoncd) (notwanted)
- 0.4 0.4 freespeak (notoncd) (notwanted)
- 0.4 0.4 freetype2-demos (notoncd) (notwanted)
- 0.4 0.4 freevial (notoncd) (notwanted)
- 0.4 0.4 freewheeling (notoncd) (notwanted)
- 0.4 0.4 freqtweak (notoncd) (notwanted)
- 0.4 0.4 frogatto (notoncd) (notwanted)
- 0.4 0.4 fruit (notoncd) (notwanted)
- 0.4 0.4 fso-gsm0710muxd (notoncd) (notwanted)
- 0.4 0.4 fso-usaged (notoncd) (notwanted)
- 0.4 0.4 fspanel (notoncd) (notwanted)
- 0.4 0.4 fswebcam (notoncd) (notwanted)
- 0.4 0.4 fte (notoncd) (notwanted)
- 0.4 0.4 fte-console (notoncd) (notwanted)
- 0.4 0.4 fte-terminal (notoncd) (notwanted)
- 0.4 0.4 fte-xwindow (notoncd) (notwanted)
- 0.4 0.4 fteqcc (notoncd) (notwanted)
- 0.4 0.4 ftp.app (notoncd) (notwanted)
- 0.4 0.4 ftpd (notoncd) (notwanted)
- 0.4 0.4 funcoeszz (notoncd) (notwanted)
- 0.4 0.4 furiusisomount (notoncd) (notwanted)
- 0.4 0.4 fuse-convmvfs (notoncd) (notwanted)
- 0.4 0.4 fuseext2 (notoncd) (notwanted)
- 0.4 0.4 fusefat (notoncd) (notwanted)
- 0.4 0.4 fuseiso (notoncd) (notwanted)
- 0.4 0.4 fuseiso9660 (notoncd) (notwanted)
- 0.4 0.4 fuss-launcher (notoncd) (notwanted)
- 0.4 0.4 fvwm (notoncd) (notwanted)
- 0.4 0.4 fvwm-crystal (notoncd) (notwanted)
- 0.4 0.4 fvwm1 (notoncd) (notwanted)
- 0.4 0.4 fwanalog (notoncd) (notwanted)
- 0.4 0.4 g++-4.1 (notoncd) (notwanted)
- 0.4 0.4 g2ipmsg (notoncd) (notwanted)
- 0.4 0.4 g3dviewer (notoncd) (notwanted)
- 0.4 0.4 gaffitter (notoncd) (notwanted)
- 0.4 0.4 galago-daemon (notoncd) (notwanted)
- 0.4 0.4 galago-eds-feed (notoncd) (notwanted)
- 0.4 0.4 galeon (notoncd) (notwanted)
- 0.4 0.4 galeon-common (notoncd) (notwanted)
- 0.4 0.4 galileopress-java2 (notoncd) (notwanted)
- 0.4 0.4 galileopress-javainsel (notoncd) (notwanted)
- 0.4 0.4 galileopress-javascript (notoncd) (notwanted)
- 0.4 0.4 galileopress-php4 (notoncd) (notwanted)
- 0.4 0.4 galileopress-unix (notoncd) (notwanted)
- 0.4 0.4 gallery-uploader (notoncd) (notwanted)
- 0.4 0.4 gambit (notoncd) (notwanted)
- 0.4 0.4 game-data-packager (notoncd) (notwanted)
- 0.4 0.4 gameclock (notoncd) (notwanted)
- 0.4 0.4 gamix (notoncd) (notwanted)
- 0.4 0.4 gammu (notoncd) (notwanted)
- 0.4 0.4 gammu-smsd (notoncd) (notwanted)
- 0.4 0.4 ganyremote (notoncd) (notwanted)
- 0.4 0.4 gap-guava (notoncd) (notwanted)
- 0.4 0.4 gargoyle-free (notoncd) (notwanted)
- 0.4 0.4 garmin-ant-downloader (notoncd) (notwanted)
- 0.4 0.4 garmin-forerunner-tools (notoncd) (notwanted)
- 0.4 0.4 garmin-plugin (notoncd) (notwanted)
- 0.4 0.4 gbackground (notoncd) (notwanted)
- 0.4 0.4 gbase (notoncd) (notwanted)
- 0.4 0.4 gbatnav (notoncd) (notwanted)
- 0.4 0.4 gbemol (notoncd) (notwanted)
- 0.4 0.4 gbgoffice (notoncd) (notwanted)
- 0.4 0.4 gbirthday (notoncd) (notwanted)
- 0.4 0.4 gbonds (notoncd) (notwanted)
- 0.4 0.4 gbsplay (notoncd) (notwanted)
- 0.4 0.4 gcc-3.3 (notoncd) (notwanted)
- 0.4 0.4 gcc-3.4 (notoncd) (notwanted)
- 0.4 0.4 gcc-4.5 (notoncd) (notwanted)
- 0.4 0.4 gcdmaster (notoncd) (notwanted)
- 0.4 0.4 gco (notoncd) (notwanted)
- 0.4 0.4 gcolor2 (notoncd) (notwanted)
- 0.4 0.4 gcu-bin (notoncd) (notwanted)
- 0.4 0.4 gdb-avr (notoncd) (notwanted)
- 0.4 0.4 gdesklets (notoncd) (notwanted)
- 0.4 0.4 gdevilspie (notoncd) (notwanted)
- 0.4 0.4 geany-plugin-prj (notoncd) (notwanted)
- 0.4 0.4 gearhead (notoncd) (notwanted)
- 0.4 0.4 geda-utils (notoncd) (notwanted)
- 0.4 0.4 geda-xgsch2pcb (notoncd) (notwanted)
- 0.4 0.4 gedit-latex-plugin (notoncd) (notwanted)
- 0.4 0.4 gedit-r-plugin (notoncd) (notwanted)
- 0.4 0.4 gegl (notoncd) (notwanted)
- 0.4 0.4 gelemental (notoncd) (notwanted)
- 0.4 0.4 gem (notoncd) (notwanted)
- 0.4 0.4 genders (notoncd) (notwanted)
- 0.4 0.4 genius (notoncd) (notwanted)
- 0.4 0.4 genius-common (notoncd) (notwanted)
- 0.4 0.4 genpower (notoncd) (notwanted)
- 0.4 0.4 gentle (notoncd) (notwanted)
- 0.4 0.4 geogebra-kde (notoncd) (notwanted)
- 0.4 0.4 geotoad (notoncd) (notwanted)
- 0.4 0.4 geotranz-libs (notoncd) (notwanted)
- 0.4 0.4 gespeaker (notoncd) (notwanted)
- 0.4 0.4 get-iplayer (notoncd) (notwanted)
- 0.4 0.4 getstream (notoncd) (notwanted)
- 0.4 0.4 gfax (notoncd) (notwanted)
- 0.4 0.4 gfxboot (notoncd) (notwanted)
- 0.4 0.4 gfxboot-dev (notoncd) (notwanted)
- 0.4 0.4 ggz-game-servers (notoncd) (notwanted)
- 0.4 0.4 ggz-gnome-client (notoncd) (notwanted)
- 0.4 0.4 ggz-grubby (notoncd) (notwanted)
- 0.4 0.4 ggz-gtk-client (notoncd) (notwanted)
- 0.4 0.4 ggz-gtk-games (notoncd) (notwanted)
- 0.4 0.4 ggz-kde-games (notoncd) (notwanted)
- 0.4 0.4 ggz-python-games (notoncd) (notwanted)
- 0.4 0.4 ggz-sdl-games (notoncd) (notwanted)
- 0.4 0.4 ggz-txt-client (notoncd) (notwanted)
- 0.4 0.4 ggzd (notoncd) (notwanted)
- 0.4 0.4 ghc6 (notoncd) (notwanted)
- 0.4 0.4 ghc6-doc (notoncd) (notwanted)
- 0.4 0.4 ghc6-prof (notoncd) (notwanted)
- 0.4 0.4 gif2png (notoncd) (notwanted)
- 0.4 0.4 gifsicle (notoncd) (notwanted)
- 0.4 0.4 giftrans (notoncd) (notwanted)
- 0.4 0.4 gigolo (notoncd) (notwanted)
- 0.4 0.4 gigtools (notoncd) (notwanted)
- 0.4 0.4 gimmix (notoncd) (notwanted)
- 0.4 0.4 gimp-dbg (notoncd) (notwanted)
- 0.4 0.4 gip (notoncd) (notwanted)
- 0.4 0.4 giplet (notoncd) (notwanted)
- 0.4 0.4 gir1.0-soup-2.4 (notoncd) (notwanted)
- 0.4 0.4 gir1.0-webkit-1.0 (notoncd) (notwanted)
- 0.4 0.4 gir1.2-notify-0.7 (notoncd) (notwanted)
- 0.4 0.4 gir1.2-spice-client-glib-2.0 (notoncd) (notwanted)
- 0.4 0.4 gir1.2-spice-client-gtk-2.0 (notoncd) (notwanted)
- 0.4 0.4 gjay (notoncd) (notwanted)
- 0.4 0.4 gjots2 (notoncd) (notwanted)
- 0.4 0.4 gkermit (notoncd) (notwanted)
- 0.4 0.4 gkrellkam (notoncd) (notwanted)
- 0.4 0.4 gkrellm-bfm (notoncd) (notwanted)
- 0.4 0.4 gkrellm-hdplop (notoncd) (notwanted)
- 0.4 0.4 gkrellm-ibam (notoncd) (notwanted)
- 0.4 0.4 gkrellm-leds (notoncd) (notwanted)
- 0.4 0.4 gkrellm-mailwatch (notoncd) (notwanted)
- 0.4 0.4 gkrellm-mldonkey (notoncd) (notwanted)
- 0.4 0.4 gkrellm-radio (notoncd) (notwanted)
- 0.4 0.4 gkrellm-reminder (notoncd) (notwanted)
- 0.4 0.4 gkrellm-snmp (notoncd) (notwanted)
- 0.4 0.4 gkrellm-thinkbat (notoncd) (notwanted)
- 0.4 0.4 gkrellm-volume (notoncd) (notwanted)
- 0.4 0.4 gkrellm-x86info (notoncd) (notwanted)
- 0.4 0.4 gkrellm-xkb (notoncd) (notwanted)
- 0.4 0.4 gkrellmd (notoncd) (notwanted)
- 0.4 0.4 gkrellmitime (notoncd) (notwanted)
- 0.4 0.4 gkrellmss (notoncd) (notwanted)
- 0.4 0.4 gkrellmwireless (notoncd) (notwanted)
- 0.4 0.4 gkrellshoot (notoncd) (notwanted)
- 0.4 0.4 gkrelltopd (notoncd) (notwanted)
- 0.4 0.4 gkrelluim (notoncd) (notwanted)
- 0.4 0.4 gkrellxmms2 (notoncd) (notwanted)
- 0.4 0.4 glade-gnome (notoncd) (notwanted)
- 0.4 0.4 glame (notoncd) (notwanted)
- 0.4 0.4 glotski (notoncd) (notwanted)
- 0.4 0.4 glpk-utils (notoncd) (notwanted)
- 0.4 0.4 glunarclock (notoncd) (notwanted)
- 0.4 0.4 glurp (notoncd) (notwanted)
- 0.4 0.4 gmanedit (notoncd) (notwanted)
- 0.4 0.4 gmediaserver (notoncd) (notwanted)
- 0.4 0.4 gmerlin (notoncd) (notwanted)
- 0.4 0.4 gmerlin-dbg (notoncd) (notwanted)
- 0.4 0.4 gmobilemedia (notoncd) (notwanted)
- 0.4 0.4 gnee (notoncd) (notwanted)
- 0.4 0.4 gniall (notoncd) (notwanted)
- 0.4 0.4 gnoemoe (notoncd) (notwanted)
- 0.4 0.4 gnokii-smsd-mysql (notoncd) (notwanted)
- 0.4 0.4 gnokii-smsd-pgsql (notoncd) (notwanted)
- 0.4 0.4 gnome-activity-journal (notoncd) (notwanted)
- 0.4 0.4 gnome-alsamixer (notoncd) (notwanted)
- 0.4 0.4 gnome-applets-dbg (notoncd) (notwanted)
- 0.4 0.4 gnome-blog (notoncd) (notwanted)
- 0.4 0.4 gnome-chess (notoncd) (notwanted)
- 0.4 0.4 gnome-color-chooser (notoncd) (notwanted)
- 0.4 0.4 gnome-device-manager (notoncd) (notwanted)
- 0.4 0.4 gnome-do (notoncd) (notwanted)
- 0.4 0.4 gnome-do-plugins (notoncd) (notwanted)
- 0.4 0.4 gnome-genius (notoncd) (notwanted)
- 0.4 0.4 gnome-gpg (notoncd) (notwanted)
- 0.4 0.4 gnome-inm-forecast (notoncd) (notwanted)
- 0.4 0.4 gnome-launch-box (notoncd) (notwanted)
- 0.4 0.4 gnome-mousetrap (notoncd) (notwanted)
- 0.4 0.4 gnome-mplayer-dbg (notoncd) (notwanted)
- 0.4 0.4 gnome-mud (notoncd) (notwanted)
- 0.4 0.4 gnome-nds-thumbnailer (notoncd) (notwanted)
- 0.4 0.4 gnome-osd (notoncd) (notwanted)
- 0.4 0.4 gnome-panel-dbg (notoncd) (notwanted)
- 0.4 0.4 gnome-phone-manager (notoncd) (notwanted)
- 0.4 0.4 gnome-photo-printer (notoncd) (notwanted)
- 0.4 0.4 gnome-pilot (notoncd) (notwanted)
- 0.4 0.4 gnome-pilot-conduits (notoncd) (notwanted)
- 0.4 0.4 gnome-pkg-tools (notoncd) (notwanted)
- 0.4 0.4 gnome-randr-applet (notoncd) (notwanted)
- 0.4 0.4 gnome-rdp (notoncd) (notwanted)
- 0.4 0.4 gnome-schedule (notoncd) (notwanted)
- 0.4 0.4 gnome-settings-daemon-dev (notoncd) (notwanted)
- 0.4 0.4 gnome-speech-swift (notoncd) (notwanted)
- 0.4 0.4 gnome-swallow-applet (notoncd) (notwanted)
- 0.4 0.4 gnomecatalog (notoncd) (notwanted)
- 0.4 0.4 gnomekiss (notoncd) (notwanted)
- 0.4 0.4 gnomeradio (notoncd) (notwanted)
- 0.4 0.4 gnote (notoncd) (notwanted)
- 0.4 0.4 gnotime (notoncd) (notwanted)
- 0.4 0.4 gnubg (notoncd) (notwanted)
- 0.4 0.4 gnuboy-sdl (notoncd) (notwanted)
- 0.4 0.4 gnuboy-svga (notoncd) (notwanted)
- 0.4 0.4 gnudoq (notoncd) (notwanted)
- 0.4 0.4 gnujump (notoncd) (notwanted)
- 0.4 0.4 gnumail.app (notoncd) (notwanted)
- 0.4 0.4 gnuplot-qt (notoncd) (notwanted)
- 0.4 0.4 gnurobbo (notoncd) (notwanted)
- 0.4 0.4 gnurobots (notoncd) (notwanted)
- 0.4 0.4 gnusim8085 (notoncd) (notwanted)
- 0.4 0.4 gnusound (notoncd) (notwanted)
- 0.4 0.4 gnustep-back-dbg (notoncd) (notwanted)
- 0.4 0.4 gnustep-back0.18-cairo (notoncd) (notwanted)
- 0.4 0.4 gnustep-dl2 (notoncd) (notwanted)
- 0.4 0.4 gnustep-dl2-postgresql-adaptor (notoncd) (notwanted)
- 0.4 0.4 gnustep-dl2-sqlite-adaptor (notoncd) (notwanted)
- 0.4 0.4 gnustep-examples (notoncd) (notwanted)
- 0.4 0.4 gnustep-make (notoncd) (notwanted)
- 0.4 0.4 gnuvd (notoncd) (notwanted)
- 0.4 0.4 gnuvd-gnome (notoncd) (notwanted)
- 0.4 0.4 goattracker (notoncd) (notwanted)
- 0.4 0.4 gobi-loader (notoncd) (notwanted)
- 0.4 0.4 gobjc-4.4 (notoncd) (notwanted)
- 0.4 0.4 golly (notoncd) (notwanted)
- 0.4 0.4 gom (notoncd) (notwanted)
- 0.4 0.4 gomoku.app (notoncd) (notwanted)
- 0.4 0.4 google-chrome-unstable (notoncd) (notwanted)
- 0.4 0.4 google-gadgets-gtk (notoncd) (notwanted)
- 0.4 0.4 google-perftools (notoncd) (notwanted)
- 0.4 0.4 googlecl (notoncd) (notwanted)
- 0.4 0.4 googlizer (notoncd) (notwanted)
- 0.4 0.4 gopchop (notoncd) (notwanted)
- 0.4 0.4 gorm.app (notoncd) (notwanted)
- 0.4 0.4 gource (notoncd) (notwanted)
- 0.4 0.4 gourmet (notoncd) (notwanted)
- 0.4 0.4 gozer (notoncd) (notwanted)
- 0.4 0.4 gpass (notoncd) (notwanted)
- 0.4 0.4 gpe-expenses (notoncd) (notwanted)
- 0.4 0.4 gpe-mixer (notoncd) (notwanted)
- 0.4 0.4 gpe-othello (notoncd) (notwanted)
- 0.4 0.4 gpe-soundbite (notoncd) (notwanted)
- 0.4 0.4 gpe-soundserver (notoncd) (notwanted)
- 0.4 0.4 gpesyncd (notoncd) (notwanted)
- 0.4 0.4 gphpedit (notoncd) (notwanted)
- 0.4 0.4 gplanarity (notoncd) (notwanted)
- 0.4 0.4 gpointing-device-settings (notoncd) (notwanted)
- 0.4 0.4 gpp (notoncd) (notwanted)
- 0.4 0.4 gprename (notoncd) (notwanted)
- 0.4 0.4 gpsbabel-gui (notoncd) (notwanted)
- 0.4 0.4 gpstrans (notoncd) (notwanted)
- 0.4 0.4 gpw (notoncd) (notwanted)
- 0.4 0.4 gpxviewer (notoncd) (notwanted)
- 0.4 0.4 gramofile (notoncd) (notwanted)
- 0.4 0.4 granule (notoncd) (notwanted)
- 0.4 0.4 grap (notoncd) (notwanted)
- 0.4 0.4 grcompiler (notoncd) (notwanted)
- 0.4 0.4 greenwich (notoncd) (notwanted)
- 0.4 0.4 gridlock.app (notoncd) (notwanted)
- 0.4 0.4 griffith (notoncd) (notwanted)
- 0.4 0.4 grinvin (notoncd) (notwanted)
- 0.4 0.4 groundcontrol (notoncd) (notwanted)
- 0.4 0.4 groundhog (notoncd) (notwanted)
- 0.4 0.4 grr.app (notoncd) (notwanted)
- 0.4 0.4 gscan2pdf (notoncd) (notwanted)
- 0.4 0.4 gshare (notoncd) (notwanted)
- 0.4 0.4 gspot (notoncd) (notwanted)
- 0.4 0.4 gssdp-tools (notoncd) (notwanted)
- 0.4 0.4 gstm (notoncd) (notwanted)
- 0.4 0.4 gstreamer0.10-buzztard (notoncd) (notwanted)
- 0.4 0.4 gstreamer0.10-ffmpeg-dbg (notoncd) (notwanted)
- 0.4 0.4 gstreamer0.10-plugins-base-apps (notoncd) (notwanted)
- 0.4 0.4 gstreamer0.10-plugins-base-dbg (notoncd) (notwanted)
- 0.4 0.4 gstreamer0.10-plugins-good-dbg (notoncd) (notwanted)
- 0.4 0.4 gstreamer0.10-plugins-ugly-dbg (notoncd) (notwanted)
- 0.4 0.4 gt5 (notoncd) (notwanted)
- 0.4 0.4 gtamsanalyzer.app (notoncd) (notwanted)
- 0.4 0.4 gtetrinet (notoncd) (notwanted)
- 0.4 0.4 gtg (notoncd) (notwanted)
- 0.4 0.4 gtkatlantic (notoncd) (notwanted)
- 0.4 0.4 gtkcookie (notoncd) (notwanted)
- 0.4 0.4 gtklick (notoncd) (notwanted)
- 0.4 0.4 gtkmorph (notoncd) (notwanted)
- 0.4 0.4 gtkpool (notoncd) (notwanted)
- 0.4 0.4 gtktrain (notoncd) (notwanted)
- 0.4 0.4 gtkwhiteboard (notoncd) (notwanted)
- 0.4 0.4 gtranslator (notoncd) (notwanted)
- 0.4 0.4 gtweakui (notoncd) (notwanted)
- 0.4 0.4 gtypist (notoncd) (notwanted)
- 0.4 0.4 guake (notoncd) (notwanted)
- 0.4 0.4 guessnet (notoncd) (notwanted)
- 0.4 0.4 gufw (notoncd) (notwanted)
- 0.4 0.4 guidance-power-manager (notoncd) (notwanted)
- 0.4 0.4 guile-1.6-dev (notoncd) (notwanted)
- 0.4 0.4 guile-1.8-dev (notoncd) (notwanted)
- 0.4 0.4 guile-cairo-dev (notoncd) (notwanted)
- 0.4 0.4 guitarix (notoncd) (notwanted)
- 0.4 0.4 gunroar (notoncd) (notwanted)
- 0.4 0.4 gvidm (notoncd) (notwanted)
- 0.4 0.4 gwaei (notoncd) (notwanted)
- 0.4 0.4 gwaterfall (notoncd) (notwanted)
- 0.4 0.4 gwc (notoncd) (notwanted)
- 0.4 0.4 gwenhywfar-tools (notoncd) (notwanted)
- 0.4 0.4 gworkspace-apps-wrappers (notoncd) (notwanted)
- 0.4 0.4 gworkspace.app (notoncd) (notwanted)
- 0.4 0.4 gwrite (notoncd) (notwanted)
- 0.4 0.4 gxineplugin (notoncd) (notwanted)
- 0.4 0.4 gyp (notoncd) (notwanted)
- 0.4 0.4 h5utils (notoncd) (notwanted)
- 0.4 0.4 hannah-foo2zjs (notoncd) (notwanted)
- 0.4 0.4 hardlink (notoncd) (notwanted)
- 0.4 0.4 hardware-monitor (notoncd) (notwanted)
- 0.4 0.4 hdapsd (notoncd) (notwanted)
- 0.4 0.4 hdf5-helpers (notoncd) (notwanted)
- 0.4 0.4 hdf5-tools (notoncd) (notwanted)
- 0.4 0.4 hdhomerun-config (notoncd) (notwanted)
- 0.4 0.4 hello (notoncd) (notwanted)
- 0.4 0.4 helpviewer.app (notoncd) (notwanted)
- 0.4 0.4 herrie (notoncd) (notwanted)
- 0.4 0.4 hexcurse (notoncd) (notwanted)
- 0.4 0.4 hijra-applet (notoncd) (notwanted)
- 0.4 0.4 hildon-update-category-database (notoncd) (notwanted)
- 0.4 0.4 hitori (notoncd) (notwanted)
- 0.4 0.4 hoichess (notoncd) (notwanted)
- 0.4 0.4 holdingnuts (notoncd) (notwanted)
- 0.4 0.4 honeyd (notoncd) (notwanted)
- 0.4 0.4 horgand (notoncd) (notwanted)
- 0.4 0.4 hornsey (notoncd) (notwanted)
- 0.4 0.4 hornsey-dbg (notoncd) (notwanted)
- 0.4 0.4 hotssh (notoncd) (notwanted)
- 0.4 0.4 hotwire (notoncd) (notwanted)
- 0.4 0.4 hp2xx (notoncd) (notwanted)
- 0.4 0.4 hpacucli (notoncd) (notwanted)
- 0.4 0.4 hpanel (notoncd) (notwanted)
- 0.4 0.4 hpodder (notoncd) (notwanted)
- 0.4 0.4 hsetroot (notoncd) (notwanted)
- 0.4 0.4 hsqldb-server (notoncd) (notwanted)
- 0.4 0.4 ht (notoncd) (notwanted)
- 0.4 0.4 hugs (notoncd) (notwanted)
- 0.4 0.4 hunspell (notoncd) (notwanted)
- 0.4 0.4 hunt (notoncd) (notwanted)
- 0.4 0.4 hymn (notoncd) (notwanted)
- 0.4 0.4 ibam (notoncd) (notwanted)
- 0.4 0.4 ice34-translators (notoncd) (notwanted)
- 0.4 0.4 iceape-mailnews (notoncd) (notwanted)
- 0.4 0.4 icecast-server (notoncd) (notwanted)
- 0.4 0.4 icecast2 (notoncd) (notwanted)
- 0.4 0.4 icecc (notoncd) (notwanted)
- 0.4 0.4 icecc-monitor (notoncd) (notwanted)
- 0.4 0.4 icedove-l10n-it (notwanted)
- 0.4 0.4 ices2 (notoncd) (notwanted)
- 0.4 0.4 iceweasel-l10n-ru (notwanted)
- 0.4 0.4 iceweasel-l10n-uk (notoncd) (notwanted)
- 0.4 0.4 icewm (notoncd) (notwanted)
- 0.4 0.4 icewm-gnome-support (notoncd) (notwanted)
- 0.4 0.4 idjc (notoncd) (notwanted)
- 0.4 0.4 idn (notoncd) (notwanted)
- 0.4 0.4 idzebra-2.0-utils (notoncd) (notwanted)
- 0.4 0.4 ifp-line-libifp (notoncd) (notwanted)
- 0.4 0.4 ifpgui (notoncd) (notwanted)
- 0.4 0.4 ifplugd (notoncd) (notwanted)
- 0.4 0.4 ihu (notoncd) (notwanted)
- 0.4 0.4 ikvm (notoncd) (notwanted)
- 0.4 0.4 ilisp (notoncd) (notwanted)
- 0.4 0.4 imaptool (notoncd) (notwanted)
- 0.4 0.4 imgtex (notoncd) (notwanted)
- 0.4 0.4 imposm (notoncd) (notwanted)
- 0.4 0.4 indicator-applet-appmenu (notoncd) (notwanted)
- 0.4 0.4 indicator-applet-complete (notoncd) (notwanted)
- 0.4 0.4 indicator-applet-session (notoncd) (notwanted)
- 0.4 0.4 indicator-application (notoncd) (notwanted)
- 0.4 0.4 inn2-inews (notoncd) (notwanted)
- 0.4 0.4 intel-gpu-tools (notoncd) (notwanted)
- 0.4 0.4 interchange (notoncd) (notwanted)
- 0.4 0.4 interchange-ui (notoncd) (notwanted)
- 0.4 0.4 invada-studio-plugins-ladspa (notoncd) (notwanted)
- 0.4 0.4 invada-studio-plugins-lv2 (notoncd) (notwanted)
- 0.4 0.4 inventor-demo (notoncd) (notwanted)
- 0.4 0.4 iodine (notoncd) (notwanted)
- 0.4 0.4 ipe (notoncd) (notwanted)
- 0.4 0.4 ipsec-tools (notoncd) (notwanted)
- 0.4 0.4 ipxe-qemu (notoncd) (notwanted)
- 0.4 0.4 irmp3 (notoncd) (notwanted)
- 0.4 0.4 ironruby (notoncd) (notwanted)
- 0.4 0.4 isdnactivecards (notoncd) (notwanted)
- 0.4 0.4 isdnutils-base (notoncd) (notwanted)
- 0.4 0.4 isight-firmware-tools (notoncd) (notwanted)
- 0.4 0.4 isoquery (notoncd) (notwanted)
- 0.4 0.4 ivman (notoncd) (notwanted)
- 0.4 0.4 ivtv-utils (notoncd) (notwanted)
- 0.4 0.4 jaaa (notoncd) (notwanted)
- 0.4 0.4 jack-rack (notoncd) (notwanted)
- 0.4 0.4 jack-tools (notoncd) (notwanted)
- 0.4 0.4 jackd1 (notoncd) (notwanted)
- 0.4 0.4 jackeq (notoncd) (notwanted)
- 0.4 0.4 jackmeter (notoncd) (notwanted)
- 0.4 0.4 jacksum (notoncd) (notwanted)
- 0.4 0.4 jags (notoncd) (notwanted)
- 0.4 0.4 jalali-calendar (notoncd) (notwanted)
- 0.4 0.4 jam (notoncd) (notwanted)
- 0.4 0.4 jamin (notoncd) (notwanted)
- 0.4 0.4 japa (notoncd) (notwanted)
- 0.4 0.4 javamorph (notoncd) (notwanted)
- 0.4 0.4 jconvolver (notoncd) (notwanted)
- 0.4 0.4 jde (notoncd) (notwanted)
- 0.4 0.4 jetty (notoncd) (notwanted)
- 0.4 0.4 jhove (notoncd) (notwanted)
- 0.4 0.4 jigdo-file (notoncd) (notwanted)
- 0.4 0.4 jkmeter (notoncd) (notwanted)
- 0.4 0.4 jnoise (notoncd) (notwanted)
- 0.4 0.4 joy2key (notoncd) (notwanted)
- 0.4 0.4 jparse (notoncd) (notwanted)
- 0.4 0.4 jpnevulator (notoncd) (notwanted)
- 0.4 0.4 jsvc (notoncd) (notwanted)
- 0.4 0.4 jython (notoncd) (notwanted)
- 0.4 0.4 k3b-dbg (notoncd) (notwanted)
- 0.4 0.4 k9copy (notoncd) (notwanted)
- 0.4 0.4 kakasi (notoncd) (notwanted)
- 0.4 0.4 kallery (notoncd) (notwanted)
- 0.4 0.4 kamefu (notoncd) (notwanted)
- 0.4 0.4 kanjisaver (notoncd) (notwanted)
- 0.4 0.4 kannasaver (notoncd) (notwanted)
- 0.4 0.4 kannel-sqlbox (notoncd) (notwanted)
- 0.4 0.4 kanyremote (notoncd) (notwanted)
- 0.4 0.4 katoob (notoncd) (notwanted)
- 0.4 0.4 kazehakase (notoncd) (notwanted)
- 0.4 0.4 kazehakase-dbg (notoncd) (notwanted)
- 0.4 0.4 kazehakase-gecko (notoncd) (notwanted)
- 0.4 0.4 kazehakase-webkit (notoncd) (notwanted)
- 0.4 0.4 kbackup (notoncd) (notwanted)
- 0.4 0.4 kbedic (notoncd) (notwanted)
- 0.4 0.4 kcemu (notoncd) (notwanted)
- 0.4 0.4 kcemu-common (notoncd) (notwanted)
- 0.4 0.4 kcheckgmail (notoncd) (notwanted)
- 0.4 0.4 kcometen4 (notoncd) (notwanted)
- 0.4 0.4 kde-config-tablet (notoncd) (notwanted)
- 0.4 0.4 kde-style-polyester (notoncd) (notwanted)
- 0.4 0.4 kde-zeroconf (notoncd) (notwanted)
- 0.4 0.4 kdebase-workspace-dev (notoncd) (notwanted)
- 0.4 0.4 kdevelop-dev (notoncd) (notwanted)
- 0.4 0.4 kdevelop-php-docs (notoncd) (notwanted)
- 0.4 0.4 kdevplatform-dev (notoncd) (notwanted)
- 0.4 0.4 kdevplatform1-libs (notoncd) (notwanted)
- 0.4 0.4 kdirstat (notoncd) (notwanted)
- 0.4 0.4 kdocker (notoncd) (notwanted)
- 0.4 0.4 keep (notoncd) (notwanted)
- 0.4 0.4 keepass2 (notoncd) (notwanted)
- 0.4 0.4 keepassx (notoncd) (notwanted)
- 0.4 0.4 kerneltop (notoncd) (notwanted)
- 0.4 0.4 ketm (notoncd) (notwanted)
- 0.4 0.4 keurocalc (notoncd) (notwanted)
- 0.4 0.4 keychain (notoncd) (notwanted)
- 0.4 0.4 keysafe (notoncd) (notwanted)
- 0.4 0.4 keytouch (notoncd) (notwanted)
- 0.4 0.4 keytouch-editor (notoncd) (notwanted)
- 0.4 0.4 kftpgrabber (notoncd) (notwanted)
- 0.4 0.4 kid3-qt (notoncd) (notwanted)
- 0.4 0.4 kiki-the-nano-bot (notoncd) (notwanted)
- 0.4 0.4 kio-ftps (notoncd) (notwanted)
- 0.4 0.4 kio-gopher (notoncd) (notwanted)
- 0.4 0.4 kkbswitch (notoncd) (notwanted)
- 0.4 0.4 klavaro (notoncd) (notwanted)
- 0.4 0.4 klibido (notoncd) (notwanted)
- 0.4 0.4 klick (notoncd) (notwanted)
- 0.4 0.4 kluppe (notoncd) (notwanted)
- 0.4 0.4 kmidimon (notoncd) (notwanted)
- 0.4 0.4 kmyfirewall (notoncd) (notwanted)
- 0.4 0.4 kmymoney-dbg (notoncd) (notwanted)
- 0.4 0.4 kmymoney-dev (notoncd) (notwanted)
- 0.4 0.4 knemo (notoncd) (notwanted)
- 0.4 0.4 knetdockapp (notoncd) (notwanted)
- 0.4 0.4 knmap (notoncd) (notwanted)
- 0.4 0.4 knutclient (notoncd) (notwanted)
- 0.4 0.4 kopete-silc-plugin (notoncd) (notwanted)
- 0.4 0.4 kover (notoncd) (notwanted)
- 0.4 0.4 kphotoalbum (notoncd) (notwanted)
- 0.4 0.4 kpicosim (notoncd) (notwanted)
- 0.4 0.4 kplayer-dbg (notoncd) (notwanted)
- 0.4 0.4 kpogre (notoncd) (notwanted)
- 0.4 0.4 kradio (notoncd) (notwanted)
- 0.4 0.4 kraft (notoncd) (notwanted)
- 0.4 0.4 krecipes (notoncd) (notwanted)
- 0.4 0.4 krecipes-dbg (notoncd) (notwanted)
- 0.4 0.4 kscope (notoncd) (notwanted)
- 0.4 0.4 ksniffer (notoncd) (notwanted)
- 0.4 0.4 kvdr (notoncd) (notwanted)
- 0.4 0.4 kvkbd (notoncd) (notwanted)
- 0.4 0.4 kwalletcli (notoncd) (notwanted)
- 0.4 0.4 kwave (notoncd) (notwanted)
- 0.4 0.4 kwin-style-qtcurve (notoncd) (notwanted)
- 0.4 0.4 kxstitch (notoncd) (notwanted)
- 0.4 0.4 kzenexplorer (notoncd) (notwanted)
- 0.4 0.4 lam-runtime (notoncd) (notwanted)
- 0.4 0.4 lame-utils (notoncd) (notwanted)
- 0.4 0.4 langdrill (notoncd) (notwanted)
- 0.4 0.4 lanmap (notoncd) (notwanted)
- 0.4 0.4 larswm (notoncd) (notwanted)
- 0.4 0.4 lash-bin (notoncd) (notwanted)
- 0.4 0.4 lashd (notoncd) (notwanted)
- 0.4 0.4 last-exit (notoncd) (notwanted)
- 0.4 0.4 lastfm (notoncd) (notwanted)
- 0.4 0.4 lastfmproxy (notoncd) (notwanted)
- 0.4 0.4 lastfmsubmitd (notoncd) (notwanted)
- 0.4 0.4 late (notoncd) (notwanted)
- 0.4 0.4 latrine (notoncd) (notwanted)
- 0.4 0.4 launchpad-integration (notoncd) (notwanted)
- 0.4 0.4 lbt (notoncd) (notwanted)
- 0.4 0.4 lcdproc-extra-drivers (notoncd) (notwanted)
- 0.4 0.4 lcrack (notoncd) (notwanted)
- 0.4 0.4 ld10k1 (notoncd) (notwanted)
- 0.4 0.4 lfhex (notoncd) (notwanted)
- 0.4 0.4 lgtoclnt (notoncd) (notwanted)
- 0.4 0.4 lib3ds-dev (notoncd) (notwanted)
- 0.4 0.4 libacsccid1 (notoncd) (notwanted)
- 0.4 0.4 libactionmailer-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libactiverecord-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libactivesupport-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libaddressable-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libaddressable-ruby1.9.1 (notoncd) (notwanted)
- 0.4 0.4 libaddresses-dev (notoncd) (notwanted)
- 0.4 0.4 libaddresses0 (notoncd) (notwanted)
- 0.4 0.4 libaddressview-dev (notoncd) (notwanted)
- 0.4 0.4 libaddressview0 (notoncd) (notwanted)
- 0.4 0.4 libadplug-dev (notoncd) (notwanted)
- 0.4 0.4 libalgorithm-diff-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 liballegro4.2-plugin-arts (notoncd) (notwanted)
- 0.4 0.4 liballegro4.2-plugin-esd (notoncd) (notwanted)
- 0.4 0.4 libalsa-ocaml (notoncd) (notwanted)
- 0.4 0.4 libalsa-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libalsaplayer-dev (notoncd) (notwanted)
- 0.4 0.4 libalure-dev (notoncd) (notwanted)
- 0.4 0.4 libalure1-dbg (notoncd) (notwanted)
- 0.4 0.4 libalut-dev (notoncd) (notwanted)
- 0.4 0.4 libamazon-ruby (notoncd) (notwanted)
- 0.4 0.4 libamrita-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libamrita2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libamrita2-ruby1.9.1 (notoncd) (notwanted)
- 0.4 0.4 libany-moose-perl (notoncd) (notwanted)
- 0.4 0.4 libao-dbg (notoncd) (notwanted)
- 0.4 0.4 libao-ocaml (notoncd) (notwanted)
- 0.4 0.4 libao-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libapache-dbi-perl (notoncd) (notwanted)
- 0.4 0.4 libapache-mod-security (notoncd) (notwanted)
- 0.4 0.4 libapache-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libapache-session-perl (notoncd) (notwanted)
- 0.4 0.4 libapache-session-wrapper-perl (notoncd) (notwanted)
- 0.4 0.4 libapache2-mod-apreq2 (notoncd) (notwanted)
- 0.4 0.4 libapache2-mod-encoding (notoncd) (notwanted)
- 0.4 0.4 libapache2-mod-fastcgi (notoncd) (notwanted)
- 0.4 0.4 libapache2-mod-fcgid (notoncd) (notwanted)
- 0.4 0.4 libapache2-mod-log-sql-mysql (notoncd) (notwanted)
- 0.4 0.4 libapache2-mod-log-sql-ssl (notoncd) (notwanted)
- 0.4 0.4 libapache2-request-perl (notoncd) (notwanted)
- 0.4 0.4 libaqbanking29-plugins-qt (notoncd) (notwanted)
- 0.4 0.4 libaqbanking29-plugins-qt4 (notoncd) (notwanted)
- 0.4 0.4 libarchive-dev (notoncd) (notwanted)
- 0.4 0.4 libart2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libasync-interrupt-perl (notoncd) (notwanted)
- 0.4 0.4 libatk1.0-dbg (notoncd) (notwanted)
- 0.4 0.4 libatspi-dbg (notoncd) (notwanted)
- 0.4 0.4 libaubio-dev (notoncd) (notwanted)
- 0.4 0.4 libaudio-cd-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-file-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-flac-decoder-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-moosic-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-mpd-common-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-mpd-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-musepack-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-wav-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-wma-perl (notoncd) (notwanted)
- 0.4 0.4 libaudio-xmmsclient-perl (notoncd) (notwanted)
- 0.4 0.4 libaudiofile0-dbg (notoncd) (notwanted)
- 0.4 0.4 libautobox-perl (notoncd) (notwanted)
- 0.4 0.4 libavahi1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libavcodec-extra-53 (notoncd) (notwanted)
- 0.4 0.4 libb-hooks-endofscope-perl (notoncd) (notwanted)
- 0.4 0.4 libbabl-0.0-0-dev (notoncd) (notwanted)
- 0.4 0.4 libbeidlib3 (notoncd) (notwanted)
- 0.4 0.4 libbiblio-endnotestyle-perl (notoncd) (notwanted)
- 0.4 0.4 libbickley-0.4-0 (notoncd) (notwanted)
- 0.4 0.4 libbit-vector-minimal-perl (notoncd) (notwanted)
- 0.4 0.4 libbjack-ocaml (notoncd) (notwanted)
- 0.4 0.4 libbml0 (notoncd) (notwanted)
- 0.4 0.4 libbonobo2-bin (notoncd) (notwanted)
- 0.4 0.4 libboo2.0.9-cil (notoncd) (notwanted)
- 0.4 0.4 libboolean-perl (notoncd) (notwanted)
- 0.4 0.4 libboulder-perl (notoncd) (notwanted)
- 0.4 0.4 libbox2d-dev (notoncd) (notwanted)
- 0.4 0.4 libbox2d0-dbg (notoncd) (notwanted)
- 0.4 0.4 libbrasero-media-dev (notoncd) (notwanted)
- 0.4 0.4 libbreakpoint-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libbsd-dev (notoncd) (notwanted)
- 0.4 0.4 libbt-dev (notoncd) (notwanted)
- 0.4 0.4 libbuilder-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libburn-dbg (notoncd) (notwanted)
- 0.4 0.4 libc-ares-dev (notoncd) (notwanted)
- 0.4 0.4 libcache-cache-perl (notoncd) (notwanted)
- 0.4 0.4 libcache-simple-timedexpiry-perl (notoncd) (notwanted)
- 0.4 0.4 libcairo2-dbg (notoncd) (notwanted)
- 0.4 0.4 libcal3d12 (notoncd) (notwanted)
- 0.4 0.4 libcanberra-gstreamer (notoncd) (notwanted)
- 0.4 0.4 libcanberra-gstreamer-dbg (notoncd) (notwanted)
- 0.4 0.4 libcanberra-gtk-dev (notoncd) (notwanted)
- 0.4 0.4 libcanberra-pulse-dbg (notoncd) (notwanted)
- 0.4 0.4 libcarp-assert-perl (notoncd) (notwanted)
- 0.4 0.4 libccaudio2-1.0-0 (notoncd) (notwanted)
- 0.4 0.4 libccrtp-dev (notoncd) (notwanted)
- 0.4 0.4 libcdaudio-dbg (notoncd) (notwanted)
- 0.4 0.4 libcdaudio-dev (notoncd) (notwanted)
- 0.4 0.4 libcddb2-dev (notoncd) (notwanted)
- 0.4 0.4 libcdio-cdda-dev (notoncd) (notwanted)
- 0.4 0.4 libcdio-dev (notoncd) (notwanted)
- 0.4 0.4 libcdio-paranoia-dev (notoncd) (notwanted)
- 0.4 0.4 libcdio-utils (notoncd) (notwanted)
- 0.4 0.4 libcdparanoia-dev (notoncd) (notwanted)
- 0.4 0.4 libceguiogre-dev (notoncd) (notwanted)
- 0.4 0.4 libceguiogrerenderer-1.6.4-dbg (notoncd) (notwanted)
- 0.4 0.4 libcflow-perl (notoncd) (notwanted)
- 0.4 0.4 libcgi-fast-perl (notwanted)
- 0.4 0.4 libcgi-pm-perl (notoncd) (notwanted)
- 0.4 0.4 libcgi-simple-perl (notoncd) (notwanted)
- 0.4 0.4 libcheese-gtk-dev (notoncd) (notwanted)
- 0.4 0.4 libcherokee-mod-streaming (notoncd) (notwanted)
- 0.4 0.4 libcherokee-server0 (notoncd) (notwanted)
- 0.4 0.4 libclalsadrv-dev (notoncd) (notwanted)
- 0.4 0.4 libclamav-client-perl (notoncd) (notwanted)
- 0.4 0.4 libclamav-dev (notoncd) (notwanted)
- 0.4 0.4 libclass-accessor-lvalue-perl (notoncd) (notwanted)
- 0.4 0.4 libclass-container-perl (notoncd) (notwanted)
- 0.4 0.4 libclass-method-modifiers-perl (notoncd) (notwanted)
- 0.4 0.4 libclass-mop-perl (notoncd) (notwanted)
- 0.4 0.4 libclass-virtual-perl (notoncd) (notwanted)
- 0.4 0.4 libcmdparse2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libcoin60-dev (notoncd) (notwanted)
- 0.4 0.4 libcommoncpp2-dev (notoncd) (notwanted)
- 0.4 0.4 libcompizconfig-dev (notoncd) (notwanted)
- 0.4 0.4 libconfig-auto-perl (notoncd) (notwanted)
- 0.4 0.4 libconfig-gitlike-perl (notoncd) (notwanted)
- 0.4 0.4 libconfigreader-perl (notoncd) (notwanted)
- 0.4 0.4 libconfigreader-simple-perl (notoncd) (notwanted)
- 0.4 0.4 libconvert-color-perl (notoncd) (notwanted)
- 0.4 0.4 libcrack2-dev (notoncd) (notwanted)
- 0.4 0.4 libcry-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libcrypt-ciphersaber-perl (notoncd) (notwanted)
- 0.4 0.4 libcrypt-twofish-perl (notoncd) (notwanted)
- 0.4 0.4 libcryptgps-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libcsfml-dev (notoncd) (notwanted)
- 0.4 0.4 libcsfml1.6-dbg (notoncd) (notwanted)
- 0.4 0.4 libcss-squish-perl (notoncd) (notwanted)
- 0.4 0.4 libdata-password-perl (notoncd) (notwanted)
- 0.4 0.4 libdata-section-perl (notoncd) (notwanted)
- 0.4 0.4 libdata-validate-domain-perl (notoncd) (notwanted)
- 0.4 0.4 libdata-validate-ip-perl (notoncd) (notwanted)
- 0.4 0.4 libdata-validate-uri-perl (notoncd) (notwanted)
- 0.4 0.4 libdataobjects-mysql-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libdataobjects-mysql-ruby1.9.1 (notoncd) (notwanted)
- 0.4 0.4 libdataobjects-postgres-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libdataobjects-postgres-ruby1.9.1 (notoncd) (notwanted)
- 0.4 0.4 libdataobjects-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libdataobjects-ruby1.9.1 (notoncd) (notwanted)
- 0.4 0.4 libdataobjects-sqlite3-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libdataobjects-sqlite3-ruby1.9.1 (notoncd) (notwanted)
- 0.4 0.4 libdate-ical-perl (notoncd) (notwanted)
- 0.4 0.4 libdate-leapyear-perl (notoncd) (notwanted)
- 0.4 0.4 libdatetime-format-natural-perl (notoncd) (notwanted)
- 0.4 0.4 libdb4.8-dev (notoncd) (notwanted)
- 0.4 0.4 libdb4o7.4-cil (notoncd) (notwanted)
- 0.4 0.4 libdbaudiolib0-dev (notoncd) (notwanted)
- 0.4 0.4 libdbd-mysql (notoncd) (notwanted)
- 0.4 0.4 libdbd-sqlite3-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libdbix-dbschema-perl (notoncd) (notwanted)
- 0.4 0.4 libdbix-fulltextsearch-perl (notoncd) (notwanted)
- 0.4 0.4 libdbix-searchbuilder-perl (notoncd) (notwanted)
- 0.4 0.4 libdca-utils (notoncd) (notwanted)
- 0.4 0.4 libdecodeqr-examples (notoncd) (notwanted)
- 0.4 0.4 libdevel-globaldestruction-perl (notoncd) (notwanted)
- 0.4 0.4 libdigest-crc-perl (notoncd) (notwanted)
- 0.4 0.4 libdiscid0-dev (notoncd) (notwanted)
- 0.4 0.4 libdjconsole-dev (notoncd) (notwanted)
- 0.4 0.4 libdlr0.9-cil (notoncd) (notwanted)
- 0.4 0.4 libdnet-dev (notoncd) (notwanted)
- 0.4 0.4 libdns-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libdvdnav-dbg (notoncd) (notwanted)
- 0.4 0.4 libdvdread-dbg (notoncd) (notwanted)
- 0.4 0.4 libebml-dev (notoncd) (notwanted)
- 0.4 0.4 libebook-tools-perl (notoncd) (notwanted)
- 0.4 0.4 libecasound-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libecasoundc2.2-dev (notoncd) (notwanted)
- 0.4 0.4 libepub-dev (notoncd) (notwanted)
- 0.4 0.4 libesmtp5 (notoncd) (notwanted)
- 0.4 0.4 libespeak-dev (notoncd) (notwanted)
- 0.4 0.4 libexception-class-perl (notoncd) (notwanted)
- 0.4 0.4 libexosip2-7 (notoncd) (notwanted)
- 0.4 0.4 libextractor-plugins (notoncd) (notwanted)
- 0.4 0.4 libextractor1c2a (notoncd) (notwanted)
- 0.4 0.4 libfcgi-procmanager-perl (notoncd) (notwanted)
- 0.4 0.4 libfile-copy-link-perl (notoncd) (notwanted)
- 0.4 0.4 libfile-fnmatch-perl (notoncd) (notwanted)
- 0.4 0.4 libfile-homedir-perl (notoncd) (notwanted)
- 0.4 0.4 libfile-mmagic-perl (notoncd) (notwanted)
- 0.4 0.4 libfile-sharedir-perl (notoncd) (notwanted)
- 0.4 0.4 libfile-temp-perl (notoncd) (notwanted)
- 0.4 0.4 libfilesys-diskspace-perl (notoncd) (notwanted)
- 0.4 0.4 libfishsound1-dbg (notoncd) (notwanted)
- 0.4 0.4 libfishsound1-dev (notoncd) (notwanted)
- 0.4 0.4 libflac++-dev (notoncd) (notwanted)
- 0.4 0.4 libflake-dev (notoncd) (notwanted)
- 0.4 0.4 libflash-swfplayer (notoncd) (notwanted)
- 0.4 0.4 libflickrnet-cil-dev (notoncd) (notwanted)
- 0.4 0.4 libfontconfig1-dbg (notoncd) (notwanted)
- 0.4 0.4 libfreeimage-dev (notoncd) (notwanted)
- 0.4 0.4 libfusioninventory-agent-task-netdiscovery-perl (notoncd) (notwanted)
- 0.4 0.4 libg3d-plugin-gdkpixbuf (notoncd) (notwanted)
- 0.4 0.4 libgail-dbg (notoncd) (notwanted)
- 0.4 0.4 libgail-gnome-dbg (notoncd) (notwanted)
- 0.4 0.4 libgavl-dev (notoncd) (notwanted)
- 0.4 0.4 libgavl-ocaml (notoncd) (notwanted)
- 0.4 0.4 libgavl-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libgavl1-dbg (notoncd) (notwanted)
- 0.4 0.4 libgconf2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libgda-4.0-4-dbg (notoncd) (notwanted)
- 0.4 0.4 libgda-4.0-mysql (notoncd) (notwanted)
- 0.4 0.4 libgda-4.0-postgres (notoncd) (notwanted)
- 0.4 0.4 libgdata-cil-dev (notoncd) (notwanted)
- 0.4 0.4 libgdata1.4-cil (notoncd) (notwanted)
- 0.4 0.4 libgdl-1-dbg (notoncd) (notwanted)
- 0.4 0.4 libgdome2-cpp-smart-dev (notoncd) (notwanted)
- 0.4 0.4 libgdome2-dev (notoncd) (notwanted)
- 0.4 0.4 libgegl-0.0-dev (notoncd) (notwanted)
- 0.4 0.4 libgeier0 (notoncd) (notwanted)
- 0.4 0.4 libgeo-coordinates-utm-perl (notoncd) (notwanted)
- 0.4 0.4 libgeo-helmerttransform-perl (notoncd) (notwanted)
- 0.4 0.4 libgeo-ip-perl (notoncd) (notwanted)
- 0.4 0.4 libgeo-osm-tiles-perl (notoncd) (notwanted)
- 0.4 0.4 libgeography-nationalgrid-perl (notoncd) (notwanted)
- 0.4 0.4 libgeos-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libgeotranz3.1 (notoncd) (notwanted)
- 0.4 0.4 libgetopt-euclid-perl (notoncd) (notwanted)
- 0.4 0.4 libggadget-gtk-1.0-dev (notoncd) (notwanted)
- 0.4 0.4 libggadget-qt-1.0-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-binary-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-binary-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-cairo-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-cairo-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-data-accessor-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-data-accessor-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-event-list-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-event-list-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-explicit-exception-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-explicit-exception-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-glib-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-glib-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-gstreamer-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-gstreamer-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-haskell-src-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-haskell-src-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-haskore-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-haskore-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-highlighting-kate-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-highlighting-kate-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-markov-chain-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-markov-chain-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-midi-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-midi-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-monoid-transformer-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-monoid-transformer-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-mtl-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-mtl-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-non-negative-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-non-negative-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-openal-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-openal-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-opengl-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-opengl-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-parsec2-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-parsec2-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-parsec3-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-parsec3-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-pcre-light-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-pcre-light-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-quickcheck2-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-quickcheck2-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-sdl-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-sdl-mixer-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-sdl-mixer-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-sdl-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-transformers-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-transformers-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-utility-ht-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-utility-ht-prof (notoncd) (notwanted)
- 0.4 0.4 libghc6-xhtml-dev (notoncd) (notwanted)
- 0.4 0.4 libghc6-xhtml-prof (notoncd) (notwanted)
- 0.4 0.4 libgio-cil (notoncd) (notwanted)
- 0.4 0.4 libglade2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libgladeui-1-9 (notoncd) (notwanted)
- 0.4 0.4 libglib2.0-0-dbg (notoncd) (notwanted)
- 0.4 0.4 libglpk-dev (notoncd) (notwanted)
- 0.4 0.4 libgme-dev (notoncd) (notwanted)
- 0.4 0.4 libgmerlin-dev (notoncd) (notwanted)
- 0.4 0.4 libgnelib-dev (notoncd) (notwanted)
- 0.4 0.4 libgnelib0-dbg (notoncd) (notwanted)
- 0.4 0.4 libgnome-media-dev (notoncd) (notwanted)
- 0.4 0.4 libgnome-speech-dev (notoncd) (notwanted)
- 0.4 0.4 libgnome2-dbg (notoncd) (notwanted)
- 0.4 0.4 libgnome2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libgnome2-wnck-perl (notoncd) (notwanted)
- 0.4 0.4 libgnomecanvas2-dbg (notoncd) (notwanted)
- 0.4 0.4 libgnomecanvas2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libgnomeui-0-dbg (notoncd) (notwanted)
- 0.4 0.4 libgnomevfs2-0-dbg (notoncd) (notwanted)
- 0.4 0.4 libgnupg-interface-perl (notoncd) (notwanted)
- 0.4 0.4 libgnustep-base-dev (notoncd) (notwanted)
- 0.4 0.4 libgnustep-base1.20-dbg (notoncd) (notwanted)
- 0.4 0.4 libgnustep-dl2-dev (notoncd) (notwanted)
- 0.4 0.4 libgnustep-gui-dev (notoncd) (notwanted)
- 0.4 0.4 libgnustep-gui0.18-dbg (notoncd) (notwanted)
- 0.4 0.4 libgoffice-dbg (notoncd) (notwanted)
- 0.4 0.4 libgoo-canvas-perl (notoncd) (notwanted)
- 0.4 0.4 libgooglecharts-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libgraphviz-perl (notoncd) (notwanted)
- 0.4 0.4 libgsf-1-114-dbg (notoncd) (notwanted)
- 0.4 0.4 libgsf-gnome-1-114-dbg (notoncd) (notwanted)
- 0.4 0.4 libgssdp-1.0-dbg (notoncd) (notwanted)
- 0.4 0.4 libgssdp-1.0-dev (notoncd) (notwanted)
- 0.4 0.4 libgstfarsight0.10-dbg (notoncd) (notwanted)
- 0.4 0.4 libgstfarsight0.10-dev (notoncd) (notwanted)
- 0.4 0.4 libgstreamer-interfaces-perl (notoncd) (notwanted)
- 0.4 0.4 libgstreamer0.10-0-dbg (notoncd) (notwanted)
- 0.4 0.4 libgtk2-ex-podviewer-perl (notoncd) (notwanted)
- 0.4 0.4 libgtk2-notify-perl (notoncd) (notwanted)
- 0.4 0.4 libgtk2-trayicon-perl (notoncd) (notwanted)
- 0.4 0.4 libgtk2.0-0-dbg (notoncd) (notwanted)
- 0.4 0.4 libgtkhtml-editor-dev (notoncd) (notwanted)
- 0.4 0.4 libgtkhtml3.14-dbg (notoncd) (notwanted)
- 0.4 0.4 libgtkmathview-bin (notoncd) (notwanted)
- 0.4 0.4 libgtkmathview-dev (notoncd) (notwanted)
- 0.4 0.4 libgupnp-1.0-dbg (notoncd) (notwanted)
- 0.4 0.4 libgupnp-1.0-dev (notoncd) (notwanted)
- 0.4 0.4 libgupnp-av-1.0-dbg (notoncd) (notwanted)
- 0.4 0.4 libgupnp-av-1.0-dev (notoncd) (notwanted)
- 0.4 0.4 libhd-dev (notoncd) (notwanted)
- 0.4 0.4 libhdf4-alt-dev (notoncd) (notwanted)
- 0.4 0.4 libhdf5-mpich-dev (notoncd) (notwanted)
- 0.4 0.4 libhpricot-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libhpricot-ruby1.9.1 (notoncd) (notwanted)
- 0.4 0.4 libhtml-mason-perl (notoncd) (notwanted)
- 0.4 0.4 libhtml-rewriteattributes-perl (notoncd) (notwanted)
- 0.4 0.4 libhtml-strip-perl (notoncd) (notwanted)
- 0.4 0.4 libhtml-stripscripts-parser-perl (notoncd) (notwanted)
- 0.4 0.4 libhtml-stripscripts-perl (notoncd) (notwanted)
- 0.4 0.4 libhtml-table-perl (notoncd) (notwanted)
- 0.4 0.4 libhttp-browserdetect-perl (notoncd) (notwanted)
- 0.4 0.4 libhttp-oai-perl (notoncd) (notwanted)
- 0.4 0.4 libhugs-alut-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-base-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-cabal-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-fgl-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-glut-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-haskell-src-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-haskell98-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-haxml-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-hgl-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-hunit-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-mtl-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-network-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-openal-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-opengl-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-parsec-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-quickcheck-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-stm-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-time-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-unix-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-x11-bundled (notoncd) (notwanted)
- 0.4 0.4 libhugs-xhtml-bundled (notoncd) (notwanted)
- 0.4 0.4 libi18n-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libidzebra-2.0-dev (notoncd) (notwanted)
- 0.4 0.4 libifp-dev (notoncd) (notwanted)
- 0.4 0.4 libikvm-native (notoncd) (notwanted)
- 0.4 0.4 libinline-perl (notoncd) (notwanted)
- 0.4 0.4 libipc-run-safehandles-perl (notoncd) (notwanted)
- 0.4 0.4 libipc-run3-perl (notoncd) (notwanted)
- 0.4 0.4 libipc-sharelite-perl (notoncd) (notwanted)
- 0.4 0.4 libiptables-chainmgr-perl (notoncd) (notwanted)
- 0.4 0.4 libiptables-parse-perl (notoncd) (notwanted)
- 0.4 0.4 libirrlicht-dev (notoncd) (notwanted)
- 0.4 0.4 libisoburn-dbg (notoncd) (notwanted)
- 0.4 0.4 libisofs-dbg (notoncd) (notwanted)
- 0.4 0.4 libjinput-jni (notoncd) (notwanted)
- 0.4 0.4 libk3b-dev (notoncd) (notwanted)
- 0.4 0.4 libkamefu0 (notoncd) (notwanted)
- 0.4 0.4 libkate-dev (notoncd) (notwanted)
- 0.4 0.4 libkate-tools (notoncd) (notwanted)
- 0.4 0.4 libkate1-dbg (notoncd) (notwanted)
- 0.4 0.4 libkcddb-dev (notoncd) (notwanted)
- 0.4 0.4 libkdcraw-runtime (notoncd) (notwanted)
- 0.4 0.4 libkimono4.1-cil (notoncd) (notwanted)
- 0.4 0.4 liblablgl-ocaml (notoncd) (notwanted)
- 0.4 0.4 liblablgl-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libladspa-ocaml (notoncd) (notwanted)
- 0.4 0.4 libladspa-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 liblash-dev (notoncd) (notwanted)
- 0.4 0.4 liblastfm-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 liblingua-preferred-perl (notoncd) (notwanted)
- 0.4 0.4 liblinphone-dev (notoncd) (notwanted)
- 0.4 0.4 liblinux-dvb-perl (notoncd) (notwanted)
- 0.4 0.4 liblivemedia-dev (notoncd) (notwanted)
- 0.4 0.4 liblo10k1-dev (notoncd) (notwanted)
- 0.4 0.4 liblocale-maketext-fuzzy-perl (notoncd) (notwanted)
- 0.4 0.4 liblog-any-perl (notoncd) (notwanted)
- 0.4 0.4 liblog-tracemessages-perl (notoncd) (notwanted)
- 0.4 0.4 liblog4net1.2-cil (notoncd) (notwanted)
- 0.4 0.4 libloudmouth1-0-dbg (notoncd) (notwanted)
- 0.4 0.4 liblouisxml-bin (notoncd) (notwanted)
- 0.4 0.4 liblouisxml1 (notoncd) (notwanted)
- 0.4 0.4 liblscp-dev (notoncd) (notwanted)
- 0.4 0.4 liblwjgl-java-jni (notoncd) (notwanted)
- 0.4 0.4 liblwp-protocol-http-socketunix-perl (notoncd) (notwanted)
- 0.4 0.4 libmad-ocaml (notoncd) (notwanted)
- 0.4 0.4 libmad-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libmapnik2-2.0 (notoncd) (notwanted)
- 0.4 0.4 libmarc-crosswalk-dublincore-perl (notoncd) (notwanted)
- 0.4 0.4 libmarc-xml-perl (notoncd) (notwanted)
- 0.4 0.4 libmasonx-request-withapachesession-perl (notoncd) (notwanted)
- 0.4 0.4 libmatroska-dev (notoncd) (notwanted)
- 0.4 0.4 libmediastreamer-dev (notoncd) (notwanted)
- 0.4 0.4 libmemcache-client-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libmemphis-0.2-dbg (notoncd) (notwanted)
- 0.4 0.4 libmemphis-0.2-dev (notoncd) (notwanted)
- 0.4 0.4 libmime-base64-urlsafe-perl (notoncd) (notwanted)
- 0.4 0.4 libmime-charset-perl (notoncd) (notwanted)
- 0.4 0.4 libmime-encwords-perl (notoncd) (notwanted)
- 0.4 0.4 libmime-lite-html-perl (notoncd) (notwanted)
- 0.4 0.4 libmimic-dev (notoncd) (notwanted)
- 0.4 0.4 libmmap-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libmodern-perl-perl (notoncd) (notwanted)
- 0.4 0.4 libmodule-versions-report-perl (notoncd) (notwanted)
- 0.4 0.4 libmono-accessibility1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-accessibility4.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-bytefx0.7.6.1-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-bytefx0.7.6.2-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-cecil-flowanalysis0.1a-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-cscompmgd7.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-data1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-data2.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-debugger-soft0.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-dev (notoncd) (notwanted)
- 0.4 0.4 libmono-firebirdsql1.7-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-getoptions1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-getoptions2.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-ldap1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-microsoft-visualbasic8.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-microsoft7.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-npgsql1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-oracle1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-peapi1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-posix1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-relaxng1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-sharpzip0.6-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-sqlite1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-system-componentmodel-dataannotations4.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-system-ldap1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-system-messaging1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-system-runtime1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-system-windows-forms4.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-webbrowser0.5-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-webbrowser4.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-winforms1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmono-zeroconf1.0-cil (notoncd) (notwanted)
- 0.4 0.4 libmoose-autobox-perl (notoncd) (notwanted)
- 0.4 0.4 libmoose-perl (notoncd) (notwanted)
- 0.4 0.4 libmoosex-has-sugar-perl (notoncd) (notwanted)
- 0.4 0.4 libmoosex-semiaffordanceaccessor-perl (notoncd) (notwanted)
- 0.4 0.4 libmoosex-types-perl (notoncd) (notwanted)
- 0.4 0.4 libmouse-perl (notoncd) (notwanted)
- 0.4 0.4 libmp3-info-perl (notoncd) (notwanted)
- 0.4 0.4 libmp3-tag-perl (notoncd) (notwanted)
- 0.4 0.4 libmp3splt-mp3 (notoncd) (notwanted)
- 0.4 0.4 libmp3splt-ogg (notoncd) (notwanted)
- 0.4 0.4 libmp4-info-perl (notoncd) (notwanted)
- 0.4 0.4 libmpich1.0-dev (notoncd) (notwanted)
- 0.4 0.4 libmsgcat-perl (notoncd) (notwanted)
- 0.4 0.4 libmtp-dbg (notoncd) (notwanted)
- 0.4 0.4 libmtp-dev (notoncd) (notwanted)
- 0.4 0.4 libmultisync-plugin-backup (notoncd) (notwanted)
- 0.4 0.4 libmultisync-plugin-evolution (notoncd) (notwanted)
- 0.4 0.4 libmultisync-plugin-irmc (notoncd) (notwanted)
- 0.4 0.4 libmusicbrainz-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libmusicbrainz4-dev (notoncd) (notwanted)
- 0.4 0.4 libmysql6.1-cil (notoncd) (notwanted)
- 0.4 0.4 libnamespace-autoclean-perl (notoncd) (notwanted)
- 0.4 0.4 libnamespace-clean-perl (notoncd) (notwanted)
- 0.4 0.4 libnbtk-1.2-0 (notoncd) (notwanted)
- 0.4 0.4 libncurses-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libnet-bonjour-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-google-authsub-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-google-code-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-ipv6addr-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-nbname-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-patricia-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-proxy-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-rblclient-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-rendezvous-publish-backend-avahi-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-rendezvous-publish-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-sip-perl (notoncd) (notwanted)
- 0.4 0.4 libnet-xwhois-perl (notoncd) (notwanted)
- 0.4 0.4 libnetclasses0 (notoncd) (notwanted)
- 0.4 0.4 libnethttpd-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libnetwork-ipv4addr-perl (notoncd) (notwanted)
- 0.4 0.4 libnfo-dev (notoncd) (notwanted)
- 0.4 0.4 libnice-dev (notoncd) (notwanted)
- 0.4 0.4 libnini1.1-cil (notoncd) (notwanted)
- 0.4 0.4 libnmap-parser-perl (notoncd) (notwanted)
- 0.4 0.4 libnss3-1d-dbg (notoncd) (notwanted)
- 0.4 0.4 libnunit2.4-cil (notoncd) (notwanted)
- 0.4 0.4 libnusoap-php (notoncd) (notwanted)
- 0.4 0.4 libobasis3.5-pyuno (notoncd) (notwanted)
- 0.4 0.4 libobasis3.6-pyuno (notoncd) (notwanted)
- 0.4 0.4 libobasis4.0-pyuno (notoncd) (notwanted)
- 0.4 0.4 libobjc2-dbg (notoncd) (notwanted)
- 0.4 0.4 libocamlnet-ocaml (notoncd) (notwanted)
- 0.4 0.4 libocamlnet-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libofa0-dev (notoncd) (notwanted)
- 0.4 0.4 libogg-ocaml (notoncd) (notwanted)
- 0.4 0.4 libogg-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libogg-vorbis-header-perl (notoncd) (notwanted)
- 0.4 0.4 libogg-vorbis-header-pureperl-perl (notoncd) (notwanted)
- 0.4 0.4 liboggkate-dev (notoncd) (notwanted)
- 0.4 0.4 libogre-dev (notoncd) (notwanted)
- 0.4 0.4 libogre-perl (notoncd) (notwanted)
- 0.4 0.4 libogremain-1.6.4 (notoncd) (notwanted)
- 0.4 0.4 libogremain-1.6.4-dbg (notoncd) (notwanted)
- 0.4 0.4 libois-perl (notoncd) (notwanted)
- 0.4 0.4 libokular-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 liboobs-1-4-dbg (notoncd) (notwanted)
- 0.4 0.4 libopal-dbg (notoncd) (notwanted)
- 0.4 0.4 libopenal1-dbg (notoncd) (notwanted)
- 0.4 0.4 libopencascade-foundation-dev (notoncd) (notwanted)
- 0.4 0.4 libopencascade-modeling-dev (notoncd) (notwanted)
- 0.4 0.4 libopencascade-visualization-dev (notoncd) (notwanted)
- 0.4 0.4 liborc-0.4-dev (notoncd) (notwanted)
- 0.4 0.4 libortp-dev (notoncd) (notwanted)
- 0.4 0.4 libosgearth1 (notoncd) (notwanted)
- 0.4 0.4 libosip2-dev (notoncd) (notwanted)
- 0.4 0.4 liboss-salsa2 (notoncd) (notwanted)
- 0.4 0.4 libpalm-perl (notoncd) (notwanted)
- 0.4 0.4 libpam-opie (notoncd) (notwanted)
- 0.4 0.4 libpam-pgsql (notoncd) (notwanted)
- 0.4 0.4 libpam-shield (notoncd) (notwanted)
- 0.4 0.4 libpam-smbpass (notoncd) (notwanted)
- 0.4 0.4 libpango1.0-0-dbg (notoncd) (notwanted)
- 0.4 0.4 libpano13-dev (notoncd) (notwanted)
- 0.4 0.4 libpantomime1.2 (notoncd) (notwanted)
- 0.4 0.4 libparrot-dev (notoncd) (notwanted)
- 0.4 0.4 libparse-debian-packages-perl (notoncd) (notwanted)
- 0.4 0.4 libparse-syslog-perl (notoncd) (notwanted)
- 0.4 0.4 libpassword-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libpath-dispatcher-declarative-perl (notoncd) (notwanted)
- 0.4 0.4 libpath-dispatcher-perl (notoncd) (notwanted)
- 0.4 0.4 libpcre-ocaml (notoncd) (notwanted)
- 0.4 0.4 libpcre-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libpdf-fdf-simple-perl (notoncd) (notwanted)
- 0.4 0.4 libperl6-junction-perl (notoncd) (notwanted)
- 0.4 0.4 libperlspeak-perl (notoncd) (notwanted)
- 0.4 0.4 libpgplot-perl (notoncd) (notwanted)
- 0.4 0.4 libpgtcl1.5 (notoncd) (notwanted)
- 0.4 0.4 libphat-tools (notoncd) (notwanted)
- 0.4 0.4 libphp-phpsniff (notoncd) (notwanted)
- 0.4 0.4 libphp-serialization-perl (notoncd) (notwanted)
- 0.4 0.4 libphp-snoopy (notoncd) (notwanted)
- 0.4 0.4 libpigment0.3-11 (notoncd) (notwanted)
- 0.4 0.4 libpixman-1-0-dbg (notoncd) (notwanted)
- 0.4 0.4 libplasma2.0-cil (notoncd) (notwanted)
- 0.4 0.4 libplucene-perl (notoncd) (notwanted)
- 0.4 0.4 libpopplerkit0 (notoncd) (notwanted)
- 0.4 0.4 libportaudio-ocaml (notoncd) (notwanted)
- 0.4 0.4 libportaudio-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libprelude2 (notoncd) (notwanted)
- 0.4 0.4 libpreludedb0 (notoncd) (notwanted)
- 0.4 0.4 libproc-invokeeditor-perl (notoncd) (notwanted)
- 0.4 0.4 libproc-pid-file-perl (notoncd) (notwanted)
- 0.4 0.4 libproc-processtable-perl (notoncd) (notwanted)
- 0.4 0.4 libproc-simple-perl (notoncd) (notwanted)
- 0.4 0.4 libprophet-perl (notoncd) (notwanted)
- 0.4 0.4 libpt-1.10.10-plugins-oss (notoncd) (notwanted)
- 0.4 0.4 libpt2.4.5 (notoncd) (notwanted)
- 0.4 0.4 libpt2.6.7-dbg (notoncd) (notwanted)
- 0.4 0.4 libpulse-browse0-dbg (notoncd) (notwanted)
- 0.4 0.4 libpulse-mainloop-glib0-dbg (notoncd) (notwanted)
- 0.4 0.4 libpulse-ocaml (notoncd) (notwanted)
- 0.4 0.4 libpulse-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libpulse0-dbg (notoncd) (notwanted)
- 0.4 0.4 libpuzzle-bin (notoncd) (notwanted)
- 0.4 0.4 libpython2.7-minimal (notoncd) (notwanted)
- 0.4 0.4 libpython2.7-stdlib (notoncd) (notwanted)
- 0.4 0.4 libq4banking1 (notoncd) (notwanted)
- 0.4 0.4 libqbanking8 (notoncd) (notwanted)
- 0.4 0.4 libqglviewer-dev-common (notoncd) (notwanted)
- 0.4 0.4 libqglviewer-qt3-dev (notoncd) (notwanted)
- 0.4 0.4 libqglviewer-qt4-dev (notoncd) (notwanted)
- 0.4 0.4 libqmmp-dev (notoncd) (notwanted)
- 0.4 0.4 libqmmp-misc (notoncd) (notwanted)
- 0.4 0.4 libqmmpui-dev (notoncd) (notwanted)
- 0.4 0.4 libqof2-backend-qsf (notoncd) (notwanted)
- 0.4 0.4 libqof2-backend-sqlite (notoncd) (notwanted)
- 0.4 0.4 libqpx-dev (notoncd) (notwanted)
- 0.4 0.4 libqscintilla-dev (notoncd) (notwanted)
- 0.4 0.4 libqscintilla7 (notoncd) (notwanted)
- 0.4 0.4 libqt3-mt-sqlite (notoncd) (notwanted)
- 0.4 0.4 libqt4-sql-ibase (notoncd) (notwanted)
- 0.4 0.4 libqt4-sql-psql (notoncd) (notwanted)
- 0.4 0.4 libqt4-sql-sqlite2 (notoncd) (notwanted)
- 0.4 0.4 libqt4-sql-tds (notoncd) (notwanted)
- 0.4 0.4 libqtwebkit2.2-cil (notoncd) (notwanted)
- 0.4 0.4 libquvi-dev (notoncd) (notwanted)
- 0.4 0.4 libqyoto4.5-cil (notoncd) (notwanted)
- 0.4 0.4 libraptor1-dev (notoncd) (notwanted)
- 0.4 0.4 librasqal2-dev (notoncd) (notwanted)
- 0.4 0.4 libraul-dev (notoncd) (notwanted)
- 0.4 0.4 libraw1394-tools (notoncd) (notwanted)
- 0.4 0.4 librdf0-dev (notoncd) (notwanted)
- 0.4 0.4 libreadline-java (notoncd) (notwanted)
- 0.4 0.4 libregina3 (notoncd) (notwanted)
- 0.4 0.4 librenaissance0-dev (notoncd) (notwanted)
- 0.4 0.4 libreoffice-l10n-da (notwanted)
- 0.4 0.4 libreoffice-l10n-it (notwanted)
- 0.4 0.4 libreoffice-l10n-ja (notwanted)
- 0.4 0.4 libreoffice-l10n-nn (notwanted)
- 0.4 0.4 libreoffice-l10n-pl (notoncd) (notwanted)
- 0.4 0.4 libreoffice-l10n-ru (notoncd) (notwanted)
- 0.4 0.4 libreoffice-l10n-uk (notoncd) (notwanted)
- 0.4 0.4 libreoffice-l10n-zh-tw (notwanted)
- 0.4 0.4 libreoffice-lightproof-ru-ru (notoncd) (notwanted)
- 0.4 0.4 libreoffice-nlpsolver (notoncd) (notwanted)
- 0.4 0.4 libreoffice-ogltrans (notoncd) (notwanted)
- 0.4 0.4 libreoffice-presenter-console (notoncd) (notwanted)
- 0.4 0.4 libreoffice-script-provider-bsh (notoncd) (notwanted)
- 0.4 0.4 libreoffice-script-provider-js (notoncd) (notwanted)
- 0.4 0.4 libreoffice-sdbc-postgresql (notoncd) (notwanted)
- 0.4 0.4 libreoffice-voikko (notoncd) (notwanted)
- 0.4 0.4 libreoffice-writer2latex (notoncd) (notwanted)
- 0.4 0.4 libreoffice3.5-ure (notoncd) (notwanted)
- 0.4 0.4 libreoffice3.6-ure (notoncd) (notwanted)
- 0.4 0.4 libreoffice4.0-ure (notoncd) (notwanted)
- 0.4 0.4 librep9 (notoncd) (notwanted)
- 0.4 0.4 libreplaygain-dev (notoncd) (notwanted)
- 0.4 0.4 librepository-java-gcj (notoncd) (notwanted)
- 0.4 0.4 libresample1-dev (notoncd) (notwanted)
- 0.4 0.4 libroar-compat0 (notoncd) (notwanted)
- 0.4 0.4 libroar-dev (notoncd) (notwanted)
- 0.4 0.4 libropkg-perl (notoncd) (notwanted)
- 0.4 0.4 librpc-xml-perl (notoncd) (notwanted)
- 0.4 0.4 librplay3-dev (notoncd) (notwanted)
- 0.4 0.4 librsvg2-dbg (notoncd) (notwanted)
- 0.4 0.4 librubberband-dev (notoncd) (notwanted)
- 0.4 0.4 libruby1.9 (notoncd) (notwanted)
- 0.4 0.4 libsafe-hole-perl (notoncd) (notwanted)
- 0.4 0.4 libsamplerate-ocaml (notoncd) (notwanted)
- 0.4 0.4 libsamplerate-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libsane-perl (notoncd) (notwanted)
- 0.4 0.4 libscope-guard-perl (notoncd) (notwanted)
- 0.4 0.4 libsdl-ocaml (notoncd) (notwanted)
- 0.4 0.4 libsdl-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libsdl-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libsdl-ruby1.9.1 (notoncd) (notwanted)
- 0.4 0.4 libsdl-ttf2.0-dev (notoncd) (notwanted)
- 0.4 0.4 libset-crontab-perl (notoncd) (notwanted)
- 0.4 0.4 libsfml1.6-dbg (notoncd) (notwanted)
- 0.4 0.4 libshout-ocaml (notoncd) (notwanted)
- 0.4 0.4 libshout-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libshout3-dev (notoncd) (notwanted)
- 0.4 0.4 libslang2-modules (notoncd) (notwanted)
- 0.4 0.4 libslp-dev (notoncd) (notwanted)
- 0.4 0.4 libslv2-dev (notoncd) (notwanted)
- 0.4 0.4 libsmartirc4net0.4-cil (notoncd) (notwanted)
- 0.4 0.4 libsmpeg-dev (notoncd) (notwanted)
- 0.4 0.4 libsnacc-dev (notoncd) (notwanted)
- 0.4 0.4 libsnack2-dev (notoncd) (notwanted)
- 0.4 0.4 libsndfile1-dev (notoncd) (notwanted)
- 0.4 0.4 libsndobj-dev (notoncd) (notwanted)
- 0.4 0.4 libsnmp-info-perl (notoncd) (notwanted)
- 0.4 0.4 libsort-naturally-perl (notoncd) (notwanted)
- 0.4 0.4 libsoundgen-dbg (notoncd) (notwanted)
- 0.4 0.4 libsoundgen-dev (notoncd) (notwanted)
- 0.4 0.4 libspeex-ocaml (notoncd) (notwanted)
- 0.4 0.4 libspeex-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libsrtp0-dev (notoncd) (notwanted)
- 0.4 0.4 libstar-parser-perl (notoncd) (notwanted)
- 0.4 0.4 libstdc++6-4.1-dev (notoncd) (notwanted)
- 0.4 0.4 libsteptalk0 (notoncd) (notwanted)
- 0.4 0.4 libstring-bufferstack-perl (notoncd) (notwanted)
- 0.4 0.4 libstring-mkpasswd-perl (notoncd) (notwanted)
- 0.4 0.4 libstring-random-perl (notoncd) (notwanted)
- 0.4 0.4 libstring-shellquote-perl (notoncd) (notwanted)
- 0.4 0.4 libstroke0-dev (notoncd) (notwanted)
- 0.4 0.4 libstrongswan (notoncd) (notwanted)
- 0.4 0.4 libsublime-dev (notoncd) (notwanted)
- 0.4 0.4 libsword-utils (notoncd) (notwanted)
- 0.4 0.4 libsword8 (notoncd) (notwanted)
- 0.4 0.4 libsword9 (notoncd) (notwanted)
- 0.4 0.4 libswt-cairo-gtk-3.5-jni (notoncd) (notwanted)
- 0.4 0.4 libswt-gnome-gtk-3.5-jni (notoncd) (notwanted)
- 0.4 0.4 libswt-gtk-3.5-java (notoncd) (notwanted)
- 0.4 0.4 libswt-gtk-3.5-jni (notoncd) (notwanted)
- 0.4 0.4 libswt-mozilla-gtk-3.5-jni (notoncd) (notwanted)
- 0.4 0.4 libsyntax-highlight-engine-kate-perl (notoncd) (notwanted)
- 0.4 0.4 libsys-cpu-perl (notoncd) (notwanted)
- 0.4 0.4 libsys-syslog-perl (notoncd) (notwanted)
- 0.4 0.4 libt1-dev (notoncd) (notwanted)
- 0.4 0.4 libtag-extras-dev (notoncd) (notwanted)
- 0.4 0.4 libtag1-dev (notoncd) (notwanted)
- 0.4 0.4 libtagc0-dev (notoncd) (notwanted)
- 0.4 0.4 libtaglib-ocaml (notoncd) (notwanted)
- 0.4 0.4 libtaglib-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libtaglib2.0-cil (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-devil-cil-dev (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-devil1.6-cil (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-freeglut-cil-dev (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-freeglut2.4-cil (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-ode-cil-dev (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-ode0.9-cil (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-openal-cil-dev (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-openal1.1-cil (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-opengl-cil-dev (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-opengl3.0-cil (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-sdl-cil-dev (notoncd) (notwanted)
- 0.4 0.4 libtaoframework-sdl1.2-cil (notoncd) (notwanted)
- 0.4 0.4 libtap-harness-archive-perl (notoncd) (notwanted)
- 0.4 0.4 libtap-parser-sourcehandler-pgtap-perl (notoncd) (notwanted)
- 0.4 0.4 libtelepathy-farsight-dev (notoncd) (notwanted)
- 0.4 0.4 libtelepathy-farsight0-dbg (notoncd) (notwanted)
- 0.4 0.4 libtelepathy-glib-dev (notoncd) (notwanted)
- 0.4 0.4 libtemplate-declare-perl (notoncd) (notwanted)
- 0.4 0.4 libterm-readpassword-perl (notoncd) (notwanted)
- 0.4 0.4 libtermios-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libtest-corpus-audio-mpd-perl (notoncd) (notwanted)
- 0.4 0.4 libtest-pod-coverage-perl (notoncd) (notwanted)
- 0.4 0.4 libtext-aspell-perl (notoncd) (notwanted)
- 0.4 0.4 libtext-autoformat-perl (notoncd) (notwanted)
- 0.4 0.4 libtext-password-pronounceable-perl (notoncd) (notwanted)
- 0.4 0.4 libtext-quoted-perl (notoncd) (notwanted)
- 0.4 0.4 libtext-reform-perl (notoncd) (notwanted)
- 0.4 0.4 libtext-template-perl (notoncd) (notwanted)
- 0.4 0.4 libtext-wikiformat-perl (notoncd) (notwanted)
- 0.4 0.4 libtext-wrapper-perl (notoncd) (notwanted)
- 0.4 0.4 libtie-array-sorted-perl (notoncd) (notwanted)
- 0.4 0.4 libtie-shadowhash-perl (notoncd) (notwanted)
- 0.4 0.4 libtime-human-perl (notoncd) (notwanted)
- 0.4 0.4 libtime-piece-perl (notoncd) (notwanted)
- 0.4 0.4 libtime-progress-perl (notoncd) (notwanted)
- 0.4 0.4 libtommath-dev (notoncd) (notwanted)
- 0.4 0.4 libtrain-bin (notoncd) (notwanted)
- 0.4 0.4 libtrain-dev (notoncd) (notwanted)
- 0.4 0.4 libtree-simple-perl (notoncd) (notwanted)
- 0.4 0.4 libtritonus-bin (notoncd) (notwanted)
- 0.4 0.4 libttspico-dev (notoncd) (notwanted)
- 0.4 0.4 libttspico-utils (notoncd) (notwanted)
- 0.4 0.4 libtunepimp-bin (notoncd) (notwanted)
- 0.4 0.4 libtunepimp-dev (notoncd) (notwanted)
- 0.4 0.4 libtunepimp5-dbg (notoncd) (notwanted)
- 0.4 0.4 libtwolame-dev (notoncd) (notwanted)
- 0.4 0.4 libtzinfo-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libudf-dev (notoncd) (notwanted)
- 0.4 0.4 libui-dialog-perl (notoncd) (notwanted)
- 0.4 0.4 libunicap2 (notoncd) (notwanted)
- 0.4 0.4 libunix-syslog-perl (notoncd) (notwanted)
- 0.4 0.4 libunixsocket-java (notoncd) (notwanted)
- 0.4 0.4 liburi-find-delimited-perl (notoncd) (notwanted)
- 0.4 0.4 liburi-find-perl (notoncd) (notwanted)
- 0.4 0.4 libuuid-tiny-perl (notoncd) (notwanted)
- 0.4 0.4 libvalhalla-dev (notoncd) (notwanted)
- 0.4 0.4 libvalhalla1-bin (notoncd) (notwanted)
- 0.4 0.4 libvalhalla1-dbg (notoncd) (notwanted)
- 0.4 0.4 libvariable-magic-perl (notoncd) (notwanted)
- 0.4 0.4 libvcs-lite-perl (notoncd) (notwanted)
- 0.4 0.4 libverbiste-dev (notoncd) (notwanted)
- 0.4 0.4 libvideo-ivtv-perl (notoncd) (notwanted)
- 0.4 0.4 libvisual-0.4-dev (notoncd) (notwanted)
- 0.4 0.4 libvorbis-dbg (notoncd) (notwanted)
- 0.4 0.4 libvorbis-ocaml (notoncd) (notwanted)
- 0.4 0.4 libvorbis-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libvorbisidec-dev (notoncd) (notwanted)
- 0.4 0.4 libvte0.16-cil (notoncd) (notwanted)
- 0.4 0.4 libwant-perl (notoncd) (notwanted)
- 0.4 0.4 libwavpack-dev (notoncd) (notwanted)
- 0.4 0.4 libwebcam0-dbg (notoncd) (notwanted)
- 0.4 0.4 libwebcam0-dev (notoncd) (notwanted)
- 0.4 0.4 libwebkit-1.0-2-dbg (notoncd) (notwanted)
- 0.4 0.4 libwebservice-youtube-perl (notoncd) (notwanted)
- 0.4 0.4 libwiki-toolkit-formatter-usemod-perl (notoncd) (notwanted)
- 0.4 0.4 libwiki-toolkit-perl (notoncd) (notwanted)
- 0.4 0.4 libwiki-toolkit-plugin-categoriser-perl (notoncd) (notwanted)
- 0.4 0.4 libwiki-toolkit-plugin-diff-perl (notoncd) (notwanted)
- 0.4 0.4 libwiki-toolkit-plugin-json-perl (notoncd) (notwanted)
- 0.4 0.4 libwiki-toolkit-plugin-locator-grid-perl (notoncd) (notwanted)
- 0.4 0.4 libwiki-toolkit-plugin-ping-perl (notoncd) (notwanted)
- 0.4 0.4 libwiki-toolkit-plugin-rss-reader-perl (notoncd) (notwanted)
- 0.4 0.4 libwildmidi-dev (notoncd) (notwanted)
- 0.4 0.4 libwine-capi (notoncd) (notwanted)
- 0.4 0.4 libwine-dbg (notoncd) (notwanted)
- 0.4 0.4 libwine-dev (notoncd) (notwanted)
- 0.4 0.4 libwine-esd (notoncd) (notwanted)
- 0.4 0.4 libwine-nas (notoncd) (notwanted)
- 0.4 0.4 libx2go-log-perl (notoncd) (notwanted)
- 0.4 0.4 libx2go-server-db-perl (notoncd) (notwanted)
- 0.4 0.4 libxcomposite1-dbg (notoncd) (notwanted)
- 0.4 0.4 libxfce4util-dev (notoncd) (notwanted)
- 0.4 0.4 libxfcegui4-dev (notoncd) (notwanted)
- 0.4 0.4 libxft2-dbg (notoncd) (notwanted)
- 0.4 0.4 libxml-atom-simplefeed-perl (notoncd) (notwanted)
- 0.4 0.4 libxml-rss-libxml-perl (notoncd) (notwanted)
- 0.4 0.4 libxml2-dbg (notoncd) (notwanted)
- 0.4 0.4 libxmlm-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libxmlplaylist-ocaml-dev (notoncd) (notwanted)
- 0.4 0.4 libxmmsclient++-dev (notoncd) (notwanted)
- 0.4 0.4 libxmmsclient++-glib-dev (notoncd) (notwanted)
- 0.4 0.4 libxmmsclient-dev (notoncd) (notwanted)
- 0.4 0.4 libxmmsclient-glib-dev (notoncd) (notwanted)
- 0.4 0.4 libxmmsclient-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 libxnee-dbg (notoncd) (notwanted)
- 0.4 0.4 libxnee-dev (notoncd) (notwanted)
- 0.4 0.4 liby-dev (notoncd) (notwanted)
- 0.4 0.4 libydpdict2-dev (notoncd) (notwanted)
- 0.4 0.4 libzorpll3.3-0 (notoncd) (notwanted)
- 0.4 0.4 libzzip-dev (notoncd) (notwanted)
- 0.4 0.4 licq (notoncd) (notwanted)
- 0.4 0.4 liferea-dbg (notoncd) (notwanted)
- 0.4 0.4 lightdm (notwanted)
- 0.4 0.4 lightdm-gtk-greeter (notwanted)
- 0.4 0.4 lightyears (notoncd) (notwanted)
- 0.4 0.4 lilo (notwanted)
- 0.4 0.4 lincity-ng (notoncd) (notwanted)
- 0.4 0.4 linda (notoncd) (notwanted)
- 0.4 0.4 lineak-defaultplugin (notoncd) (notwanted)
- 0.4 0.4 lineak-xosdplugin (notoncd) (notwanted)
- 0.4 0.4 lineakd (notoncd) (notwanted)
- 0.4 0.4 linex-laptops-artwork (notoncd) (notwanted)
- 0.4 0.4 link-monitor-applet (notoncd) (notwanted)
- 0.4 0.4 linux-firmware (notoncd) (notwanted)
- 0.4 0.4 linux-headers-3.2.0-4-486 (notoncd) (notwanted)
- 0.4 0.4 linux-image-2.6.32-5-openvz-amd64 (notoncd) (notwanted)
- 0.4 0.4 linux-image-2.6.32-5-vserver-amd64 (notoncd) (notwanted)
- 0.4 0.4 linux-image-2.6.32-5-xen-amd64 (notoncd) (notwanted)
- 0.4 0.4 linux-image-2.6.39-bpo.2-686-pae (notoncd) (notwanted)
- 0.4 0.4 linux-wlan-ng (notoncd) (notwanted)
- 0.4 0.4 linux-wlan-ng-firmware (notoncd) (notwanted)
- 0.4 0.4 liq-contrib (notoncd) (notwanted)
- 0.4 0.4 liquidsoap (notoncd) (notwanted)
- 0.4 0.4 listen (notoncd) (notwanted)
- 0.4 0.4 littlewizard (notoncd) (notwanted)
- 0.4 0.4 lives (notoncd) (notwanted)
- 0.4 0.4 lives-data (notoncd) (notwanted)
- 0.4 0.4 ll-scope (notoncd) (notwanted)
- 0.4 0.4 loadmeter (notoncd) (notwanted)
- 0.4 0.4 lock-keys-applet (notoncd) (notwanted)
- 0.4 0.4 logkeys (notoncd) (notwanted)
- 0.4 0.4 love (notoncd) (notwanted)
- 0.4 0.4 lsat (notoncd) (notwanted)
- 0.4 0.4 lsb-appchk3 (notoncd) (notwanted)
- 0.4 0.4 lsb-build-cc3 (notoncd) (notwanted)
- 0.4 0.4 ltris (notoncd) (notwanted)
- 0.4 0.4 ltsp-client-core (notwanted)
- 0.4 0.4 lua-mode (notoncd) (notwanted)
- 0.4 0.4 lua5.1 (notoncd) (notwanted)
- 0.4 0.4 lunar-applet (notoncd) (notwanted)
- 0.4 0.4 lusernet.app (notoncd) (notwanted)
- 0.4 0.4 luvcview (notoncd) (notwanted)
- 0.4 0.4 lv2core (notoncd) (notwanted)
- 0.4 0.4 lv2vocoder (notoncd) (notwanted)
- 0.4 0.4 lwm (notoncd) (notwanted)
- 0.4 0.4 lwresd (notoncd) (notwanted)
- 0.4 0.4 lxdvdrip (notoncd) (notwanted)
- 0.4 0.4 lxlauncher (notoncd) (notwanted)
- 0.4 0.4 lynkeos.app (notoncd) (notwanted)
- 0.4 0.4 m-tx (notoncd) (notwanted)
- 0.4 0.4 m16c-flash (notoncd) (notwanted)
- 0.4 0.4 madfuload (notoncd) (notwanted)
- 0.4 0.4 madison-lite (notoncd) (notwanted)
- 0.4 0.4 madplay (notoncd) (notwanted)
- 0.4 0.4 makehuman-nightly (notoncd) (notwanted)
- 0.4 0.4 makexvpics (notoncd) (notwanted)
- 0.4 0.4 malaga-mode (notoncd) (notwanted)
- 0.4 0.4 maptool (notoncd) (notwanted)
- 0.4 0.4 maria (notoncd) (notwanted)
- 0.4 0.4 matchbox-common (notoncd) (notwanted)
- 0.4 0.4 matchbox-desktop (notoncd) (notwanted)
- 0.4 0.4 matchbox-panel (notoncd) (notwanted)
- 0.4 0.4 maximus (notoncd) (notwanted)
- 0.4 0.4 mazeofgalious (notoncd) (notwanted)
- 0.4 0.4 mboxcheck-applet (notoncd) (notwanted)
- 0.4 0.4 mcu8051ide (notoncd) (notwanted)
- 0.4 0.4 mdbtools-gmdb (notoncd) (notwanted)
- 0.4 0.4 mediatomb-common (notoncd) (notwanted)
- 0.4 0.4 medit (notoncd) (notwanted)
- 0.4 0.4 medusa (notoncd) (notwanted)
- 0.4 0.4 meep (notoncd) (notwanted)
- 0.4 0.4 meep-mpi (notoncd) (notwanted)
- 0.4 0.4 mencoder-mt (notoncd) (notwanted)
- 0.4 0.4 mercurial (notoncd) (notwanted)
- 0.4 0.4 mercurial-common (notoncd) (notwanted)
- 0.4 0.4 merkaartor (notoncd) (notwanted)
- 0.4 0.4 metacafe-dl (notoncd) (notwanted)
- 0.4 0.4 meterbridge (notoncd) (notwanted)
- 0.4 0.4 mhonarc (notoncd) (notwanted)
- 0.4 0.4 mhwaveedit (notoncd) (notwanted)
- 0.4 0.4 micropolis (notoncd) (notwanted)
- 0.4 0.4 midisport-firmware (notoncd) (notwanted)
- 0.4 0.4 mikmod (notoncd) (notwanted)
- 0.4 0.4 minbif-common (notoncd) (notwanted)
- 0.4 0.4 minbif-webcam (notoncd) (notwanted)
- 0.4 0.4 mines.app (notoncd) (notwanted)
- 0.4 0.4 minidlna (notoncd) (notwanted)
- 0.4 0.4 minidwep-gtk (notoncd) (notwanted)
- 0.4 0.4 minirok (notoncd) (notwanted)
- 0.4 0.4 mirrormagic (notoncd) (notwanted)
- 0.4 0.4 mistelix (notoncd) (notwanted)
- 0.4 0.4 mixer.app (notoncd) (notwanted)
- 0.4 0.4 mkcue (notoncd) (notwanted)
- 0.4 0.4 mkgmap (notoncd) (notwanted)
- 0.4 0.4 mkgmapgui (notoncd) (notwanted)
- 0.4 0.4 mkvtoolnix (notoncd) (notwanted)
- 0.4 0.4 mkvtoolnix-gui (notoncd) (notwanted)
- 0.4 0.4 mmake (notoncd) (notwanted)
- 0.4 0.4 mmpong-gl (notoncd) (notwanted)
- 0.4 0.4 mmv (notoncd) (notwanted)
- 0.4 0.4 mnogosearch-mysql (notoncd) (notwanted)
- 0.4 0.4 moap (notoncd) (notwanted)
- 0.4 0.4 mobile-atlas-creator (notoncd) (notwanted)
- 0.4 0.4 mona (notoncd) (notwanted)
- 0.4 0.4 monav-client (notoncd) (notwanted)
- 0.4 0.4 monav-preprocessor (notoncd) (notwanted)
- 0.4 0.4 monav-routing-daemon (notoncd) (notwanted)
- 0.4 0.4 monkeys-audio (notoncd) (notwanted)
- 0.4 0.4 monkeystudio (notoncd) (notwanted)
- 0.4 0.4 mono-1.0-devel (notoncd) (notwanted)
- 0.4 0.4 mono-1.0-gac (notoncd) (notwanted)
- 0.4 0.4 mono-1.0-service (notoncd) (notwanted)
- 0.4 0.4 mono-2.0-devel (notoncd) (notwanted)
- 0.4 0.4 mono-debugger (notoncd) (notwanted)
- 0.4 0.4 mono-dmcs (notoncd) (notwanted)
- 0.4 0.4 mono-fastcgi-server2 (notoncd) (notwanted)
- 0.4 0.4 mono-vbnc (notoncd) (notwanted)
- 0.4 0.4 mono-xsp (notoncd) (notwanted)
- 0.4 0.4 mono-xsp-base (notoncd) (notwanted)
- 0.4 0.4 mono-xsp1 (notoncd) (notwanted)
- 0.4 0.4 mono-xsp2 (notoncd) (notwanted)
- 0.4 0.4 mono-xsp2-base (notoncd) (notwanted)
- 0.4 0.4 monobristol (notoncd) (notwanted)
- 0.4 0.4 monodevelop (notoncd) (notwanted)
- 0.4 0.4 monodevelop-boo (notoncd) (notwanted)
- 0.4 0.4 monodevelop-database (notoncd) (notwanted)
- 0.4 0.4 monodevelop-debugger-gdb (notoncd) (notwanted)
- 0.4 0.4 monodevelop-debugger-mdb (notoncd) (notwanted)
- 0.4 0.4 monodevelop-java (notoncd) (notwanted)
- 0.4 0.4 monodevelop-nunit (notoncd) (notwanted)
- 0.4 0.4 monodevelop-python (notoncd) (notwanted)
- 0.4 0.4 monodevelop-vala (notoncd) (notwanted)
- 0.4 0.4 monodevelop-versioncontrol (notoncd) (notwanted)
- 0.4 0.4 monodoc-banshee-manual (notoncd) (notwanted)
- 0.4 0.4 monodoc-db4o-manual (notoncd) (notwanted)
- 0.4 0.4 monodoc-gdata-manual (notoncd) (notwanted)
- 0.4 0.4 monodoc-http (notoncd) (notwanted)
- 0.4 0.4 monodoc-taglib-manual (notoncd) (notwanted)
- 0.4 0.4 monopd (notoncd) (notwanted)
- 0.4 0.4 moodbar (notoncd) (notwanted)
- 0.4 0.4 moovida (notoncd) (notwanted)
- 0.4 0.4 morituri (notoncd) (notwanted)
- 0.4 0.4 motion (notoncd) (notwanted)
- 0.4 0.4 mouseemu (notoncd) (notwanted)
- 0.4 0.4 mova (notoncd) (notwanted)
- 0.4 0.4 mozilla-firefox-adblock (notoncd) (notwanted)
- 0.4 0.4 mozilla-imagezoom (notoncd) (notwanted)
- 0.4 0.4 mozilla-nukeimage (notoncd) (notwanted)
- 0.4 0.4 mozilla-plugin-pcmanx (notoncd) (notwanted)
- 0.4 0.4 mp3blaster (notoncd) (notwanted)
- 0.4 0.4 mp3burn (notoncd) (notwanted)
- 0.4 0.4 mp3cd (notoncd) (notwanted)
- 0.4 0.4 mp3diags (notoncd) (notwanted)
- 0.4 0.4 mp3gain (notoncd) (notwanted)
- 0.4 0.4 mp3info (notoncd) (notwanted)
- 0.4 0.4 mp3roaster (notoncd) (notwanted)
- 0.4 0.4 mp3splt-gtk (notoncd) (notwanted)
- 0.4 0.4 mp3val (notoncd) (notwanted)
- 0.4 0.4 mp3wrap (notoncd) (notwanted)
- 0.4 0.4 mpd-dbg (notoncd) (notwanted)
- 0.4 0.4 mpdcon.app (notoncd) (notwanted)
- 0.4 0.4 mpdscribble (notoncd) (notwanted)
- 0.4 0.4 mpdscribble-dbg (notoncd) (notwanted)
- 0.4 0.4 mpeg4ip-utils (notoncd) (notwanted)
- 0.4 0.4 mpegdemux (notoncd) (notwanted)
- 0.4 0.4 mpg123-el (notoncd) (notwanted)
- 0.4 0.4 mpich-bin (notoncd) (notwanted)
- 0.4 0.4 mplayer-mt (notoncd) (notwanted)
- 0.4 0.4 mplayer2 (notwanted)
- 0.4 0.4 mpop (notoncd) (notwanted)
- 0.4 0.4 mpop-gnome (notoncd) (notwanted)
- 0.4 0.4 mt-daapd (notoncd) (notwanted)
- 0.4 0.4 mtink (notoncd) (notwanted)
- 0.4 0.4 mtkbabel (notoncd) (notwanted)
- 0.4 0.4 mtp-tools (notoncd) (notwanted)
- 0.4 0.4 muine (notoncd) (notwanted)
- 0.4 0.4 muine-plugin-inotify (notoncd) (notwanted)
- 0.4 0.4 muine-plugin-trayicon (notoncd) (notwanted)
- 0.4 0.4 multimon (notoncd) (notwanted)
- 0.4 0.4 multistrap (notoncd) (notwanted)
- 0.4 0.4 multisync (notoncd) (notwanted)
- 0.4 0.4 multisync-tools (notoncd) (notwanted)
- 0.4 0.4 mumble-11x (notoncd) (notwanted)
- 0.4 0.4 mumble-dbg (notoncd) (notwanted)
- 0.4 0.4 mumudvb (notoncd) (notwanted)
- 0.4 0.4 mupen64plus (notoncd) (notwanted)
- 0.4 0.4 muroard (notoncd) (notwanted)
- 0.4 0.4 muse (notoncd) (notwanted)
- 0.4 0.4 museeq (notoncd) (notwanted)
- 0.4 0.4 musepack-tools (notoncd) (notwanted)
- 0.4 0.4 music123 (notoncd) (notwanted)
- 0.4 0.4 muttprint (notoncd) (notwanted)
- 0.4 0.4 mybashburn (notoncd) (notwanted)
- 0.4 0.4 myrescue (notoncd) (notwanted)
- 0.4 0.4 mysql-mmm-agent (notoncd) (notwanted)
- 0.4 0.4 mysql-mmm-common (notoncd) (notwanted)
- 0.4 0.4 mysql-mmm-monitor (notoncd) (notwanted)
- 0.4 0.4 mysql-mmm-tools (notoncd) (notwanted)
- 0.4 0.4 mysql-proxy (notoncd) (notwanted)
- 0.4 0.4 mysql-utilities (notoncd) (notwanted)
- 0.4 0.4 mysql-workbench (notoncd) (notwanted)
- 0.4 0.4 mysql-workbench-gpl (notoncd) (notwanted)
- 0.4 0.4 mysqltcl (notoncd) (notwanted)
- 0.4 0.4 mytop (notoncd) (notwanted)
- 0.4 0.4 nama (notoncd) (notwanted)
- 0.4 0.4 nas (notoncd) (notwanted)
- 0.4 0.4 nas-bin (notoncd) (notwanted)
- 0.4 0.4 nast (notoncd) (notwanted)
- 0.4 0.4 nautilus-cd-burner (notoncd) (notwanted)
- 0.4 0.4 nautilus-clamscan (notoncd) (notwanted)
- 0.4 0.4 nautilus-dbg (notoncd) (notwanted)
- 0.4 0.4 nautilus-pastebin (notoncd) (notwanted)
- 0.4 0.4 navit-graphics-qt-qpainter (notoncd) (notwanted)
- 0.4 0.4 ncmpc (notoncd) (notwanted)
- 0.4 0.4 ncmpc-lyrics (notoncd) (notwanted)
- 0.4 0.4 ndiswrapper-dkms (notoncd) (notwanted)
- 0.4 0.4 nekobee (notoncd) (notwanted)
- 0.4 0.4 nemiver (notoncd) (notwanted)
- 0.4 0.4 netapplet (notoncd) (notwanted)
- 0.4 0.4 netdisco-backend (notoncd) (notwanted)
- 0.4 0.4 netdisco-common (notoncd) (notwanted)
- 0.4 0.4 netdisco-mibs-installer (notoncd) (notwanted)
- 0.4 0.4 netmaze (notoncd) (notwanted)
- 0.4 0.4 netpanzer (notoncd) (notwanted)
- 0.4 0.4 netrek-client-cow (notoncd) (notwanted)
- 0.4 0.4 netsniff-ng (notoncd) (notwanted)
- 0.4 0.4 netspeed (notoncd) (notwanted)
- 0.4 0.4 neverputt (notoncd) (notwanted)
- 0.4 0.4 nexuiz (notoncd) (notwanted)
- 0.4 0.4 nexuiz-server (notoncd) (notwanted)
- 0.4 0.4 nexuiz-server-dbg (notoncd) (notwanted)
- 0.4 0.4 nickle (notoncd) (notwanted)
- 0.4 0.4 nicovideo-dl (notoncd) (notwanted)
- 0.4 0.4 nighthawk (notoncd) (notwanted)
- 0.4 0.4 nikwi (notoncd) (notwanted)
- 0.4 0.4 nip2 (notoncd) (notwanted)
- 0.4 0.4 nitrogen (notoncd) (notwanted)
- 0.4 0.4 nmapsi4 (notoncd) (notwanted)
- 0.4 0.4 nodm (notoncd) (notwanted)
- 0.4 0.4 noshell (notoncd) (notwanted)
- 0.4 0.4 notifyme (notoncd) (notwanted)
- 0.4 0.4 notmuch (notoncd) (notwanted)
- 0.4 0.4 nrg2iso (notoncd) (notwanted)
- 0.4 0.4 nstreams (notoncd) (notwanted)
- 0.4 0.4 ntop (notoncd) (notwanted)
- 0.4 0.4 nullmailer (notoncd) (notwanted)
- 0.4 0.4 numptyphysics (notoncd) (notwanted)
- 0.4 0.4 nvidia-cg-toolkit (notoncd) (notwanted)
- 0.4 0.4 nvidia-glx (notoncd) (notwanted)
- 0.4 0.4 nvidia-kernel-common (notoncd) (notwanted)
- 0.4 0.4 nvidia-settings (notoncd) (notwanted)
- 0.4 0.4 nvidia-xconfig (notoncd) (notwanted)
- 0.4 0.4 obdgpslogger (notoncd) (notwanted)
- 0.4 0.4 ocaml (notoncd) (notwanted)
- 0.4 0.4 ocfs2-tools (notoncd) (notwanted)
- 0.4 0.4 ocropus (notoncd) (notwanted)
- 0.4 0.4 ocsinventory-reports (notoncd) (notwanted)
- 0.4 0.4 ocsinventory-server (notoncd) (notwanted)
- 0.4 0.4 octave-audio (notoncd) (notwanted)
- 0.4 0.4 octave-pfstools (notoncd) (notwanted)
- 0.4 0.4 octave3.2-headers (notoncd) (notwanted)
- 0.4 0.4 officebib (notoncd) (notwanted)
- 0.4 0.4 ofx (notoncd) (notwanted)
- 0.4 0.4 ogamesim (notoncd) (notwanted)
- 0.4 0.4 ogdi-bin (notoncd) (notwanted)
- 0.4 0.4 oggfwd (notoncd) (notwanted)
- 0.4 0.4 oggvideotools (notoncd) (notwanted)
- 0.4 0.4 oggz-tools (notoncd) (notwanted)
- 0.4 0.4 ogre-plugins-cgprogrammanager (notoncd) (notwanted)
- 0.4 0.4 ogre-plugins-cgprogrammanager-dbg (notoncd) (notwanted)
- 0.4 0.4 oidua (notoncd) (notwanted)
- 0.4 0.4 okular-dev (notoncd) (notwanted)
- 0.4 0.4 omaque (notoncd) (notwanted)
- 0.4 0.4 omegat (notoncd) (notwanted)
- 0.4 0.4 omins (notoncd) (notwanted)
- 0.4 0.4 omniidl (notoncd) (notwanted)
- 0.4 0.4 oneliner-el (notoncd) (notwanted)
- 0.4 0.4 onscripter (notoncd) (notwanted)
- 0.4 0.4 ontv (notoncd) (notwanted)
- 0.4 0.4 ooo2dbk (notoncd) (notwanted)
- 0.4 0.4 ooo4kids1.2-mandriva-menus (notoncd) (notwanted)
- 0.4 0.4 open-vm-dkms (notoncd) (notwanted)
- 0.4 0.4 open-vm-toolbox (notoncd) (notwanted)
- 0.4 0.4 open-vm-tools-dbg (notoncd) (notwanted)
- 0.4 0.4 openacs (notoncd) (notwanted)
- 0.4 0.4 openafs-client (notoncd) (notwanted)
- 0.4 0.4 openafs-fileserver (notoncd) (notwanted)
- 0.4 0.4 openafs-modules-dkms (notoncd) (notwanted)
- 0.4 0.4 openbmap-logger (notoncd) (notwanted)
- 0.4 0.4 opencascade-draw (notoncd) (notwanted)
- 0.4 0.4 opencascade-wok (notoncd) (notwanted)
- 0.4 0.4 opencity (notoncd) (notwanted)
- 0.4 0.4 openerp-server (notoncd) (notwanted)
- 0.4 0.4 openguides (notoncd) (notwanted)
- 0.4 0.4 openjpeg-tools (notoncd) (notwanted)
- 0.4 0.4 openlp (notoncd) (notwanted)
- 0.4 0.4 openoffice.org-dmaths (notoncd) (notwanted)
- 0.4 0.4 openswan (notoncd) (notwanted)
- 0.4 0.4 openvas-client (notoncd) (notwanted)
- 0.4 0.4 ophcrack-cli (notoncd) (notwanted)
- 0.4 0.4 opie-client (notoncd) (notwanted)
- 0.4 0.4 opie-server (notoncd) (notwanted)
- 0.4 0.4 oprofile (notoncd) (notwanted)
- 0.4 0.4 oprofile-gui (notoncd) (notwanted)
- 0.4 0.4 oracle-java7-bin (notoncd) (notwanted)
- 0.4 0.4 oracle-java7-jre (notoncd) (notwanted)
- 0.4 0.4 orpheus (notoncd) (notwanted)
- 0.4 0.4 orville-write (notoncd) (notwanted)
- 0.4 0.4 osmjs (notoncd) (notwanted)
- 0.4 0.4 osmosis (notoncd) (notwanted)
- 0.4 0.4 osmpbf-bin (notoncd) (notwanted)
- 0.4 0.4 ossim-core (notoncd) (notwanted)
- 0.4 0.4 otp (notoncd) (notwanted)
- 0.4 0.4 pac (notoncd) (notwanted)
- 0.4 0.4 packagesearch (notoncd) (notwanted)
- 0.4 0.4 pacman4console (notoncd) (notwanted)
- 0.4 0.4 pacpl (notoncd) (notwanted)
- 0.4 0.4 pads (notoncd) (notwanted)
- 0.4 0.4 page-crunch (notoncd) (notwanted)
- 0.4 0.4 paje.app (notoncd) (notwanted)
- 0.4 0.4 par2 (notoncd) (notwanted)
- 0.4 0.4 parcellite
- 0.4 0.4 parole (notoncd) (notwanted)
- 0.4 0.4 parole-dev (notoncd) (notwanted)
- 0.4 0.4 parrot-devel (notoncd) (notwanted)
- 0.4 0.4 passwdqc (notoncd) (notwanted)
- 0.4 0.4 password-gorilla (notoncd) (notwanted)
- 0.4 0.4 patchage (notoncd) (notwanted)
- 0.4 0.4 pathogen (notoncd) (notwanted)
- 0.4 0.4 pbnj (notoncd) (notwanted)
- 0.4 0.4 pcb-lesstif (notoncd) (notwanted)
- 0.4 0.4 pcd2html (notoncd) (notwanted)
- 0.4 0.4 pchar (notoncd) (notwanted)
- 0.4 0.4 pcmanfm-dbg (notoncd) (notwanted)
- 0.4 0.4 pcmanx-gtk2 (notoncd) (notwanted)
- 0.4 0.4 pconsole (notoncd) (notwanted)
- 0.4 0.4 pcsc-tools (notoncd) (notwanted)
- 0.4 0.4 pct-scanner-scripts (notoncd) (notwanted)
- 0.4 0.4 pd-aubio (notoncd) (notwanted)
- 0.4 0.4 pdf-presenter-console (notoncd) (notwanted)
- 0.4 0.4 pdfchain (notoncd) (notwanted)
- 0.4 0.4 pdmenu (notoncd) (notwanted)
- 0.4 0.4 pdsh (notoncd) (notwanted)
- 0.4 0.4 perltidy (notoncd) (notwanted)
- 0.4 0.4 pessulus (notoncd) (notwanted)
- 0.4 0.4 petris (notoncd) (notwanted)
- 0.4 0.4 pfm (notoncd) (notwanted)
- 0.4 0.4 pfqueue (notoncd) (notwanted)
- 0.4 0.4 pfsglview (notoncd) (notwanted)
- 0.4 0.4 pfstmo (notoncd) (notwanted)
- 0.4 0.4 pfstools (notoncd) (notwanted)
- 0.4 0.4 pgdbf (notoncd) (notwanted)
- 0.4 0.4 pgdesigner (notoncd) (notwanted)
- 0.4 0.4 pgfouine (notoncd) (notwanted)
- 0.4 0.4 pgsnap (notoncd) (notwanted)
- 0.4 0.4 pgstaging (notoncd) (notwanted)
- 0.4 0.4 pgtune (notoncd) (notwanted)
- 0.4 0.4 phalanx (notoncd) (notwanted)
- 0.4 0.4 phamm (notoncd) (notwanted)
- 0.4 0.4 phasex (notoncd) (notwanted)
- 0.4 0.4 phasex-dbg (notoncd) (notwanted)
- 0.4 0.4 phonon-backend-vlc-dbg (notoncd) (notwanted)
- 0.4 0.4 phonon-dbg (notoncd) (notwanted)
- 0.4 0.4 php-auth-http (notoncd) (notwanted)
- 0.4 0.4 php-cache (notoncd) (notwanted)
- 0.4 0.4 php-cache-lite (notoncd) (notwanted)
- 0.4 0.4 php-compat (notoncd) (notwanted)
- 0.4 0.4 php-date (notoncd) (notwanted)
- 0.4 0.4 php-html-safe (notoncd) (notwanted)
- 0.4 0.4 php-html-template-it (notoncd) (notwanted)
- 0.4 0.4 php-http-webdav-server (notoncd) (notwanted)
- 0.4 0.4 php-mdb2-driver-mysql (notoncd) (notwanted)
- 0.4 0.4 php-mdb2-driver-pgsql (notoncd) (notwanted)
- 0.4 0.4 php-mime-type (notoncd) (notwanted)
- 0.4 0.4 php-net-checkip (notoncd) (notwanted)
- 0.4 0.4 php-net-dime (notoncd) (notwanted)
- 0.4 0.4 php-net-ftp (notoncd) (notwanted)
- 0.4 0.4 php-net-ping (notoncd) (notwanted)
- 0.4 0.4 php-services-json (notoncd) (notwanted)
- 0.4 0.4 php-services-weather (notoncd) (notwanted)
- 0.4 0.4 php-soap (notoncd) (notwanted)
- 0.4 0.4 php-textile (notoncd) (notwanted)
- 0.4 0.4 php-wikidiff2 (notoncd) (notwanted)
- 0.4 0.4 php-xml-htmlsax3 (notoncd) (notwanted)
- 0.4 0.4 php-xml-serializer (notoncd) (notwanted)
- 0.4 0.4 php5-adodb (notoncd) (notwanted)
- 0.4 0.4 php5-auth-pam (notoncd) (notwanted)
- 0.4 0.4 php5-ffmpeg (notoncd) (notwanted)
- 0.4 0.4 php5-ps (notoncd) (notwanted)
- 0.4 0.4 php5-pspell (notoncd) (notwanted)
- 0.4 0.4 php5-tidy (notoncd) (notwanted)
- 0.4 0.4 php5-xcache (notoncd) (notwanted)
- 0.4 0.4 phpbb3 (notoncd) (notwanted)
- 0.4 0.4 phpgacl (notoncd) (notwanted)
- 0.4 0.4 phpreports (notoncd) (notwanted)
- 0.4 0.4 phpwebcounter (notoncd) (notwanted)
- 0.4 0.4 picard (notoncd) (notwanted)
- 0.4 0.4 picocom (notoncd) (notwanted)
- 0.4 0.4 pidgin-lastfm (notoncd) (notwanted)
- 0.4 0.4 pidgin-otr (notoncd) (notwanted)
- 0.4 0.4 pidgin-sipe (notoncd) (notwanted)
- 0.4 0.4 pidgin-skype-dbg (notoncd) (notwanted)
- 0.4 0.4 pioneers (notoncd) (notwanted)
- 0.4 0.4 pioneers-console (notoncd) (notwanted)
- 0.4 0.4 pioneers-meta-server (notoncd) (notwanted)
- 0.4 0.4 piwi (notoncd) (notwanted)
- 0.4 0.4 pixelize (notoncd) (notwanted)
- 0.4 0.4 pixmap (notoncd) (notwanted)
- 0.4 0.4 pkg-kde-tools (notoncd) (notwanted)
- 0.4 0.4 plasma-dataengines-yawp (notoncd) (notwanted)
- 0.4 0.4 plasma-widget-cwp (notoncd) (notwanted)
- 0.4 0.4 plasma-widget-fastuserswitch (notoncd) (notwanted)
- 0.4 0.4 plasma-widget-ktorrent (notoncd) (notwanted)
- 0.4 0.4 plasma-widget-smooth-tasks (notoncd) (notwanted)
- 0.4 0.4 plasma-widget-translatoid (notoncd) (notwanted)
- 0.4 0.4 plasma-widget-uim (notoncd) (notwanted)
- 0.4 0.4 plasma-widget-yawp (notoncd) (notwanted)
- 0.4 0.4 playmidi (notoncd) (notwanted)
- 0.4 0.4 plopfolio.app (notoncd) (notwanted)
- 0.4 0.4 plotutils (notoncd) (notwanted)
- 0.4 0.4 plplot9-driver-cairo (notoncd) (notwanted)
- 0.4 0.4 plptools (notoncd) (notwanted)
- 0.4 0.4 pmx (notoncd) (notwanted)
- 0.4 0.4 pnopaste (notoncd) (notwanted)
- 0.4 0.4 pod2pdf (notoncd) (notwanted)
- 0.4 0.4 podget (notoncd) (notwanted)
- 0.4 0.4 podsleuth (notoncd) (notwanted)
- 0.4 0.4 poe.app (notoncd) (notwanted)
- 0.4 0.4 poker-web (notoncd) (notwanted)
- 0.4 0.4 pokerth (notoncd) (notwanted)
- 0.4 0.4 pokerth-server (notoncd) (notwanted)
- 0.4 0.4 polipo (notoncd) (notwanted)
- 0.4 0.4 polygen (notoncd) (notwanted)
- 0.4 0.4 polygen-data (notoncd) (notwanted)
- 0.4 0.4 polyglot (notoncd) (notwanted)
- 0.4 0.4 polylib-utils (notoncd) (notwanted)
- 0.4 0.4 pong2 (notoncd) (notwanted)
- 0.4 0.4 pootle (notoncd) (notwanted)
- 0.4 0.4 popfile (notoncd) (notwanted)
- 0.4 0.4 pornview (notoncd) (notwanted)
- 0.4 0.4 portaudio19-dev (notoncd) (notwanted)
- 0.4 0.4 portsentry (notoncd) (notwanted)
- 0.4 0.4 posh (notoncd) (notwanted)
- 0.4 0.4 post-faq (notoncd) (notwanted)
- 0.4 0.4 postfix-ldap (notoncd) (notwanted)
- 0.4 0.4 postfix-policyd (notoncd) (notwanted)
- 0.4 0.4 postgresql-8.3 (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1 (notwanted)
- 0.4 0.4 postgresql-9.1-dbg (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-debversion (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-ip4r (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-orafce (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-pgfincore (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-pgmemcache (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-pgmp (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-pgq3 (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-pljava-gcj (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-pllua (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-plproxy (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-plr (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-plsh (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-postgis (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-prefix (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-preprepare (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-repmgr (notoncd) (notwanted)
- 0.4 0.4 postgresql-9.1-slony1-2 (notoncd) (notwanted)
- 0.4 0.4 postgresql-autodoc (notoncd) (notwanted)
- 0.4 0.4 postgresql-client-9.1 (notwanted)
- 0.4 0.4 postgresql-contrib-9.1 (notoncd) (notwanted)
- 0.4 0.4 postgresql-server-dev-9.1 (notoncd) (notwanted)
- 0.4 0.4 postgrey (notoncd) (notwanted)
- 0.4 0.4 postnews (notoncd) (notwanted)
- 0.4 0.4 pound (notoncd) (notwanted)
- 0.4 0.4 ppdfilt (notoncd) (notwanted)
- 0.4 0.4 ppmd (notoncd) (notwanted)
- 0.4 0.4 pppoe (notoncd) (notwanted)
- 0.4 0.4 pppoeconf (notwanted)
- 0.4 0.4 ppthtml (notoncd) (notwanted)
- 0.4 0.4 pptpd (notoncd) (notwanted)
- 0.4 0.4 prelude-manager (notoncd) (notwanted)
- 0.4 0.4 premail (notoncd) (notwanted)
- 0.4 0.4 preview.app (notoncd) (notwanted)
- 0.4 0.4 prewikka (notoncd) (notwanted)
- 0.4 0.4 price.app (notoncd) (notwanted)
- 0.4 0.4 primrose (notoncd) (notwanted)
- 0.4 0.4 printfilters-ppd (notoncd) (notwanted)
- 0.4 0.4 prism2-usb-firmware-installer (notoncd) (notwanted)
- 0.4 0.4 prj2make-sharp (notoncd) (notwanted)
- 0.4 0.4 procmeter3 (notoncd) (notwanted)
- 0.4 0.4 projectcenter.app (notoncd) (notwanted)
- 0.4 0.4 projectm-jack (notoncd) (notwanted)
- 0.4 0.4 projectm-pulseaudio (notoncd) (notwanted)
- 0.4 0.4 projectmanager.app (notoncd) (notwanted)
- 0.4 0.4 psad (notoncd) (notwanted)
- 0.4 0.4 psimedia (notoncd) (notwanted)
- 0.4 0.4 pst-utils (notoncd) (notwanted)
- 0.4 0.4 pterm (notoncd) (notwanted)
- 0.4 0.4 ptex-bin (notoncd) (notwanted)
- 0.4 0.4 ptex-jisfonts (notoncd) (notwanted)
- 0.4 0.4 ptop (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-esound-compat-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-bluetooth (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-bluetooth-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-gconf-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-hal-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-jack (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-jack-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-lirc (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-lirc-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-raop (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-raop-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-x11-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-module-zeroconf-dbg (notoncd) (notwanted)
- 0.4 0.4 pulseaudio-utils-dbg (notoncd) (notwanted)
- 0.4 0.4 pure-ftpd (notoncd) (notwanted)
- 0.4 0.4 pure-ftpd-common (notoncd) (notwanted)
- 0.4 0.4 puredata (notoncd) (notwanted)
- 0.4 0.4 purity (notoncd) (notwanted)
- 0.4 0.4 putty (notoncd) (notwanted)
- 0.4 0.4 putty-tools (notoncd) (notwanted)
- 0.4 0.4 pvpgn (notoncd) (notwanted)
- 0.4 0.4 pvrg-jpeg (notoncd) (notwanted)
- 0.4 0.4 pwman3 (notoncd) (notwanted)
- 0.4 0.4 pybackpack (notoncd) (notwanted)
- 0.4 0.4 pychess (notoncd) (notwanted)
- 0.4 0.4 pydance (notoncd) (notwanted)
- 0.4 0.4 pyhoca-cli (notoncd) (notwanted)
- 0.4 0.4 pykaraoke (notoncd) (notwanted)
- 0.4 0.4 pykaraoke-bin (notoncd) (notwanted)
- 0.4 0.4 pynagram (notoncd) (notwanted)
- 0.4 0.4 pypar2 (notoncd) (notwanted)
- 0.4 0.4 pyracerz (notoncd) (notwanted)
- 0.4 0.4 pyrenamer (notoncd) (notwanted)
- 0.4 0.4 pyrit (notoncd) (notwanted)
- 0.4 0.4 pyroom (notoncd) (notwanted)
- 0.4 0.4 pytagsfs (notoncd) (notwanted)
- 0.4 0.4 python-amqplib (notoncd) (notwanted)
- 0.4 0.4 python-anyjson (notoncd) (notwanted)
- 0.4 0.4 python-aubio (notoncd) (notwanted)
- 0.4 0.4 python-bcrypt (notoncd) (notwanted)
- 0.4 0.4 python-brasero (notoncd) (notwanted)
- 0.4 0.4 python-cairo-dbg (notoncd) (notwanted)
- 0.4 0.4 python-cairo-dev (notoncd) (notwanted)
- 0.4 0.4 python-carquinyol-0.84 (notoncd) (notwanted)
- 0.4 0.4 python-carquinyol-0.88 (notwanted)
- 0.4 0.4 python-cdb (notoncd) (notwanted)
- 0.4 0.4 python-celery (notoncd) (notwanted)
- 0.4 0.4 python-cg (notoncd) (notwanted)
- 0.4 0.4 python-cl (notoncd) (notwanted)
- 0.4 0.4 python-clamav (notoncd) (notwanted)
- 0.4 0.4 python-cloudfiles (notoncd) (notwanted)
- 0.4 0.4 python-cracklib (notoncd) (notwanted)
- 0.4 0.4 python-daap (notoncd) (notwanted)
- 0.4 0.4 python-dbg (notoncd) (notwanted)
- 0.4 0.4 python-dingus (notoncd) (notwanted)
- 0.4 0.4 python-django-adminaudit (notoncd) (notwanted)
- 0.4 0.4 python-django-celery (notoncd) (notwanted)
- 0.4 0.4 python-django-countries (notoncd) (notwanted)
- 0.4 0.4 python-django-dajax (notoncd) (notwanted)
- 0.4 0.4 python-django-dajaxice (notoncd) (notwanted)
- 0.4 0.4 python-django-evolution (notoncd) (notwanted)
- 0.4 0.4 python-django-extdirect (notoncd) (notwanted)
- 0.4 0.4 python-django-feincms (notoncd) (notwanted)
- 0.4 0.4 python-django-floppyforms (notoncd) (notwanted)
- 0.4 0.4 python-django-genshi (notoncd) (notwanted)
- 0.4 0.4 python-django-horizon (notoncd) (notwanted)
- 0.4 0.4 python-django-lint (notoncd) (notwanted)
- 0.4 0.4 python-django-localeurl (notoncd) (notwanted)
- 0.4 0.4 python-django-mptt (notoncd) (notwanted)
- 0.4 0.4 python-django-mumble (notoncd) (notwanted)
- 0.4 0.4 python-django-reversion (notoncd) (notwanted)
- 0.4 0.4 python-django-shorturls (notoncd) (notwanted)
- 0.4 0.4 python-django-social-auth (notoncd) (notwanted)
- 0.4 0.4 python-django-south (notoncd) (notwanted)
- 0.4 0.4 python-django-threadedcomments (notoncd) (notwanted)
- 0.4 0.4 python-django-uwsgi-admin (notoncd) (notwanted)
- 0.4 0.4 python-django-voting (notoncd) (notwanted)
- 0.4 0.4 python-django-websocket (notoncd) (notwanted)
- 0.4 0.4 python-dns (notoncd) (notwanted)
- 0.4 0.4 python-eventlet (notoncd) (notwanted)
- 0.4 0.4 python-formencode (notoncd) (notwanted)
- 0.4 0.4 python-freej (notoncd) (notwanted)
- 0.4 0.4 python-freej-dbg (notoncd) (notwanted)
- 0.4 0.4 python-gamin (notoncd) (notwanted)
- 0.4 0.4 python-gflags (notoncd) (notwanted)
- 0.4 0.4 python-ggz (notoncd) (notwanted)
- 0.4 0.4 python-glance (notoncd) (notwanted)
- 0.4 0.4 python-gobject-dbg (notoncd) (notwanted)
- 0.4 0.4 python-gtk2-dbg (notoncd) (notwanted)
- 0.4 0.4 python-html5lib (notoncd) (notwanted)
- 0.4 0.4 python-ifeffit (notoncd) (notwanted)
- 0.4 0.4 python-imposm (notoncd) (notwanted)
- 0.4 0.4 python-imposm-parser (notoncd) (notwanted)
- 0.4 0.4 python-inotifyx (notoncd) (notwanted)
- 0.4 0.4 python-iso8601 (notoncd) (notwanted)
- 0.4 0.4 python-jswebkit (notoncd) (notwanted)
- 0.4 0.4 python-kaa-base (notoncd) (notwanted)
- 0.4 0.4 python-kaa-metadata (notoncd) (notwanted)
- 0.4 0.4 python-keystoneclient (notoncd) (notwanted)
- 0.4 0.4 python-kombu (notoncd) (notwanted)
- 0.4 0.4 python-lash (notoncd) (notwanted)
- 0.4 0.4 python-liblo (notoncd) (notwanted)
- 0.4 0.4 python-librdf (notoncd) (notwanted)
- 0.4 0.4 python-libxslt1 (notoncd) (notwanted)
- 0.4 0.4 python-mapnik2 (notoncd) (notwanted)
- 0.4 0.4 python-mmkeys (notoncd) (notwanted)
- 0.4 0.4 python-modestmaps (notoncd) (notwanted)
- 0.4 0.4 python-mox (notoncd) (notwanted)
- 0.4 0.4 python-mysql.connector (notoncd) (notwanted)
- 0.4 0.4 python-netifaces (notoncd) (notwanted)
- 0.4 0.4 python-nids (notoncd) (notwanted)
- 0.4 0.4 python-nova (notoncd) (notwanted)
- 0.4 0.4 python-novaclient (notoncd) (notwanted)
- 0.4 0.4 python-numpy-dbg (notoncd) (notwanted)
- 0.4 0.4 python-oauth2 (notoncd) (notwanted)
- 0.4 0.4 python-openal (notoncd) (notwanted)
- 0.4 0.4 python-openturns (notoncd) (notwanted)
- 0.4 0.4 python-paste (notoncd) (notwanted)
- 0.4 0.4 python-pastedeploy (notoncd) (notwanted)
- 0.4 0.4 python-pastescript (notoncd) (notwanted)
- 0.4 0.4 python-pdfminer (notoncd) (notwanted)
- 0.4 0.4 python-pgm (notoncd) (notwanted)
- 0.4 0.4 python-phoneutils (notoncd) (notwanted)
- 0.4 0.4 python-pisa (notoncd) (notwanted)
- 0.4 0.4 python-poker-engine (notoncd) (notwanted)
- 0.4 0.4 python-poker-network (notoncd) (notwanted)
- 0.4 0.4 python-poker-stats (notoncd) (notwanted)
- 0.4 0.4 python-polib (notoncd) (notwanted)
- 0.4 0.4 python-pqueue (notoncd) (notwanted)
- 0.4 0.4 python-prelude (notoncd) (notwanted)
- 0.4 0.4 python-preludedb (notoncd) (notwanted)
- 0.4 0.4 python-pyao (notoncd) (notwanted)
- 0.4 0.4 python-pycha (notoncd) (notwanted)
- 0.4 0.4 python-pyface (notoncd) (notwanted)
- 0.4 0.4 python-pyglew (notoncd) (notwanted)
- 0.4 0.4 python-pygresql (notoncd) (notwanted)
- 0.4 0.4 python-pykaraoke (notoncd) (notwanted)
- 0.4 0.4 python-pypoker-eval (notoncd) (notwanted)
- 0.4 0.4 python-pyrex (notoncd) (notwanted)
- 0.4 0.4 python-pyxine (notoncd) (notwanted)
- 0.4 0.4 python-pyxine-dbg (notoncd) (notwanted)
- 0.4 0.4 python-quantumclient (notoncd) (notwanted)
- 0.4 0.4 python-qwt5-qt4 (notoncd) (notwanted)
- 0.4 0.4 python-rabbyt (notoncd) (notwanted)
- 0.4 0.4 python-repoze.lru (notoncd) (notwanted)
- 0.4 0.4 python-routes (notoncd) (notwanted)
- 0.4 0.4 python-rpm (notoncd) (notwanted)
- 0.4 0.4 python-saga (notoncd) (notwanted)
- 0.4 0.4 python-scgi (notoncd) (notwanted)
- 0.4 0.4 python-sfml (notoncd) (notwanted)
- 0.4 0.4 python-shapely (notoncd) (notwanted)
- 0.4 0.4 python-skytools3 (notoncd) (notwanted)
- 0.4 0.4 python-soya (notoncd) (notwanted)
- 0.4 0.4 python-sqlobject (notoncd) (notwanted)
- 0.4 0.4 python-sugar-0.88 (notwanted)
- 0.4 0.4 python-sugar-toolkit-0.88 (notwanted)
- 0.4 0.4 python-swift (notoncd) (notwanted)
- 0.4 0.4 python-tidylib (notoncd) (notwanted)
- 0.4 0.4 python-tpfarsight (notoncd) (notwanted)
- 0.4 0.4 python-traitsui (notoncd) (notwanted)
- 0.4 0.4 python-trml2pdf (notoncd) (notwanted)
- 0.4 0.4 python-twill (notoncd) (notwanted)
- 0.4 0.4 python-visual (notoncd) (notwanted)
- 0.4 0.4 python-webob (notoncd) (notwanted)
- 0.4 0.4 python-xattr (notoncd) (notwanted)
- 0.4 0.4 python-xmmsclient (notoncd) (notwanted)
- 0.4 0.4 python-yenc (notoncd) (notwanted)
- 0.4 0.4 python-zc.buildout (notoncd) (notwanted)
- 0.4 0.4 python-zconfig (notoncd) (notwanted)
- 0.4 0.4 python-zdaemon (notoncd) (notwanted)
- 0.4 0.4 python-zeroc-ice (notoncd) (notwanted)
- 0.4 0.4 python-zope.hookable (notoncd) (notwanted)
- 0.4 0.4 python-zope.i18nmessageid (notoncd) (notwanted)
- 0.4 0.4 python-zope.proxy (notoncd) (notwanted)
- 0.4 0.4 python-zope.security (notoncd) (notwanted)
- 0.4 0.4 python-zope.testing (notoncd) (notwanted)
- 0.4 0.4 python2.5-dbg (notoncd) (notwanted)
- 0.4 0.4 python2.6-dbg (notoncd) (notwanted)
- 0.4 0.4 python3-tk (notoncd) (notwanted)
- 0.4 0.4 pytone (notoncd) (notwanted)
- 0.4 0.4 pytovid (notoncd) (notwanted)
- 0.4 0.4 pytrainer (notoncd) (notwanted)
- 0.4 0.4 q4wine (notoncd) (notwanted)
- 0.4 0.4 qa-assistant (notoncd) (notwanted)
- 0.4 0.4 qalc (notoncd) (notwanted)
- 0.4 0.4 qcake (notoncd) (notwanted)
- 0.4 0.4 qiv (notoncd) (notwanted)
- 0.4 0.4 qlo10k1 (notoncd) (notwanted)
- 0.4 0.4 qmail-qfilter (notoncd) (notwanted)
- 0.4 0.4 qmail-src (notoncd) (notwanted)
- 0.4 0.4 qmhandle (notoncd) (notwanted)
- 0.4 0.4 qmmp (notoncd) (notwanted)
- 0.4 0.4 qmmp-plugin-projectm (notoncd) (notwanted)
- 0.4 0.4 qonk (notoncd) (notwanted)
- 0.4 0.4 qpsmtpd (notoncd) (notwanted)
- 0.4 0.4 qpxtool (notoncd) (notwanted)
- 0.4 0.4 qt3-dev-tools-compat (notoncd) (notwanted)
- 0.4 0.4 qt3-dev-tools-embedded (notoncd) (notwanted)
- 0.4 0.4 qtcreator (notoncd) (notwanted)
- 0.4 0.4 qtodo (notoncd) (notwanted)
- 0.4 0.4 qtractor (notoncd) (notwanted)
- 0.4 0.4 qtractor-dbg (notoncd) (notwanted)
- 0.4 0.4 quagga (notoncd) (notwanted)
- 0.4 0.4 quantum-common (notoncd) (notwanted)
- 0.4 0.4 quark (notoncd) (notwanted)
- 0.4 0.4 quelcom (notoncd) (notwanted)
- 0.4 0.4 quick-lounge-applet (notoncd) (notwanted)
- 0.4 0.4 quodlibet-plugins (notoncd) (notwanted)
- 0.4 0.4 qutecsound (notoncd) (notwanted)
- 0.4 0.4 qviaggiatreno (notoncd) (notwanted)
- 0.4 0.4 r-base-core-dbg (notoncd) (notwanted)
- 0.4 0.4 r-base-core-ra (notoncd) (notwanted)
- 0.4 0.4 r-bioc-biobase (notoncd) (notwanted)
- 0.4 0.4 r-bioc-biocgenerics (notoncd) (notwanted)
- 0.4 0.4 r-bioc-cummerbund (notoncd) (notwanted)
- 0.4 0.4 r-bioc-edger (notoncd) (notwanted)
- 0.4 0.4 r-bioc-limma (notoncd) (notwanted)
- 0.4 0.4 r-bioc-qvalue (notoncd) (notwanted)
- 0.4 0.4 r-cran-amelia (notoncd) (notwanted)
- 0.4 0.4 r-cran-combinat (notoncd) (notwanted)
- 0.4 0.4 r-cran-deal (notoncd) (notwanted)
- 0.4 0.4 r-cran-diagnosismed (notoncd) (notwanted)
- 0.4 0.4 r-cran-digest (notoncd) (notwanted)
- 0.4 0.4 r-cran-domc (notoncd) (notwanted)
- 0.4 0.4 r-cran-dosnow (notoncd) (notwanted)
- 0.4 0.4 r-cran-epi (notoncd) (notwanted)
- 0.4 0.4 r-cran-epibasix (notoncd) (notwanted)
- 0.4 0.4 r-cran-epicalc (notoncd) (notwanted)
- 0.4 0.4 r-cran-epir (notoncd) (notwanted)
- 0.4 0.4 r-cran-epitools (notoncd) (notwanted)
- 0.4 0.4 r-cran-erm (notoncd) (notwanted)
- 0.4 0.4 r-cran-evd (notoncd) (notwanted)
- 0.4 0.4 r-cran-fasianoptions (notoncd) (notwanted)
- 0.4 0.4 r-cran-fbonds (notoncd) (notwanted)
- 0.4 0.4 r-cran-fexoticoptions (notoncd) (notwanted)
- 0.4 0.4 r-cran-fnonlinear (notoncd) (notwanted)
- 0.4 0.4 r-cran-foreach (notoncd) (notwanted)
- 0.4 0.4 r-cran-fregression (notoncd) (notwanted)
- 0.4 0.4 r-cran-funitroots (notoncd) (notwanted)
- 0.4 0.4 r-cran-gam (notoncd) (notwanted)
- 0.4 0.4 r-cran-genabel (notoncd) (notwanted)
- 0.4 0.4 r-cran-genetics (notoncd) (notwanted)
- 0.4 0.4 r-cran-getopt (notoncd) (notwanted)
- 0.4 0.4 r-cran-ggplot2 (notoncd) (notwanted)
- 0.4 0.4 r-cran-gmaps (notoncd) (notwanted)
- 0.4 0.4 r-cran-haplo.stats (notoncd) (notwanted)
- 0.4 0.4 r-cran-inline (notoncd) (notwanted)
- 0.4 0.4 r-cran-int64 (notoncd) (notwanted)
- 0.4 0.4 r-cran-iterators (notoncd) (notwanted)
- 0.4 0.4 r-cran-jit (notoncd) (notwanted)
- 0.4 0.4 r-cran-lpsolve (notoncd) (notwanted)
- 0.4 0.4 r-cran-maptools (notoncd) (notwanted)
- 0.4 0.4 r-cran-medadherence (notoncd) (notwanted)
- 0.4 0.4 r-cran-multicore (notoncd) (notwanted)
- 0.4 0.4 r-cran-nws (notoncd) (notwanted)
- 0.4 0.4 r-cran-permute (notoncd) (notwanted)
- 0.4 0.4 r-cran-plotrix (notoncd) (notwanted)
- 0.4 0.4 r-cran-plyr (notoncd) (notwanted)
- 0.4 0.4 r-cran-polspline (notoncd) (notwanted)
- 0.4 0.4 r-cran-proto (notoncd) (notwanted)
- 0.4 0.4 r-cran-pvclust (notoncd) (notwanted)
- 0.4 0.4 r-cran-randomforest (notoncd) (notwanted)
- 0.4 0.4 r-cran-raschsampler (notoncd) (notwanted)
- 0.4 0.4 r-cran-reshape (notoncd) (notwanted)
- 0.4 0.4 r-cran-reshape2 (notoncd) (notwanted)
- 0.4 0.4 r-cran-rjags (notoncd) (notwanted)
- 0.4 0.4 r-cran-rjava (notoncd) (notwanted)
- 0.4 0.4 r-cran-rms (notoncd) (notwanted)
- 0.4 0.4 r-cran-rocr (notoncd) (notwanted)
- 0.4 0.4 r-cran-rsqlite (notoncd) (notwanted)
- 0.4 0.4 r-cran-rsymphony (notoncd) (notwanted)
- 0.4 0.4 r-cran-runit (notoncd) (notwanted)
- 0.4 0.4 r-cran-scatterplot3d (notoncd) (notwanted)
- 0.4 0.4 r-cran-stabledist (notoncd) (notwanted)
- 0.4 0.4 r-cran-stringr (notoncd) (notwanted)
- 0.4 0.4 r-cran-surveillance (notoncd) (notwanted)
- 0.4 0.4 r-cran-urca (notoncd) (notwanted)
- 0.4 0.4 r-cran-vegan (notoncd) (notwanted)
- 0.4 0.4 r-other-rot (notoncd) (notwanted)
- 0.4 0.4 radiotray (notoncd) (notwanted)
- 0.4 0.4 rails (notoncd) (notwanted)
- 0.4 0.4 rails-ruby1.8 (notoncd) (notwanted)
- 0.4 0.4 raincat (notoncd) (notwanted)
- 0.4 0.4 rancid (notoncd) (notwanted)
- 0.4 0.4 randomsound (notoncd) (notwanted)
- 0.4 0.4 rar-2.80 (notoncd) (notwanted)
- 0.4 0.4 rarpd (notoncd) (notwanted)
- 0.4 0.4 rasqal-utils (notoncd) (notwanted)
- 0.4 0.4 rats (notoncd) (notwanted)
- 0.4 0.4 razzle (notoncd) (notwanted)
- 0.4 0.4 rbot (notoncd) (notwanted)
- 0.4 0.4 realtimebattle (notoncd) (notwanted)
- 0.4 0.4 realtimebattle-common (notoncd) (notwanted)
- 0.4 0.4 recoverdm (notoncd) (notwanted)
- 0.4 0.4 red5-server (notoncd) (notwanted)
- 0.4 0.4 redmine (notoncd) (notwanted)
- 0.4 0.4 rekonq (notoncd) (notwanted)
- 0.4 0.4 remembrance-agent (notoncd) (notwanted)
- 0.4 0.4 remmina-dev (notoncd) (notwanted)
- 0.4 0.4 remmina-plugin-nx (notoncd) (notwanted)
- 0.4 0.4 remmina-plugin-telepathy (notoncd) (notwanted)
- 0.4 0.4 remmina-plugin-xdmcp (notoncd) (notwanted)
- 0.4 0.4 remmina-xfce (notoncd) (notwanted)
- 0.4 0.4 remote-tty (notoncd) (notwanted)
- 0.4 0.4 remuco-mpd (notoncd) (notwanted)
- 0.4 0.4 rep (notoncd) (notwanted)
- 0.4 0.4 rep-gtk (notoncd) (notwanted)
- 0.4 0.4 reportbug-ng (notoncd) (notwanted)
- 0.4 0.4 request-tracker3.8 (notoncd) (notwanted)
- 0.4 0.4 resample (notoncd) (notwanted)
- 0.4 0.4 rev-plugins (notoncd) (notwanted)
- 0.4 0.4 revelation (notoncd) (notwanted)
- 0.4 0.4 rhythmbox-dbg (notoncd) (notwanted)
- 0.4 0.4 rhythmbox-plugin-coherence (notoncd) (notwanted)
- 0.4 0.4 rinputd (notoncd) (notwanted)
- 0.4 0.4 roaraudio (notoncd) (notwanted)
- 0.4 0.4 roaraudio-dbg (notoncd) (notwanted)
- 0.4 0.4 roaraudio-extra (notoncd) (notwanted)
- 0.4 0.4 robocode (notoncd) (notwanted)
- 0.4 0.4 rocksndiamonds (notoncd) (notwanted)
- 0.4 0.4 rott (notoncd) (notwanted)
- 0.4 0.4 rott-dbg (notoncd) (notwanted)
- 0.4 0.4 rotter (notoncd) (notwanted)
- 0.4 0.4 roundcube-core (notoncd) (notwanted)
- 0.4 0.4 routeplanner (notoncd) (notwanted)
- 0.4 0.4 routeplanner-gnome (notoncd) (notwanted)
- 0.4 0.4 routino (notoncd) (notwanted)
- 0.4 0.4 rox-filer (notoncd) (notwanted)
- 0.4 0.4 rplay-contrib (notoncd) (notwanted)
- 0.4 0.4 rplay-perl (notoncd) (notwanted)
- 0.4 0.4 rplay-server (notoncd) (notwanted)
- 0.4 0.4 rrootage (notoncd) (notwanted)
- 0.4 0.4 rsibreak (notoncd) (notwanted)
- 0.4 0.4 rssh (notoncd) (notwanted)
- 0.4 0.4 rst2pdf (notoncd) (notwanted)
- 0.4 0.4 rsyslog-mysql (notoncd) (notwanted)
- 0.4 0.4 rt3.8-rtfm (notoncd) (notwanted)
- 0.4 0.4 rtorrent (notoncd) (notwanted)
- 0.4 0.4 rubberband-ladspa (notoncd) (notwanted)
- 0.4 0.4 rubberband-vamp (notoncd) (notwanted)
- 0.4 0.4 ruby-coderay (notoncd) (notwanted)
- 0.4 0.4 ruby-gettext (notoncd) (notwanted)
- 0.4 0.4 ruby-locale (notoncd) (notwanted)
- 0.4 0.4 ruby1.9 (notoncd) (notwanted)
- 0.4 0.4 rxvt-unicode (notoncd) (notwanted)
- 0.4 0.4 rxvt-unicode-256color (notoncd) (notwanted)
- 0.4 0.4 rygel-1.0-dev (notoncd) (notwanted)
- 0.4 0.4 rygel-gst-renderer (notoncd) (notwanted)
- 0.4 0.4 rygel-mediathek (notoncd) (notwanted)
- 0.4 0.4 s3dfm (notoncd) (notwanted)
- 0.4 0.4 s3dosm (notoncd) (notwanted)
- 0.4 0.4 sabayon (notoncd) (notwanted)
- 0.4 0.4 sabnzbdplus (notoncd) (notwanted)
- 0.4 0.4 safe-rm (notoncd) (notwanted)
- 0.4 0.4 saidar (notoncd) (notwanted)
- 0.4 0.4 samdump2 (notoncd) (notwanted)
- 0.4 0.4 samhain (notoncd) (notwanted)
- 0.4 0.4 samplerate-programs (notoncd) (notwanted)
- 0.4 0.4 sandboxgamemaker (notoncd) (notwanted)
- 0.4 0.4 sanduhr (notoncd) (notwanted)
- 0.4 0.4 sankore (notoncd) (notwanted)
- 0.4 0.4 sapgui-package (notoncd) (notwanted)
- 0.4 0.4 sapphire (notoncd) (notwanted)
- 0.4 0.4 sash (notoncd) (notwanted)
- 0.4 0.4 sasl2-bin (notoncd) (notwanted)
- 0.4 0.4 sauerbraten (notoncd) (notwanted)
- 0.4 0.4 sauerbraten-data (notoncd) (notwanted)
- 0.4 0.4 sauerbraten-dbg (notoncd) (notwanted)
- 0.4 0.4 sauerbraten-server (notoncd) (notwanted)
- 0.4 0.4 sawfish (notoncd) (notwanted)
- 0.4 0.4 sawfish-dbg (notoncd) (notwanted)
- 0.4 0.4 sawfish-pager (notoncd) (notwanted)
- 0.4 0.4 saydate (notoncd) (notwanted)
- 0.4 0.4 scanssh (notoncd) (notwanted)
- 0.4 0.4 scid (notoncd) (notwanted)
- 0.4 0.4 science-config (notoncd) (notwanted)
- 0.4 0.4 science-statistics (notoncd) (notwanted)
- 0.4 0.4 scilab-plotlib (notoncd) (notwanted)
- 0.4 0.4 scons (notoncd) (notwanted)
- 0.4 0.4 scorched3d (notoncd) (notwanted)
- 0.4 0.4 screader (notoncd) (notwanted)
- 0.4 0.4 scribble (notoncd) (notwanted)
- 0.4 0.4 scrounge-ntfs (notoncd) (notwanted)
- 0.4 0.4 scrub (notoncd) (notwanted)
- 0.4 0.4 scsitools (notoncd) (notwanted)
- 0.4 0.4 scummvm (notoncd) (notwanted)
- 0.4 0.4 scuttle (notoncd) (notwanted)
- 0.4 0.4 sd (notoncd) (notwanted)
- 0.4 0.4 sdic (notoncd) (notwanted)
- 0.4 0.4 seahorse-daemon (notoncd) (notwanted)
- 0.4 0.4 secure-delete (notoncd) (notwanted)
- 0.4 0.4 seesat5 (notoncd) (notwanted)
- 0.4 0.4 selflinux (notoncd) (notwanted)
- 0.4 0.4 semantic (notoncd) (notwanted)
- 0.4 0.4 sendfile (notoncd) (notwanted)
- 0.4 0.4 sensors-applet (notoncd) (notwanted)
- 0.4 0.4 sentinella (notoncd) (notwanted)
- 0.4 0.4 serendipity (notoncd) (notwanted)
- 0.4 0.4 seyon (notoncd) (notwanted)
- 0.4 0.4 sflphone-daemon (notoncd) (notwanted)
- 0.4 0.4 sflphone-gnome (notoncd) (notwanted)
- 0.4 0.4 sfront (notoncd) (notwanted)
- 0.4 0.4 shermans-aquarium (notoncd) (notwanted)
- 0.4 0.4 shisen.app (notoncd) (notwanted)
- 0.4 0.4 shorewall (notoncd) (notwanted)
- 0.4 0.4 shorewall6 (notoncd) (notwanted)
- 0.4 0.4 shutter (notoncd) (notwanted)
- 0.4 0.4 silcd (notoncd) (notwanted)
- 0.4 0.4 silentjack (notoncd) (notwanted)
- 0.4 0.4 simba (notoncd) (notwanted)
- 0.4 0.4 simh (notoncd) (notwanted)
- 0.4 0.4 sinfo (notoncd) (notwanted)
- 0.4 0.4 singularity (notoncd) (notwanted)
- 0.4 0.4 sipcrack (notoncd) (notwanted)
- 0.4 0.4 sitecopy (notoncd) (notwanted)
- 0.4 0.4 sixpack (notoncd) (notwanted)
- 0.4 0.4 sjeng (notoncd) (notwanted)
- 0.4 0.4 skrooge (notoncd) (notwanted)
- 0.4 0.4 sks-ecc (notoncd) (notwanted)
- 0.4 0.4 skytools (notoncd) (notwanted)
- 0.4 0.4 skytools-modules-8.4 (notoncd) (notwanted)
- 0.4 0.4 skytools3 (notoncd) (notwanted)
- 0.4 0.4 skytools3-ticker (notoncd) (notwanted)
- 0.4 0.4 sl-modem-daemon (notoncd) (notwanted)
- 0.4 0.4 slashem (notoncd) (notwanted)
- 0.4 0.4 slashem-common (notoncd) (notwanted)
- 0.4 0.4 sleepd (notoncd) (notwanted)
- 0.4 0.4 sleuthkit (notoncd) (notwanted)
- 0.4 0.4 slimrat (notoncd) (notwanted)
- 0.4 0.4 slimrat-nox (notoncd) (notwanted)
- 0.4 0.4 slingshot (notoncd) (notwanted)
- 0.4 0.4 slirp (notoncd) (notwanted)
- 0.4 0.4 sloccount (notoncd) (notwanted)
- 0.4 0.4 slsh (notoncd) (notwanted)
- 0.4 0.4 slurm (notoncd) (notwanted)
- 0.4 0.4 slv2-jack (notoncd) (notwanted)
- 0.4 0.4 smartpm-core (notoncd) (notwanted)
- 0.4 0.4 smb2www (notoncd) (notwanted)
- 0.4 0.4 smb4k (notoncd) (notwanted)
- 0.4 0.4 smbind (notoncd) (notwanted)
- 0.4 0.4 smile (notoncd) (notwanted)
- 0.4 0.4 smoke-dev-tools (notoncd) (notwanted)
- 0.4 0.4 smpeg-gtv (notoncd) (notwanted)
- 0.4 0.4 smplayer (notoncd) (notwanted)
- 0.4 0.4 smsclient (notoncd) (notwanted)
- 0.4 0.4 smuxi-engine (notoncd) (notwanted)
- 0.4 0.4 smuxi-engine-irc (notoncd) (notwanted)
- 0.4 0.4 smuxi-engine-twitter (notoncd) (notwanted)
- 0.4 0.4 smuxi-frontend (notoncd) (notwanted)
- 0.4 0.4 smuxi-frontend-gnome (notoncd) (notwanted)
- 0.4 0.4 smuxi-frontend-gnome-irc (notoncd) (notwanted)
- 0.4 0.4 smuxi-server (notoncd) (notwanted)
- 0.4 0.4 sn (notoncd) (notwanted)
- 0.4 0.4 snacc (notoncd) (notwanted)
- 0.4 0.4 snappea (notoncd) (notwanted)
- 0.4 0.4 sniffit (notoncd) (notwanted)
- 0.4 0.4 snooper (notoncd) (notwanted)
- 0.4 0.4 snort (notoncd) (notwanted)
- 0.4 0.4 snort-common (notoncd) (notwanted)
- 0.4 0.4 snort-common-libraries (notoncd) (notwanted)
- 0.4 0.4 snowballz (notoncd) (notwanted)
- 0.4 0.4 solfege-oss (notoncd) (notwanted)
- 0.4 0.4 sooperlooper (notoncd) (notwanted)
- 0.4 0.4 soundkonverter (notoncd) (notwanted)
- 0.4 0.4 soundstretch (notoncd) (notwanted)
- 0.4 0.4 space-orbit (notoncd) (notwanted)
- 0.4 0.4 spacearyarya (notoncd) (notwanted)
- 0.4 0.4 spamprobe (notoncd) (notwanted)
- 0.4 0.4 spatialite-bin (notoncd) (notwanted)
- 0.4 0.4 specimen (notoncd) (notwanted)
- 0.4 0.4 spectemu-common (notoncd) (notwanted)
- 0.4 0.4 spectemu-svga (notoncd) (notwanted)
- 0.4 0.4 spectemu-x11 (notoncd) (notwanted)
- 0.4 0.4 specto (notoncd) (notwanted)
- 0.4 0.4 spectools (notoncd) (notwanted)
- 0.4 0.4 speech-tools (notoncd) (notwanted)
- 0.4 0.4 speechd-el (notoncd) (notwanted)
- 0.4 0.4 speedbar (notoncd) (notwanted)
- 0.4 0.4 sphinxsearch (notoncd) (notwanted)
- 0.4 0.4 spip (notoncd) (notwanted)
- 0.4 0.4 spout (notoncd) (notwanted)
- 0.4 0.4 spring-dbg (notoncd) (notwanted)
- 0.4 0.4 spring-javaai (notoncd) (notwanted)
- 0.4 0.4 sqldeveloper-package (notoncd) (notwanted)
- 0.4 0.4 sqlline (notoncd) (notwanted)
- 0.4 0.4 squid3 (notoncd) (notwanted)
- 0.4 0.4 squidtaild (notoncd) (notwanted)
- 0.4 0.4 squirrelmail (notoncd) (notwanted)
- 0.4 0.4 squirrelmail-locales (notoncd) (notwanted)
- 0.4 0.4 squirrelmail-viewashtml (notoncd) (notwanted)
- 0.4 0.4 sqwebmail (notoncd) (notwanted)
- 0.4 0.4 sshguard (notoncd) (notwanted)
- 0.4 0.4 stardict-gnome (notoncd) (notwanted)
- 0.4 0.4 starvoyager (notoncd) (notwanted)
- 0.4 0.4 stepbill.app (notoncd) (notwanted)
- 0.4 0.4 steptalk (notoncd) (notwanted)
- 0.4 0.4 stockfish (notoncd) (notwanted)
- 0.4 0.4 streamer (notoncd) (notwanted)
- 0.4 0.4 structure-synth (notoncd) (notwanted)
- 0.4 0.4 stymulator (notoncd) (notwanted)
- 0.4 0.4 styx (notoncd) (notwanted)
- 0.4 0.4 styx-dev (notoncd) (notwanted)
- 0.4 0.4 submux-dvd (notoncd) (notwanted)
- 0.4 0.4 subtitlecomposer (notoncd) (notwanted)
- 0.4 0.4 subtitleripper (notoncd) (notwanted)
- 0.4 0.4 suckless-tools (notoncd) (notwanted)
- 0.4 0.4 sucrack (notoncd) (notwanted)
- 0.4 0.4 sudoku (notoncd) (notwanted)
- 0.4 0.4 sugar-artwork-0.88 (notoncd) (notwanted)
- 0.4 0.4 sugar-emulator-0.88 (notoncd)
- 0.4 0.4 sugar-presence-service-0.84 (notoncd) (notwanted)
- 0.4 0.4 sugar-presence-service-0.88 (notoncd) (notwanted)
- 0.4 0.4 sugar-session-0.84 (notoncd) (notwanted)
- 0.4 0.4 sugar-session-0.88 (notoncd)
- 0.4 0.4 sugar-tools-0.84 (notoncd) (notwanted)
- 0.4 0.4 sugar-tools-0.88 (notoncd) (notwanted)
- 0.4 0.4 sugarplum (notoncd) (notwanted)
- 0.4 0.4 sunclock (notwanted)
- 0.4 0.4 sunflow (notoncd) (notwanted)
- 0.4 0.4 supertransball2 (notoncd) (notwanted)
- 0.4 0.4 supertuxkart (notoncd) (notwanted)
- 0.4 0.4 surfraw (notoncd) (notwanted)
- 0.4 0.4 surfraw-extra (notoncd) (notwanted)
- 0.4 0.4 survex (notoncd) (notwanted)
- 0.4 0.4 survex-aven (notoncd) (notwanted)
- 0.4 0.4 svnkit (notoncd) (notwanted)
- 0.4 0.4 svtools (notoncd) (notwanted)
- 0.4 0.4 swac-explore (notoncd) (notwanted)
- 0.4 0.4 swac-get (notoncd) (notwanted)
- 0.4 0.4 sweep-dev (notoncd) (notwanted)
- 0.4 0.4 swftools (notoncd) (notwanted)
- 0.4 0.4 synaesthesia (notoncd) (notwanted)
- 0.4 0.4 synce-serial (notoncd) (notwanted)
- 0.4 0.4 syncevolution-common (notoncd) (notwanted)
- 0.4 0.4 syncevolution-http (notoncd) (notwanted)
- 0.4 0.4 synergy (notoncd) (notwanted)
- 0.4 0.4 sysrqd (notoncd) (notwanted)
- 0.4 0.4 systempreferences.app (notoncd) (notwanted)
- 0.4 0.4 systune (notoncd) (notwanted)
- 0.4 0.4 sysvbanner (notoncd) (notwanted)
- 0.4 0.4 t-prot (notoncd) (notwanted)
- 0.4 0.4 taggrepper (notoncd) (notwanted)
- 0.4 0.4 tagtool (notoncd) (notwanted)
- 0.4 0.4 talksoup.app (notoncd) (notwanted)
- 0.4 0.4 tangerine (notoncd) (notwanted)
- 0.4 0.4 tasks-hildon (notoncd) (notwanted)
- 0.4 0.4 tasque (notoncd) (notwanted)
- 0.4 0.4 taxbird (notoncd) (notwanted)
- 0.4 0.4 tcl-dev (notoncd) (notwanted)
- 0.4 0.4 tcl8.4-dev (notoncd) (notwanted)
- 0.4 0.4 tclthread (notoncd) (notwanted)
- 0.4 0.4 tclx8.4 (notoncd) (notwanted)
- 0.4 0.4 tcm (notoncd) (notwanted)
- 0.4 0.4 tcpick (notoncd) (notwanted)
- 0.4 0.4 tcpspy (notoncd) (notwanted)
- 0.4 0.4 tcpstat (notoncd) (notwanted)
- 0.4 0.4 tcs (notoncd) (notwanted)
- 0.4 0.4 tdom (notoncd) (notwanted)
- 0.4 0.4 teamviewer (notoncd) (notwanted)
- 0.4 0.4 teatime (notoncd) (notwanted)
- 0.4 0.4 teg (notoncd) (notwanted)
- 0.4 0.4 telegnome (notoncd) (notwanted)
- 0.4 0.4 tempest-for-eliza (notoncd) (notwanted)
- 0.4 0.4 template-new (notoncd) (notwanted)
- 0.4 0.4 tennix (notoncd) (notwanted)
- 0.4 0.4 terminal.app (notoncd) (notwanted)
- 0.4 0.4 tessa-mpi (notoncd) (notwanted)
- 0.4 0.4 tesseract-ocr-dev (notoncd) (notwanted)
- 0.4 0.4 tetzle (notoncd) (notwanted)
- 0.4 0.4 textedit.app (notoncd) (notwanted)
- 0.4 0.4 textpattern (notoncd) (notwanted)
- 0.4 0.4 tgif (notoncd) (notwanted)
- 0.4 0.4 the (notoncd) (notwanted)
- 0.4 0.4 therion (notoncd) (notwanted)
- 0.4 0.4 therion-viewer (notoncd) (notwanted)
- 0.4 0.4 thewidgetfactory (notoncd) (notwanted)
- 0.4 0.4 thinlinc-tladm (notoncd) (notwanted)
- 0.4 0.4 thinlinc-tlmisc (notoncd) (notwanted)
- 0.4 0.4 thinlinc-vnc-server (notoncd) (notwanted)
- 0.4 0.4 thinlinc-vsm (notoncd) (notwanted)
- 0.4 0.4 thoggen (notoncd) (notwanted)
- 0.4 0.4 thunar-thumbnailers (notoncd) (notwanted)
- 0.4 0.4 tictactoe-ng (notoncd) (notwanted)
- 0.4 0.4 tiger-otheros (notoncd) (notwanted)
- 0.4 0.4 tilecache (notoncd) (notwanted)
- 0.4 0.4 tilelite (notoncd) (notwanted)
- 0.4 0.4 tilestache (notoncd) (notwanted)
- 0.4 0.4 timemachine (notoncd) (notwanted)
- 0.4 0.4 timemon.app (notoncd) (notwanted)
- 0.4 0.4 timeoutd (notoncd) (notwanted)
- 0.4 0.4 timer-applet (notoncd) (notwanted)
- 0.4 0.4 tin (notoncd) (notwanted)
- 0.4 0.4 tint2 (notoncd) (notwanted)
- 0.4 0.4 tipcutils (notoncd) (notwanted)
- 0.4 0.4 tkcon (notoncd) (notwanted)
- 0.4 0.4 tkcvs (notoncd) (notwanted)
- 0.4 0.4 tmpreaper (notoncd) (notwanted)
- 0.4 0.4 tmw (notoncd) (notwanted)
- 0.4 0.4 tmw-dbg (notoncd) (notwanted)
- 0.4 0.4 toga2 (notoncd) (notwanted)
- 0.4 0.4 tomboy-latex (notoncd) (notwanted)
- 0.4 0.4 tomcat6-common (notoncd) (notwanted)
- 0.4 0.4 tomcat7-common (notoncd) (notwanted)
- 0.4 0.4 tomcat7-user (notoncd) (notwanted)
- 0.4 0.4 topshelf (notoncd) (notwanted)
- 0.4 0.4 tora (notoncd) (notwanted)
- 0.4 0.4 tork (notoncd) (notwanted)
- 0.4 0.4 torrentflux (notoncd) (notwanted)
- 0.4 0.4 torsocks (notoncd) (notwanted)
- 0.4 0.4 torus-trooper (notoncd) (notwanted)
- 0.4 0.4 torus-trooper-pure (notoncd) (notwanted)
- 0.4 0.4 totem-dbg (notoncd) (notwanted)
- 0.4 0.4 tpb (notoncd) (notwanted)
- 0.4 0.4 tracker-explorer (notoncd) (notwanted)
- 0.4 0.4 tracker-miner-evolution (notoncd) (notwanted)
- 0.4 0.4 transset-df (notoncd) (notwanted)
- 0.4 0.4 traverso (notoncd) (notwanted)
- 0.4 0.4 tremulous-server (notoncd) (notwanted)
- 0.4 0.4 trn4 (notoncd) (notwanted)
- 0.4 0.4 ttb (notoncd) (notwanted)
- 0.4 0.4 ttmkfdir (notoncd) (notwanted)
- 0.4 0.4 tumiki-fighters (notoncd) (notwanted)
- 0.4 0.4 tunapie (notoncd) (notwanted)
- 0.4 0.4 turtleart (notwanted)
- 0.4 0.4 tuxguitar (notoncd) (notwanted)
- 0.4 0.4 tuxguitar-alsa (notoncd) (notwanted)
- 0.4 0.4 tuxguitar-fluidsynth (notoncd) (notwanted)
- 0.4 0.4 tuxguitar-oss (notoncd) (notwanted)
- 0.4 0.4 tuxpuck (notoncd) (notwanted)
- 0.4 0.4 tvtime (notoncd) (notwanted)
- 0.4 0.4 txt2html (notoncd) (notwanted)
- 0.4 0.4 typo3-dummy (notoncd) (notwanted)
- 0.4 0.4 typo3-src-4.3 (notoncd) (notwanted)
- 0.4 0.4 uae (notoncd) (notwanted)
- 0.4 0.4 uae-dbg (notoncd) (notwanted)
- 0.4 0.4 ucspi-tcp-src (notoncd) (notwanted)
- 0.4 0.4 ufw (notoncd) (notwanted)
- 0.4 0.4 uif2iso (notoncd) (notwanted)
- 0.4 0.4 uim-applet-gnome (notoncd) (notwanted)
- 0.4 0.4 uim-applet-kde (notoncd) (notwanted)
- 0.4 0.4 uim-gtk2.0 (notoncd) (notwanted)
- 0.4 0.4 ukolovnik (notoncd) (notwanted)
- 0.4 0.4 ulogd (notoncd) (notwanted)
- 0.4 0.4 ultrastar-ng (notoncd) (notwanted)
- 0.4 0.4 unace (notoncd) (notwanted)
- 0.4 0.4 unace-nonfree (notoncd) (notwanted)
- 0.4 0.4 unclutter (notoncd) (notwanted)
- 0.4 0.4 uncrustify (notoncd) (notwanted)
- 0.4 0.4 unhide.rb (notoncd) (notwanted)
- 0.4 0.4 units-filter (notoncd) (notwanted)
- 0.4 0.4 universalindentgui (notoncd) (notwanted)
- 0.4 0.4 unp (notoncd) (notwanted)
- 0.4 0.4 unpaper (notoncd) (notwanted)
- 0.4 0.4 unrtf (notoncd) (notwanted)
- 0.4 0.4 unsort (notoncd) (notwanted)
- 0.4 0.4 unzoo (notoncd) (notwanted)
- 0.4 0.4 upnp-router-control (notoncd) (notwanted)
- 0.4 0.4 uprecords-cgi (notoncd) (notwanted)
- 0.4 0.4 uptimed (notoncd) (notwanted)
- 0.4 0.4 uqm (notoncd) (notwanted)
- 0.4 0.4 uqm-russian (notoncd) (notwanted)
- 0.4 0.4 uqwk (notoncd) (notwanted)
- 0.4 0.4 usemod-wiki (notoncd) (notwanted)
- 0.4 0.4 user-setup (notoncd) (notwanted)
- 0.4 0.4 usermin (notoncd) (notwanted)
- 0.4 0.4 utf8-migration-tool (notoncd) (notwanted)
- 0.4 0.4 util-vserver (notoncd) (notwanted)
- 0.4 0.4 uuid (notoncd) (notwanted)
- 0.4 0.4 uvccapture (notoncd) (notwanted)
- 0.4 0.4 uvcdynctrl-dbg (notoncd) (notwanted)
- 0.4 0.4 uwsgi-core (notoncd) (notwanted)
- 0.4 0.4 uwsgi-plugin-python (notoncd) (notwanted)
- 0.4 0.4 vainfo (notoncd) (notwanted)
- 0.4 0.4 valac-0.12 (notoncd) (notwanted)
- 0.4 0.4 valac-0.16 (notoncd) (notwanted)
- 0.4 0.4 valknut (notoncd) (notwanted)
- 0.4 0.4 vamp-examples (notoncd) (notwanted)
- 0.4 0.4 vamp-plugin-sdk (notoncd) (notwanted)
- 0.4 0.4 varnish (notoncd) (notwanted)
- 0.4 0.4 vbrfix (notoncd) (notwanted)
- 0.4 0.4 vco-plugins (notoncd) (notwanted)
- 0.4 0.4 vde2-cryptcab (notoncd) (notwanted)
- 0.4 0.4 vdesk (notoncd) (notwanted)
- 0.4 0.4 vdr (notoncd) (notwanted)
- 0.4 0.4 vdr-plugin-bitstreamout (notoncd) (notwanted)
- 0.4 0.4 vdr-plugin-dvd (notoncd) (notwanted)
- 0.4 0.4 vdr-plugin-mp3 (notoncd) (notwanted)
- 0.4 0.4 vdr-plugin-remote (notoncd) (notwanted)
- 0.4 0.4 vdr-plugin-xineliboutput (notoncd) (notwanted)
- 0.4 0.4 verbiste (notoncd) (notwanted)
- 0.4 0.4 verbiste-el (notoncd) (notwanted)
- 0.4 0.4 verbiste-gnome (notoncd) (notwanted)
- 0.4 0.4 verse (notoncd) (notwanted)
- 0.4 0.4 vflib3 (notoncd) (notwanted)
- 0.4 0.4 vgacardgames (notoncd) (notwanted)
- 0.4 0.4 vice (notoncd) (notwanted)
- 0.4 0.4 vidalia (notoncd) (notwanted)
- 0.4 0.4 videogen (notoncd) (notwanted)
- 0.4 0.4 videolink (notoncd) (notwanted)
- 0.4 0.4 viewglob (notoncd) (notwanted)
- 0.4 0.4 viewpdf.app (notoncd) (notwanted)
- 0.4 0.4 vilistextum (notoncd) (notwanted)
- 0.4 0.4 vim-lesstif (notoncd) (notwanted)
- 0.4 0.4 vim-nox (notoncd) (notwanted)
- 0.4 0.4 vim-scripts (notoncd) (notwanted)
- 0.4 0.4 vim-vimoutliner (notoncd) (notwanted)
- 0.4 0.4 virtualbox-guest-x11 (notoncd) (notwanted)
- 0.4 0.4 vkeybd (notoncd) (notwanted)
- 0.4 0.4 vlc-plugin-fluidsynth (notoncd) (notwanted)
- 0.4 0.4 vlc-plugin-jack (notoncd) (notwanted)
- 0.4 0.4 vlc-plugin-svg (notoncd) (notwanted)
- 0.4 0.4 vlc-plugin-svgalib (notoncd) (notwanted)
- 0.4 0.4 vlc-plugin-zvbi (notoncd) (notwanted)
- 0.4 0.4 vmware-view-open-client (notoncd) (notwanted)
- 0.4 0.4 vncsnapshot (notoncd) (notwanted)
- 0.4 0.4 voikko-fi (notwanted)
- 0.4 0.4 volumecontrol.app (notoncd) (notwanted)
- 0.4 0.4 vor (notoncd) (notwanted)
- 0.4 0.4 vorbis-tools-dbg (notoncd) (notwanted)
- 0.4 0.4 vtgrab (notoncd) (notwanted)
- 0.4 0.4 vzctl (notoncd) (notwanted)
- 0.4 0.4 vzquota (notoncd) (notwanted)
- 0.4 0.4 w3c-markup-validator (notoncd) (notwanted)
- 0.4 0.4 wapiti (notoncd) (notwanted)
- 0.4 0.4 warsow (notoncd) (notwanted)
- 0.4 0.4 warsow-server (notoncd) (notwanted)
- 0.4 0.4 watchdog (notoncd) (notwanted)
- 0.4 0.4 wav2cdr (notoncd) (notwanted)
- 0.4 0.4 wavbreaker (notoncd) (notwanted)
- 0.4 0.4 wbar (notoncd) (notwanted)
- 0.4 0.4 wbar-config (notoncd) (notwanted)
- 0.4 0.4 wbritish-huge (notoncd) (notwanted)
- 0.4 0.4 wcanadian-small (notoncd) (notwanted)
- 0.4 0.4 wcatalan (notoncd) (notwanted)
- 0.4 0.4 wdq2wav (notoncd) (notwanted)
- 0.4 0.4 wdutch (notoncd) (notwanted)
- 0.4 0.4 webalizer (notoncd) (notwanted)
- 0.4 0.4 webcam (notoncd) (notwanted)
- 0.4 0.4 webcamd (notoncd) (notwanted)
- 0.4 0.4 webfs (notoncd) (notwanted)
- 0.4 0.4 webissues-server (notoncd) (notwanted)
- 0.4 0.4 webkit-image-gtk (notoncd) (notwanted)
- 0.4 0.4 websimba (notoncd) (notwanted)
- 0.4 0.4 websvn (notoncd) (notwanted)
- 0.4 0.4 webxml (notoncd) (notwanted)
- 0.4 0.4 weplab (notoncd) (notwanted)
- 0.4 0.4 wesnoth-1.8-dbg (notoncd) (notwanted)
- 0.4 0.4 wesnoth-1.8-server (notoncd) (notwanted)
- 0.4 0.4 wfaroese (notoncd) (notwanted)
- 0.4 0.4 wgaelic (notoncd) (notwanted)
- 0.4 0.4 wgalician-minimos (notoncd) (notwanted)
- 0.4 0.4 wgerman-medical (notoncd) (notwanted)
- 0.4 0.4 whitedune (notoncd) (notwanted)
- 0.4 0.4 whysynth (notoncd) (notwanted)
- 0.4 0.4 wide-dhcpv6-client (notoncd) (notwanted)
- 0.4 0.4 wide-dhcpv6-relay (notoncd) (notwanted)
- 0.4 0.4 wide-dhcpv6-server (notoncd) (notwanted)
- 0.4 0.4 widelands (notoncd) (notwanted)
- 0.4 0.4 widelands-dbg (notoncd) (notwanted)
- 0.4 0.4 widemargin (notoncd) (notwanted)
- 0.4 0.4 wifi-radar (notoncd) (notwanted)
- 0.4 0.4 wiithon (notoncd) (notwanted)
- 0.4 0.4 wims (notoncd) (notwanted)
- 0.4 0.4 wims-extra-all (notoncd) (notwanted)
- 0.4 0.4 wims-modules (notoncd) (notwanted)
- 0.4 0.4 window-picker-applet (notoncd) (notwanted)
- 0.4 0.4 wine-bin-unstable (notoncd) (notwanted)
- 0.4 0.4 winff-dbg (notoncd) (notwanted)
- 0.4 0.4 winwrangler (notoncd) (notwanted)
- 0.4 0.4 wipe (notoncd) (notwanted)
- 0.4 0.4 wireshark-dbg (notoncd) (notwanted)
- 0.4 0.4 wireshark-dev (notoncd) (notwanted)
- 0.4 0.4 wirish (notoncd) (notwanted)
- 0.4 0.4 wmanager (notoncd) (notwanted)
- 0.4 0.4 wmanx (notoncd) (notwanted)
- 0.4 0.4 wmctrl (notoncd) (notwanted)
- 0.4 0.4 wmdiskmon (notoncd) (notwanted)
- 0.4 0.4 wmppp.app (notoncd) (notwanted)
- 0.4 0.4 wmtemp (notoncd) (notwanted)
- 0.4 0.4 wnn7egg (notoncd) (notwanted)
- 0.4 0.4 wogerman (notoncd) (notwanted)
- 0.4 0.4 wordplay (notoncd) (notwanted)
- 0.4 0.4 wordtrans-qt (notoncd) (notwanted)
- 0.4 0.4 wormux-servers (notoncd) (notwanted)
- 0.4 0.4 wp2x (notoncd) (notwanted)
- 0.4 0.4 wpd2sxw (notoncd) (notwanted)
- 0.4 0.4 wrapperfactory.app (notoncd) (notwanted)
- 0.4 0.4 wsola (notoncd) (notwanted)
- 0.4 0.4 wswiss (notoncd) (notwanted)
- 0.4 0.4 wx2.6-headers (notoncd) (notwanted)
- 0.4 0.4 wzip (notoncd) (notwanted)
- 0.4 0.4 x-pgp-sig-el (notoncd) (notwanted)
- 0.4 0.4 xaos (notoncd) (notwanted)
- 0.4 0.4 xapm (notoncd) (notwanted)
- 0.4 0.4 xbanner (notoncd) (notwanted)
- 0.4 0.4 xbattbar (notoncd) (notwanted)
- 0.4 0.4 xbattle (notoncd) (notwanted)
- 0.4 0.4 xbubble (notoncd) (notwanted)
- 0.4 0.4 xcdroast (notoncd) (notwanted)
- 0.4 0.4 xchain (notoncd) (notwanted)
- 0.4 0.4 xchat-gnome (notoncd) (notwanted)
- 0.4 0.4 xchm (notoncd) (notwanted)
- 0.4 0.4 xcircuit (notoncd) (notwanted)
- 0.4 0.4 xdaliclock (notoncd) (notwanted)
- 0.4 0.4 xdemorse (notoncd) (notwanted)
- 0.4 0.4 xdvdshrink (notoncd) (notwanted)
- 0.4 0.4 xemacs21-mule-canna-wnn (notoncd) (notwanted)
- 0.4 0.4 xemacs21-nomule (notoncd) (notwanted)
- 0.4 0.4 xeukleides (notoncd) (notwanted)
- 0.4 0.4 xevil (notoncd) (notwanted)
- 0.4 0.4 xfce4-cellmodem-plugin (notoncd) (notwanted)
- 0.4 0.4 xfce4-hdaps (notoncd) (notwanted)
- 0.4 0.4 xfce4-mpc-plugin (notoncd) (notwanted)
- 0.4 0.4 xfce4-panel-dev (notoncd) (notwanted)
- 0.4 0.4 xfce4-radio-plugin (notoncd) (notwanted)
- 0.4 0.4 xfce4-wmdock-plugin (notoncd) (notwanted)
- 0.4 0.4 xfce4-xfapplet-plugin (notoncd) (notwanted)
- 0.4 0.4 xfswitch-plugin (notoncd) (notwanted)
- 0.4 0.4 xgraph (notoncd) (notwanted)
- 0.4 0.4 xgridfit (notoncd) (notwanted)
- 0.4 0.4 xjadeo (notoncd) (notwanted)
- 0.4 0.4 xlhtml (notoncd) (notwanted)
- 0.4 0.4 xmame-x (notoncd) (notwanted)
- 0.4 0.4 xmaxima (notoncd) (notwanted)
- 0.4 0.4 xmcd (notoncd) (notwanted)
- 0.4 0.4 xmix (notoncd) (notwanted)
- 0.4 0.4 xmlindent (notoncd) (notwanted)
- 0.4 0.4 xmms2-client-avahi (notoncd) (notwanted)
- 0.4 0.4 xmms2-client-vis (notoncd) (notwanted)
- 0.4 0.4 xmms2-dev (notoncd) (notwanted)
- 0.4 0.4 xmms2-et (notoncd) (notwanted)
- 0.4 0.4 xmms2-scrobbler (notoncd) (notwanted)
- 0.4 0.4 xmonad (notoncd) (notwanted)
- 0.4 0.4 xmorph (notoncd) (notwanted)
- 0.4 0.4 xmpuzzles (notoncd) (notwanted)
- 0.4 0.4 xorsa (notoncd) (notwanted)
- 0.4 0.4 xotcl (notoncd) (notwanted)
- 0.4 0.4 xpad (notoncd) (notwanted)
- 0.4 0.4 xprintidle (notoncd) (notwanted)
- 0.4 0.4 xprobe (notoncd) (notwanted)
- 0.4 0.4 xringd (notoncd) (notwanted)
- 0.4 0.4 xserver-xorg-video-ivtv-dbg (notoncd) (notwanted)
- 0.4 0.4 xsynth-dssi (notoncd) (notwanted)
- 0.4 0.4 xtrkcad (notoncd) (notwanted)
- 0.4 0.4 xtron (notoncd) (notwanted)
- 0.4 0.4 xtrs (notoncd) (notwanted)
- 0.4 0.4 xtux-client (notoncd) (notwanted)
- 0.4 0.4 xtux-server (notoncd) (notwanted)
- 0.4 0.4 xvidenc (notoncd) (notwanted)
- 0.4 0.4 xwax (notoncd) (notwanted)
- 0.4 0.4 xwelltris (notoncd) (notwanted)
- 0.4 0.4 xymon (notoncd) (notwanted)
- 0.4 0.4 xymon-client (notoncd) (notwanted)
- 0.4 0.4 xzgv (notoncd) (notwanted)
- 0.4 0.4 yacas (notoncd) (notwanted)
- 0.4 0.4 yahtzeesharp (notoncd) (notwanted)
- 0.4 0.4 yapet (notoncd) (notwanted)
- 0.4 0.4 yaret (notoncd) (notwanted)
- 0.4 0.4 yasm (notoncd) (notwanted)
- 0.4 0.4 yate (notoncd) (notwanted)
- 0.4 0.4 yate-alsa (notoncd) (notwanted)
- 0.4 0.4 yate-core (notoncd) (notwanted)
- 0.4 0.4 yate-dahdi (notoncd) (notwanted)
- 0.4 0.4 yate-mysql (notoncd) (notwanted)
- 0.4 0.4 yate-openh323 (notoncd) (notwanted)
- 0.4 0.4 yate-pgsql (notoncd) (notwanted)
- 0.4 0.4 yate-qt4 (notoncd) (notwanted)
- 0.4 0.4 yate-scripts (notoncd) (notwanted)
- 0.4 0.4 yatm (notoncd) (notwanted)
- 0.4 0.4 yaz (notoncd) (notwanted)
- 0.4 0.4 ydpdict (notoncd) (notwanted)
- 0.4 0.4 yiff-server (notoncd) (notwanted)
- 0.4 0.4 yorick (notoncd) (notwanted)
- 0.4 0.4 yorick-z (notoncd) (notwanted)
- 0.4 0.4 yoshimi (notoncd) (notwanted)
- 0.4 0.4 ytd-gtk (notoncd) (notwanted)
- 0.4 0.4 z88dk-bin (notoncd) (notwanted)
- 0.4 0.4 z88dk-data (notoncd) (notwanted)
- 0.4 0.4 zabbix-proxy-pgsql (notoncd) (notwanted)
- 0.4 0.4 zabbix-server-mysql (notoncd) (notwanted)
- 0.4 0.4 zabbix3s (notoncd) (notwanted)
- 0.4 0.4 zapping (notoncd) (notwanted)
- 0.4 0.4 zathura (notoncd) (notwanted)
- 0.4 0.4 zaz (notoncd) (notwanted)
- 0.4 0.4 zeitgeist-datahub (notoncd) (notwanted)
- 0.4 0.4 zemberek-server (notoncd) (notwanted)
- 0.4 0.4 zephyr-clients (notoncd) (notwanted)
- 0.4 0.4 zephyr-server (notoncd) (notwanted)
- 0.4 0.4 zeroinstall-injector (notoncd) (notwanted)
- 0.4 0.4 zhcon (notoncd) (notwanted)
- 0.4 0.4 zim (notoncd) (notwanted)
- 0.4 0.4 zimpl (notoncd) (notwanted)
- 0.4 0.4 zipper.app (notoncd) (notwanted)
- 0.4 0.4 zlib1g-dbg (notoncd) (notwanted)
- 0.4 0.4 zmakebas (notoncd) (notwanted)
- 0.4 0.4 znc (notoncd) (notwanted)
- 0.4 0.4 znc-dbg (notoncd) (notwanted)
- 0.4 0.4 znc-dev (notoncd) (notwanted)
- 0.4 0.4 znc-extra (notoncd) (notwanted)
- 0.4 0.4 znc-perl (notoncd) (notwanted)
- 0.4 0.4 znc-tcl (notoncd) (notwanted)
- 0.4 0.4 zoem (notoncd) (notwanted)
- 0.4 0.4 zomg (notoncd) (notwanted)
- 0.4 0.4 zonecheck (notoncd) (notwanted)
- 0.4 0.4 zonecheck-cgi (notoncd) (notwanted)
- 0.4 0.4 zoomer (notoncd) (notwanted)
- 0.4 0.4 zope-common (notoncd) (notwanted)
- 0.4 0.4 zope-debhelper (notoncd) (notwanted)
- 0.4 0.4 zoph (notoncd) (notwanted)
- 0.4 0.4 zorp (notoncd) (notwanted)
- 0.4 0.4 zorp-modules (notoncd) (notwanted)
- 0.4 0.4 zp (notoncd) (notwanted)
- 0.4 0.4 zpaq (notoncd) (notwanted)
- 0.4 0.4 zpspell (notoncd) (notwanted)
- 0.4 0.4 zsafe (notoncd) (notwanted)
- 0.4 0.4 zsh-beta (notoncd) (notwanted)
- 0.4 0.4 zsh-dbg (notoncd) (notwanted)
- 0.4 0.4 zsh-dev (notoncd) (notwanted)
- 0.4 0.4 zsh-static (notoncd) (notwanted)
- 0.4 0.4 zshdb (notoncd) (notwanted)
- 0.4 0.4 zssh (notoncd) (notwanted)
- 0.4 0.4 zvbi (notoncd) (notwanted)
- 0.4 0.4 zygrib (notoncd) (notwanted)
- 0.4 0.4 zynadd (notoncd) (notwanted)
- 0.4 0.4 zynaddsubfx (notoncd) (notwanted)
- 0.4 0.4 zynjacku (notoncd) (notwanted)
- 0.4 0.4 zziplib-bin (notoncd) (notwanted)
- 0.4 0.4 zzuf (notoncd) (notwanted)
-100.0 0.0 fontconfig-config (notwanted)
-100.0 0.0 libdbus-1-3 (notwanted)
-100.0 0.0 libedit2 (notwanted)
-100.0 0.0 libexpat1 (notwanted)
-100.0 0.0 libfontconfig1 (notwanted)
-100.0 0.0 libfreetype6 (notwanted)
-100.0 0.0 libgcrypt11 (notwanted)
-100.0 0.0 libgpg-error0 (notwanted)
-100.0 0.0 libklibc (notwanted)
-100.0 0.0 liblcms1 (notwanted)
-100.0 0.0 libmagic1 (notwanted)
-100.0 0.0 libpng12-0 (notwanted)
-100.0 0.0 libreadline5 (notwanted)
-100.0 0.0 libtasn1-3 (notwanted)
-100.0 0.0 libx11-6 (notwanted)
-100.0 0.0 libx11-data (notwanted)
-100.0 0.0 libxau6 (notwanted)
-100.0 0.0 libxdmcp6 (notwanted)
-100.0 0.0 libxml2 (notwanted)
-100.0 0.0 openssh-blacklist (notwanted)
- 99.6 0.0 libavahi-common3 (notwanted)
- 99.6 0.0 libdbus-glib-1-2 (notwanted)
- 99.1 0.0 libcap2 (notwanted)
- 99.1 0.0 libgnutls26 (notwanted)
- 99.1 0.0 libgomp1 (notwanted)
- 99.1 0.0 libkeyutils1 (notwanted)
- 99.1 0.0 libldap-2.4-2 (notwanted)
- 99.1 0.0 libpci3 (notwanted)
- 99.1 0.0 libslp1 (notwanted)
- 99.1 0.0 libxcb1 (notwanted)
- 99.1 0.0 ttf-dejavu-core (notwanted)
- 98.7 0.0 libdevmapper1.02.1 (notwanted)
- 97.9 0.0 libffi5 (notwanted)
- 97.9 0.0 libidn11 (notwanted)
- 97.9 0.0 libjpeg62 (notoncd) (notwanted)
- 97.9 0.0 libnspr4-0d (notwanted)
- 97.4 0.0 libgmp3c2 (notoncd) (notwanted)
- 96.2 0.0 libxpm4 (notwanted)
- 93.6 0.0 libperl5.10 (notoncd) (notwanted)
- 93.2 0.0 liblua5.1-0 (notwanted)
- 92.8 0.0 xkb-data (notwanted)
- 91.5 0.0 libapr1 (notwanted)
- 91.5 0.0 libdaemon0 (notwanted)
- 83.8 0.0 x11-common (notwanted)
- 83.4 0.0 libxext6 (notwanted)
- 83.4 0.0 libxi6 (notwanted)
- 83.0 0.0 gsfonts (notwanted)
- 83.0 0.0 libgpm2 (notwanted)
- 83.0 0.0 libice6 (notwanted)
- 83.0 0.0 libpaper1 (notwanted)
- 83.0 0.0 libsm6 (notwanted)
- 83.0 0.0 libtiff4 (notwanted)
- 83.0 0.0 libxcursor1 (notwanted)
- 83.0 0.0 libxfixes3 (notwanted)
- 83.0 0.0 libxft2 (notwanted)
- 83.0 0.0 libxinerama1 (notwanted)
- 83.0 0.0 libxrandr2 (notwanted)
- 83.0 0.0 libxrender1 (notwanted)
- 83.0 0.0 libxt6 (notwanted)
- 82.6 0.0 gconf2-common (notwanted)
- 82.6 0.0 libatk1.0-0 (notwanted)
- 82.6 0.0 libavahi-client3 (notwanted)
- 82.6 0.0 libcairo2 (notwanted)
- 82.6 0.0 libcupsimage2 (notwanted)
- 82.6 0.0 libdrm2 (notwanted)
- 82.6 0.0 libgl1-mesa-glx (notwanted)
- 82.6 0.0 libgtk2.0-common (notwanted)
- 82.6 0.0 libxdamage1 (notwanted)
- 82.6 0.0 libxmuu1 (notwanted)
- 82.6 0.0 libxxf86vm1 (notwanted)
- 82.1 0.0 libcups2 (notwanted)
- 82.1 0.0 libglade2-0 (notwanted)
- 82.1 0.0 libgnome-keyring0 (notwanted)
- 82.1 0.0 libidl0 (notwanted)
- 82.1 0.0 libijs-0.35 (notwanted)
- 82.1 0.0 libstartup-notification0 (notwanted)
- 82.1 0.0 libsysfs2 (notwanted)
- 82.1 0.0 libxcomposite1 (notwanted)
- 81.7 0.0 foomatic-db (notwanted)
- 81.7 0.0 hicolor-icon-theme (notwanted)
- 81.7 0.0 libgsf-1-common (notwanted)
- 81.7 0.0 libhal1 (notwanted)
- 81.7 0.0 libpixman-1-0 (notwanted)
- 81.7 0.0 librsvg2-2 (notwanted)
- 81.7 0.0 libthai-data (notwanted)
- 81.7 0.0 libthai0 (notwanted)
- 81.7 0.0 libvte-common (notwanted)
- 81.7 0.0 libwbclient0 (notwanted)
- 81.7 0.0 libxcb-render0 (notwanted)
- 81.3 0.0 libexif12 (notwanted)
- 81.3 0.0 libgsf-1-114 (notwanted)
- 81.3 0.0 libieee1284-3 (notwanted)
- 81.3 0.0 ttf-dejavu-extra
- 80.9 0.0 cups-common (notwanted)
- 80.9 0.0 foomatic-db-gutenprint
- 80.9 0.0 libgssapi-krb5-2 (notwanted)
- 80.9 0.0 libk5crypto3 (notwanted)
- 80.9 0.0 libkrb5support0 (notwanted)
- 80.4 0.0 libltdl7 (notwanted)
- 80.0 0.0 libbsd0 (notwanted)
- 80.0 0.0 libgeoip1 (notwanted)
- 79.6 0.0 ttf-dejavu (notwanted)
- 79.1 0.0 libgssglue1 (notwanted)
- 78.7 0.0 keyboard-configuration (notwanted)
- 78.7 0.0 libasound2 (notwanted)
- 78.7 0.0 libhal-storage1 (notoncd) (notwanted)
- 78.7 0.0 libxmu6 (notwanted)
- 78.3 0.0 libaudio2 (notwanted)
- 78.3 0.0 libfontenc1 (notwanted)
- 78.3 0.0 libglu1-mesa (notwanted)
- 78.3 0.0 libmng1 (notwanted)
- 78.3 0.0 libparted0debian1 (notwanted)
- 78.3 0.0 librpcsecgss3 (notoncd) (notwanted)
- 77.9 0.0 acpi-support-base
- 77.9 0.0 libjasper1 (notwanted)
- 77.9 0.0 libxaw7 (notwanted)
- 77.4 0.0 foomatic-filters-ppds (notoncd)
- 77.4 0.0 libgs8 (notoncd) (notwanted)
- 77.4 0.0 libxfont1 (notwanted)
- 77.4 0.0 xfonts-encodings (notwanted)
- 77.0 0.0 libx86-1 (notwanted)
- 77.0 0.0 libxtst6 (notwanted)
- 76.6 0.0 libcurl3-gnutls (notwanted)
- 76.6 0.0 libxv1 (notwanted)
- 76.6 0.0 libxxf86dga1 (notwanted)
- 76.6 0.0 ttf-freefont
- 76.2 0.0 libdb4.7 (notoncd) (notwanted)
- 76.2 0.0 libisccc60 (notoncd) (notwanted)
- 76.2 0.0 libogg0 (notwanted)
- 76.2 0.0 libsmbclient (notwanted)
- 76.2 0.0 libvorbis0a (notwanted)
- 76.2 0.0 libvorbisenc2 (notwanted)
- 76.2 0.0 libvorbisfile3 (notwanted)
- 75.7 0.0 esound-common (notwanted)
- 75.7 0.0 gnome-icon-theme (notwanted)
- 75.7 0.0 libart-2.0-2 (notwanted)
- 75.7 0.0 libbind9-60 (notoncd) (notwanted)
- 75.7 0.0 libflac8 (notwanted)
- 75.7 0.0 libgfortran3 (notwanted)
- 75.7 0.0 libgif4 (notwanted)
- 75.7 0.0 liblwres60 (notoncd) (notwanted)
- 75.7 0.0 libsndfile1 (notwanted)
- 75.3 0.0 gnome-mime-data (notwanted)
- 75.3 0.0 libavahi-glib1 (notwanted)
- 75.3 0.0 libbonoboui2-common (notwanted)
- 75.3 0.0 libgnome2-common (notwanted)
- 75.3 0.0 libgnomecanvas2-common (notwanted)
- 75.3 0.0 libgnomeui-common (notwanted)
- 75.3 0.0 libgnomevfs2-common (notwanted)
- 75.3 0.0 libpulse0 (notwanted)
- 74.9 0.0 libasyncns0 (notwanted)
- 74.9 0.0 libsensors4 (notwanted)
- 74.9 0.0 libt1-5 (notwanted)
- 74.9 0.0 libxcb-render-util0 (notoncd) (notwanted)
- 74.5 0.0 console-terminus (notoncd) (notwanted)
- 74.5 0.0 libgail18 (notwanted)
- 74.0 0.0 libgtop2-7 (notwanted)
- 74.0 0.0 libgtop2-common (notwanted)
- 73.6 0.0 libwnck-common (notwanted)
- 73.6 0.0 libxres1 (notwanted)
- 73.2 0.0 libwnck22 (notwanted)
- 72.8 0.0 libaudiofile0 (notoncd) (notwanted)
- 72.3 0.0 libmad0 (notwanted)
- 72.3 0.0 libtheora0 (notwanted)
- 72.3 0.0 libxslt1.1 (notwanted)
- 71.5 0.0 libaa1 (notwanted)
- 71.5 0.0 libgstreamer-plugins-base0.10-0 (notwanted)
- 71.5 0.0 libwavpack1 (notwanted)
- 71.1 0.0 libcdparanoia0 (notwanted)
- 71.1 0.0 libgsm1 (notwanted)
- 71.1 0.0 libilmbase6 (notwanted)
- 71.1 0.0 libopenexr6 (notwanted)
- 71.1 0.0 libvisual-0.4-0 (notwanted)
- 70.6 0.0 libfs6 (notwanted)
- 70.6 0.0 libopts25 (notwanted)
- 70.6 0.0 libqt4-designer (notwanted)
- 70.6 0.0 libqt4-network (notwanted)
- 70.6 0.0 libqt4-sql (notwanted)
- 70.6 0.0 libqt4-xml (notwanted)
- 70.6 0.0 libsdl1.2debian (notwanted)
- 70.6 0.0 libsvga1 (notwanted)
- 70.6 0.0 libxcb-shm0 (notwanted)
- 70.6 0.0 libxkbfile1 (notwanted)
- 70.6 0.0 libxss1 (notwanted)
- 70.6 0.0 libxvmc1 (notwanted)
- 70.2 0.0 docbook-xml (notwanted)
- 70.2 0.0 liba52-0.7.4 (notwanted)
- 70.2 0.0 libavc1394-0 (notwanted)
- 70.2 0.0 libmpeg2-4 (notwanted)
- 70.2 0.0 libshout3 (notwanted)
- 70.2 0.0 libtag1c2a (notwanted)
- 70.2 0.0 menu-xdg
- 70.2 0.0 sgml-data (notwanted)
- 70.2 0.0 xfonts-base (notwanted)
- 69.8 0.0 libdjvulibre21 (notwanted)
- 69.8 0.0 libdv4 (notwanted)
- 69.8 0.0 libid3tag0 (notwanted)
- 69.8 0.0 libiec61883-0 (notwanted)
- 69.8 0.0 libsamplerate0 (notwanted)
- 69.4 0.0 libglibmm-2.4-1c2a (notwanted)
- 69.4 0.0 libnetpbm10 (notwanted)
- 69.4 0.0 libsidplay1 (notwanted)
- 69.4 0.0 libsoup2.4-1 (notwanted)
- 68.9 0.0 libgtkmm-2.4-1c2a (notwanted)
- 68.5 0.0 libcairomm-1.0-1 (notwanted)
- 68.5 0.0 libdc1394-22 (notwanted)
- 68.5 0.0 libraptor1 (notwanted)
- 68.5 0.0 libxcb-xv0 (notwanted)
- 68.5 0.0 ttf-liberation
- 68.1 0.0 libfftw3-3 (notwanted)
- 68.1 0.0 libhunspell-1.2-0 (notoncd) (notwanted)
- 68.1 0.0 libsdl-image1.2 (notwanted)
- 67.7 0.0 freepats (notwanted)
- 67.7 0.0 libesd0 (notwanted)
- 67.7 0.0 libgimp2.0 (notwanted)
- 67.7 0.0 liblircclient0 (notwanted)
- 67.7 0.0 libxcb-shape0 (notwanted)
- 67.7 0.0 mysql-common (notwanted)
- 67.7 0.0 tzdata-java (notwanted)
- 67.7 0.0 xfonts-75dpi (notwanted)
- 67.2 0.0 freeglut3 (notwanted)
- 67.2 0.0 gimp-data (notwanted)
- 67.2 0.0 libofa0 (notwanted)
- 66.8 0.0 libfltk1.1 (notwanted)
- 66.8 0.0 libgc1c2 (notwanted)
- 66.8 0.0 libgtkspell0 (notwanted)
- 66.8 0.0 libmms0 (notwanted)
- 66.4 0.0 libmikmod2 (notwanted)
- 66.4 0.0 libsdl-ttf2.0-0 (notwanted)
- 66.0 0.0 libsdl-mixer1.2 (notwanted)
- 66.0 0.0 libsmpeg0 (notwanted)
- 66.0 0.0 tuxtype-data (notwanted)
- 65.5 0.0 hal-info (notoncd) (notwanted)
- 65.5 0.0 libmusicbrainz4c2a (notoncd) (notwanted)
- 65.5 0.0 libsdl-pango1 (notwanted)
- 65.5 0.0 libtalloc2 (notwanted)
- 65.5 0.0 ttf-mgopen
- 65.5 0.0 xaw3dg (notoncd) (notwanted)
- 65.1 0.0 libcddb2 (notwanted)
- 65.1 0.0 libguile-ltdl-1 (notwanted)
- 65.1 0.0 libnotify1 (notoncd) (notwanted)
- 65.1 0.0 libsdl1.2debian-alsa (notoncd) (notwanted)
- 64.7 0.0 guile-1.6-libs (notwanted)
- 64.7 0.0 kgeography-data (notwanted)
- 64.7 0.0 klettres-data (notwanted)
- 64.7 0.0 libartsc0 (notoncd) (notwanted)
- 64.7 0.0 libxine1 (notoncd) (notwanted)
- 64.7 0.0 myspell-es
- 64.3 0.0 liblrdf0 (notwanted)
- 64.3 0.0 liblua50 (notoncd) (notwanted)
- 64.3 0.0 liblualib50 (notoncd) (notwanted)
- 64.3 0.0 libsoundtouch1c2 (notoncd) (notwanted)
- 64.3 0.0 x-ttcidfont-conf (notoncd) (notwanted)
- 63.8 0.0 gcompris-data (notwanted)
- 63.8 0.0 libavahi-qt3-1 (notoncd) (notwanted)
- 63.8 0.0 libopenjpeg2 (notwanted)
- 63.8 0.0 libwpd8c2a (notoncd) (notwanted)
- 63.8 0.0 ttf-dustin (notoncd) (notwanted)
- 63.4 0.0 iso-codes (notwanted)
- 63.4 0.0 libtdb1 (notwanted)
- 63.4 0.0 ttf-sil-andika (notoncd) (notwanted)
- 63.4 0.0 tuxpaint-data (notwanted)
- 63.4 0.0 tuxpaint-stamps-default (notwanted)
- 63.0 0.0 libmozjs2d (notoncd) (notwanted)
- 63.0 0.0 libtar (notoncd) (notwanted)
- 63.0 0.0 libwpg-0.1-1 (notoncd) (notwanted)
- 63.0 0.0 ttf-linex
- 62.6 0.0 intltool-debian (notwanted)
- 62.6 0.0 libcupscgi1 (notwanted)
- 62.6 0.0 libcupsdriver1 (notwanted)
- 62.6 0.0 libcupsmime1 (notwanted)
- 62.6 0.0 libcupsppdc1 (notwanted)
- 62.6 0.0 libdatrie1 (notwanted)
- 62.6 0.0 libpolkit-gobject-1-0 (notwanted)
- 62.6 0.0 libschroedinger-1.0-0 (notwanted)
- 62.6 0.0 libxine1-plugins (notoncd) (notwanted)
- 62.1 0.0 libatasmart4 (notwanted)
- 62.1 0.0 libdvdnav4 (notwanted)
- 62.1 0.0 libgdu0 (notwanted)
- 62.1 0.0 libgudev-1.0-0 (notwanted)
- 62.1 0.0 libpolkit-backend-1-0 (notwanted)
- 62.1 0.0 libsgutils2-2 (notwanted)
- 62.1 0.0 libtse3-0.3.1c2a (notoncd) (notwanted)
- 62.1 0.0 ttf-opensymbol (notoncd) (notwanted)
- 61.7 0.0 noteedit-data (notoncd) (notwanted)
- 61.7 0.0 xbase-clients (notwanted)
- 61.3 0.0 pysycache-sounds (notwanted)
- 60.9 0.0 ca-certificates-java (notwanted)
- 60.9 0.0 libaccess-bridge-java (notoncd) (notwanted)
- 60.9 0.0 libevent-1.4-2 (notoncd) (notwanted)
- 60.9 0.0 libpcsclite1 (notwanted)
- 60.9 0.0 libpolkit-agent-1-0 (notwanted)
- 60.9 0.0 libpoppler5 (notoncd) (notwanted)
- 60.9 0.0 pysycache-buttons-ice (notwanted)
- 60.9 0.0 pysycache-click-dinosaurs (notwanted)
- 60.9 0.0 pysycache-dblclick-appleandpear (notwanted)
- 60.9 0.0 pysycache-i18n (notwanted)
- 60.9 0.0 pysycache-images (notwanted)
- 60.9 0.0 pysycache-move-animals (notwanted)
- 60.9 0.0 pysycache-puzzle-cartoons (notwanted)
- 60.4 0.0 libtwolame0 (notwanted)
- 59.6 0.0 libflac++6 (notwanted)
- 59.1 0.0 libgtkimageview0 (notwanted)
- 59.1 0.0 liblqr-1-0 (notwanted)
- 59.1 0.0 libpulse-mainloop-glib0 (notwanted)
- 58.7 0.0 libeggdbus-1-0 (notoncd) (notwanted)
- 58.7 0.0 libvcdinfo0 (notwanted)
- 58.3 0.0 liborc-0.4-0 (notwanted)
- 58.3 0.0 libxcb-atom1 (notoncd) (notwanted)
- 58.3 0.0 libxcb-aux0 (notoncd) (notwanted)
- 58.3 0.0 libxcb-event1 (notoncd) (notwanted)
- 57.9 0.0 libdvdread4 (notwanted)
- 57.9 0.0 librdf0 (notwanted)
- 57.4 0.0 console-data (notoncd) (notwanted)
- 57.4 0.0 libdirac-encoder0 (notwanted)
- 57.4 0.0 libnl1 (notwanted)
- 57.0 0.0 libfaad2 (notwanted)
- 57.0 0.0 libopencore-amrnb0 (notwanted)
- 57.0 0.0 libopencore-amrwb0 (notwanted)
- 57.0 0.0 libraw1394-11 (notwanted)
- 57.0 0.0 libusb-1.0-0 (notwanted)
- 57.0 0.0 tsconf (notwanted)
- 56.6 0.0 libntfs-3g75 (notoncd) (notwanted)
- 56.6 0.0 libqt4-xmlpatterns (notwanted)
- 56.6 0.0 librarian0 (notwanted)
- 56.2 0.0 libexempi3 (notwanted)
- 56.2 0.0 libtag1-vanilla (notwanted)
- 55.7 0.0 libmpcdec6 (notwanted)
- 55.7 0.0 libpangomm-1.4-1 (notwanted)
- 55.7 0.0 libphonon4 (notwanted)
- 55.7 0.0 libsoup-gnome2.4-1 (notwanted)
- 55.3 0.0 libass4 (notwanted)
- 55.3 0.0 libdca0 (notwanted)
- 55.3 0.0 libenca0 (notwanted)
- 55.3 0.0 libmagickwand3 (notoncd) (notwanted)
- 54.9 0.0 kdelibs5-data (notwanted)
- 54.9 0.0 libclucene0ldbl (notwanted)
- 54.9 0.0 libdjvulibre-text (notwanted)
- 54.9 0.0 libkate1 (notwanted)
- 54.9 0.0 libsoprano4 (notwanted)
- 54.9 0.0 libssh-4 (notwanted)
- 54.9 0.0 libstreams0 (notwanted)
- 54.5 0.0 firmware-linux (notoncd) (notwanted)
- 54.5 0.0 gnome-media-common (notoncd) (notwanted)
- 54.5 0.0 libao-common (notwanted)
- 54.5 0.0 libcdaudio1 (notwanted)
- 54.5 0.0 libcdio10 (notoncd) (notwanted)
- 54.5 0.0 libgme0 (notwanted)
- 54.5 0.0 libiodbc2 (notwanted)
- 54.5 0.0 libmimic0 (notwanted)
- 54.5 0.0 python-xdg (notwanted)
- 54.0 0.0 gimp-help-common (notwanted)
- 54.0 0.0 libplasma3 (notwanted)
- 54.0 0.0 libspectre1 (notwanted)
- 54.0 0.0 ttf-lyx (notoncd) (notwanted)
- 53.6 0.0 libflite1 (notwanted)
- 53.6 0.0 libgsl0ldbl (notwanted)
- 53.6 0.0 libmeanwhile1 (notwanted)
- 53.6 0.0 libopenraw1 (notwanted)
- 53.6 0.0 libplot2c2 (notwanted)
- 53.6 0.0 libslv2-9 (notwanted)
- 53.2 0.0 libxapian15 (notoncd) (notwanted)
- 53.2 0.0 oxygen-icon-theme (notwanted)
- 53.2 0.0 phonon (notwanted)
- 52.8 0.0 cli-common (notwanted)
- 52.8 0.0 gs-common (notoncd) (notwanted)
- 52.8 0.0 libattica0 (notwanted)
- 52.8 0.0 libdb4.5 (notoncd) (notwanted)
- 52.8 0.0 libgp11-0 (notoncd) (notwanted)
- 52.8 0.0 libkde3support4 (notwanted)
- 52.8 0.0 libkdeui5 (notwanted)
- 52.8 0.0 libkdnssd4 (notwanted)
- 52.8 0.0 libkhtml5 (notwanted)
- 52.8 0.0 libkio5 (notwanted)
- 52.8 0.0 libkjsapi4 (notwanted)
- 52.8 0.0 libkjsembed4 (notwanted)
- 52.8 0.0 libkmediaplayer4 (notwanted)
- 52.8 0.0 libknewstuff2-4 (notwanted)
- 52.8 0.0 libknewstuff3-4 (notwanted)
- 52.8 0.0 libknotifyconfig4 (notwanted)
- 52.8 0.0 libkntlm4 (notwanted)
- 52.8 0.0 libkparts4 (notwanted)
- 52.8 0.0 libkpty4 (notwanted)
- 52.8 0.0 libkrosscore4 (notwanted)
- 52.8 0.0 libktexteditor4 (notwanted)
- 52.8 0.0 libkutils4 (notwanted)
- 52.8 0.0 libnepomuk4 (notwanted)
- 52.8 0.0 libnepomukquery4a (notwanted)
- 52.8 0.0 libpcap0.8 (notwanted)
- 52.8 0.0 libsolid4 (notwanted)
- 52.8 0.0 libthreadweaver4 (notwanted)
- 52.3 0.0 default-jre-headless (notwanted)
- 52.3 0.0 libgcr0 (notoncd) (notwanted)
- 52.3 0.0 librasqal2 (notoncd) (notwanted)
- 52.3 0.0 lilypond-data (notwanted)
- 52.3 0.0 shared-desktop-ontologies (notwanted)
- 51.9 0.0 libiptcdata0 (notwanted)
- 51.9 0.0 libwebkit-1.0-common (notoncd) (notwanted)
- 51.5 0.0 default-jre
- 51.5 0.0 libcpufreq0 (notwanted)
- 51.5 0.0 libmpfr1ldbl (notoncd) (notwanted)
- 51.5 0.0 libwxbase2.8-0 (notwanted)
- 51.5 0.0 libwxgtk2.8-0 (notwanted)
- 51.5 0.0 marble-data (notwanted)
- 51.5 0.0 xserver-xorg-input-all
- 51.1 0.0 kdeedu-kvtml-data (notwanted)
- 51.1 0.0 libiso9660-7 (notoncd) (notwanted)
- 51.1 0.0 libxml++2.6-2 (notwanted)
- 50.6 0.0 debian-edu-archive-keyring
- 50.6 0.0 libcelt0-0 (notoncd) (notwanted)
- 50.6 0.0 libept0 (notoncd) (notwanted)
- 50.6 0.0 libkrossui4 (notwanted)
- 50.6 0.0 libpoppler-glib4 (notoncd) (notwanted)
- 50.6 0.0 libpthread-stubs0 (notwanted)
- 50.6 0.0 libpthread-stubs0-dev (notwanted)
- 50.6 0.0 libsdl-net1.2 (notwanted)
- 50.6 0.0 python-avahi (notwanted)
- 50.2 0.0 kdebase-runtime-data (notoncd) (notwanted)
- 50.2 0.0 libck-connector0 (notwanted)
- 50.2 0.0 libgnome-desktop-2-17 (notoncd) (notwanted)
- 50.2 0.0 libkpathsea5 (notoncd) (notwanted)
- 49.8 0.0 libdiscover2 (notwanted)
- 49.8 0.0 libnm-glib2 (notoncd) (notwanted)
- 49.8 0.0 libnm-util1 (notoncd) (notwanted)
- 49.8 0.0 libportaudio2 (notwanted)
- 49.8 0.0 libqthreads-12 (notoncd) (notwanted)
- 49.8 0.0 ttf-bitstream-vera (notoncd) (notwanted)
- 49.4 0.0 libfam0 (notwanted)
- 49.4 0.0 libkimproxy4 (notwanted)
- 49.4 0.0 libmagick++3 (notoncd) (notwanted)
- 49.4 0.0 libnet1 (notwanted)
- 49.4 0.0 libpolkit-qt-1-0 (notoncd) (notwanted)
- 49.4 0.0 libssh2-1 (notwanted)
- 48.9 0.0 drgeo-doc (notwanted)
- 48.9 0.0 libebook1.2-9 (notoncd) (notwanted)
- 48.9 0.0 libgadu3 (notwanted)
- 48.9 0.0 libgps19 (notoncd) (notwanted)
- 48.9 0.0 timidity-daemon (notwanted)
- 48.5 0.0 libkdeedu4 (notoncd) (notwanted)
- 48.5 0.0 libtablelayout-java (notwanted)
- 48.5 0.0 ssh (notwanted)
- 48.1 0.0 hplip-data (notwanted)
- 48.1 0.0 libboost-python1.42.0 (notoncd) (notwanted)
- 48.1 0.0 libboost-thread1.42.0 (notoncd) (notwanted)
- 48.1 0.0 libunistring0 (notwanted)
- 47.7 0.0 debian-edu-artwork
- 47.7 0.0 kdegraphics-libs-data (notoncd) (notwanted)
- 47.7 0.0 libcurl3 (notwanted)
- 47.2 0.0 education-common
- 47.2 0.0 kde-l10n-es
- 47.2 0.0 libavahi-core7 (notwanted)
- 47.2 0.0 libboost-date-time1.42.0 (notoncd) (notwanted)
- 47.2 0.0 libgnet2.0-0 (notoncd) (notwanted)
- 47.2 0.0 libkdegames5 (notoncd) (notwanted)
- 47.2 0.0 xserver-xorg-video-all
- 46.8 0.0 libboost-program-options1.42.0 (notoncd) (notwanted)
- 46.8 0.0 libmarblewidget4 (notoncd) (notwanted)
- 46.4 0.0 libcheese-gtk18 (notoncd) (notwanted)
- 46.4 0.0 libmodplug0c2 (notoncd) (notwanted)
- 46.4 0.0 libvoikko1 (notwanted)
- 46.4 0.0 php5 (notwanted)
- 46.0 0.0 libglew1.5 (notoncd) (notwanted)
- 45.5 0.0 libruby (notoncd) (notwanted)
- 45.5 0.0 texlive-doc-base (notwanted)
- 45.1 0.0 libboost-system1.42.0 (notoncd) (notwanted)
- 45.1 0.0 libconsole (notoncd) (notwanted)
- 45.1 0.0 libisc62 (notoncd) (notwanted)
- 45.1 0.0 libneon27-gnutls (notwanted)
- 44.7 0.0 kde-i18n-es (notoncd) (notwanted)
- 44.7 0.0 libaudit0 (notwanted)
- 44.7 0.0 libdns69 (notoncd) (notwanted)
- 44.7 0.0 libisccfg62 (notoncd) (notwanted)
- 44.7 0.0 libmysqlclient16 (notoncd) (notwanted)
- 44.7 0.0 libvamp-hostsdk3 (notwanted)
- 44.3 0.0 debian-edu-doc-en
- 44.3 0.0 kdenlive-data (notwanted)
- 44.3 0.0 libboost-filesystem1.42.0 (notoncd) (notwanted)
- 44.3 0.0 libburn4 (notwanted)
- 44.3 0.0 libisofs6 (notwanted)
- 44.3 0.0 libmlt-data (notwanted)
- 44.3 0.0 libnss-mdns
- 43.8 0.0 brasero-common (notwanted)
- 43.8 0.0 libmlt++3 (notwanted)
- 43.4 0.0 audacity-data (notwanted)
- 43.4 0.0 education-networked
- 43.4 0.0 libgnome-menu2 (notoncd) (notwanted)
- 43.4 0.0 libtotem-plparser17 (notwanted)
- 43.0 0.0 libdrm-intel1 (notwanted)
- 43.0 0.0 libdrm-radeon1 (notwanted)
- 43.0 0.0 libnautilus-extension1 (notoncd) (notwanted)
- 43.0 0.0 libpq5 (notwanted)
- 43.0 0.0 squid-common (notwanted)
- 42.6 0.0 libunique-1.0-0 (notoncd) (notwanted)
- 41.7 0.0 libgmime-2.4-2 (notoncd) (notwanted)
- 41.3 0.0 libfuse2 (notwanted)
- 41.3 0.0 vlc-data (notwanted)
- 40.9 0.0 evince-common (notwanted)
- 40.9 0.0 gsfonts-x11
- 40.9 0.0 latex-xft-fonts (notoncd) (notwanted)
- 40.9 0.0 librecode0 (notwanted)
- 40.9 0.0 libxcb-keysyms1 (notwanted)
- 40.4 0.0 libdvdcss2 (notoncd) (notwanted)
- 40.4 0.0 libopenspc0 (notoncd) (notwanted)
- 40.4 0.0 texlive-generic-recommended (notwanted)
- 40.0 0.0 libebml0 (notoncd) (notwanted)
- 39.6 0.0 libmatroska0 (notoncd) (notwanted)
- 39.1 0.0 lesstif2 (notwanted)
- 39.1 0.0 libgeoclue0 (notwanted)
- 39.1 0.0 libxp6 (notwanted)
- 38.7 0.0 libdmx1 (notoncd) (notwanted)
- 38.7 0.0 libgssdp-1.0-2 (notoncd) (notwanted)
- 38.7 0.0 libgupnp-1.0-3 (notoncd) (notwanted)
- 38.7 0.0 libpciaccess0 (notwanted)
- 38.7 0.0 libvncserver0 (notwanted)
- 38.7 0.0 pidgin-data (notwanted)
- 38.3 0.0 libiw30 (notwanted)
- 38.3 0.0 libnice0 (notoncd) (notwanted)
- 38.3 0.0 libpth20 (notwanted)
- 37.9 0.0 libupnp3 (notoncd) (notwanted)
- 37.9 0.0 libzephyr4 (notwanted)
- 37.9 0.0 myspell-de-de
- 37.9 0.0 python-xlib (notoncd) (notwanted)
- 37.9 0.0 trans-de-en
- 37.4 0.0 libgd2-xpm (notwanted)
- 37.4 0.0 libtelepathy-glib0 (notwanted)
- 37.0 0.0 liblzo2-2 (notwanted)
- 37.0 0.0 libsexy2 (notwanted)
- 37.0 0.0 xfonts-100dpi (notwanted)
- 37.0 0.0 xfonts-scalable (notwanted)
- 36.6 0.0 gdm-themes (notoncd) (notwanted)
- 36.6 0.0 libcamel1.2-14 (notoncd) (notwanted)
- 36.6 0.0 libgtkglext1 (notwanted)
- 36.6 0.0 python-pyasn1 (notoncd) (notwanted)
- 36.6 0.0 xorg
- 36.2 0.0 libsilcclient-1.1-3 (notoncd) (notwanted)
- 36.2 0.0 libsqlite0 (notoncd) (notwanted)
- 35.7 0.0 debian-edu-doc-de
- 35.7 0.0 libavahi-gobject0 (notwanted)
- 35.7 0.0 libgl1-mesa-dev (notwanted)
- 35.7 0.0 libgpgme11 (notwanted)
- 35.3 0.0 gcompris-sound-en (notwanted)
- 35.3 0.0 gnome-themes
- 35.3 0.0 gnuplot
- 35.3 0.0 libhyphen0 (notwanted)
- 35.3 0.0 libqt4-test (notwanted)
- 35.3 0.0 preview-latex-style (notwanted)
- 35.3 0.0 xplanet-images
- 34.9 0.0 ftplib3 (notwanted)
- 34.9 0.0 libksba8 (notwanted)
- 34.9 0.0 libonig2 (notwanted)
- 34.9 0.0 libqdbm14 (notwanted)
- 34.9 0.0 myspell-en-us
- 34.9 0.0 ttf-sjfonts (notwanted)
- 34.5 0.0 freedesktop-sound-theme (notoncd) (notwanted)
- 34.5 0.0 gimp-data-extras
- 34.5 0.0 kompozer-data (notoncd) (notwanted)
- 34.5 0.0 libmpfr4 (notwanted)
- 34.5 0.0 libqt4-assistant (notoncd) (notwanted)
- 34.5 0.0 libregexp-java (notwanted)
- 34.5 0.0 stellarium-data (notwanted)
- 34.5 0.0 wordnet-base (notwanted)
- 34.0 0.0 exim4 (notwanted)
- 34.0 0.0 kalzium-data (notwanted)
- 34.0 0.0 kstars-data (notwanted)
- 34.0 0.0 libclutter-1.0-0 (notwanted)
- 34.0 0.0 libopenal1 (notwanted)
- 34.0 0.0 libpanel-applet2-0 (notoncd) (notwanted)
- 34.0 0.0 libplib1 (notoncd) (notwanted)
- 34.0 0.0 libsplashy1 (notoncd) (notwanted)
- 34.0 0.0 libtidy-0.99-0 (notwanted)
- 33.6 0.0 education-language
- 33.6 0.0 education-mathematics
- 33.6 0.0 education-music
- 33.6 0.0 gimp-help-es
- 33.6 0.0 gthumb-data (notoncd) (notwanted)
- 33.6 0.0 k3b-data (notwanted)
- 33.6 0.0 libboost-regex1.42.0 (notoncd) (notwanted)
- 33.6 0.0 libxfce4util-common (notoncd) (notwanted)
- 33.6 0.0 libxfce4util4 (notoncd) (notwanted)
- 33.6 0.0 myspell-en-gb
- 33.6 0.0 ttf-unifont (notwanted)
- 33.2 0.0 bodr (notwanted)
- 33.2 0.0 chemical-mime-data (notwanted)
- 33.2 0.0 education-astronomy
- 33.2 0.0 education-chemistry
- 33.2 0.0 education-electronics
- 33.2 0.0 education-geography
- 33.2 0.0 education-graphics
- 33.2 0.0 education-misc
- 33.2 0.0 education-physics
- 33.2 0.0 k3b-i18n
- 33.2 0.0 libaldmb1 (notoncd) (notwanted)
- 33.2 0.0 libcdio-cdda0 (notoncd) (notwanted)
- 33.2 0.0 libdumb1 (notoncd) (notwanted)
- 33.2 0.0 libexo-common (notoncd) (notwanted)
- 33.2 0.0 libfluidsynth1 (notwanted)
- 33.2 0.0 libode1 (notoncd) (notwanted)
- 33.2 0.0 librsync1 (notwanted)
- 33.2 0.0 openbox-themes (notwanted)
- 33.2 0.0 thunar-data (notoncd) (notwanted)
- 33.2 0.0 xfonts-75dpi-transcoded
- 33.2 0.0 xmhtml1 (notwanted)
- 32.8 0.0 atomix-data (notwanted)
- 32.8 0.0 criticalmass-data (notoncd) (notwanted)
- 32.8 0.0 djvulibre-desktop (notwanted)
- 32.8 0.0 libaubio2 (notwanted)
- 32.8 0.0 libclanapp-1.0 (notoncd) (notwanted)
- 32.8 0.0 libdvbpsi5 (notoncd) (notwanted)
- 32.8 0.0 libgamin0 (notoncd) (notwanted)
- 32.8 0.0 libgcj-bc (notoncd) (notwanted)
- 32.8 0.0 libwxbase2.6-0 (notoncd) (notwanted)
- 32.8 0.0 libwxgtk2.6-0 (notoncd) (notwanted)
- 32.8 0.0 lxmenu-data (notwanted)
- 32.8 0.0 myspell-it
- 32.8 0.0 openclipart-png (notwanted)
- 32.8 0.0 python-cupsutils (notoncd) (notwanted)
- 32.8 0.0 trophy-data (notoncd) (notwanted)
- 32.8 0.0 wicd
- 32.3 0.0 celestia-common (notwanted)
- 32.3 0.0 gcc-4.3-base (notoncd) (notwanted)
- 32.3 0.0 kraptor-data (notoncd) (notwanted)
- 32.3 0.0 libjbig2dec0 (notwanted)
- 32.3 0.0 libradiusclient-ng2 (notwanted)
- 32.3 0.0 libsc7 (notwanted)
- 32.3 0.0 unifont
- 32.3 0.0 wormux-data (notoncd) (notwanted)
- 32.3 0.0 xfonts-unifont (notwanted)
- 31.9 0.0 circuslinux-data (notoncd) (notwanted)
- 31.9 0.0 desktop-base (notwanted)
- 31.9 0.0 education-menus
- 31.9 0.0 fb-music-high (notoncd) (notwanted)
- 31.9 0.0 fluid-soundfont-gm
- 31.9 0.0 fretsonfire (notoncd) (notwanted)
- 31.9 0.0 fretsonfire-songs-muldjord (notoncd) (notwanted)
- 31.9 0.0 fretsonfire-songs-sectoid (notoncd) (notwanted)
- 31.9 0.0 frozen-bubble-data (notoncd) (notwanted)
- 31.9 0.0 gcompris-sound-es
- 31.9 0.0 libavahi-core6 (notoncd) (notwanted)
- 31.9 0.0 libboost-iostreams1.40.0 (notoncd) (notwanted)
- 31.9 0.0 libghemical-data (notwanted)
- 31.9 0.0 libicu42 (notoncd) (notwanted)
- 31.9 0.0 libjs-jquery (notwanted)
- 31.9 0.0 liblog4cxx10 (notoncd) (notwanted)
- 31.9 0.0 libobparser21 (notoncd) (notwanted)
- 31.9 0.0 libobrender21 (notoncd) (notwanted)
- 31.9 0.0 myspell-el-gr
- 31.9 0.0 myspell-fi
- 31.9 0.0 python-pyinotify (notoncd) (notwanted)
- 31.9 0.0 supertux-data (notoncd) (notwanted)
- 31.5 0.0 dia-common (notwanted)
- 31.5 0.0 education-desktop-other
- 31.5 0.0 education-logic-games
- 31.5 0.0 giblib1 (notoncd) (notwanted)
- 31.5 0.0 libboost-signals1.42.0 (notoncd) (notwanted)
- 31.5 0.0 libdns64 (notoncd) (notwanted)
- 31.5 0.0 libexiv2-6 (notoncd) (notwanted)
- 31.5 0.0 libgeomview-1.9.4 (notwanted)
- 31.5 0.0 libglitz-glx1 (notoncd) (notwanted)
- 31.5 0.0 libglitz1 (notoncd) (notwanted)
- 31.5 0.0 libgupnp-igd-1.0-2 (notoncd) (notwanted)
- 31.5 0.0 libisc60 (notoncd) (notwanted)
- 31.5 0.0 libisccfg60 (notoncd) (notwanted)
- 31.5 0.0 libopenrawgnome1 (notoncd) (notwanted)
- 31.5 0.0 libsox1a (notoncd) (notwanted)
- 31.5 0.0 libvlc2 (notoncd) (notwanted)
- 31.5 0.0 libvlccore2 (notoncd) (notwanted)
- 31.5 0.0 myspell-ca
- 31.5 0.0 powermanga-data (notoncd) (notwanted)
- 31.1 0.0 briquolo-data (notoncd) (notwanted)
- 31.1 0.0 ceferino-data (notoncd) (notwanted)
- 31.1 0.0 foomatic-db-hpijs (notoncd) (notwanted)
- 31.1 0.0 gamine-data (notoncd) (notwanted)
- 31.1 0.0 jigzo-data (notoncd) (notwanted)
- 31.1 0.0 libglib2.0-data (notwanted)
- 31.1 0.0 libmopac7-1gf (notwanted)
- 31.1 0.0 libwildmidi0 (notoncd) (notwanted)
- 31.1 0.0 monsterz-data (notoncd) (notwanted)
- 31.1 0.0 myspell-nl
- 31.1 0.0 openclipart-svg (notwanted)
- 31.1 0.0 pingus-data (notoncd) (notwanted)
- 31.1 0.0 python-apt-common (notwanted)
- 31.1 0.0 ri-li-data (notoncd) (notwanted)
- 31.1 0.0 stormbaancoureur-data (notoncd) (notwanted)
- 31.1 0.0 zd1211-firmware (notoncd) (notwanted)
- 30.6 0.0 childsplay-alphabet-sounds-es (notoncd) (notwanted)
- 30.6 0.0 educarex-squeak (notoncd) (notwanted)
- 30.6 0.0 egoboo-data (notoncd) (notwanted)
- 30.6 0.0 gnome-icon-theme-gartoon-redux (notoncd) (notwanted)
- 30.6 0.0 hedgewars-data (notoncd) (notwanted)
- 30.6 0.0 libchamplain-0.4-0 (notoncd) (notwanted)
- 30.6 0.0 libchamplain-gtk-0.4-0 (notoncd) (notwanted)
- 30.6 0.0 libclutter-gtk-0.10-0 (notoncd) (notwanted)
- 30.6 0.0 libsvn1 (notwanted)
- 30.6 0.0 linex-gdm-colegios (notoncd) (notwanted)
- 30.6 0.0 metodo-doman-lectura (notoncd) (notwanted)
- 30.6 0.0 ooo4kids-linex (notoncd) (notwanted)
- 30.6 0.0 pathological-music (notoncd) (notwanted)
- 30.2 0.0 kdewallpapers
- 30.2 0.0 libavahi-compat-libdnssd1 (notoncd) (notwanted)
- 30.2 0.0 libdevkit-power-gobject1 (notoncd) (notwanted)
- 30.2 0.0 python-reportbug (notwanted)
- 30.2 0.0 squid-langpack (notwanted)
- 29.8 0.0 celestia
- 29.8 0.0 kdebase-data (notoncd) (notwanted)
- 29.8 0.0 libatk1.0-data (notwanted)
- 29.8 0.0 libgd2-noxpm (notwanted)
- 29.8 0.0 libhd16 (notwanted)
- 29.8 0.0 libmowgli1 (notoncd) (notwanted)
- 29.8 0.0 libtelepathy-farsight0 (notoncd) (notwanted)
- 29.8 0.0 libwps-0.1-1 (notoncd) (notwanted)
- 29.4 0.0 geoip-database (notwanted)
- 29.4 0.0 kdeaccessibility
- 29.4 0.0 libelf1 (notwanted)
- 29.4 0.0 ncurses-term (notwanted)
- 29.4 0.0 openclipart
- 29.4 0.0 openssh-blacklist-extra (notwanted)
- 28.9 0.0 education-workstation
- 28.9 0.0 libdrm-nouveau1 (notoncd) (notwanted)
- 28.5 0.0 education-desktop-kde
- 28.5 0.0 kdeutils
- 28.5 0.0 libgoocanvas-common (notwanted)
- 28.5 0.0 libgoocanvas3 (notwanted)
- 28.5 0.0 xfonts-mathml (notwanted)
- 28.1 0.0 librrd4 (notwanted)
- 27.7 0.0 libserf-0-0 (notoncd) (notwanted)
- 27.7 0.0 ttf-sil-gentium-basic (notwanted)
- 27.2 0.0 augeas-lenses (notoncd) (notwanted)
- 27.2 0.0 libaugeas0 (notoncd) (notwanted)
- 27.2 0.0 libcdk5 (notoncd) (notwanted)
- 27.2 0.0 libedataserver1.2-11 (notoncd) (notwanted)
- 27.2 0.0 libjline-java (notwanted)
- 26.8 0.0 libgavl1 (notwanted)
- 26.8 0.0 libgraphite3 (notwanted)
- 26.8 0.0 libjaxp1.3-java (notwanted)
- 26.8 0.0 libntfs10 (notoncd) (notwanted)
- 26.8 0.0 libopenssl-ruby (notoncd) (notwanted)
- 26.8 0.0 librpmio1 (notoncd) (notwanted)
- 26.8 0.0 libxerces2-java (notwanted)
- 26.4 0.0 libaugeas-ruby1.8 (notoncd) (notwanted)
- 26.4 0.0 libical0 (notwanted)
- 26.4 0.0 librpm1 (notoncd) (notwanted)
- 26.0 0.0 debian-edu-doc-nb
- 26.0 0.0 interwrite-help (notoncd) (notwanted)
- 26.0 0.0 kdebase (notoncd)
- 26.0 0.0 libdb4.6 (notoncd) (notwanted)
- 26.0 0.0 libpulse-browse0 (notoncd) (notwanted)
- 26.0 0.0 openoffice.org
- 26.0 0.0 python-telepathy (notwanted)
- 25.5 0.0 debian-edu-doc-es
- 25.5 0.0 education-main-server
- 25.5 0.0 host (notwanted)
- 25.5 0.0 interwrite (notoncd) (notwanted)
- 25.5 0.0 interwrite-core (notoncd) (notwanted)
- 25.5 0.0 libgssrpc4 (notwanted)
- 25.5 0.0 libplist1 (notwanted)
- 25.5 0.0 librpmbuild1 (notoncd) (notwanted)
- 25.5 0.0 libusbmuxd1 (notwanted)
- 25.5 0.0 libx11-xcb1 (notwanted)
- 25.1 0.0 debian-edu-doc-fr
- 25.1 0.0 libbluetooth3 (notwanted)
- 25.1 0.0 libgtksourceview2.0-0 (notwanted)
- 25.1 0.0 libgtksourceview2.0-common (notwanted)
- 25.1 0.0 metacity-common (notwanted)
- 25.1 0.0 python-virtkey (notoncd) (notwanted)
- 24.7 0.0 debian-edu-doc (notoncd) (notwanted)
- 24.7 0.0 konqueror-plugin-gnash
- 24.7 0.0 libmodplug1 (notwanted)
- 24.3 0.0 libkadm5clnt-mit7 (notoncd) (notwanted)
- 24.3 0.0 libmp3lame0 (notwanted)
- 24.3 0.0 libxcb-dri2-0 (notwanted)
- 24.3 0.0 python-papyon (notoncd) (notwanted)
- 24.3 0.0 telepathy-butterfly (notoncd) (notwanted)
- 23.8 0.0 debian-edu-doc-it
- 23.8 0.0 empathy-common (notwanted)
- 23.8 0.0 libcap1 (notoncd) (notwanted)
- 23.8 0.0 libgsasl7 (notoncd) (notwanted)
- 23.8 0.0 libjack-jackd2-0 (notwanted)
- 23.8 0.0 libnss-myhostname
- 23.8 0.0 libntlm0 (notoncd) (notwanted)
- 23.8 0.0 libqt4-help (notwanted)
- 23.8 0.0 libvolume-id0 (notoncd) (notwanted)
- 23.8 0.0 libwildmidi1 (notwanted)
- 23.8 0.0 libzbar0 (notwanted)
- 23.8 0.0 nagios3-common (notwanted)
- 23.4 0.0 ddccontrol-db (notwanted)
- 23.4 0.0 libarchive1 (notoncd) (notwanted)
- 23.4 0.0 libddccontrol0 (notwanted)
- 23.4 0.0 libsmokeqt1 (notoncd) (notwanted)
- 23.0 0.0 libecal1.2-7 (notoncd) (notwanted)
- 23.0 0.0 libicu44 (notoncd) (notwanted)
- 23.0 0.0 libkrb53 (notoncd) (notwanted)
- 23.0 0.0 libmysqlclient15off (notoncd) (notwanted)
- 23.0 0.0 libxklavier16 (notwanted)
- 23.0 0.0 lynx (notoncd) (notwanted)
- 23.0 0.0 python-gnupginterface (notwanted)
- 23.0 0.0 xorg-docs-core (notwanted)
- 22.6 0.0 hwdata (notwanted)
- 22.6 0.0 libcolamd2.7.1 (notwanted)
- 22.6 0.0 linux-image-2.6-amd64 (notoncd) (notwanted)
- 22.1 0.0 dmz-cursor-theme (notwanted)
- 22.1 0.0 krb5-config (notwanted)
- 22.1 0.0 libcommons-logging-java (notwanted)
- 22.1 0.0 libgdict-1.0-6 (notwanted)
- 22.1 0.0 libkunitconversion4 (notwanted)
- 22.1 0.0 libltdl3 (notoncd) (notwanted)
- 22.1 0.0 libsensors3 (notoncd) (notwanted)
- 22.1 0.0 ttf-sil-gentium (notoncd) (notwanted)
- 21.7 0.0 libdiscid0 (notwanted)
- 21.7 0.0 libevent1 (notoncd) (notwanted)
- 21.7 0.0 libimobiledevice1 (notoncd) (notwanted)
- 21.7 0.0 manpages-es (notwanted)
- 21.3 0.0 libcommons-beanutils-java (notwanted)
- 21.3 0.0 libcommons-collections3-java (notwanted)
- 21.3 0.0 libcommons-digester-java (notwanted)
- 21.3 0.0 libmusicbrainz3-6 (notwanted)
- 21.3 0.0 libportmidi0 (notwanted)
- 21.3 0.0 libqt4-scripttools (notwanted)
- 21.3 0.0 libresid-builder0c2a (notwanted)
- 21.3 0.0 libsidplay2 (notwanted)
- 21.3 0.0 libstk0c2a (notwanted)
- 21.3 0.0 libvpx0 (notoncd) (notwanted)
- 21.3 0.0 manpages-dev (notwanted)
- 20.9 0.0 libaudcore1 (notwanted)
- 20.9 0.0 libdb-je-java (notwanted)
- 20.9 0.0 libkcddb4 (notwanted)
- 20.9 0.0 libservlet2.5-java (notwanted)
- 20.9 0.0 ttf-sil-doulos (notwanted)
- 20.9 0.0 virtuoso-minimal
- 20.4 0.0 libaudclient2 (notwanted)
- 20.4 0.0 libcfitsio3 (notwanted)
- 20.4 0.0 libcln6 (notwanted)
- 20.4 0.0 libpoppler3 (notoncd) (notwanted)
- 20.4 0.0 libqalculate5 (notwanted)
- 20.0 0.0 build-essential
- 20.0 0.0 gputils-common (notwanted)
- 20.0 0.0 gputils-doc (notwanted)
- 20.0 0.0 libbinio1ldbl (notwanted)
- 20.0 0.0 libexiv2-9 (notoncd) (notwanted)
- 20.0 0.0 libhd14 (notoncd) (notwanted)
- 20.0 0.0 libibverbs1 (notwanted)
- 20.0 0.0 libicu4j-java (notwanted)
- 20.0 0.0 libjtidy-java (notwanted)
- 20.0 0.0 liblo7 (notwanted)
- 20.0 0.0 liblog4j1.2-java (notwanted)
- 20.0 0.0 libnuma1 (notwanted)
- 20.0 0.0 myspell-de-at
- 20.0 0.0 parley-data (notwanted)
- 19.6 0.0 libcommons-compress-java (notwanted)
- 19.6 0.0 libcue1 (notwanted)
- 19.6 0.0 libmozjs1d (notoncd) (notwanted)
- 19.6 0.0 libmythes-1.2-0 (notwanted)
- 19.6 0.0 libqimageblitz4 (notwanted)
- 19.6 0.0 libsrtp0 (notwanted)
- 19.6 0.0 myspell-de-ch
- 19.6 0.0 mysql-server (notoncd) (notwanted)
- 19.6 0.0 openoffice.org-help-pt-br
- 19.6 0.0 xul-ext-flashblock (notoncd) (notwanted)
- 19.1 0.0 gcc-4.2-base (notoncd) (notwanted)
- 19.1 0.0 gnome-utils-common (notoncd) (notwanted)
- 19.1 0.0 gnuchess-book (notwanted)
- 19.1 0.0 iswiss
- 19.1 0.0 libakonadi-kabc4 (notwanted)
- 19.1 0.0 libakonadi-kde4 (notwanted)
- 19.1 0.0 libakonadi-kmime4 (notwanted)
- 19.1 0.0 libbcel-java (notwanted)
- 19.1 0.0 libdatrie0 (notoncd) (notwanted)
- 19.1 0.0 libglademm-2.4-1c2a (notoncd) (notwanted)
- 19.1 0.0 libgpgme++2 (notwanted)
- 19.1 0.0 libjcommon-java (notwanted)
- 19.1 0.0 libjdom1-java (notwanted)
- 19.1 0.0 libjpeg8 (notwanted)
- 19.1 0.0 libkimap4 (notwanted)
- 19.1 0.0 libkldap4 (notwanted)
- 19.1 0.0 libkmime4 (notwanted)
- 19.1 0.0 libkpimidentities4 (notwanted)
- 19.1 0.0 libkpimtextedit4 (notwanted)
- 19.1 0.0 libkpimutils4 (notwanted)
- 19.1 0.0 libktnef4 (notwanted)
- 19.1 0.0 libmaloc1 (notwanted)
- 19.1 0.0 libmicroblog4 (notwanted)
- 19.1 0.0 libqgpgme1 (notwanted)
- 19.1 0.0 libsc-data (notwanted)
- 19.1 0.0 libstlport4.6ldbl (notoncd) (notwanted)
- 19.1 0.0 libsyndication4 (notwanted)
- 19.1 0.0 libtorque2 (notwanted)
- 19.1 0.0 libxaw3dxft6 (notwanted)
- 19.1 0.0 libxcb-xlib0 (notoncd) (notwanted)
- 19.1 0.0 lmms-common (notwanted)
- 19.1 0.0 openoffice.org-help-sv
- 18.7 0.0 apache2-doc (notoncd) (notwanted)
- 18.7 0.0 espeak-data (notwanted)
- 18.7 0.0 gcj-4.4-base (notoncd) (notwanted)
- 18.7 0.0 gdis-data (notwanted)
- 18.7 0.0 libbind9-50 (notoncd) (notwanted)
- 18.7 0.0 libespeak1 (notwanted)
- 18.7 0.0 libgle3 (notwanted)
- 18.7 0.0 libgnomecups1.0-1 (notoncd) (notwanted)
- 18.7 0.0 libgnomeprint2.2-data (notoncd) (notwanted)
- 18.7 0.0 libgnomeprintui2.2-0 (notoncd) (notwanted)
- 18.7 0.0 libgnomeprintui2.2-common (notoncd) (notwanted)
- 18.7 0.0 libisccc50 (notoncd) (notwanted)
- 18.7 0.0 libisccfg50 (notoncd) (notwanted)
- 18.7 0.0 libjfreechart-java (notwanted)
- 18.7 0.0 liblash2 (notoncd) (notwanted)
- 18.7 0.0 liblwres50 (notoncd) (notwanted)
- 18.7 0.0 libokularcore1 (notwanted)
- 18.7 0.0 libpoppler-qt4-3 (notwanted)
- 18.7 0.0 libsmf0 (notwanted)
- 18.7 0.0 libtalloc1 (notoncd) (notwanted)
- 18.7 0.0 libusplash0 (notoncd) (notwanted)
- 18.7 0.0 ttf-bengali-fonts (notwanted)
- 18.7 0.0 ttf-denemo (notwanted)
- 18.7 0.0 ttf-devanagari-fonts (notwanted)
- 18.7 0.0 ttf-gujarati-fonts (notwanted)
- 18.7 0.0 ttf-kannada-fonts (notwanted)
- 18.7 0.0 ttf-oriya-fonts (notwanted)
- 18.7 0.0 ttf-punjabi-fonts (notwanted)
- 18.7 0.0 ttf-tamil-fonts (notwanted)
- 18.7 0.0 ttf-telugu-fonts (notwanted)
- 18.3 0.0 denemo-data (notwanted)
- 18.3 0.0 denemo-doc (notwanted)
- 18.3 0.0 education-thin-client-server
- 18.3 0.0 libcdt4 (notoncd) (notwanted)
- 18.3 0.0 libdotconf1.0 (notwanted)
- 18.3 0.0 libghemical5 (notwanted)
- 18.3 0.0 libgraph4 (notoncd) (notwanted)
- 18.3 0.0 libkdewebkit5 (notwanted)
- 18.3 0.0 libkonq5-templates (notwanted)
- 18.3 0.0 libntrack-qt4-1 (notwanted)
- 18.3 0.0 libntrack0 (notwanted)
- 18.3 0.0 liboglappth2 (notwanted)
- 18.3 0.0 libpathplan4 (notoncd) (notwanted)
- 18.3 0.0 libqt4-gui (notoncd) (notwanted)
- 18.3 0.0 libscim8c2a (notwanted)
- 18.3 0.0 libsox1b (notoncd) (notwanted)
- 18.3 0.0 libspeechd2 (notwanted)
- 18.3 0.0 libxdot4 (notoncd) (notwanted)
- 18.3 0.0 mathpiper (notwanted)
- 18.3 0.0 maxima-doc (notoncd) (notwanted)
- 18.3 0.0 xul-ext-adblock-plus (notwanted)
- 17.9 0.0 debian-reference-es (notoncd) (notwanted)
- 17.9 0.0 gnome-audio (notoncd) (notwanted)
- 17.9 0.0 kde-icons-mono (notwanted)
- 17.9 0.0 libakonadi-kcal4 (notwanted)
- 17.9 0.0 libcommons-math-java (notwanted)
- 17.9 0.0 libfreehep-export-java (notwanted)
- 17.9 0.0 libfreehep-graphics2d-java (notwanted)
- 17.9 0.0 libfreehep-graphicsio-emf-java (notwanted)
- 17.9 0.0 libfreehep-graphicsio-java (notwanted)
- 17.9 0.0 libfreehep-graphicsio-pdf-java (notwanted)
- 17.9 0.0 libfreehep-graphicsio-svg-java (notwanted)
- 17.9 0.0 libfreehep-graphicsio-tests-java (notwanted)
- 17.9 0.0 libfreehep-io-java (notwanted)
- 17.9 0.0 libfreehep-swing-java (notwanted)
- 17.9 0.0 libfreehep-util-java (notwanted)
- 17.9 0.0 libfreehep-xml-java (notwanted)
- 17.9 0.0 libjas-plotter-java (notwanted)
- 17.9 0.0 libkdecorations4 (notwanted)
- 17.9 0.0 libkleo4 (notwanted)
- 17.9 0.0 libkonqsidebarplugin4a (notwanted)
- 17.9 0.0 libkontactinterface4 (notwanted)
- 17.9 0.0 libkpgp4 (notwanted)
- 17.9 0.0 libksgrd4 (notwanted)
- 17.9 0.0 libksieve4 (notwanted)
- 17.9 0.0 libksignalplotter4 (notwanted)
- 17.9 0.0 liblensfun-data (notwanted)
- 17.9 0.0 liblensfun0 (notwanted)
- 17.9 0.0 libloudmouth1-0 (notwanted)
- 17.9 0.0 libmaa2 (notoncd) (notwanted)
- 17.9 0.0 libmessagecore4 (notwanted)
- 17.9 0.0 libmessagelist4 (notwanted)
- 17.9 0.0 libmimelib4 (notwanted)
- 17.9 0.0 libplasma-geolocation-interface4 (notwanted)
- 17.9 0.0 libplasmagenericshell4 (notwanted)
- 17.9 0.0 libprocessui4a (notwanted)
- 17.9 0.0 libxvidcore4 (notwanted)
- 17.9 0.0 mplayer-skin-blue (notoncd) (notwanted)
- 17.9 0.0 oxygencursors (notwanted)
- 17.9 0.0 partlibrary (notoncd)
- 17.9 0.0 python-gluon (notoncd) (notwanted)
- 17.4 0.0 controlies (notoncd) (notwanted)
- 17.4 0.0 csound-manpages (notwanted)
- 17.4 0.0 edict (notwanted)
- 17.4 0.0 hugin-data (notwanted)
- 17.4 0.0 libaudid3tag2 (notoncd) (notwanted)
- 17.4 0.0 libkopete4 (notwanted)
- 17.4 0.0 libkscreensaver5 (notwanted)
- 17.4 0.0 libmsn0.3 (notwanted)
- 17.4 0.0 libnm-glib-vpn1 (notwanted)
- 17.4 0.0 libortp8 (notwanted)
- 17.4 0.0 libotr2 (notwanted)
- 17.4 0.0 libpkcs11-helper1 (notwanted)
- 17.4 0.0 libservlet2.4-java (notoncd) (notwanted)
- 17.4 0.0 libticonv3 (notwanted)
- 17.4 0.0 libtifiles2-5 (notwanted)
- 17.4 0.0 openshot-doc (notwanted)
- 17.0 0.0 kanjidic (notwanted)
- 17.0 0.0 kdeedu
- 17.0 0.0 kdeplasma-addons (notwanted)
- 17.0 0.0 kicad-common (notoncd) (notwanted)
- 17.0 0.0 libcv2.1 (notoncd) (notwanted)
- 17.0 0.0 libcvaux2.1 (notoncd) (notwanted)
- 17.0 0.0 libdb4.7-java (notoncd) (notwanted)
- 17.0 0.0 libglpk0 (notoncd) (notwanted)
- 17.0 0.0 libhighgui2.1 (notoncd) (notwanted)
- 17.0 0.0 libnetcdf6 (notoncd) (notwanted)
- 17.0 0.0 libqtruby4shared2 (notwanted)
- 17.0 0.0 libsmokekdecore4-3 (notwanted)
- 17.0 0.0 libsmokekdeui4-3 (notwanted)
- 17.0 0.0 libsmokekfile3 (notwanted)
- 17.0 0.0 libsmokekhtml3 (notwanted)
- 17.0 0.0 libsmokekio3 (notwanted)
- 17.0 0.0 libsmokeknewstuff2-3 (notwanted)
- 17.0 0.0 libsmokeknewstuff3-3 (notwanted)
- 17.0 0.0 libsmokekparts3 (notwanted)
- 17.0 0.0 libsmokektexteditor3 (notwanted)
- 17.0 0.0 libsmokekutils3 (notwanted)
- 17.0 0.0 libsmokenepomuk3 (notwanted)
- 17.0 0.0 libsmokeplasma3 (notwanted)
- 17.0 0.0 libsmokeqtcore4-3 (notwanted)
- 17.0 0.0 libsmokeqtdbus4-3 (notwanted)
- 17.0 0.0 libsmokeqtgui4-3 (notwanted)
- 17.0 0.0 libsmokeqtnetwork4-3 (notwanted)
- 17.0 0.0 libsmokeqtopengl4-3 (notwanted)
- 17.0 0.0 libsmokeqtsql4-3 (notwanted)
- 17.0 0.0 libsmokeqtsvg4-3 (notwanted)
- 17.0 0.0 libsmokeqtwebkit4-3 (notwanted)
- 17.0 0.0 libsmokeqtxml4-3 (notwanted)
- 17.0 0.0 libsmokesolid3 (notwanted)
- 17.0 0.0 libticalcs2-7 (notwanted)
- 17.0 0.0 plasma-desktopthemes-artwork (notwanted)
- 17.0 0.0 plasma-scriptengine-ruby (notwanted)
- 17.0 0.0 plasma-scriptengines (notwanted)
- 16.6 0.0 default-jdk (notoncd) (notwanted)
- 16.6 0.0 kde-plasma-desktop (notwanted)
- 16.6 0.0 kipi-plugins-common (notwanted)
- 16.6 0.0 libdb4.2 (notoncd) (notwanted)
- 16.6 0.0 libgtk1.2 (notoncd) (notwanted)
- 16.6 0.0 libgtk1.2-common (notoncd) (notwanted)
- 16.6 0.0 libhdf5-serial-1.8.4 (notoncd) (notwanted)
- 16.6 0.0 lilypond-doc (notoncd) (notwanted)
- 16.6 0.0 ltsp-server-standalone
- 16.6 0.0 myspell-da
- 16.6 0.0 myspell-sv-se (notwanted)
- 16.2 0.0 digikam-data (notwanted)
- 16.2 0.0 kde-standard
- 16.2 0.0 libfreerdp0 (notoncd) (notwanted)
- 16.2 0.0 libglib1.2ldbl (notoncd) (notwanted)
- 16.2 0.0 libmcrypt4 (notwanted)
- 16.2 0.0 libqhull5 (notoncd) (notwanted)
- 15.7 0.0 childsplay-alphabet-sounds-bg (notwanted)
- 15.7 0.0 kde-l10n-lv
- 15.7 0.0 kde-l10n-nl
- 15.7 0.0 kde-l10n-sv
- 15.7 0.0 kdeedu-data (notoncd) (notwanted)
- 15.7 0.0 libakonadiprivate1 (notoncd) (notwanted)
- 15.7 0.0 libgtkhtml2-0 (notoncd) (notwanted)
- 15.7 0.0 libjama-java (notoncd) (notwanted)
- 15.7 0.0 libportaudio0 (notoncd) (notwanted)
- 15.7 0.0 libradius1 (notoncd) (notwanted)
- 15.7 0.0 libtag-extras1 (notwanted)
- 15.7 0.0 libtextcat-data-utf8 (notoncd) (notwanted)
- 15.7 0.0 linux-image-2.6-686 (notoncd) (notwanted)
- 15.7 0.0 svgalibg1 (notoncd) (notwanted)
- 15.7 0.0 wordtrans-data (notoncd) (notwanted)
- 15.3 0.0 gpsim-logic (notoncd) (notwanted)
- 15.3 0.0 kde-l10n-ca
- 15.3 0.0 kde-l10n-de
- 15.3 0.0 kde-l10n-el
- 15.3 0.0 kde-l10n-fr
- 15.3 0.0 kde-l10n-ptbr
- 15.3 0.0 kicad-doc-es (notoncd) (notwanted)
- 15.3 0.0 libcucul0 (notoncd) (notwanted)
- 15.3 0.0 libdvdread3 (notoncd) (notwanted)
- 15.3 0.0 libfaad0 (notoncd) (notwanted)
- 15.3 0.0 libgsf-gnome-1-114 (notoncd) (notwanted)
- 15.3 0.0 liblastfm0 (notwanted)
- 15.3 0.0 libmpcdec3 (notoncd) (notwanted)
- 15.3 0.0 libmx4j-java (notoncd) (notwanted)
- 15.3 0.0 libsmbios2 (notoncd) (notwanted)
- 15.3 0.0 libtagc0 (notoncd) (notwanted)
- 15.3 0.0 libxxf86misc1 (notoncd) (notwanted)
- 15.3 0.0 python-cupshelpers (notoncd) (notwanted)
- 14.9 0.0 evolution-data-server-common (notwanted)
- 14.9 0.0 kde-i18n-de (notoncd) (notwanted)
- 14.9 0.0 kde-l10n-it
- 14.9 0.0 kicad-doc-en (notoncd) (notwanted)
- 14.9 0.0 libasn1-8-heimdal (notwanted)
- 14.9 0.0 libdbus-qt-1-1c2 (notoncd) (notwanted)
- 14.9 0.0 libgdl-1-common (notoncd) (notwanted)
- 14.9 0.0 libgnome-desktop-2 (notoncd) (notwanted)
- 14.9 0.0 libhdf5-serial-1.6.6-0 (notoncd) (notwanted)
- 14.9 0.0 libkadm5srv-mit7 (notoncd) (notwanted)
- 14.9 0.0 libkdb5-4 (notoncd) (notwanted)
- 14.9 0.0 libktnef1 (notoncd) (notwanted)
- 14.9 0.0 libmpeg3-1 (notoncd) (notwanted)
- 14.9 0.0 libnetcdf4 (notoncd) (notwanted)
- 14.9 0.0 libopenide-util-java (notoncd) (notwanted)
- 14.9 0.0 libraw1394-8 (notoncd) (notwanted)
- 14.9 0.0 libroken18-heimdal (notwanted)
- 14.9 0.0 libscrollkeeper0 (notoncd) (notwanted)
- 14.9 0.0 libsuitesparse-3.1.0 (notoncd) (notwanted)
- 14.9 0.0 libvpx1 (notwanted)
- 14.9 0.0 libwind0-heimdal (notwanted)
- 14.9 0.0 libxtrap6 (notoncd) (notwanted)
- 14.5 0.0 d-i-bootimages (notoncd) (notwanted)
- 14.5 0.0 gcj-4.3-base (notoncd) (notwanted)
- 14.5 0.0 java-gcj-compat (notoncd) (notwanted)
- 14.5 0.0 kde-i18n-fr (notoncd) (notwanted)
- 14.5 0.0 konversation-data (notwanted)
- 14.5 0.0 libcdio7 (notoncd) (notwanted)
- 14.5 0.0 libcupsys2 (notoncd) (notwanted)
- 14.5 0.0 libfreebob0 (notoncd) (notwanted)
- 14.5 0.0 libgcj9-jar (notoncd) (notwanted)
- 14.5 0.0 libggadget-1.0-0b (notoncd) (notwanted)
- 14.5 0.0 libhx509-5-heimdal (notwanted)
- 14.5 0.0 libifp4 (notwanted)
- 14.5 0.0 libkdcraw8 (notoncd) (notwanted)
- 14.5 0.0 libkdeedu3 (notoncd) (notwanted)
- 14.5 0.0 libkephal4 (notoncd) (notwanted)
- 14.5 0.0 libkexiv2-8 (notoncd) (notwanted)
- 14.5 0.0 libkipi7 (notoncd) (notwanted)
- 14.5 0.0 libkmime2 (notoncd) (notwanted)
- 14.5 0.0 libkrb5-26-heimdal (notwanted)
- 14.5 0.0 libkwineffects1a (notoncd) (notwanted)
- 14.5 0.0 libkworkspace4 (notoncd) (notwanted)
- 14.5 0.0 libmalaga7 (notoncd) (notwanted)
- 14.5 0.0 libmediastreamer0 (notoncd) (notwanted)
- 14.5 0.0 libnjb5 (notoncd) (notwanted)
- 14.5 0.0 libplasmaclock4a (notoncd) (notwanted)
- 14.5 0.0 libpoppler-qt2 (notoncd) (notwanted)
- 14.5 0.0 libprocesscore4a (notoncd) (notwanted)
- 14.5 0.0 libsolidcontrol4 (notoncd) (notwanted)
- 14.5 0.0 libsolidcontrolifaces4 (notoncd) (notwanted)
- 14.5 0.0 libtaskmanager4a (notoncd) (notwanted)
- 14.5 0.0 libupower-glib1 (notwanted)
- 14.5 0.0 libweather-ion4a (notoncd) (notwanted)
- 14.5 0.0 nagios-plugins (notwanted)
- 14.5 0.0 openoffice.org-style-galaxy (notoncd) (notwanted)
- 14.5 0.0 ttf-kochi-gothic (notoncd) (notwanted)
- 14.0 0.0 gnome-user-guide (notwanted)
- 14.0 0.0 kde-i18n-ca (notoncd) (notwanted)
- 14.0 0.0 kde-i18n-it (notoncd) (notwanted)
- 14.0 0.0 kde-i18n-lv (notoncd) (notwanted)
- 14.0 0.0 kdebase-workspace-data (notoncd) (notwanted)
- 14.0 0.0 kicad-doc-de (notoncd) (notwanted)
- 14.0 0.0 kicad-doc-fr (notoncd) (notwanted)
- 14.0 0.0 libavahi-core5 (notoncd) (notwanted)
- 14.0 0.0 libboost-python1.34.1 (notoncd) (notwanted)
- 14.0 0.0 libcamel1.2-11 (notoncd) (notwanted)
- 14.0 0.0 libedataserver1.2-9 (notoncd) (notwanted)
- 14.0 0.0 libeet1 (notoncd) (notwanted)
- 14.0 0.0 libfaac0 (notoncd) (notwanted)
- 14.0 0.0 libggadget-qt-1.0-0b (notoncd) (notwanted)
- 14.0 0.0 libgksuui1.0-1 (notoncd) (notwanted)
- 14.0 0.0 libgtkextra-x11-2.0-1 (notoncd) (notwanted)
- 14.0 0.0 libgtksourceview-common (notoncd) (notwanted)
- 14.0 0.0 libgtksourceview1.0-0 (notoncd) (notwanted)
- 14.0 0.0 libisc50 (notoncd) (notwanted)
- 14.0 0.0 libkdegames1 (notoncd) (notwanted)
- 14.0 0.0 libkleopatra1 (notoncd) (notwanted)
- 14.0 0.0 libkpimidentities1 (notoncd) (notwanted)
- 14.0 0.0 libkscan1 (notoncd) (notwanted)
- 14.0 0.0 liblo0ldbl (notoncd) (notwanted)
- 14.0 0.0 libmtp7 (notoncd) (notwanted)
- 14.0 0.0 libnautilus-burn4 (notoncd) (notwanted)
- 14.0 0.0 libplasma-ruby (notoncd) (notwanted)
- 14.0 0.0 libqt4-core (notoncd) (notwanted)
- 14.0 0.0 libsmokephonon3 (notoncd) (notwanted)
- 14.0 0.0 libsmokeqtscript4-3 (notoncd) (notwanted)
- 14.0 0.0 libsmokeqttest4-3 (notoncd) (notwanted)
- 14.0 0.0 libsmokeqtuitools4-3 (notoncd) (notwanted)
- 14.0 0.0 rosegarden-data (notoncd) (notwanted)
- 13.6 0.0 kde-i18n-el (notoncd) (notwanted)
- 13.6 0.0 kde-i18n-ja (notoncd) (notwanted)
- 13.6 0.0 kde-i18n-nl (notoncd) (notwanted)
- 13.6 0.0 kde-i18n-se (notoncd) (notwanted)
- 13.6 0.0 kdebase-apps (notoncd) (notwanted)
- 13.6 0.0 kdebase-workspace (notoncd) (notwanted)
- 13.6 0.0 libdns58 (notoncd) (notwanted)
- 13.6 0.0 libeina-svn-06 (notoncd) (notwanted)
- 13.6 0.0 libexiv2-4 (notoncd) (notwanted)
- 13.6 0.0 libf2c2 (notoncd) (notwanted)
- 13.6 0.0 libgda3-3 (notoncd) (notwanted)
- 13.6 0.0 libgda3-common (notoncd) (notwanted)
- 13.6 0.0 libgdl-1-0 (notoncd) (notwanted)
- 13.6 0.0 libgoffice-0-common (notoncd) (notwanted)
- 13.6 0.0 libkarma0 (notoncd) (notwanted)
- 13.6 0.0 libkexiv2-3 (notoncd) (notwanted)
- 13.6 0.0 libksieve0 (notoncd) (notwanted)
- 13.6 0.0 libmetacity0 (notoncd) (notwanted)
- 13.6 0.0 libmimelib1c2a (notoncd) (notwanted)
- 13.6 0.0 liboglappth1 (notoncd) (notwanted)
- 13.6 0.0 libpano13-1 (notoncd) (notwanted)
- 13.6 0.0 libpoppler-glib3 (notoncd) (notwanted)
- 13.6 0.0 libqedje0a (notoncd) (notwanted)
- 13.6 0.0 libqzion0a (notoncd) (notwanted)
- 13.6 0.0 libsmokesoprano3 (notoncd) (notwanted)
- 13.6 0.0 libticables3 (notoncd) (notwanted)
- 13.6 0.0 libticalcs4 (notoncd) (notwanted)
- 13.6 0.0 libtifiles0 (notoncd) (notwanted)
- 13.6 0.0 libtotem-plparser10 (notoncd) (notwanted)
- 13.6 0.0 ttf-sazanami-mincho (notoncd) (notwanted)
- 13.2 0.0 gimp-help-en (notoncd) (notwanted)
- 13.2 0.0 gs-gpl (notoncd) (notwanted)
- 13.2 0.0 gwenview-i18n (notoncd) (notwanted)
- 13.2 0.0 kde-i18n-da (notoncd) (notwanted)
- 13.2 0.0 kde-i18n-ptbr (notoncd) (notwanted)
- 13.2 0.0 konq-plugins-l10n (notoncd) (notwanted)
- 13.2 0.0 lib32z1 (notoncd) (notwanted)
- 13.2 0.0 libgavl0 (notoncd) (notwanted)
- 13.2 0.0 libgpod3-nogtk (notoncd) (notwanted)
- 13.2 0.0 libkipi0 (notoncd) (notwanted)
- 13.2 0.0 libsox0 (notoncd) (notwanted)
- 13.2 0.0 myspell-nb
- 13.2 0.0 myspell-nn
- 12.8 0.0 ladcca2 (notoncd) (notwanted)
- 12.8 0.0 lib32gcc1 (notoncd) (notwanted)
- 12.8 0.0 lib32stdc++6 (notoncd) (notwanted)
- 12.8 0.0 libaudclient1 (notoncd) (notwanted)
- 12.8 0.0 libaudid3tag1 (notoncd) (notwanted)
- 12.8 0.0 libbluetooth2 (notoncd) (notwanted)
- 12.8 0.0 libghemical3gf (notoncd) (notwanted)
- 12.8 0.0 libgnomekbd-common (notwanted)
- 12.8 0.0 libkiten4 (notoncd) (notwanted)
- 12.8 0.0 manpages-de (notoncd) (notwanted)
- 12.8 0.0 nagios-images (notwanted)
- 12.8 0.0 sun-java6-plugin (notoncd) (notwanted)
- 12.3 0.0 doc-linux-de (notoncd) (notwanted)
- 12.3 0.0 gpsim-led (notoncd) (notwanted)
- 12.3 0.0 lib32asound2 (notoncd) (notwanted)
- 12.3 0.0 lib32ncurses5 (notoncd) (notwanted)
- 12.3 0.0 libc-client2007e (notwanted)
- 12.3 0.0 libgweather-common (notwanted)
- 12.3 0.0 libmagick++10 (notoncd) (notwanted)
- 12.3 0.0 libxalan2-java (notwanted)
- 12.3 0.0 util-linux-locales (notoncd) (notwanted)
- 11.9 0.0 app-install-data (notwanted)
- 11.9 0.0 kde-i18n-sv (notoncd) (notwanted)
- 11.9 0.0 libnspr4 (notwanted)
- 11.9 0.0 nagios3-doc (notoncd) (notwanted)
- 11.9 0.0 smart-installer-linex (notoncd) (notwanted)
- 11.5 0.0 debian-edu-config-gosa-netgroups
- 11.5 0.0 gnome-desktop-data (notoncd) (notwanted)
- 11.5 0.0 gosa-plugin-systems (notwanted)
- 11.5 0.0 libegroupwise1.2-13 (notoncd) (notwanted)
- 11.5 0.0 libgdata-google1.2-1 (notoncd) (notwanted)
- 11.5 0.0 libgdata1.2-1 (notoncd) (notwanted)
- 11.5 0.0 libgpod4-nogtk (notwanted)
- 11.5 0.0 libgweather1 (notoncd) (notwanted)
- 11.5 0.0 librtmp0 (notwanted)
- 11.1 0.0 gimp-help-de
- 11.1 0.0 gnome-session-common (notwanted)
- 11.1 0.0 gosa-help-de
- 11.1 0.0 gosa-help-en
- 11.1 0.0 gosa-help-fr
- 11.1 0.0 gosa-help-nl
- 11.1 0.0 gosa-plugin-dhcp
- 11.1 0.0 gosa-plugin-dhcp-schema
- 11.1 0.0 gosa-plugin-dns
- 11.1 0.0 gosa-plugin-dns-schema
- 11.1 0.0 gosa-plugin-samba
- 11.1 0.0 gosa-plugin-sudo
- 11.1 0.0 gosa-plugin-sudo-schema
- 11.1 0.0 gosa-schema
- 11.1 0.0 libcap-ng0 (notwanted)
- 11.1 0.0 libggi2 (notoncd) (notwanted)
- 11.1 0.0 openoffice.org-help-ja
- 11.1 0.0 openoffice.org-style-oxygen (notoncd) (notwanted)
- 10.6 0.0 lib32bz2-1.0 (notoncd) (notwanted)
- 10.6 0.0 lib32v4l-0 (notoncd) (notwanted)
- 10.6 0.0 libanthy0 (notoncd) (notwanted)
- 10.6 0.0 libebackend1.2-0 (notoncd) (notwanted)
- 10.6 0.0 libgnomekbd4 (notoncd) (notwanted)
- 10.6 0.0 libgucharmap7 (notoncd) (notwanted)
- 10.6 0.0 openoffice.org-help-el
- 10.2 0.0 gcompris-sound-de
- 10.2 0.0 libboost-date-time1.34.1 (notoncd) (notwanted)
- 10.2 0.0 libboost-thread1.34.1 (notoncd) (notwanted)
- 10.2 0.0 libcdio-paranoia0 (notoncd) (notwanted)
- 10.2 0.0 libedata-book1.2-2 (notoncd) (notwanted)
- 10.2 0.0 libedataserver1.2-13 (notoncd) (notwanted)
- 10.2 0.0 liboobs-1-4 (notoncd) (notwanted)
- 10.2 0.0 libva-x11-1 (notwanted)
- 10.2 0.0 libvdpau1 (notwanted)
- 9.8 0.0 capplets-data (notoncd) (notwanted)
- 9.8 0.0 fonts-opensymbol (notwanted)
- 9.8 0.0 kde-i18n-nb (notoncd) (notwanted)
- 9.8 0.0 libedataserverui1.2-8 (notoncd) (notwanted)
- 9.8 0.0 libneon27 (notoncd) (notwanted)
- 9.8 0.0 libreoffice-style-galaxy (notwanted)
- 9.8 0.0 libslab0a (notoncd) (notwanted)
- 9.8 0.0 libvlc5 (notwanted)
- 9.8 0.0 libxcb-randr0 (notwanted)
- 9.4 0.0 aspell-de (notoncd) (notwanted)
- 9.4 0.0 aspell-de-alt (notoncd) (notwanted)
- 9.4 0.0 interwrite-extras (notoncd) (notwanted)
- 9.4 0.0 kde-i18n-nn (notoncd) (notwanted)
- 9.4 0.0 libreoffice (notwanted)
- 9.4 0.0 texlive-latex-base-doc (notwanted)
- 8.9 0.0 gcompris-sound-nb
- 8.9 0.0 icc-profiles (notoncd) (notwanted)
- 8.9 0.0 javascript-common (notwanted)
- 8.9 0.0 libedata-cal1.2-7 (notoncd) (notwanted)
- 8.9 0.0 libgdata-common (notwanted)
- 8.9 0.0 libgpod4 (notwanted)
- 8.9 0.0 libmetacity-private0 (notoncd) (notwanted)
- 8.9 0.0 libmozjs10d (notwanted)
- 8.9 0.0 totem-common (notwanted)
- 8.9 0.0 wwwconfig-common (notwanted)
- 8.5 0.0 gstreamer0.10-lame (notoncd) (notwanted)
- 8.5 0.0 latex-xcolor (notwanted)
- 8.5 0.0 libepc-common (notwanted)
- 8.5 0.0 pgf (notwanted)
- 8.1 0.0 deb-multimedia-keyring (notoncd) (notwanted)
- 8.1 0.0 debian-keyring (notoncd) (notwanted)
- 8.1 0.0 gedit-common (notwanted)
- 8.1 0.0 gimp-help-no (notoncd)
- 8.1 0.0 latex-beamer (notwanted)
- 8.1 0.0 libcairo-gobject2 (notwanted)
- 8.1 0.0 libcv4 (notoncd) (notwanted)
- 8.1 0.0 libcvaux4 (notoncd) (notwanted)
- 8.1 0.0 libdirac-decoder0 (notwanted)
- 8.1 0.0 libhighgui4 (notoncd) (notwanted)
- 8.1 0.0 texlive-luatex (notwanted)
- 7.7 0.0 gs (notoncd) (notwanted)
- 7.7 0.0 libavcodec53 (notwanted)
- 7.7 0.0 libbluray1 (notwanted)
- 7.7 0.0 libempathy-common (notoncd) (notwanted)
- 7.7 0.0 libempathy-gtk-common (notoncd) (notwanted)
- 7.7 0.0 libempathy-gtk28 (notoncd) (notwanted)
- 7.7 0.0 libempathy30 (notoncd) (notwanted)
- 7.7 0.0 libjson-glib-1.0-0 (notwanted)
- 7.7 0.0 liblcms2-2 (notwanted)
- 7.7 0.0 libpulsecore5 (notoncd) (notwanted)
- 7.7 0.0 prosper (notwanted)
- 7.7 0.0 python-gdata (notoncd) (notwanted)
- 7.2 0.0 anthy-common (notoncd) (notwanted)
- 7.2 0.0 clamav-base (notwanted)
- 7.2 0.0 debian-backports-keyring (notoncd) (notwanted)
- 7.2 0.0 emacs23-common (notwanted)
- 7.2 0.0 filezilla-common (notoncd) (notwanted)
- 7.2 0.0 libavdevice53 (notwanted)
- 7.2 0.0 libcommons-codec-java (notwanted)
- 7.2 0.0 libdrm-nouveau1a (notwanted)
- 7.2 0.0 libgalago3 (notoncd) (notwanted)
- 7.2 0.0 libgdata7 (notoncd) (notwanted)
- 7.2 0.0 libgupnp-igd-1.0-3 (notoncd) (notwanted)
- 7.2 0.0 libopenobex1 (notwanted)
- 7.2 0.0 libsemanage1 (notwanted)
- 7.2 0.0 libustr-1.0-1 (notwanted)
- 7.2 0.0 libv4lconvert0 (notwanted)
- 7.2 0.0 texlive-latex-recommended-doc (notwanted)
- 6.8 0.0 ant-optional (notwanted)
- 6.8 0.0 docbook-xsl (notwanted)
- 6.8 0.0 gcc-4.1-base (notoncd) (notwanted)
- 6.8 0.0 git-man (notwanted)
- 6.8 0.0 libamrnb3 (notoncd) (notwanted)
- 6.8 0.0 libatm1 (notwanted)
- 6.8 0.0 libavfilter2 (notwanted)
- 6.8 0.0 libbrlapi0.5 (notwanted)
- 6.8 0.0 libbs2b0 (notwanted)
- 6.8 0.0 libclamav6 (notwanted)
- 6.8 0.0 libgtkhtml3.14-19 (notoncd) (notwanted)
- 6.8 0.0 libsemanage-common (notwanted)
- 6.8 0.0 libzvbi-common (notwanted)
- 6.8 0.0 libzvbi0 (notwanted)
- 6.8 0.0 linux-image-amd64 (notwanted)
- 6.8 0.0 mobile-broadband-provider-info (notwanted)
- 6.8 0.0 openoffice.org-hyphenation-de
- 6.8 0.0 openoffice.org-thesaurus-de
- 6.8 0.0 python-clientform (notoncd) (notwanted)
- 6.8 0.0 python-mechanize (notoncd) (notwanted)
- 6.8 0.0 texlive-pstricks-doc (notwanted)
- 6.4 0.0 cl-asdf (notoncd) (notwanted)
- 6.4 0.0 libamrwb3 (notoncd) (notwanted)
- 6.4 0.0 libepc-1.0-2 (notoncd) (notwanted)
- 6.4 0.0 libepc-ui-1.0-2 (notoncd) (notwanted)
- 6.4 0.0 libgee2 (notwanted)
- 6.4 0.0 libotf0 (notwanted)
- 6.4 0.0 libtommath0 (notwanted)
- 6.4 0.0 libx264-65 (notoncd) (notwanted)
- 6.4 0.0 netcat (notoncd) (notwanted)
- 6.4 0.0 nload (notoncd) (notwanted)
- 6.4 0.0 openoffice.org-help-de
- 6.4 0.0 openoffice.org-thesaurus-de-ch
- 6.4 0.0 python-louie (notoncd) (notwanted)
- 6.4 0.0 texlive-fonts-recommended-doc (notwanted)
- 6.4 0.0 ttf-vlgothic
- 6.4 0.0 wine (notoncd) (notwanted)
- 6.0 0.0 evolution-common (notwanted)
- 6.0 0.0 gnome-backgrounds (notwanted)
- 6.0 0.0 itzks-keyring (notoncd) (notwanted)
- 6.0 0.0 kdegames-card-data (notoncd) (notwanted)
- 6.0 0.0 libbase-java-openoffice.org (notoncd) (notwanted)
- 6.0 0.0 libffcall1 (notoncd) (notwanted)
- 6.0 0.0 libicu38 (notoncd) (notwanted)
- 6.0 0.0 libreoffice-help-fr (notwanted)
- 6.0 0.0 libserializer-java-openoffice.org (notoncd) (notwanted)
- 6.0 0.0 libsigsegv0 (notoncd) (notwanted)
- 6.0 0.0 libtinyxml2.5.3 (notoncd) (notwanted)
- 6.0 0.0 libvo-aacenc0 (notwanted)
- 6.0 0.0 libvo-amrwbenc0 (notwanted)
- 6.0 0.0 libx264-118 (notoncd) (notwanted)
- 6.0 0.0 libxml-commons-external-java (notwanted)
- 6.0 0.0 m17n-contrib (notwanted)
- 6.0 0.0 pkg-mozilla-archive-keyring (notoncd) (notwanted)
- 6.0 0.0 x2go-keyring (notoncd) (notwanted)
- 6.0 0.0 xsane-common (notoncd) (notwanted)
- 5.5 0.0 emacs (notwanted)
- 5.5 0.0 gnome-colors-common (notoncd) (notwanted)
- 5.5 0.0 junit4 (notwanted)
- 5.5 0.0 libamd2.2.0 (notwanted)
- 5.5 0.0 libav-tools (notwanted)
- 5.5 0.0 libdvbpsi6 (notoncd) (notwanted)
- 5.5 0.0 libfreerdp1 (notwanted)
- 5.5 0.0 libgirepository1.0-0 (notoncd) (notwanted)
- 5.5 0.0 libglewmx1.5 (notoncd) (notwanted)
- 5.5 0.0 libhamcrest-java (notwanted)
- 5.5 0.0 libmhash2 (notwanted)
- 5.5 0.0 libreoffice-help-el (notwanted)
- 5.5 0.0 libreoffice-help-es (notwanted)
- 5.5 0.0 libreoffice-help-pt-br (notwanted)
- 5.5 0.0 libreoffice-help-sv (notwanted)
- 5.5 0.0 libspandsp2 (notwanted)
- 5.5 0.0 libtokyocabinet8 (notoncd) (notwanted)
- 5.5 0.0 libumfpack5.4.0 (notwanted)
- 5.5 0.0 libxcb-xfixes0 (notwanted)
- 5.5 0.0 libxosd2 (notoncd) (notwanted)
- 5.5 0.0 mailx (notoncd) (notwanted)
- 5.5 0.0 mc-data (notwanted)
- 5.5 0.0 python-fpconst (notwanted)
- 5.5 0.0 python-soappy (notwanted)
- 5.5 0.0 texlive-metapost-doc (notoncd) (notwanted)
- 5.1 0.0 debian-faq (notoncd) (notwanted)
- 5.1 0.0 debian-multimedia-keyring (notoncd) (notwanted)
- 5.1 0.0 gnome-games-data (notwanted)
- 5.1 0.0 gnome-games-extra-data (notwanted)
- 5.1 0.0 iogerman (notoncd) (notwanted)
- 5.1 0.0 libaiksaurus-1.2-0c2a (notoncd) (notwanted)
- 5.1 0.0 libaiksaurus-1.2-data (notoncd) (notwanted)
- 5.1 0.0 libbackport-util-concurrent-java (notwanted)
- 5.1 0.0 libc-ares2 (notwanted)
- 5.1 0.0 libdirac0 (notoncd) (notwanted)
- 5.1 0.0 libevent-2.0-5 (notwanted)
- 5.1 0.0 libkpathsea4 (notoncd) (notwanted)
- 5.1 0.0 liblinear1 (notwanted)
- 5.1 0.0 libmowgli2 (notwanted)
- 5.1 0.0 libmpc2 (notwanted)
- 5.1 0.0 libobject-realize-later-perl (notoncd) (notwanted)
- 5.1 0.0 libopus0 (notwanted)
- 5.1 0.0 libossp-uuid16 (notoncd) (notwanted)
- 5.1 0.0 libuser-identity-perl (notoncd) (notwanted)
- 5.1 0.0 libvlccore4 (notoncd) (notwanted)
- 5.1 0.0 libx264-112 (notoncd) (notwanted)
- 5.1 0.0 openoffice.org-writer2latex (notoncd) (notwanted)
- 5.1 0.0 system-config-printer-kde (notoncd) (notwanted)
- 5.1 0.0 texlive (notwanted)
- 5.1 0.0 xindy-rules (notoncd) (notwanted)
- 5.1 0.0 xorg-sgml-doctools (notwanted)
- 4.7 0.0 bluetooth (notoncd) (notwanted)
- 4.7 0.0 dconf-gsettings-backend (notwanted)
- 4.7 0.0 doc-debian (notoncd) (notwanted)
- 4.7 0.0 education-desktop-gnome
- 4.7 0.0 fonts-droid (notwanted)
- 4.7 0.0 fonts-freefont-ttf (notwanted)
- 4.7 0.0 fonts-liberation (notwanted)
- 4.7 0.0 gcc-4.7-base (notwanted)
- 4.7 0.0 gconf-service (notwanted)
- 4.7 0.0 gnome-accessibility-themes (notwanted)
- 4.7 0.0 gvfs-common (notwanted)
- 4.7 0.0 gvfs-libs (notwanted)
- 4.7 0.0 imagemagick-common (notwanted)
- 4.7 0.0 itzks-systems-common (notoncd) (notwanted)
- 4.7 0.0 libaio1 (notwanted)
- 4.7 0.0 libapm1 (notoncd) (notwanted)
- 4.7 0.0 libapt-inst1.5 (notwanted)
- 4.7 0.0 libapt-pkg4.12 (notwanted)
- 4.7 0.0 libasprintf0c2 (notwanted)
- 4.7 0.0 libatspi1.0-0 (notwanted)
- 4.7 0.0 libavahi-ui0 (notoncd) (notwanted)
- 4.7 0.0 libbind9-80 (notwanted)
- 4.7 0.0 libboost-iostreams1.49.0 (notwanted)
- 4.7 0.0 libboost-program-options1.49.0 (notwanted)
- 4.7 0.0 libcanberra-gtk3-0 (notwanted)
- 4.7 0.0 libcdio13 (notwanted)
- 4.7 0.0 libcolorblind0 (notwanted)
- 4.7 0.0 libcolord1 (notwanted)
- 4.7 0.0 libcommons-httpclient-java (notoncd) (notwanted)
- 4.7 0.0 libcommons-lang-java (notoncd) (notwanted)
- 4.7 0.0 libcr0 (notwanted)
- 4.7 0.0 libdb5.1 (notwanted)
- 4.7 0.0 libdconf0 (notwanted)
- 4.7 0.0 libdevmapper-event1.02.1 (notwanted)
- 4.7 0.0 libdns55 (notoncd) (notwanted)
- 4.7 0.0 libdns88 (notwanted)
- 4.7 0.0 libebml3 (notwanted)
- 4.7 0.0 libept1.4.12 (notwanted)
- 4.7 0.0 libexiv2-12 (notwanted)
- 4.7 0.0 libfile-remove-perl (notoncd) (notwanted)
- 4.7 0.0 libgck-1-0 (notwanted)
- 4.7 0.0 libgconf-2-4 (notwanted)
- 4.7 0.0 libgcr-3-1 (notwanted)
- 4.7 0.0 libgcr-3-common (notwanted)
- 4.7 0.0 libgdk-pixbuf2.0-0 (notwanted)
- 4.7 0.0 libgdk-pixbuf2.0-common (notwanted)
- 4.7 0.0 libgdu-gtk0 (notwanted)
- 4.7 0.0 libgettextpo0 (notwanted)
- 4.7 0.0 libgirepository-1.0-1 (notwanted)
- 4.7 0.0 libglapi-mesa (notwanted)
- 4.7 0.0 libgmp10 (notwanted)
- 4.7 0.0 libgnome-keyring-common (notwanted)
- 4.7 0.0 libgphoto2-l10n (notwanted)
- 4.7 0.0 libgs9 (notwanted)
- 4.7 0.0 libgs9-common (notwanted)
- 4.7 0.0 libgstreamer-plugins-bad0.10-0 (notwanted)
- 4.7 0.0 libgtk-3-0 (notwanted)
- 4.7 0.0 libgtk-3-common (notwanted)
- 4.7 0.0 libgtkhtml-editor-common (notoncd) (notwanted)
- 4.7 0.0 libhunspell-1.3-0 (notwanted)
- 4.7 0.0 libicu48 (notwanted)
- 4.7 0.0 libimobiledevice2 (notwanted)
- 4.7 0.0 libisc52 (notoncd) (notwanted)
- 4.7 0.0 libisc84 (notwanted)
- 4.7 0.0 libisccc80 (notwanted)
- 4.7 0.0 libisccfg82 (notwanted)
- 4.7 0.0 libiso9660-8 (notwanted)
- 4.7 0.0 libjbig0 (notwanted)
- 4.7 0.0 libjlatexmath-java (notwanted)
- 4.7 0.0 libkmod2 (notwanted)
- 4.7 0.0 liblouis-data (notwanted)
- 4.7 0.0 liblvm2app2.2 (notwanted)
- 4.7 0.0 liblwres80 (notwanted)
- 4.7 0.0 liblzma5 (notwanted)
- 4.7 0.0 libmagickcore5 (notwanted)
- 4.7 0.0 libmagickcore5-extra (notoncd) (notwanted)
- 4.7 0.0 libmagickwand5 (notwanted)
- 4.7 0.0 libmail-box-perl (notoncd) (notwanted)
- 4.7 0.0 libmatroska5 (notwanted)
- 4.7 0.0 libmount1 (notwanted)
- 4.7 0.0 libmpg123-0 (notwanted)
- 4.7 0.0 libmysqlclient18 (notwanted)
- 4.7 0.0 libnotify4 (notwanted)
- 4.7 0.0 libopenal-data (notwanted)
- 4.7 0.0 libp11-kit0 (notwanted)
- 4.7 0.0 libpano13-2 (notwanted)
- 4.7 0.0 libperl5.14 (notwanted)
- 4.7 0.0 libpipeline1 (notwanted)
- 4.7 0.0 libpoppler19 (notwanted)
- 4.7 0.0 libprocps0 (notwanted)
- 4.7 0.0 libqjson0 (notwanted)
- 4.7 0.0 libqt4-declarative (notwanted)
- 4.7 0.0 libqtdbus4 (notwanted)
- 4.7 0.0 libqtwebkit4 (notwanted)
- 4.7 0.0 libquadmath0 (notwanted)
- 4.7 0.0 libraptor2-0 (notwanted)
- 4.7 0.0 librasqal3 (notwanted)
- 4.7 0.0 libsane-common (notwanted)
- 4.7 0.0 libsane-extras-common (notwanted)
- 4.7 0.0 libsoundtouch0 (notwanted)
- 4.7 0.0 libssl1.0.0 (notwanted)
- 4.7 0.0 libsystemd-login0 (notwanted)
- 4.7 0.0 libtinfo5 (notwanted)
- 4.7 0.0 libvlccore5 (notwanted)
- 4.7 0.0 libvte-2.90-9 (notwanted)
- 4.7 0.0 libvte-2.90-common (notwanted)
- 4.7 0.0 libwildmidi-config (notwanted)
- 4.7 0.0 libx264-123 (notwanted)
- 4.7 0.0 libxcb-composite0 (notwanted)
- 4.7 0.0 libxcb-glx0 (notwanted)
- 4.7 0.0 libxcb-util0 (notwanted)
- 4.7 0.0 libxpp3-java (notwanted)
- 4.7 0.0 libyajl2 (notwanted)
- 4.7 0.0 linux-kbuild-3.2 (notwanted)
- 4.7 0.0 mpi-default-bin (notwanted)
- 4.7 0.0 multiarch-support (notwanted)
- 4.7 0.0 openmpi-common (notwanted)
- 4.7 0.0 python-argparse (notoncd) (notwanted)
- 4.7 0.0 python-debianbts (notwanted)
- 4.7 0.0 x2goclient (notoncd) (notwanted)
- 4.3 0.0 aptdaemon-data (notwanted)
- 4.3 0.0 arc-wine (notoncd) (notwanted)
- 4.3 0.0 bogofilter (notwanted)
- 4.3 0.0 bogofilter-common (notwanted)
- 4.3 0.0 fonts-lyx (notwanted)
- 4.3 0.0 fonts-sil-gentium (notwanted)
- 4.3 0.0 fonts-sil-gentium-basic (notwanted)
- 4.3 0.0 fonts-vlgothic (notwanted)
- 4.3 0.0 glib-networking (notwanted)
- 4.3 0.0 glib-networking-common (notwanted)
- 4.3 0.0 gnome-cards-data (notoncd) (notwanted)
- 4.3 0.0 gnome-core (notwanted)
- 4.3 0.0 gnome-desktop3-data (notwanted)
- 4.3 0.0 gnome-video-effects (notwanted)
- 4.3 0.0 gsettings-desktop-schemas (notwanted)
- 4.3 0.0 gstreamer0.10-gconf (notwanted)
- 4.3 0.0 hydrogen-drumkits (notwanted)
- 4.3 0.0 kate-data (notwanted)
- 4.3 0.0 kdeartwork-emoticons (notoncd) (notwanted)
- 4.3 0.0 kdegames (notoncd) (notwanted)
- 4.3 0.0 libapache-pom-java (notwanted)
- 4.3 0.0 libarchive12 (notwanted)
- 4.3 0.0 libassuan0 (notwanted)
- 4.3 0.0 libatk-wrapper-java (notwanted)
- 4.3 0.0 libatk-wrapper-java-jni (notwanted)
- 4.3 0.0 libatkmm-1.6-1 (notwanted)
- 4.3 0.0 libaudiofile1 (notwanted)
- 4.3 0.0 libbabl-0.1-0 (notwanted)
- 4.3 0.0 libbeecrypt6 (notoncd) (notwanted)
- 4.3 0.0 libboost-regex1.49.0 (notwanted)
- 4.3 0.0 libboost-system1.49.0 (notwanted)
- 4.3 0.0 libboost-thread1.49.0 (notwanted)
- 4.3 0.0 libcairo-script-interpreter2 (notwanted)
- 4.3 0.0 libcamel-1.2-33 (notwanted)
- 4.3 0.0 libcanberra-gtk3-module (notwanted)
- 4.3 0.0 libcdio-cdda1 (notwanted)
- 4.3 0.0 libcdio-paranoia1 (notwanted)
- 4.3 0.0 libcheese-gtk21 (notwanted)
- 4.3 0.0 libcheese3 (notwanted)
- 4.3 0.0 libclutter-gst-1.0-0 (notwanted)
- 4.3 0.0 libclutter-gtk-1.0-0 (notwanted)
- 4.3 0.0 libcluttergesture-0.0.2-0 (notwanted)
- 4.3 0.0 libcmis-0.2-0 (notwanted)
- 4.3 0.0 libcogl-pango0 (notwanted)
- 4.3 0.0 libcogl9 (notwanted)
- 4.3 0.0 libcommons-parent-java (notwanted)
- 4.3 0.0 libcrystalhd3 (notwanted)
- 4.3 0.0 libcupsfilters1 (notwanted)
- 4.3 0.0 libdbusmenu-qt2 (notwanted)
- 4.3 0.0 libdlrestrictions1 (notwanted)
- 4.3 0.0 libdom4j-java (notwanted)
- 4.3 0.0 libdvbpsi4 (notoncd) (notwanted)
- 4.3 0.0 libebook-1.2-13 (notwanted)
- 4.3 0.0 libecal-1.2-11 (notwanted)
- 4.3 0.0 libedataserver-1.2-16 (notwanted)
- 4.3 0.0 libedataserverui-3.0-1 (notwanted)
- 4.3 0.0 libescpr1 (notwanted)
- 4.3 0.0 libevview3-3 (notwanted)
- 4.3 0.0 libexttextcat-data (notwanted)
- 4.3 0.0 libgail-3-0 (notwanted)
- 4.3 0.0 libgdome2-0 (notoncd) (notwanted)
- 4.3 0.0 libgegl-0.2-0 (notwanted)
- 4.3 0.0 libgeos-c1 (notoncd) (notwanted)
- 4.3 0.0 libglew1.7 (notwanted)
- 4.3 0.0 libgmime-2.6-0 (notwanted)
- 4.3 0.0 libgnome-desktop-3-2 (notwanted)
- 4.3 0.0 libgssdp-1.0-3 (notwanted)
- 4.3 0.0 libgtkmm-3.0-1 (notwanted)
- 4.3 0.0 libgtksourceview-3.0-0 (notwanted)
- 4.3 0.0 libgtksourceview-3.0-common (notwanted)
- 4.3 0.0 libgupnp-1.0-4 (notwanted)
- 4.3 0.0 libgxps2 (notwanted)
- 4.3 0.0 libjavascriptcoregtk-1.0-0 (notwanted)
- 4.3 0.0 libjavascriptcoregtk-3.0-0 (notwanted)
- 4.3 0.0 libjaxen-java (notwanted)
- 4.3 0.0 libjaxme-java (notwanted)
- 4.3 0.0 libjim0debian2 (notwanted)
- 4.3 0.0 libjson0 (notwanted)
- 4.3 0.0 libjte1 (notwanted)
- 4.3 0.0 libkatepartinterfaces4 (notwanted)
- 4.3 0.0 libkblog4 (notoncd) (notwanted)
- 4.3 0.0 libkcmutils4 (notwanted)
- 4.3 0.0 libkdeclarative5 (notwanted)
- 4.3 0.0 libkemoticons4 (notwanted)
- 4.3 0.0 libkidletime4 (notwanted)
- 4.3 0.0 libkpathsea6 (notwanted)
- 4.3 0.0 libkprintutils4 (notwanted)
- 4.3 0.0 libkxmlrpcclient4 (notoncd) (notwanted)
- 4.3 0.0 liblink-grammar4 (notoncd) (notwanted)
- 4.3 0.0 libmagick++5 (notwanted)
- 4.3 0.0 libmlt3 (notoncd) (notwanted)
- 4.3 0.0 libmozjs185-1.0 (notwanted)
- 4.3 0.0 libmtdev1 (notwanted)
- 4.3 0.0 libmtp9 (notwanted)
- 4.3 0.0 libmusicbrainz5-0 (notwanted)
- 4.3 0.0 libmx-1.0-2 (notwanted)
- 4.3 0.0 libmx-common (notwanted)
- 4.3 0.0 libnautilus-extension1a (notwanted)
- 4.3 0.0 libnepomukutils4 (notwanted)
- 4.3 0.0 libnettle4 (notwanted)
- 4.3 0.0 libnl-3-200 (notwanted)
- 4.3 0.0 libnl-genl-3-200 (notwanted)
- 4.3 0.0 libnl-route-3-200 (notwanted)
- 4.3 0.0 libnm-glib4 (notwanted)
- 4.3 0.0 libnm-util2 (notwanted)
- 4.3 0.0 libosp5 (notoncd) (notwanted)
- 4.3 0.0 libpodofo0.9.0 (notwanted)
- 4.3 0.0 libpolkit-gtk-1-0 (notoncd) (notwanted)
- 4.3 0.0 libpolkit-qt-1-1 (notwanted)
- 4.3 0.0 libpoppler-glib8 (notwanted)
- 4.3 0.0 libqtassistantclient4 (notwanted)
- 4.3 0.0 libquicktime2 (notwanted)
- 4.3 0.0 libquvi7 (notwanted)
- 4.3 0.0 libsigsegv2 (notwanted)
- 4.3 0.0 libsonic0 (notwanted)
- 4.3 0.0 libtar0 (notwanted)
- 4.3 0.0 libupnp6 (notwanted)
- 4.3 0.0 libv8-2.2.24 (notoncd) (notwanted)
- 4.3 0.0 libvisio-0.0-0 (notwanted)
- 4.3 0.0 libwebkitgtk-1.0-0 (notwanted)
- 4.3 0.0 libwebkitgtk-1.0-common (notwanted)
- 4.3 0.0 libwebkitgtk-3.0-0 (notwanted)
- 4.3 0.0 libwebkitgtk-3.0-common (notwanted)
- 4.3 0.0 libwebp2 (notwanted)
- 4.3 0.0 libwpd-0.9-9 (notwanted)
- 4.3 0.0 libwpg-0.2-2 (notwanted)
- 4.3 0.0 libwps-0.2-2 (notwanted)
- 4.3 0.0 libxcb-shm0-dev (notwanted)
- 4.3 0.0 libxerces-c28 (notoncd) (notwanted)
- 4.3 0.0 libxml-commons-resolver1.1-java (notwanted)
- 4.3 0.0 libxom-java (notwanted)
- 4.3 0.0 libxpp2-java (notwanted)
- 4.3 0.0 libxz-java (notwanted)
- 4.3 0.0 libyelp0 (notwanted)
- 4.3 0.0 libzip1 (notoncd) (notwanted)
- 4.3 0.0 liferea-data (notoncd) (notwanted)
- 4.3 0.0 link-grammar-dictionaries-en (notoncd) (notwanted)
- 4.3 0.0 maxima-share (notoncd) (notwanted)
- 4.3 0.0 myspell-de-de-oldspell (notoncd) (notwanted)
- 4.3 0.0 python-bugbuddy (notoncd) (notwanted)
- 4.3 0.0 python-gevent (notoncd) (notwanted)
- 4.3 0.0 python-setproctitle (notoncd) (notwanted)
- 4.3 0.0 python-wxtools (notoncd) (notwanted)
- 4.3 0.0 wx-common (notoncd) (notwanted)
- 4.3 0.0 x2goserver-xsession (notoncd) (notwanted)
- 4.3 0.0 yelp-xsl (notwanted)
- 4.3 0.0 zenity-common (notwanted)
- 3.8 0.0 3s-tjener-info (notoncd) (notwanted)
- 3.8 0.0 doc-linux-text (notoncd) (notwanted)
- 3.8 0.0 education-standalone
- 3.8 0.0 epiphany-browser-data (notoncd) (notwanted)
- 3.8 0.0 festlex-cmu (notwanted)
- 3.8 0.0 festlex-poslex (notwanted)
- 3.8 0.0 festvox-kallpc16k (notwanted)
- 3.8 0.0 fonts-sil-andika (notwanted)
- 3.8 0.0 fonts-sil-doulos (notwanted)
- 3.8 0.0 fonts-stix (notwanted)
- 3.8 0.0 fortunes-min (notoncd) (notwanted)
- 3.8 0.0 fp-units-base
- 3.8 0.0 fp-units-db (notoncd) (notwanted)
- 3.8 0.0 fp-units-fcl
- 3.8 0.0 fp-units-fv
- 3.8 0.0 fp-units-gtk2
- 3.8 0.0 fp-units-math (notoncd) (notwanted)
- 3.8 0.0 fp-units-misc
- 3.8 0.0 fp-units-multimedia
- 3.8 0.0 fp-units-net
- 3.8 0.0 fp-units-rtl
- 3.8 0.0 fpc-source
- 3.8 0.0 gcj-4.7-base (notwanted)
- 3.8 0.0 gnome-themes-extras (notoncd) (notwanted)
- 3.8 0.0 gnome-themes-more (notoncd) (notwanted)
- 3.8 0.0 grdesktop (notoncd) (notwanted)
- 3.8 0.0 icedtea-6-jre-cacao (notwanted)
- 3.8 0.0 icedtea-6-jre-jamvm (notwanted)
- 3.8 0.0 icedtea-netx (notwanted)
- 3.8 0.0 icedtea-netx-common (notwanted)
- 3.8 0.0 ienglish-common (notwanted)
- 3.8 0.0 kdeadmin (notoncd) (notwanted)
- 3.8 0.0 kdeartwork (notoncd) (notwanted)
- 3.8 0.0 kdegraphics (notoncd) (notwanted)
- 3.8 0.0 kdenetwork (notoncd) (notwanted)
- 3.8 0.0 kdepim (notoncd) (notwanted)
- 3.8 0.0 krb5-locales (notwanted)
- 3.8 0.0 libaiksaurusgtk-1.2-0c2a (notoncd) (notwanted)
- 3.8 0.0 libalut0 (notoncd) (notwanted)
- 3.8 0.0 libantlr-java (notoncd) (notwanted)
- 3.8 0.0 libboost-filesystem1.49.0 (notwanted)
- 3.8 0.0 libcogl-common (notwanted)
- 3.8 0.0 libcompfaceg1 (notoncd) (notwanted)
- 3.8 0.0 libcryptsetup4 (notwanted)
- 3.8 0.0 libdmtx0a (notwanted)
- 3.8 0.0 libdvbpsi7 (notwanted)
- 3.8 0.0 libelfg0 (notoncd) (notwanted)
- 3.8 0.0 libexttextcat0 (notwanted)
- 3.8 0.0 libftgl2 (notoncd) (notwanted)
- 3.8 0.0 libgcj13 (notwanted)
- 3.8 0.0 libgdome2-cpp-smart0c2a (notoncd) (notwanted)
- 3.8 0.0 libgnome-bluetooth7 (notoncd) (notwanted)
- 3.8 0.0 libgps20 (notwanted)
- 3.8 0.0 libgtkhtml-editor0 (notoncd) (notwanted)
- 3.8 0.0 libgtkmathview0c2a (notoncd) (notwanted)
- 3.8 0.0 libgusb2 (notwanted)
- 3.8 0.0 libhdf4-0-alt (notoncd) (notwanted)
- 3.8 0.0 libhdf5-7 (notwanted)
- 3.8 0.0 libiso9660-5 (notoncd) (notwanted)
- 3.8 0.0 libmaa3 (notwanted)
- 3.8 0.0 libmodplug-dev (notwanted)
- 3.8 0.0 libnetcdfc7 (notwanted)
- 3.8 0.0 libnetfilter-conntrack3 (notwanted)
- 3.8 0.0 libopencv-core2.3 (notwanted)
- 3.8 0.0 libopencv-imgproc2.3 (notwanted)
- 3.8 0.0 libpam-cap (notwanted)
- 3.8 0.0 libproj0 (notoncd) (notwanted)
- 3.8 0.0 libptexenc1 (notwanted)
- 3.8 0.0 libqrencode3 (notwanted)
- 3.8 0.0 libreoffice-help-de (notwanted)
- 3.8 0.0 librtaudio4 (notwanted)
- 3.8 0.0 librtmidi1 (notwanted)
- 3.8 0.0 libsary10 (notoncd) (notwanted)
- 3.8 0.0 libsox2 (notwanted)
- 3.8 0.0 libsystemd-daemon0 (notwanted)
- 3.8 0.0 libtbb2 (notwanted)
- 3.8 0.0 libtiff5 (notwanted)
- 3.8 0.0 libtirpc1 (notwanted)
- 3.8 0.0 libwebrtc-audio-processing-0 (notwanted)
- 3.8 0.0 libwv-1.2-3 (notoncd) (notwanted)
- 3.8 0.0 logcheck-database (notoncd) (notwanted)
- 3.8 0.0 lxde-icon-theme (notwanted)
- 3.8 0.0 myspell-he
- 3.8 0.0 openoffice.org-style-crystal (notwanted)
- 3.8 0.0 printer-driver-all (notwanted)
- 3.8 0.0 proj-data (notoncd) (notwanted)
- 3.8 0.0 python-vobject (notoncd) (notwanted)
- 3.8 0.0 stardata-common (notoncd) (notwanted)
- 3.8 0.0 suikyo-table (notoncd) (notwanted)
- 3.8 0.0 transmission-common (notwanted)
- 3.8 0.0 update-manager-core (notoncd) (notwanted)
- 3.8 0.0 xorg-docs (notoncd) (notwanted)
- 3.8 0.0 xutils (notoncd) (notwanted)
- 3.4 0.0 3s-keyring (notoncd) (notwanted)
- 3.4 0.0 abiword-common (notoncd) (notwanted)
- 3.4 0.0 akonadi-backend-mysql (notwanted)
- 3.4 0.0 avogadro-data (notwanted)
- 3.4 0.0 chromium-inspector (notwanted)
- 3.4 0.0 console-setup-linux (notwanted)
- 3.4 0.0 csound-data (notwanted)
- 3.4 0.0 cupsys (notoncd) (notwanted)
- 3.4 0.0 cupsys-bsd (notoncd) (notwanted)
- 3.4 0.0 dasher-data (notwanted)
- 3.4 0.0 education-laptop
- 3.4 0.0 fonts-dustin (notwanted)
- 3.4 0.0 fonts-mgopen (notwanted)
- 3.4 0.0 fp-units-gnome1 (notoncd) (notwanted)
- 3.4 0.0 fp-units-gtk (notoncd) (notwanted)
- 3.4 0.0 fpc (notwanted)
- 3.4 0.0 games-thumbnails (notwanted)
- 3.4 0.0 gcj-jre (notoncd) (notwanted)
- 3.4 0.0 gnumeric-common (notoncd) (notwanted)
- 3.4 0.0 icedtea-6-plugin (notwanted)
- 3.4 0.0 imlib-base (notoncd) (notwanted)
- 3.4 0.0 kde-baseapps (notwanted)
- 3.4 0.0 kde-baseapps-data (notwanted)
- 3.4 0.0 kde-wallpapers (notwanted)
- 3.4 0.0 kde-wallpapers-default (notwanted)
- 3.4 0.0 kde-workspace (notwanted)
- 3.4 0.0 kde-workspace-data (notwanted)
- 3.4 0.0 kdemultimedia (notoncd) (notwanted)
- 3.4 0.0 kdetoys (notoncd) (notwanted)
- 3.4 0.0 kdewebdev (notoncd) (notwanted)
- 3.4 0.0 ktouch-data (notwanted)
- 3.4 0.0 lazarus
- 3.4 0.0 lazarus-doc (notoncd) (notwanted)
- 3.4 0.0 lazarus-ide-gtk2 (notoncd) (notwanted)
- 3.4 0.0 lazarus-src (notoncd) (notwanted)
- 3.4 0.0 lcl (notoncd) (notwanted)
- 3.4 0.0 lcl-gtk2 (notoncd) (notwanted)
- 3.4 0.0 lcl-units (notoncd) (notwanted)
- 3.4 0.0 libaacs0 (notwanted)
- 3.4 0.0 libakonadiprotocolinternals1 (notwanted)
- 3.4 0.0 libasm3-java (notoncd) (notwanted)
- 3.4 0.0 libaudio-dev (notoncd) (notwanted)
- 3.4 0.0 libbind9-40 (notoncd) (notwanted)
- 3.4 0.0 libboost-python1.49.0 (notwanted)
- 3.4 0.0 libboost-signals1.49.0 (notwanted)
- 3.4 0.0 libcanna1g (notwanted)
- 3.4 0.0 libcgraph5 (notoncd) (notwanted)
- 3.4 0.0 libchm1 (notwanted)
- 3.4 0.0 libclutter-1.0-common (notwanted)
- 3.4 0.0 libcommons-io-java (notoncd) (notwanted)
- 3.4 0.0 libcryptui0 (notoncd) (notwanted)
- 3.4 0.0 libdb4.4 (notoncd) (notwanted)
- 3.4 0.0 libdns45 (notoncd) (notwanted)
- 3.4 0.0 libdxflib-2.2.0.0 (notwanted)
- 3.4 0.0 libecj-java (notoncd) (notwanted)
- 3.4 0.0 libftdi1 (notwanted)
- 3.4 0.0 libgcroots0 (notoncd) (notwanted)
- 3.4 0.0 libggi-target-vcsa (notoncd) (notwanted)
- 3.4 0.0 libggiwmh0 (notoncd) (notwanted)
- 3.4 0.0 libggz2 (notoncd) (notwanted)
- 3.4 0.0 libggzcore9 (notoncd) (notwanted)
- 3.4 0.0 libggzmod4 (notoncd) (notwanted)
- 3.4 0.0 libgnuinet-java (notoncd) (notwanted)
- 3.4 0.0 libgnujaf-java (notoncd) (notwanted)
- 3.4 0.0 libgnumail-java (notoncd) (notwanted)
- 3.4 0.0 libgraphite2-2.0.0 (notwanted)
- 3.4 0.0 libgvpr1 (notoncd) (notwanted)
- 3.4 0.0 libisc45 (notoncd) (notwanted)
- 3.4 0.0 libisccc40 (notoncd) (notwanted)
- 3.4 0.0 libisccfg40 (notoncd) (notwanted)
- 3.4 0.0 libitext-java (notoncd) (notwanted)
- 3.4 0.0 libjas-java (notwanted)
- 3.4 0.0 libjgoodies-forms-java (notwanted)
- 3.4 0.0 libjs-mootools (notoncd) (notwanted)
- 3.4 0.0 libkactivities6 (notwanted)
- 3.4 0.0 libkateinterfaces4 (notwanted)
- 3.4 0.0 libkcalcore4 (notwanted)
- 3.4 0.0 libkcalutils4 (notwanted)
- 3.4 0.0 libkdcraw-data (notwanted)
- 3.4 0.0 libkdcraw20 (notwanted)
- 3.4 0.0 libkdeedu-data (notwanted)
- 3.4 0.0 libkephal4abi1 (notwanted)
- 3.4 0.0 libkexiv2-10 (notwanted)
- 3.4 0.0 libkexiv2-data (notwanted)
- 3.4 0.0 libkipi-data (notwanted)
- 3.4 0.0 libkipi8 (notwanted)
- 3.4 0.0 libkonq5abi1 (notwanted)
- 3.4 0.0 libksane-data (notwanted)
- 3.4 0.0 libkwineffects1abi3 (notwanted)
- 3.4 0.0 libkwinglutils1 (notwanted)
- 3.4 0.0 libkworkspace4abi1 (notwanted)
- 3.4 0.0 liblwres40 (notoncd) (notwanted)
- 3.4 0.0 libmarblewidget13 (notwanted)
- 3.4 0.0 libmediastreamer1 (notwanted)
- 3.4 0.0 libmetadata-extractor-java (notoncd) (notwanted)
- 3.4 0.0 libmozjs20d (notoncd) (notwanted)
- 3.4 0.0 libmuparser2 (notwanted)
- 3.4 0.0 libopencv-calib3d2.3 (notwanted)
- 3.4 0.0 libopencv-features2d2.3 (notwanted)
- 3.4 0.0 libopencv-flann2.3 (notwanted)
- 3.4 0.0 libopencv-highgui2.3 (notwanted)
- 3.4 0.0 libopencv-legacy2.3 (notwanted)
- 3.4 0.0 libopencv-objdetect2.3 (notwanted)
- 3.4 0.0 libopencv-video2.3 (notwanted)
- 3.4 0.0 libplasmaclock4abi3 (notwanted)
- 3.4 0.0 libprison0 (notwanted)
- 3.4 0.0 libprocesscore4abi1 (notwanted)
- 3.4 0.0 libqalculate5-data (notwanted)
- 3.4 0.0 libqtlocation1 (notwanted)
- 3.4 0.0 librecad-data (notwanted)
- 3.4 0.0 libreoffice-style-oxygen (notwanted)
- 3.4 0.0 librpm4.4 (notoncd) (notwanted)
- 3.4 0.0 libslf4j-java (notoncd) (notwanted)
- 3.4 0.0 libsmokebase3 (notwanted)
- 3.4 0.0 libsolidcontrol4abi2 (notwanted)
- 3.4 0.0 libsolidcontrolifaces4abi2 (notwanted)
- 3.4 0.0 libtaskmanager4abi3 (notwanted)
- 3.4 0.0 libvdeplug2 (notoncd) (notwanted)
- 3.4 0.0 libvlc0 (notoncd) (notwanted)
- 3.4 0.0 libweather-ion6 (notwanted)
- 3.4 0.0 libx264-60 (notoncd) (notwanted)
- 3.4 0.0 libzthread-2.3-2 (notwanted)
- 3.4 0.0 linux-headers-2.6-686 (notoncd) (notwanted)
- 3.4 0.0 linux-headers-2.6-amd64 (notoncd) (notwanted)
- 3.4 0.0 linux-image-2.6-486 (notoncd) (notwanted)
- 3.4 0.0 msmtp (notoncd) (notwanted)
- 3.4 0.0 mysql-client (notoncd) (notwanted)
- 3.4 0.0 nted-doc (notoncd) (notwanted)
- 3.4 0.0 openstreetmap-map-icons-classic (notoncd) (notwanted)
- 3.4 0.0 proj (notoncd) (notwanted)
- 3.4 0.0 python-aptdaemon-gtk (notoncd) (notwanted)
- 3.4 0.0 scim-tables-ja
- 3.4 0.0 skkdic (notwanted)
- 3.4 0.0 tango-icon-theme (notoncd) (notwanted)
- 3.4 0.0 texlive-base-bin-doc (notoncd) (notwanted)
- 3.4 0.0 uim-common (notoncd) (notwanted)
- 3.4 0.0 unison
- 3.4 0.0 x2goserver-printing (notoncd) (notwanted)
- 3.4 0.0 xemacs21 (notoncd) (notwanted)
- 3.4 0.0 xemacs21-basesupport (notoncd) (notwanted)
- 3.4 0.0 xemacs21-mulesupport (notoncd) (notwanted)
- 3.0 0.0 arc-brave (notoncd) (notwanted)
- 3.0 0.0 arc-colors (notoncd) (notwanted)
- 3.0 0.0 arc-dust (notoncd) (notwanted)
- 3.0 0.0 arc-human (notoncd) (notwanted)
- 3.0 0.0 arc-illustrious (notoncd) (notwanted)
- 3.0 0.0 arc-noble (notoncd) (notwanted)
- 3.0 0.0 arc-wise (notoncd) (notwanted)
- 3.0 0.0 avidemux-common (notoncd) (notwanted)
- 3.0 0.0 bwidget (notoncd) (notwanted)
- 3.0 0.0 catdvi (notoncd) (notwanted)
- 3.0 0.0 cupsys-client (notoncd) (notwanted)
- 3.0 0.0 docbook (notoncd) (notwanted)
- 3.0 0.0 emacs22-common (notoncd) (notwanted)
- 3.0 0.0 festival-freebsoft-utils (notwanted)
- 3.0 0.0 fonts-beng (notwanted)
- 3.0 0.0 fonts-beng-extra (notwanted)
- 3.0 0.0 fonts-deva (notwanted)
- 3.0 0.0 fonts-deva-extra (notwanted)
- 3.0 0.0 fonts-gubbi (notwanted)
- 3.0 0.0 fonts-gujr (notwanted)
- 3.0 0.0 fonts-gujr-extra (notwanted)
- 3.0 0.0 fonts-guru (notwanted)
- 3.0 0.0 fonts-guru-extra (notwanted)
- 3.0 0.0 fonts-knda (notwanted)
- 3.0 0.0 fonts-knda-extra (notwanted)
- 3.0 0.0 fonts-linex (notwanted)
- 3.0 0.0 fonts-lohit-beng-assamese (notwanted)
- 3.0 0.0 fonts-lohit-beng-bengali (notwanted)
- 3.0 0.0 fonts-lohit-deva (notwanted)
- 3.0 0.0 fonts-lohit-gujr (notwanted)
- 3.0 0.0 fonts-lohit-guru (notwanted)
- 3.0 0.0 fonts-lohit-knda (notwanted)
- 3.0 0.0 fonts-lohit-orya (notwanted)
- 3.0 0.0 fonts-lohit-taml (notwanted)
- 3.0 0.0 fonts-lohit-telu (notwanted)
- 3.0 0.0 fonts-nakula (notwanted)
- 3.0 0.0 fonts-navilu (notwanted)
- 3.0 0.0 fonts-orya (notwanted)
- 3.0 0.0 fonts-orya-extra (notwanted)
- 3.0 0.0 fonts-sahadeva (notwanted)
- 3.0 0.0 fonts-samyak-gujr (notwanted)
- 3.0 0.0 fonts-samyak-taml (notwanted)
- 3.0 0.0 fonts-taml (notwanted)
- 3.0 0.0 fonts-telu (notwanted)
- 3.0 0.0 fonts-telu-extra (notwanted)
- 3.0 0.0 freebirth-data (notwanted)
- 3.0 0.0 freeciv-data (notoncd) (notwanted)
- 3.0 0.0 gcj-4.4-jre (notoncd) (notwanted)
- 3.0 0.0 gcj-4.7-jre-lib (notwanted)
- 3.0 0.0 gnokii-common (notoncd) (notwanted)
- 3.0 0.0 gnome-icon-theme-extras (notwanted)
- 3.0 0.0 gs-esp (notoncd) (notwanted)
- 3.0 0.0 hp-ppd (notoncd) (notwanted)
- 3.0 0.0 kdeartwork-theme-icon (notoncd) (notwanted)
- 3.0 0.0 kdegames-mahjongg-data (notoncd) (notwanted)
- 3.0 0.0 kolourpaint (notoncd) (notwanted)
- 3.0 0.0 libabiword-2.8 (notoncd) (notwanted)
- 3.0 0.0 libanalitza4abi1 (notwanted)
- 3.0 0.0 libanalitzagui4 (notwanted)
- 3.0 0.0 libapertium3-3.1-0 (notoncd) (notwanted)
- 3.0 0.0 libavalon-framework-java (notoncd) (notwanted)
- 3.0 0.0 libavfilter1 (notoncd) (notwanted)
- 3.0 0.0 libbcmail-java (notoncd) (notwanted)
- 3.0 0.0 libbcprov-java (notoncd) (notwanted)
- 3.0 0.0 libboost-graph1.49.0 (notwanted)
- 3.0 0.0 libbsf-java (notoncd) (notwanted)
- 3.0 0.0 libdb5.1-java (notwanted)
- 3.0 0.0 libdb5.1-java-jni (notwanted)
- 3.0 0.0 libeel2-2.20 (notoncd) (notwanted)
- 3.0 0.0 libeel2-data (notoncd) (notwanted)
- 3.0 0.0 libestools2.1 (notwanted)
- 3.0 0.0 libgconfmm-2.6-1c2 (notoncd) (notwanted)
- 3.0 0.0 libgdal1-1.6.0 (notoncd) (notwanted)
- 3.0 0.0 libgeos-3.2.0 (notoncd) (notwanted)
- 3.0 0.0 libgettext-commons-java (notoncd) (notwanted)
- 3.0 0.0 libgmlib0 (notwanted)
- 3.0 0.0 libgmtk0 (notwanted)
- 3.0 0.0 libgmtk0-data (notwanted)
- 3.0 0.0 libgnomecanvasmm-2.6-1c2a (notoncd) (notwanted)
- 3.0 0.0 libgnutls13 (notoncd) (notwanted)
- 3.0 0.0 libgraphicsmagick++3 (notoncd) (notwanted)
- 3.0 0.0 libgupnp-av-1.0-2 (notwanted)
- 3.0 0.0 libindi-data (notwanted)
- 3.0 0.0 libindi0b (notwanted)
- 3.0 0.0 libint1 (notwanted)
- 3.0 0.0 libjogl-java (notoncd) (notwanted)
- 3.0 0.0 libjsch-java (notoncd) (notwanted)
- 3.0 0.0 libkdegames5a (notwanted)
- 3.0 0.0 libkeduvocdocument4 (notwanted)
- 3.0 0.0 libkiten4abi1 (notwanted)
- 3.0 0.0 liblttoolbox3-3.1-0 (notoncd) (notwanted)
- 3.0 0.0 libming1 (notoncd) (notwanted)
- 3.0 0.0 libnb-org-openide-util-java (notwanted)
- 3.0 0.0 libnb-org-openide-util-lookup-java (notwanted)
- 3.0 0.0 libnova-0.14-0 (notwanted)
- 3.0 0.0 libopencv-contrib2.3 (notwanted)
- 3.0 0.0 libopencv-ml2.3 (notwanted)
- 3.0 0.0 libpcrecpp0 (notwanted)
- 3.0 0.0 libportsmf0 (notwanted)
- 3.0 0.0 libqdox-java (notoncd) (notwanted)
- 3.0 0.0 librhino-java (notwanted)
- 3.0 0.0 librubberband2 (notwanted)
- 3.0 0.0 libsbsms10 (notwanted)
- 3.0 0.0 libtiffxx0c2 (notoncd) (notwanted)
- 3.0 0.0 libuim-data (notoncd) (notwanted)
- 3.0 0.0 libxbae4 (notwanted)
- 3.0 0.0 libxfconf-0-2 (notoncd) (notwanted)
- 3.0 0.0 libxmlgraphics-commons-java (notoncd) (notwanted)
- 3.0 0.0 munin-plugins-extra (notwanted)
- 3.0 0.0 mysql-gui-tools-common (notoncd) (notwanted)
- 3.0 0.0 openclipart-libreoffice (notwanted)
- 3.0 0.0 openhackware (notoncd) (notwanted)
- 3.0 0.0 openuniverse-common (notoncd) (notwanted)
- 3.0 0.0 palapeli-data (notoncd) (notwanted)
- 3.0 0.0 python-elementtree (notoncd) (notwanted)
- 3.0 0.0 python-ipy (notoncd) (notwanted)
- 3.0 0.0 r-base (notoncd) (notwanted)
- 3.0 0.0 r-recommended (notoncd) (notwanted)
- 3.0 0.0 rawtherapee (notoncd) (notwanted)
- 3.0 0.0 rawtherapee-data (notoncd) (notwanted)
- 3.0 0.0 remmina-plugin-data (notoncd) (notwanted)
- 3.0 0.0 ttf-sazanami-gothic (notoncd) (notwanted)
- 3.0 0.0 vgabios (notoncd) (notwanted)
- 3.0 0.0 x11vnc-data (notoncd) (notwanted)
- 3.0 0.0 x2goserver-fmbindings (notoncd) (notwanted)
- 3.0 0.0 xfce-keyboard-shortcuts (notoncd) (notwanted)
- 2.6 0.0 audacious-plugins-data (notwanted)
- 2.6 0.0 compiz (notoncd) (notwanted)
- 2.6 0.0 culmus
- 2.6 0.0 debian-policy (notoncd) (notwanted)
- 2.6 0.0 fluid-soundfont-gs (notoncd) (notwanted)
- 2.6 0.0 freemind-doc (notwanted)
- 2.6 0.0 freetds-common (notoncd) (notwanted)
- 2.6 0.0 gcc-4.6-base (notwanted)
- 2.6 0.0 gnome-desktop-environment
- 2.6 0.0 gnome-icon-theme-symbolic (notwanted)
- 2.6 0.0 gnome-office (notoncd) (notwanted)
- 2.6 0.0 gutenprint-locales (notoncd) (notwanted)
- 2.6 0.0 hunspell-sv-se (notwanted)
- 2.6 0.0 itzks-systems-terminalserver (notoncd) (notwanted)
- 2.6 0.0 kcron (notwanted)
- 2.6 0.0 kde (notoncd) (notwanted)
- 2.6 0.0 kde-l10n-nb
- 2.6 0.0 kenolaba (notoncd) (notwanted)
- 2.6 0.0 kfouleggs (notoncd) (notwanted)
- 2.6 0.0 ksirtet (notoncd) (notwanted)
- 2.6 0.0 ksmiletris (notoncd) (notwanted)
- 2.6 0.0 ksnake (notoncd) (notwanted)
- 2.6 0.0 kviewshell (notoncd) (notwanted)
- 2.6 0.0 lftp (notoncd) (notwanted)
- 2.6 0.0 libadns1 (notoncd) (notwanted)
- 2.6 0.0 libbeagle1 (notoncd) (notwanted)
- 2.6 0.0 libbluedevil1 (notoncd) (notwanted)
- 2.6 0.0 libboost-date-time1.40.0 (notoncd) (notwanted)
- 2.6 0.0 libboost-dev (notoncd) (notwanted)
- 2.6 0.0 libboost-filesystem1.40.0 (notoncd) (notwanted)
- 2.6 0.0 libboost-program-options1.40.0 (notoncd) (notwanted)
- 2.6 0.0 libboost-python1.40.0 (notoncd) (notwanted)
- 2.6 0.0 libboost-regex1.40.0 (notoncd) (notwanted)
- 2.6 0.0 libboost-system1.40.0 (notoncd) (notwanted)
- 2.6 0.0 libboost-thread1.40.0 (notoncd) (notwanted)
- 2.6 0.0 libcapi20-3 (notoncd) (notwanted)
- 2.6 0.0 libcollections15-java (notwanted)
- 2.6 0.0 libcommons-cli-java (notoncd) (notwanted)
- 2.6 0.0 libcompress-raw-bzip2-perl (notoncd) (notwanted)
- 2.6 0.0 libconfig++9 (notwanted)
- 2.6 0.0 libcrack2 (notwanted)
- 2.6 0.0 libdb-java (notwanted)
- 2.6 0.0 libdb4.3 (notoncd) (notwanted)
- 2.6 0.0 libdecoration0 (notoncd) (notwanted)
- 2.6 0.0 libfile-fcntllock-perl (notwanted)
- 2.6 0.0 libgetopt-java (notwanted)
- 2.6 0.0 libglc0 (notoncd) (notwanted)
- 2.6 0.0 libgmime-2.0-2a (notoncd) (notwanted)
- 2.6 0.0 libgnu-regexp-java (notwanted)
- 2.6 0.0 libguess1 (notwanted)
- 2.6 0.0 libgutenprintui2-1 (notoncd) (notwanted)
- 2.6 0.0 libhttpclient-java (notoncd) (notwanted)
- 2.6 0.0 libhttpcore-java (notoncd) (notwanted)
- 2.6 0.0 libio-socket-ip-perl (notwanted)
- 2.6 0.0 libitm1 (notwanted)
- 2.6 0.0 libjfugue-java (notwanted)
- 2.6 0.0 libjgoodies-looks-java (notoncd) (notwanted)
- 2.6 0.0 libjibx1.1-java (notwanted)
- 2.6 0.0 liblzo1 (notoncd) (notwanted)
- 2.6 0.0 libmdbtools (notoncd) (notwanted)
- 2.6 0.0 libmysql-java (notoncd) (notwanted)
- 2.6 0.0 libnatpmp1 (notwanted)
- 2.6 0.0 libneon26 (notoncd) (notwanted)
- 2.6 0.0 libnss-ldap (notoncd) (notwanted)
- 2.6 0.0 libodbc1 (notwanted)
- 2.6 0.0 libopencdk8 (notoncd) (notwanted)
- 2.6 0.0 liborbit0ldbl (notoncd) (notwanted)
- 2.6 0.0 liboro-java (notoncd) (notwanted)
- 2.6 0.0 libpackagekit-glib2-14 (notwanted)
- 2.6 0.0 libphysfs1 (notoncd) (notwanted)
- 2.6 0.0 libproxy-tools (notwanted)
- 2.6 0.0 libpvm3 (notoncd) (notwanted)
- 2.6 0.0 libqt4-multimedia (notoncd) (notwanted)
- 2.6 0.0 libqwt5-qt4 (notoncd) (notwanted)
- 2.6 0.0 libreadline-dev (notoncd) (notwanted)
- 2.6 0.0 libshp1 (notoncd) (notwanted)
- 2.6 0.0 libsp1c2 (notoncd) (notwanted)
- 2.6 0.0 libstdc++5 (notoncd) (notwanted)
- 2.6 0.0 libvde0 (notoncd) (notwanted)
- 2.6 0.0 libvorbisidec1 (notoncd) (notwanted)
- 2.6 0.0 libyaml-0-2 (notwanted)
- 2.6 0.0 linux-headers-amd64 (notwanted)
- 2.6 0.0 mathematica-fonts (notoncd) (notwanted)
- 2.6 0.0 msttcorefonts (notoncd) (notwanted)
- 2.6 0.0 openbios-sparc (notoncd) (notwanted)
- 2.6 0.0 openoffice.org-help-en-us (notoncd) (notwanted)
- 2.6 0.0 packagekit-backend-aptcc (notwanted)
- 2.6 0.0 planner-data (notwanted)
- 2.6 0.0 python-foomatic (notoncd) (notwanted)
- 2.6 0.0 python-matplotlib-data (notwanted)
- 2.6 0.0 python-pyalsa (notwanted)
- 2.6 0.0 python-pyfribidi (notoncd) (notwanted)
- 2.6 0.0 python-pypdf (notoncd) (notwanted)
- 2.6 0.0 qcad-data (notoncd) (notwanted)
- 2.6 0.0 qt3-doc (notoncd) (notwanted)
- 2.6 0.0 qt4-doc (notoncd) (notwanted)
- 2.6 0.0 simplyhtml (notwanted)
- 2.6 0.0 sound-icons (notwanted)
- 2.6 0.0 speech-dispatcher-festival (notwanted)
- 2.6 0.0 sun-java6-fonts (notoncd) (notwanted)
- 2.6 0.0 task-ssh-server (notoncd) (notwanted)
- 2.6 0.0 texpower-manual (notoncd) (notwanted)
- 2.6 0.0 torcs-data (notoncd) (notwanted)
- 2.6 0.0 torcs-data-cars (notoncd) (notwanted)
- 2.6 0.0 torcs-data-tracks (notoncd) (notwanted)
- 2.6 0.0 ttf-jsmath (notoncd) (notwanted)
- 2.6 0.0 x2golxdebindings (notoncd) (notwanted)
- 2.6 0.0 xfce4 (notoncd) (notwanted)
- 2.6 0.0 xfdesktop4-data (notoncd) (notwanted)
- 2.6 0.0 xfwm4-themes (notoncd) (notwanted)
- 2.6 0.0 xserver-xorg-video-i810 (notoncd) (notwanted)
- 2.1 0.0 apertium-dbus (notoncd) (notwanted)
- 2.1 0.0 armagetronad-common (notoncd) (notwanted)
- 2.1 0.0 arts (notoncd) (notwanted)
- 2.1 0.0 at-spi2-core (notwanted)
- 2.1 0.0 atlantik (notoncd) (notwanted)
- 2.1 0.0 blender-ogrexml (notoncd) (notwanted)
- 2.1 0.0 bluefish-data (notwanted)
- 2.1 0.0 bzflag (notoncd) (notwanted)
- 2.1 0.0 bzflag-data (notoncd) (notwanted)
- 2.1 0.0 bzrtools (notoncd) (notwanted)
- 2.1 0.0 canorus-data (notoncd) (notwanted)
- 2.1 0.0 childsplay-alphabet-sounds-sl (notoncd) (notwanted)
- 2.1 0.0 childsplay-plugins (notoncd) (notwanted)
- 2.1 0.0 extremetuxracer-data (notoncd) (notwanted)
- 2.1 0.0 fonts-cantarell (notwanted)
- 2.1 0.0 freeradius-common (notoncd) (notwanted)
- 2.1 0.0 freeradius-utils (notoncd) (notwanted)
- 2.1 0.0 gccxml (notoncd) (notwanted)
- 2.1 0.0 gdk-imlib11 (notoncd) (notwanted)
- 2.1 0.0 gftp (notoncd) (notwanted)
- 2.1 0.0 gij (notoncd) (notwanted)
- 2.1 0.0 gnome (notwanted)
- 2.1 0.0 gnome-control-center-data (notwanted)
- 2.1 0.0 gnome-online-accounts (notwanted)
- 2.1 0.0 gnome-packagekit-data (notwanted)
- 2.1 0.0 gnome-shell-common (notwanted)
- 2.1 0.0 gnome-themes-standard (notwanted)
- 2.1 0.0 gnome-themes-standard-data (notwanted)
- 2.1 0.0 gpsbabel-doc (notoncd) (notwanted)
- 2.1 0.0 grilo-plugins-0.1 (notwanted)
- 2.1 0.0 grub2-splashimages (notoncd) (notwanted)
- 2.1 0.0 gvrng (notwanted)
- 2.1 0.0 iperf (notoncd) (notwanted)
- 2.1 0.0 kbackgammon (notoncd) (notwanted)
- 2.1 0.0 kde-docx-support (notoncd) (notwanted)
- 2.1 0.0 kde-l10n-nn
- 2.1 0.0 kde-plasma-netbook (notoncd) (notwanted)
- 2.1 0.0 kdebluetooth (notoncd)
- 2.1 0.0 kpoker (notoncd) (notwanted)
- 2.1 0.0 kwin4 (notoncd) (notwanted)
- 2.1 0.0 libaacplus2 (notoncd) (notwanted)
- 2.1 0.0 libaccountsservice0 (notwanted)
- 2.1 0.0 libart2 (notoncd) (notwanted)
- 2.1 0.0 libatk-adaptor (notwanted)
- 2.1 0.0 libatk-adaptor-data (notwanted)
- 2.1 0.0 libatk-bridge2.0-0 (notwanted)
- 2.1 0.0 libatspi2.0-0 (notwanted)
- 2.1 0.0 libavahi-ui-gtk3-0 (notwanted)
- 2.1 0.0 libavcodec54 (notoncd) (notwanted)
- 2.1 0.0 libboost-date-time-dev (notoncd) (notwanted)
- 2.1 0.0 libboost-iostreams-dev (notoncd) (notwanted)
- 2.1 0.0 libboost-program-options-dev (notoncd) (notwanted)
- 2.1 0.0 libboost-serialization1.42.0 (notoncd) (notwanted)
- 2.1 0.0 libboost-signals1.40.0 (notoncd) (notwanted)
- 2.1 0.0 libboost-thread-dev (notoncd) (notwanted)
- 2.1 0.0 libcaribou-common (notwanted)
- 2.1 0.0 libcaribou0 (notwanted)
- 2.1 0.0 libchamplain-0.12-0 (notwanted)
- 2.1 0.0 libchamplain-gtk-0.12-0 (notwanted)
- 2.1 0.0 libcommons-dbcp-java (notoncd) (notwanted)
- 2.1 0.0 libcommons-el-java (notoncd) (notwanted)
- 2.1 0.0 libcommons-pool-java (notoncd) (notwanted)
- 2.1 0.0 libdb4.6++ (notoncd) (notwanted)
- 2.1 0.0 libdee-1.0-4 (notwanted)
- 2.1 0.0 libdmapsharing-3.0-2 (notwanted)
- 2.1 0.0 libebackend-1.2-2 (notwanted)
- 2.1 0.0 libedata-book-1.2-13 (notwanted)
- 2.1 0.0 libedata-cal-1.2-15 (notwanted)
- 2.1 0.0 libedata-cal1.2-6 (notoncd) (notwanted)
- 2.1 0.0 libepc-1.0-3 (notwanted)
- 2.1 0.0 libepc-ui-1.0-3 (notwanted)
- 2.1 0.0 libexcalibur-logkit-java (notoncd) (notwanted)
- 2.1 0.0 libfop-java (notoncd) (notwanted)
- 2.1 0.0 libfreeimage3 (notoncd) (notwanted)
- 2.1 0.0 libgdata13 (notwanted)
- 2.1 0.0 libgdict-common (notwanted)
- 2.1 0.0 libgeronimo-jpa-2.0-spec-java (notoncd) (notwanted)
- 2.1 0.0 libgeronimo-osgi-support-java (notoncd) (notwanted)
- 2.1 0.0 libgexiv2-0 (notoncd) (notwanted)
- 2.1 0.0 libgl2ps0 (notoncd) (notwanted)
- 2.1 0.0 libgmpxx4ldbl (notoncd) (notwanted)
- 2.1 0.0 libgnome-bluetooth10 (notwanted)
- 2.1 0.0 libgnome-menu-3-0 (notwanted)
- 2.1 0.0 libgnomekbd7 (notwanted)
- 2.1 0.0 libgnorbagtk0 (notoncd) (notwanted)
- 2.1 0.0 libgoa-1.0-0 (notwanted)
- 2.1 0.0 libgoa-1.0-common (notwanted)
- 2.1 0.0 libgrilo-0.1-0 (notwanted)
- 2.1 0.0 libgsm1-dev (notoncd) (notwanted)
- 2.1 0.0 libgtk-vnc-1.0-0 (notoncd) (notwanted)
- 2.1 0.0 libgtkhtml-4.0-0 (notwanted)
- 2.1 0.0 libgtkhtml-4.0-common (notwanted)
- 2.1 0.0 libgtkhtml-editor-4.0-0 (notwanted)
- 2.1 0.0 libgucharmap-2-90-7 (notwanted)
- 2.1 0.0 libgupnp-igd-1.0-4 (notwanted)
- 2.1 0.0 libgweather-3-0 (notwanted)
- 2.1 0.0 libid3-3.8.3c2a (notoncd) (notwanted)
- 2.1 0.0 libiw29 (notoncd) (notwanted)
- 2.1 0.0 libjasper-java (notoncd) (notwanted)
- 2.1 0.0 libjava3d-java (notoncd) (notwanted)
- 2.1 0.0 libkadm55 (notoncd) (notwanted)
- 2.1 0.0 libkgantt0 (notoncd) (notwanted)
- 2.1 0.0 libldap2 (notoncd) (notwanted)
- 2.1 0.0 liblockdev1 (notoncd) (notwanted)
- 2.1 0.0 libmetacity-private0a (notwanted)
- 2.1 0.0 libmiglayout-java (notoncd) (notwanted)
- 2.1 0.0 libmission-control-plugins0 (notwanted)
- 2.1 0.0 libmlt5 (notwanted)
- 2.1 0.0 libmono0 (notoncd) (notwanted)
- 2.1 0.0 libmozjs11d (notoncd) (notwanted)
- 2.1 0.0 libmozjs15d (notoncd) (notwanted)
- 2.1 0.0 libmozjs17d (notwanted)
- 2.1 0.0 libmutter0 (notwanted)
- 2.1 0.0 libnews-nntpclient-perl (notoncd) (notwanted)
- 2.1 0.0 libnice10 (notwanted)
- 2.1 0.0 libnm-gtk-common (notwanted)
- 2.1 0.0 libnm-gtk0 (notwanted)
- 2.1 0.0 liboauth-signpost-java (notoncd) (notwanted)
- 2.1 0.0 liboauth0 (notwanted)
- 2.1 0.0 libofx4 (notoncd) (notwanted)
- 2.1 0.0 libpanel-applet-4-0 (notwanted)
- 2.1 0.0 libpeas-common (notwanted)
- 2.1 0.0 libpst4 (notwanted)
- 2.1 0.0 librasqal0 (notoncd) (notwanted)
- 2.1 0.0 librest-0.7-0 (notwanted)
- 2.1 0.0 librhythmbox-core6 (notwanted)
- 2.1 0.0 librpm3 (notwanted)
- 2.1 0.0 librpmio3 (notwanted)
- 2.1 0.0 libservlet2.3-java (notoncd) (notwanted)
- 2.1 0.0 libsocialweb-client2 (notwanted)
- 2.1 0.0 libsocialweb-common (notwanted)
- 2.1 0.0 libstringtemplate-java (notoncd) (notwanted)
- 2.1 0.0 libtelepathy-logger2 (notwanted)
- 2.1 0.0 libtokyocabinet9 (notoncd) (notwanted)
- 2.1 0.0 libtorrent-rasterbar5 (notoncd) (notwanted)
- 2.1 0.0 libtotem0 (notwanted)
- 2.1 0.0 libunique-3.0-0 (notwanted)
- 2.1 0.0 libvecmath-java (notoncd) (notwanted)
- 2.1 0.0 libwacom-common (notwanted)
- 2.1 0.0 libwacom2 (notwanted)
- 2.1 0.0 libwerken.xpath-java (notoncd) (notwanted)
- 2.1 0.0 libwnck-3-0 (notwanted)
- 2.1 0.0 libwnck-3-common (notwanted)
- 2.1 0.0 libx264-130 (notoncd) (notwanted)
- 2.1 0.0 libxmmsclient-glib1 (notwanted)
- 2.1 0.0 libxmmsclient6 (notwanted)
- 2.1 0.0 libyaz4 (notoncd) (notwanted)
- 2.1 0.0 linux-headers-2.6.32-5-686 (notoncd) (notwanted)
- 2.1 0.0 lyx-common (notoncd) (notwanted)
- 2.1 0.0 mailutils-common (notoncd) (notwanted)
- 2.1 0.0 manpages-fr (notwanted)
- 2.1 0.0 miro-data (notoncd) (notwanted)
- 2.1 0.0 munin-plugins-core (notwanted)
- 2.1 0.0 mutter-common (notwanted)
- 2.1 0.0 neverball-common (notoncd) (notwanted)
- 2.1 0.0 neverball-data (notoncd) (notwanted)
- 2.1 0.0 openbios-ppc (notoncd) (notwanted)
- 2.1 0.0 openoffice.org-thesaurus-en-us (notwanted)
- 2.1 0.0 planner-doc (notwanted)
- 2.1 0.0 python-mlt5 (notwanted)
- 2.1 0.0 python-pyatspi2 (notwanted)
- 2.1 0.0 python-pydot (notoncd) (notwanted)
- 2.1 0.0 python-selinux (notoncd) (notwanted)
- 2.1 0.0 python-semanage (notoncd) (notwanted)
- 2.1 0.0 qcad-doc (notoncd) (notwanted)
- 2.1 0.0 qemu (notoncd) (notwanted)
- 2.1 0.0 qemu-keymaps (notoncd) (notwanted)
- 2.1 0.0 rhythmbox-data (notwanted)
- 2.1 0.0 samba-doc (notoncd) (notwanted)
- 2.1 0.0 seabios (notoncd) (notwanted)
- 2.1 0.0 texlive-lang-german (notoncd) (notwanted)
- 2.1 0.0 texlive-pictures-doc (notwanted)
- 2.1 0.0 texpower (notoncd) (notwanted)
- 2.1 0.0 ttf-arphic-uming
- 2.1 0.0 ttf-larabie-deco (notwanted)
- 2.1 0.0 ttf-unfonts-core (notoncd) (notwanted)
- 2.1 0.0 velocity (notoncd) (notwanted)
- 2.1 0.0 wesnoth (notoncd) (notwanted)
- 2.1 0.0 wesnoth-core (notoncd) (notwanted)
- 2.1 0.0 wx2.8-doc (notoncd) (notwanted)
- 2.1 0.0 xulrunner-11.0 (notoncd) (notwanted)
- 1.7 0.0 apertium-en-es (notoncd) (notwanted)
- 1.7 0.0 aptitude-doc-en (notoncd) (notwanted)
- 1.7 0.0 aptlinex (notoncd) (notwanted)
- 1.7 0.0 aspell-fr (notoncd) (notwanted)
- 1.7 0.0 axiom-hypertex-data (notoncd) (notwanted)
- 1.7 0.0 axiom-source (notoncd) (notwanted)
- 1.7 0.0 billard-gl-data (notoncd) (notwanted)
- 1.7 0.0 collatinus-doc (notoncd) (notwanted)
- 1.7 0.0 debfoster (notoncd) (notwanted)
- 1.7 0.0 debian-reference-en (notoncd) (notwanted)
- 1.7 0.0 doc-linux-ja-text (notoncd) (notwanted)
- 1.7 0.0 docbook-defguide (notoncd) (notwanted)
- 1.7 0.0 dreamchess-data (notoncd) (notwanted)
- 1.7 0.0 eclipse (notoncd) (notwanted)
- 1.7 0.0 fftw2 (notoncd) (notwanted)
- 1.7 0.0 fifteenapplet (notoncd) (notwanted)
- 1.7 0.0 firebird2.5-common-doc (notoncd) (notwanted)
- 1.7 0.0 folks-common (notwanted)
- 1.7 0.0 garlic (notoncd) (notwanted)
- 1.7 0.0 gcc-multilib (notoncd) (notwanted)
- 1.7 0.0 gcj-4.1-base (notoncd) (notwanted)
- 1.7 0.0 gcompris-sound-fr
- 1.7 0.0 gcompris-sound-it
- 1.7 0.0 gij-4.1 (notoncd) (notwanted)
- 1.7 0.0 gimp-help-it
- 1.7 0.0 glassfish-javaee (notoncd) (notwanted)
- 1.7 0.0 glest-data (notoncd) (notwanted)
- 1.7 0.0 gliese (notoncd) (notwanted)
- 1.7 0.0 gnome-accessibility (notoncd) (notwanted)
- 1.7 0.0 gnome-libs-data (notoncd) (notwanted)
- 1.7 0.0 gnome-shell-extensions (notwanted)
- 1.7 0.0 gnucash-docs (notoncd) (notwanted)
- 1.7 0.0 gobby (notoncd) (notwanted)
- 1.7 0.0 gosa-plugin-connectivity (notoncd) (notwanted)
- 1.7 0.0 gosa-plugin-squid (notoncd) (notwanted)
- 1.7 0.0 guile-1.6-slib (notoncd) (notwanted)
- 1.7 0.0 hibernate (notoncd) (notwanted)
- 1.7 0.0 holotz-castle-data (notoncd) (notwanted)
- 1.7 0.0 hunspell-en-us (notwanted)
- 1.7 0.0 ia32-libs-gtk (notoncd) (notwanted)
- 1.7 0.0 icedove-l10n-es-es (notwanted)
- 1.7 0.0 imlib11 (notoncd) (notwanted)
- 1.7 0.0 jfbterm (notoncd) (notwanted)
- 1.7 0.0 john-data (notoncd) (notwanted)
- 1.7 0.0 kandy (notoncd) (notwanted)
- 1.7 0.0 karm (notoncd) (notwanted)
- 1.7 0.0 kasteroids (notoncd) (notwanted)
- 1.7 0.0 kate-plugins (notoncd) (notwanted)
- 1.7 0.0 kde-full (notoncd) (notwanted)
- 1.7 0.0 kdeadmin-kfile-plugins (notoncd) (notwanted)
- 1.7 0.0 kdeartwork-misc (notoncd) (notwanted)
- 1.7 0.0 kdepim-kfile-plugins (notoncd) (notwanted)
- 1.7 0.0 kdesdk (notoncd) (notwanted)
- 1.7 0.0 kfaxview (notoncd) (notwanted)
- 1.7 0.0 kiconedit (notoncd) (notwanted)
- 1.7 0.0 kitchensync (notoncd) (notwanted)
- 1.7 0.0 kmid (notoncd) (notwanted)
- 1.7 0.0 knewsticker-scripts (notoncd) (notwanted)
- 1.7 0.0 kpovmodeler (notoncd) (notwanted)
- 1.7 0.0 krec (notoncd) (notwanted)
- 1.7 0.0 kscreensaver-xsavers-webcollage (notoncd) (notwanted)
- 1.7 0.0 kuickshow (notoncd) (notwanted)
- 1.7 0.0 lib32gomp1 (notoncd) (notwanted)
- 1.7 0.0 libaqbanking-data (notoncd) (notwanted)
- 1.7 0.0 libavformat54 (notoncd) (notwanted)
- 1.7 0.0 libbind9-0 (notoncd) (notwanted)
- 1.7 0.0 libboost-date-time1.49.0 (notoncd) (notwanted)
- 1.7 0.0 libboost-python-dev (notoncd) (notwanted)
- 1.7 0.0 libboost-system-dev (notoncd) (notwanted)
- 1.7 0.0 libbt (notoncd) (notwanted)
- 1.7 0.0 libcaribou-gtk-module (notwanted)
- 1.7 0.0 libcaribou-gtk3-module (notwanted)
- 1.7 0.0 libcbf0 (notwanted)
- 1.7 0.0 libcegui-mk2-1 (notoncd) (notwanted)
- 1.7 0.0 libcoin60 (notoncd) (notwanted)
- 1.7 0.0 libcommons-net2-java (notoncd) (notwanted)
- 1.7 0.0 libcortado-java (notoncd) (notwanted)
- 1.7 0.0 libcvector2 (notwanted)
- 1.7 0.0 libdbi1 (notwanted)
- 1.7 0.0 libdbus-glib1.0-cil (notwanted)
- 1.7 0.0 libdbus1.0-cil (notwanted)
- 1.7 0.0 libdc1394-22-dev (notoncd) (notwanted)
- 1.7 0.0 libdns22 (notoncd) (notwanted)
- 1.7 0.0 libegl1-mesa (notoncd) (notwanted)
- 1.7 0.0 libestools1.2 (notoncd) (notwanted)
- 1.7 0.0 libfame-0.9-1 (notoncd) (notwanted)
- 1.7 0.0 libfarstream-0.1-0 (notwanted)
- 1.7 0.0 libfbclient2 (notoncd) (notwanted)
- 1.7 0.0 libfdk-aac0 (notoncd) (notwanted)
- 1.7 0.0 libffmpegthumbnailer4 (notoncd) (notwanted)
- 1.7 0.0 libffms2-2 (notoncd) (notwanted)
- 1.7 0.0 libflexdock-java (notoncd) (notwanted)
- 1.7 0.0 libfox-1.6-0 (notoncd) (notwanted)
- 1.7 0.0 libg15-1 (notoncd) (notwanted)
- 1.7 0.0 libg15daemon-client1 (notoncd) (notwanted)
- 1.7 0.0 libg15render1 (notoncd) (notwanted)
- 1.7 0.0 libgeocode-glib0 (notwanted)
- 1.7 0.0 libgeronimo-jms-1.1-spec-java (notoncd) (notwanted)
- 1.7 0.0 libgmime2.6-cil (notwanted)
- 1.7 0.0 libgnome-desktop-2-11 (notoncd) (notwanted)
- 1.7 0.0 libgnome-media-profiles-3.0-0 (notwanted)
- 1.7 0.0 libgnome-vfsmm-2.6-1c2a (notoncd) (notwanted)
- 1.7 0.0 libgnome32 (notoncd) (notwanted)
- 1.7 0.0 libgnomemm-2.6-1c2 (notoncd) (notwanted)
- 1.7 0.0 libgnomesupport0 (notoncd) (notwanted)
- 1.7 0.0 libgnomeui32 (notoncd) (notwanted)
- 1.7 0.0 libgnomeuimm-2.6-1c2a (notoncd) (notwanted)
- 1.7 0.0 libgnorba27 (notoncd) (notwanted)
- 1.7 0.0 libgnutls-openssl27 (notoncd) (notwanted)
- 1.7 0.0 libgtk-vnc-2.0-0 (notwanted)
- 1.7 0.0 libgvnc-1.0-0 (notwanted)
- 1.7 0.0 libindex0 (notoncd) (notwanted)
- 1.7 0.0 libisc11 (notoncd) (notwanted)
- 1.7 0.0 libisccc0 (notoncd) (notwanted)
- 1.7 0.0 libisccfg1 (notoncd) (notwanted)
- 1.7 0.0 libjeuclid-core-java (notoncd) (notwanted)
- 1.7 0.0 libjgrapht0.8-java (notoncd) (notwanted)
- 1.7 0.0 libjgraphx-java (notoncd) (notwanted)
- 1.7 0.0 libjhdf5-java (notoncd) (notwanted)
- 1.7 0.0 libjrosetta-java (notoncd) (notwanted)
- 1.7 0.0 libjs-prototype (notoncd) (notwanted)
- 1.7 0.0 libjs-yui (notoncd) (notwanted)
- 1.7 0.0 libkadm5clnt-mit8 (notwanted)
- 1.7 0.0 libkadm5srv-mit8 (notwanted)
- 1.7 0.0 libkdb5-6 (notwanted)
- 1.7 0.0 libkiten1 (notoncd) (notwanted)
- 1.7 0.0 libktorrent2 (notoncd) (notwanted)
- 1.7 0.0 libkwebkit1 (notoncd) (notwanted)
- 1.7 0.0 liblaf-plugin-java (notoncd) (notwanted)
- 1.7 0.0 liblwres9 (notoncd) (notwanted)
- 1.7 0.0 libmatio0 (notoncd) (notwanted)
- 1.7 0.0 libmjpegtools0 (notoncd) (notwanted)
- 1.7 0.0 libmozjs16d (notoncd) (notwanted)
- 1.7 0.0 libmozjs18d (notoncd) (notwanted)
- 1.7 0.0 libmxml1 (notoncd) (notwanted)
- 1.7 0.0 libnet6-1.3-0 (notoncd) (notwanted)
- 1.7 0.0 libnss-winbind (notwanted)
- 1.7 0.0 libobby-0.4-1 (notoncd) (notwanted)
- 1.7 0.0 libopenipmi0 (notoncd) (notwanted)
- 1.7 0.0 libostyle1c2 (notoncd) (notwanted)
- 1.7 0.0 libparted1.8-12 (notoncd) (notwanted)
- 1.7 0.0 libpt-1.10.10 (notoncd) (notwanted)
- 1.7 0.0 libqt3-i18n (notoncd) (notwanted)
- 1.7 0.0 libraw5 (notwanted)
- 1.7 0.0 libreadline-ruby1.8 (notoncd) (notwanted)
- 1.7 0.0 libreoffice-help-en-us (notoncd) (notwanted)
- 1.7 0.0 libreoffice-style-crystal (notwanted)
- 1.7 0.0 librest-extras-0.7-0 (notwanted)
- 1.7 0.0 librpmbuild3 (notwanted)
- 1.7 0.0 librpmsign1 (notwanted)
- 1.7 0.0 libsac-java (notoncd) (notwanted)
- 1.7 0.0 libsctp1 (notoncd) (notwanted)
- 1.7 0.0 libskinlf-java (notoncd) (notwanted)
- 1.7 0.0 libsocialweb0 (notwanted)
- 1.7 0.0 libsox-fmt-ao (notoncd) (notwanted)
- 1.7 0.0 libsox-fmt-ffmpeg (notoncd) (notwanted)
- 1.7 0.0 libssl-doc (notoncd) (notwanted)
- 1.7 0.0 libtelepathy-qt4-0 (notoncd) (notwanted)
- 1.7 0.0 libvamp-sdk2 (notoncd) (notwanted)
- 1.7 0.0 libwine-bin (notoncd) (notwanted)
- 1.7 0.0 libwine-gecko-1.4 (notoncd) (notwanted)
- 1.7 0.0 libwv-1.2-4 (notoncd) (notwanted)
- 1.7 0.0 libx11-doc (notwanted)
- 1.7 0.0 libx264-124 (notoncd) (notwanted)
- 1.7 0.0 libx264-132 (notoncd) (notwanted)
- 1.7 0.0 libxfce4menu-0.1-0 (notoncd) (notwanted)
- 1.7 0.0 libxfontp1 (notoncd) (notwanted)
- 1.7 0.0 libxine2 (notwanted)
- 1.7 0.0 libxine2-ffmpeg (notwanted)
- 1.7 0.0 libxine2-misc-plugins (notwanted)
- 1.7 0.0 libxine2-x (notwanted)
- 1.7 0.0 libxklavier12 (notoncd) (notwanted)
- 1.7 0.0 libxmlrpc-core-c3 (notoncd) (notwanted)
- 1.7 0.0 linphone-common (notoncd) (notwanted)
- 1.7 0.0 linux-headers-3.2.0-0.bpo.4-common (notoncd) (notwanted)
- 1.7 0.0 linux-image-686-pae (notoncd) (notwanted)
- 1.7 0.0 linux-kbuild-2.6.26 (notoncd) (notwanted)
- 1.7 0.0 ltrace (notoncd) (notwanted)
- 1.7 0.0 lv (notoncd) (notwanted)
- 1.7 0.0 lxde
- 1.7 0.0 lxde-core (notwanted)
- 1.7 0.0 manpages-fr-extra
- 1.7 0.0 manpages-ja (notoncd) (notwanted)
- 1.7 0.0 manpages-ja-dev (notoncd) (notwanted)
- 1.7 0.0 massxpert (notoncd) (notwanted)
- 1.7 0.0 massxpert-data (notoncd) (notwanted)
- 1.7 0.0 mythes-en-us (notwanted)
- 1.7 0.0 nuvola-icon-theme (notoncd) (notwanted)
- 1.7 0.0 openjdk-6-doc (notoncd) (notwanted)
- 1.7 0.0 openoffice.org-thesaurus-it
- 1.7 0.0 postgresql (notwanted)
- 1.7 0.0 printconf (notoncd) (notwanted)
- 1.7 0.0 python-aeidon (notoncd) (notwanted)
- 1.7 0.0 python-oauth (notoncd) (notwanted)
- 1.7 0.0 python-qt4-common (notoncd) (notwanted)
- 1.7 0.0 python-sepolgen (notoncd) (notwanted)
- 1.7 0.0 python-urwid (notoncd) (notwanted)
- 1.7 0.0 python-wadllib (notoncd) (notwanted)
- 1.7 0.0 qtpfsgui (notoncd) (notwanted)
- 1.7 0.0 rasmol (notwanted)
- 1.7 0.0 smc-data (notoncd) (notwanted)
- 1.7 0.0 sound-theme-freedesktop (notwanted)
- 1.7 0.0 task-laptop (notoncd) (notwanted)
- 1.7 0.0 texlive-fonts-extra-doc (notoncd) (notwanted)
- 1.7 0.0 texlive-latex-extra-doc (notwanted)
- 1.7 0.0 texlive-science (notoncd) (notwanted)
- 1.7 0.0 texlive-science-doc (notoncd) (notwanted)
- 1.7 0.0 treeviewx (notoncd) (notwanted)
- 1.7 0.0 tremulous-data (notoncd) (notwanted)
- 1.7 0.0 trigger-rally-data (notoncd) (notwanted)
- 1.7 0.0 ttf-arabeyes (notoncd) (notwanted)
- 1.7 0.0 ttf-marvosym (notwanted)
- 1.7 0.0 virtualbox-ose-guest-utils (notoncd) (notwanted)
- 1.7 0.0 xfce4-artwork (notoncd) (notwanted)
- 1.7 0.0 xfce4-goodies (notoncd) (notwanted)
- 1.7 0.0 xfce4-power-manager-data (notoncd) (notwanted)
- 1.7 0.0 xfig-libs (notoncd) (notwanted)
- 1.7 0.0 xfonts-terminus (notoncd) (notwanted)
- 1.7 0.0 xprint-common (notoncd) (notwanted)
- 1.7 0.0 yale (notoncd) (notwanted)
- 1.3 0.0 alsa-source (notoncd) (notwanted)
- 1.3 0.0 altree (notoncd) (notwanted)
- 1.3 0.0 amarok-konqsidebar (notoncd) (notwanted)
- 1.3 0.0 amule-common (notoncd) (notwanted)
- 1.3 0.0 apcupsd-doc (notoncd) (notwanted)
- 1.3 0.0 apper-data (notoncd) (notwanted)
- 1.3 0.0 atlantikdesigner (notoncd) (notwanted)
- 1.3 0.0 avidemux-plugins (notoncd) (notwanted)
- 1.3 0.0 axiom-doc (notoncd) (notwanted)
- 1.3 0.0 bochsbios (notoncd) (notwanted)
- 1.3 0.0 bumprace-data (notoncd) (notwanted)
- 1.3 0.0 bygfoot-data (notoncd) (notwanted)
- 1.3 0.0 carmetal (notoncd) (notwanted)
- 1.3 0.0 checkpolicy (notoncd) (notwanted)
- 1.3 0.0 childsplay-alphabet-sounds-ca (notoncd) (notwanted)
- 1.3 0.0 chromium-bsu-data (notoncd) (notwanted)
- 1.3 0.0 cramfsprogs (notoncd) (notwanted)
- 1.3 0.0 cuyo-data (notoncd) (notwanted)
- 1.3 0.0 dcoprss (notoncd) (notwanted)
- 1.3 0.0 default-jdk-doc (notoncd) (notwanted)
- 1.3 0.0 developers-reference (notoncd) (notwanted)
- 1.3 0.0 dict-vera (notoncd) (notwanted)
- 1.3 0.0 dnsmasq (notoncd) (notwanted)
- 1.3 0.0 doc-debian-es (notoncd) (notwanted)
- 1.3 0.0 doc-debian-fr (notoncd) (notwanted)
- 1.3 0.0 doc-linux-fr-text (notoncd) (notwanted)
- 1.3 0.0 docbook2x (notoncd) (notwanted)
- 1.3 0.0 elinks-data (notoncd) (notwanted)
- 1.3 0.0 emacs21-bin-common (notoncd) (notwanted)
- 1.3 0.0 emacs21-common (notoncd) (notwanted)
- 1.3 0.0 eyesapplet (notoncd) (notwanted)
- 1.3 0.0 fglrx-glx (notoncd) (notwanted)
- 1.3 0.0 fortunes (notoncd) (notwanted)
- 1.3 0.0 freeipmi-common (notwanted)
- 1.3 0.0 freeipmi-tools (notwanted)
- 1.3 0.0 freemat-help (notoncd) (notwanted)
- 1.3 0.0 freenx (notoncd) (notwanted)
- 1.3 0.0 gap (notoncd) (notwanted)
- 1.3 0.0 gap-doc (notoncd) (notwanted)
- 1.3 0.0 gap-libs (notoncd) (notwanted)
- 1.3 0.0 gap-online-help (notoncd) (notwanted)
- 1.3 0.0 gap-prim-groups (notoncd) (notwanted)
- 1.3 0.0 gap-small-groups (notoncd) (notwanted)
- 1.3 0.0 gap-trans-groups (notoncd) (notwanted)
- 1.3 0.0 gcc-3.3-base (notoncd) (notwanted)
- 1.3 0.0 gcc-3.4-base (notoncd) (notwanted)
- 1.3 0.0 gcc-4.4-locales (notoncd) (notwanted)
- 1.3 0.0 gcj-4.2-base (notoncd) (notwanted)
- 1.3 0.0 gcj-4.6-base (notoncd) (notwanted)
- 1.3 0.0 gcj-4.6-jre-lib (notoncd) (notwanted)
- 1.3 0.0 gcj-4.7-jre (notoncd) (notwanted)
- 1.3 0.0 gcrystal (notoncd) (notwanted)
- 1.3 0.0 geogebra-installer-linex (notoncd) (notwanted)
- 1.3 0.0 glabels-data (notoncd) (notwanted)
- 1.3 0.0 gmt (notoncd) (notwanted)
- 1.3 0.0 gnome-dust-icon-theme (notoncd) (notwanted)
- 1.3 0.0 gnome-extra-icons (notoncd) (notwanted)
- 1.3 0.0 gnome-human-icon-theme (notoncd) (notwanted)
- 1.3 0.0 gnome-icon-theme-blankon (notoncd) (notwanted)
- 1.3 0.0 gnome-icon-theme-hydroxygen (notoncd) (notwanted)
- 1.3 0.0 gnome-icon-theme-suede (notoncd) (notwanted)
- 1.3 0.0 gnome-illustrious-icon-theme (notoncd) (notwanted)
- 1.3 0.0 gnome-noble-icon-theme (notoncd) (notwanted)
- 1.3 0.0 gnome-wine-icon-theme (notoncd) (notwanted)
- 1.3 0.0 gnome-wise-icon-theme (notoncd) (notwanted)
- 1.3 0.0 gnustep-base-common (notoncd) (notwanted)
- 1.3 0.0 gpsdrive-data (notoncd) (notwanted)
- 1.3 0.0 grass-doc (notoncd) (notwanted)
- 1.3 0.0 grub2 (notoncd) (notwanted)
- 1.3 0.0 hardinfo (notoncd) (notwanted)
- 1.3 0.0 hyphen-de (notwanted)
- 1.3 0.0 icedove-l10n-nb-no (notoncd) (notwanted)
- 1.3 0.0 icedove-locale-nb (notoncd) (notwanted)
- 1.3 0.0 irb1.8 (notoncd) (notwanted)
- 1.3 0.0 italc-client (notoncd) (notwanted)
- 1.3 0.0 italc-master (notoncd) (notwanted)
- 1.3 0.0 itcl3 (notoncd) (notwanted)
- 1.3 0.0 itzks-systems-config (notoncd) (notwanted)
- 1.3 0.0 ivy (notoncd) (notwanted)
- 1.3 0.0 josm-plugins (notoncd) (notwanted)
- 1.3 0.0 juke (notoncd) (notwanted)
- 1.3 0.0 junior-math (notoncd) (notwanted)
- 1.3 0.0 junior-tasks (notoncd) (notwanted)
- 1.3 0.0 k3b-extrathemes (notoncd) (notwanted)
- 1.3 0.0 kaudiocreator (notoncd) (notwanted)
- 1.3 0.0 kball-data (notoncd) (notwanted)
- 1.3 0.0 kcoloredit (notoncd) (notwanted)
- 1.3 0.0 kde-core (notoncd) (notwanted)
- 1.3 0.0 kde-icons-oxygen (notoncd) (notwanted)
- 1.3 0.0 kdeaddons (notoncd) (notwanted)
- 1.3 0.0 kdelibs (notoncd) (notwanted)
- 1.3 0.0 kdemultimedia-kappfinder-data (notoncd) (notwanted)
- 1.3 0.0 kdemultimedia-kfile-plugins (notoncd) (notwanted)
- 1.3 0.0 kdepimlibs5 (notoncd) (notwanted)
- 1.3 0.0 kdevelop-data (notwanted)
- 1.3 0.0 kdiff3-doc (notoncd) (notwanted)
- 1.3 0.0 kicker-applets (notoncd) (notwanted)
- 1.3 0.0 kmoon (notoncd) (notwanted)
- 1.3 0.0 knewsticker (notoncd) (notwanted)
- 1.3 0.0 kodo (notoncd) (notwanted)
- 1.3 0.0 koffice-data (notoncd) (notwanted)
- 1.3 0.0 kompozer-l10n-es-es (notoncd) (notwanted)
- 1.3 0.0 kpf (notoncd) (notwanted)
- 1.3 0.0 krita-data (notwanted)
- 1.3 0.0 kword-data (notoncd) (notwanted)
- 1.3 0.0 latex-cjk-chinese-arphic-bkai00mp (notoncd) (notwanted)
- 1.3 0.0 lbreakout2-data (notoncd) (notwanted)
- 1.3 0.0 lib32nss-mdns (notoncd) (notwanted)
- 1.3 0.0 lib3ds-1-3 (notoncd) (notwanted)
- 1.3 0.0 libabiword-2.9 (notoncd) (notwanted)
- 1.3 0.0 libaften0 (notoncd) (notwanted)
- 1.3 0.0 libarpack2 (notoncd) (notwanted)
- 1.3 0.0 libasm2-java (notoncd) (notwanted)
- 1.3 0.0 libaspectj-java (notoncd) (notwanted)
- 1.3 0.0 libbctsp-java (notoncd) (notwanted)
- 1.3 0.0 libberkeleydb-perl (notoncd) (notwanted)
- 1.3 0.0 libbfb0 (notoncd) (notwanted)
- 1.3 0.0 libbison-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-date-time1.42-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-filesystem-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-filesystem1.39.0 (notoncd) (notwanted)
- 1.3 0.0 libboost-graph-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-iostreams1.39.0 (notoncd) (notwanted)
- 1.3 0.0 libboost-iostreams1.42-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-program-options1.39.0 (notoncd) (notwanted)
- 1.3 0.0 libboost-program-options1.42-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-python1.39.0 (notoncd) (notwanted)
- 1.3 0.0 libboost-python1.42-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-regex-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-regex1.39.0 (notoncd) (notwanted)
- 1.3 0.0 libboost-regex1.42-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-serialization-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-serialization1.42-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-signals-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-system1.39.0 (notoncd) (notwanted)
- 1.3 0.0 libboost-system1.42-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-test-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-test1.42.0 (notoncd) (notwanted)
- 1.3 0.0 libboost-thread1.42-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-wave-dev (notoncd) (notwanted)
- 1.3 0.0 libboost-wave1.42.0 (notoncd) (notwanted)
- 1.3 0.0 libcamd2.2.0 (notoncd) (notwanted)
- 1.3 0.0 libccgnu2-1.7-0 (notoncd) (notwanted)
- 1.3 0.0 libccolamd2.7.1 (notoncd) (notwanted)
- 1.3 0.0 libcelt0 (notoncd) (notwanted)
- 1.3 0.0 libcglib-java (notoncd) (notwanted)
- 1.3 0.0 libcholmod1.7.1 (notoncd) (notwanted)
- 1.3 0.0 libcommons-collections-java (notoncd) (notwanted)
- 1.3 0.0 libcrypto++8 (notoncd) (notwanted)
- 1.3 0.0 libct4 (notoncd) (notwanted)
- 1.3 0.0 libcucul-dev (notoncd) (notwanted)
- 1.3 0.0 libcxsparse2.2.3 (notoncd) (notwanted)
- 1.3 0.0 libdb4.6-java (notoncd) (notwanted)
- 1.3 0.0 libdebconf-kde0 (notoncd) (notwanted)
- 1.3 0.0 libdesktop-agnostic-data (notoncd) (notwanted)
- 1.3 0.0 libdnet (notoncd) (notwanted)
- 1.3 0.0 libeasymock-java (notoncd) (notwanted)
- 1.3 0.0 libegl1-mesa-drivers (notoncd) (notwanted)
- 1.3 0.0 libehcache-java (notoncd) (notwanted)
- 1.3 0.0 libepub0 (notoncd) (notwanted)
- 1.3 0.0 libestools2.0 (notoncd) (notwanted)
- 1.3 0.0 libevince1 (notoncd) (notwanted)
- 1.3 0.0 libfelix-bundlerepository-java (notoncd) (notwanted)
- 1.3 0.0 libfelix-gogo-command-java (notoncd) (notwanted)
- 1.3 0.0 libfelix-gogo-runtime-java (notoncd) (notwanted)
- 1.3 0.0 libfelix-gogo-shell-java (notoncd) (notwanted)
- 1.3 0.0 libfelix-osgi-obr-java (notoncd) (notwanted)
- 1.3 0.0 libfelix-shell-java (notoncd) (notwanted)
- 1.3 0.0 libfelix-utils-java (notoncd) (notwanted)
- 1.3 0.0 libfonts-java (notoncd) (notwanted)
- 1.3 0.0 libformula-java (notoncd) (notwanted)
- 1.3 0.0 libfreefem0 (notoncd) (notwanted)
- 1.3 0.0 libfsplib0 (notoncd) (notwanted)
- 1.3 0.0 libgammu-i18n (notoncd) (notwanted)
- 1.3 0.0 libgammu7 (notoncd) (notwanted)
- 1.3 0.0 libgbm1 (notoncd) (notwanted)
- 1.3 0.0 libgcj12 (notoncd) (notwanted)
- 1.3 0.0 libgcj13-awt (notoncd) (notwanted)
- 1.3 0.0 libgcj7-jar (notoncd) (notwanted)
- 1.3 0.0 libgcj8-1 (notoncd) (notwanted)
- 1.3 0.0 libgcj8-1-awt (notoncd) (notwanted)
- 1.3 0.0 libgcj8-jar (notoncd) (notwanted)
- 1.3 0.0 libgda3-bin (notoncd) (notwanted)
- 1.3 0.0 libgdk-pixbuf2 (notoncd) (notwanted)
- 1.3 0.0 libgeos-3.3.3 (notoncd) (notwanted)
- 1.3 0.0 libgeronimo-validation-1.0-spec-java (notoncd) (notwanted)
- 1.3 0.0 libgexiv2-1 (notwanted)
- 1.3 0.0 libgmime2.2a-cil (notoncd) (notwanted)
- 1.3 0.0 libgmt4 (notoncd) (notwanted)
- 1.3 0.0 libgnomevfs2-bin (notoncd) (notwanted)
- 1.3 0.0 libgnustep-base1.20 (notoncd) (notwanted)
- 1.3 0.0 libgnutlsxx27 (notoncd) (notwanted)
- 1.3 0.0 libgpmg1 (notoncd) (notwanted)
- 1.3 0.0 libgsmme1c2a (notoncd) (notwanted)
- 1.3 0.0 libgsmsd7 (notoncd) (notwanted)
- 1.3 0.0 libgtkhex0 (notoncd) (notwanted)
- 1.3 0.0 libgtkhtml3.8-15 (notoncd) (notwanted)
- 1.3 0.0 libgts-0.7-5 (notoncd) (notwanted)
- 1.3 0.0 libgupnp-dlna-1.0-2 (notwanted)
- 1.3 0.0 libgwrap-runtime2 (notoncd) (notwanted)
- 1.3 0.0 libhippocanvas-1-0 (notwanted)
- 1.3 0.0 libicu4j-4.4-java (notoncd) (notwanted)
- 1.3 0.0 libieee1284-3-dev (notoncd) (notwanted)
- 1.3 0.0 libimdi0 (notwanted)
- 1.3 0.0 libipmiconsole2 (notwanted)
- 1.3 0.0 libipmidetect0 (notwanted)
- 1.3 0.0 libitalc (notoncd) (notwanted)
- 1.3 0.0 libjack-dev (notoncd) (notwanted)
- 1.3 0.0 libjasper-dev (notoncd) (notwanted)
- 1.3 0.0 libjetty8-java (notoncd) (notwanted)
- 1.3 0.0 libjgoodies-common-java (notoncd) (notwanted)
- 1.3 0.0 libjgraph-java (notoncd) (notwanted)
- 1.3 0.0 libjpf-java (notoncd) (notwanted)
- 1.3 0.0 libjs-mochikit (notoncd) (notwanted)
- 1.3 0.0 libjs-sphinxdoc (notwanted)
- 1.3 0.0 libjs-underscore (notwanted)
- 1.3 0.0 libjsr107cache-java (notoncd) (notwanted)
- 1.3 0.0 libjudydebian1 (notoncd) (notwanted)
- 1.3 0.0 libkasten1controllers1 (notwanted)
- 1.3 0.0 libkasten1core1 (notwanted)
- 1.3 0.0 libkasten1gui1 (notwanted)
- 1.3 0.0 libkasten1okteta1controllers1 (notwanted)
- 1.3 0.0 libkasten1okteta1core1 (notwanted)
- 1.3 0.0 libkasten1okteta1gui1 (notwanted)
- 1.3 0.0 libknotificationitem-1-1 (notoncd) (notwanted)
- 1.3 0.0 libkxml2-java (notoncd) (notwanted)
- 1.3 0.0 liblavfile-2.0-0 (notoncd) (notwanted)
- 1.3 0.0 liblavjpeg-2.0-0 (notoncd) (notwanted)
- 1.3 0.0 liblavplay-2.0-0 (notoncd) (notwanted)
- 1.3 0.0 liblayout-java (notoncd) (notwanted)
- 1.3 0.0 libldap-2.3-0 (notoncd) (notwanted)
- 1.3 0.0 libldb0 (notoncd) (notwanted)
- 1.3 0.0 liblinphone3 (notoncd) (notwanted)
- 1.3 0.0 libloader-java (notoncd) (notwanted)
- 1.3 0.0 liblwp-useragent-determined-perl (notwanted)
- 1.3 0.0 libmail-imapclient-perl (notwanted)
- 1.3 0.0 libmarble4 (notoncd) (notwanted)
- 1.3 0.0 libmath-calc-units-perl (notwanted)
- 1.3 0.0 libmdc2 (notoncd) (notwanted)
- 1.3 0.0 libmemcached10 (notwanted)
- 1.3 0.0 libmjpegutils-2.0-0 (notoncd) (notwanted)
- 1.3 0.0 libmockobjects-java (notoncd) (notwanted)
- 1.3 0.0 libmozjs13d (notoncd) (notwanted)
- 1.3 0.0 libmozjs14d (notoncd) (notwanted)
- 1.3 0.0 libmozjs21d (notoncd) (notwanted)
- 1.3 0.0 libmozjs3d (notoncd) (notwanted)
- 1.3 0.0 libmpeg2encpp-2.0-0 (notoncd) (notwanted)
- 1.3 0.0 libmpeg3-dev (notoncd) (notwanted)
- 1.3 0.0 libmplex2-2.0-0 (notoncd) (notwanted)
- 1.3 0.0 libmulticobex1 (notoncd) (notwanted)
- 1.3 0.0 libnagios-plugin-perl (notwanted)
- 1.3 0.0 libnet-smtp-tls-perl (notwanted)
- 1.3 0.0 libnids1.21 (notoncd) (notwanted)
- 1.3 0.0 libnifti2 (notoncd) (notwanted)
- 1.3 0.0 libnm-util0 (notoncd) (notwanted)
- 1.3 0.0 libnss-db (notoncd) (notwanted)
- 1.3 0.0 libobexftp0 (notoncd) (notwanted)
- 1.3 0.0 libobjc2 (notoncd) (notwanted)
- 1.3 0.0 libobrender27 (notwanted)
- 1.3 0.0 libobt0 (notwanted)
- 1.3 0.0 libodbcinstq4-1 (notoncd) (notwanted)
- 1.3 0.0 liboggkate1 (notoncd) (notwanted)
- 1.3 0.0 libokteta1core1 (notwanted)
- 1.3 0.0 libokteta1gui1 (notwanted)
- 1.3 0.0 liboobs-1-5 (notoncd) (notwanted)
- 1.3 0.0 libopenvg1-mesa (notoncd) (notwanted)
- 1.3 0.0 libosgi-compendium-java (notoncd) (notwanted)
- 1.3 0.0 libosgi-core-java (notoncd) (notwanted)
- 1.3 0.0 libosgi-foundation-ee-java (notoncd) (notwanted)
- 1.3 0.0 libosip2-4 (notoncd) (notwanted)
- 1.3 0.0 libosmgpsmap2 (notoncd) (notwanted)
- 1.3 0.0 libpackagekit-qt2-2 (notoncd) (notwanted)
- 1.3 0.0 libpam0g-dev (notoncd) (notwanted)
- 1.3 0.0 libparted1.8-10 (notoncd) (notwanted)
- 1.3 0.0 libpentaho-reporting-flow-engine-java (notoncd) (notwanted)
- 1.3 0.0 libpixie-java (notoncd) (notwanted)
- 1.3 0.0 libpqxx-3.0 (notoncd) (notwanted)
- 1.3 0.0 libprotobuf6 (notoncd) (notwanted)
- 1.3 0.0 libqpdf3 (notoncd) (notwanted)
- 1.3 0.0 libqpol1 (notoncd) (notwanted)
- 1.3 0.0 libqrupdate1 (notoncd) (notwanted)
- 1.3 0.0 libreadline5-dev (notoncd) (notwanted)
- 1.3 0.0 libreoffice-style-hicontrast (notoncd) (notwanted)
- 1.3 0.0 librepository-java (notoncd) (notwanted)
- 1.3 0.0 librplay3 (notoncd) (notwanted)
- 1.3 0.0 librss1 (notoncd) (notwanted)
- 1.3 0.0 libsane-extras-dev (notoncd) (notwanted)
- 1.3 0.0 libservlet3.0-java (notoncd) (notwanted)
- 1.3 0.0 libsetools-tcl (notoncd) (notwanted)
- 1.3 0.0 libsofia-sip-ua-glib3 (notwanted)
- 1.3 0.0 libsofia-sip-ua0 (notwanted)
- 1.3 0.0 libsoqt4-20 (notoncd) (notwanted)
- 1.3 0.0 libsox-fmt-all (notoncd) (notwanted)
- 1.3 0.0 libsprng2 (notoncd) (notwanted)
- 1.3 0.0 libstatgrab6 (notoncd) (notwanted)
- 1.3 0.0 libsunflow-java (notoncd) (notwanted)
- 1.3 0.0 libswfdec-0.6-90 (notoncd) (notwanted)
- 1.3 0.0 libswresample0 (notoncd) (notwanted)
- 1.3 0.0 libtalloc-dev (notoncd) (notwanted)
- 1.3 0.0 libtelepathy-farstream2 (notwanted)
- 1.3 0.0 libtevent0 (notwanted)
- 1.3 0.0 libtinyxml2.6.2 (notoncd) (notwanted)
- 1.3 0.0 libtomcat7-java (notoncd) (notwanted)
- 1.3 0.0 libtorch3c2 (notoncd) (notwanted)
- 1.3 0.0 libtotem-plparser12 (notoncd) (notwanted)
- 1.3 0.0 libtracker-extract-0.14-0 (notwanted)
- 1.3 0.0 libtracker-miner-0.14-0 (notwanted)
- 1.3 0.0 libttf2 (notoncd) (notwanted)
- 1.3 0.0 liburiparser1 (notoncd) (notwanted)
- 1.3 0.0 libuu0 (notoncd) (notwanted)
- 1.3 0.0 libv4l-dev (notoncd) (notwanted)
- 1.3 0.0 libwayland0 (notoncd) (notwanted)
- 1.3 0.0 libwireshark-data (notwanted)
- 1.3 0.0 libwiretap2 (notwanted)
- 1.3 0.0 libwoodstox-java (notoncd) (notwanted)
- 1.3 0.0 libworldwind-java (notoncd) (notwanted)
- 1.3 0.0 libwsutil2 (notwanted)
- 1.3 0.0 libxbase2.0-0 (notoncd) (notwanted)
- 1.3 0.0 libxdo1 (notoncd) (notwanted)
- 1.3 0.0 libxenstore3.0 (notoncd) (notwanted)
- 1.3 0.0 libxine1-doc (notoncd) (notwanted)
- 1.3 0.0 libxine2-plugins (notwanted)
- 1.3 0.0 libxml-java (notoncd) (notwanted)
- 1.3 0.0 libxmlrpc-c3 (notoncd) (notwanted)
- 1.3 0.0 libxprintapputil1 (notoncd) (notwanted)
- 1.3 0.0 libxprintutil1 (notoncd) (notwanted)
- 1.3 0.0 libxstream-java (notoncd) (notwanted)
- 1.3 0.0 libxxf86vm-dev (notoncd) (notwanted)
- 1.3 0.0 libzipios++0c2a (notoncd) (notwanted)
- 1.3 0.0 linex-gdm-laptops (notoncd) (notwanted)
- 1.3 0.0 linux-headers-2.6.26-2-686 (notoncd) (notwanted)
- 1.3 0.0 linux-headers-2.6.26-2-common (notoncd) (notwanted)
- 1.3 0.0 linux-headers-2.6.39-bpo.2-common (notoncd) (notwanted)
- 1.3 0.0 linux-headers-3.2.0-0.bpo.4-amd64 (notoncd) (notwanted)
- 1.3 0.0 linux-image-486 (notoncd) (notwanted)
- 1.3 0.0 linux-kbuild-2.6.39 (notoncd) (notwanted)
- 1.3 0.0 lletters-media (notoncd) (notwanted)
- 1.3 0.0 lsb (notoncd) (notwanted)
- 1.3 0.0 lsb-cxx (notoncd) (notwanted)
- 1.3 0.0 lsb-desktop (notoncd) (notwanted)
- 1.3 0.0 lsb-graphics (notoncd) (notwanted)
- 1.3 0.0 lsb-languages (notoncd) (notwanted)
- 1.3 0.0 lsb-multimedia (notoncd) (notwanted)
- 1.3 0.0 lsb-printing (notoncd) (notwanted)
- 1.3 0.0 lsb-security (notoncd) (notwanted)
- 1.3 0.0 ltsp-docs (notwanted)
- 1.3 0.0 madbomber-data (notoncd) (notwanted)
- 1.3 0.0 manpages-es-extra
- 1.3 0.0 maxima-src (notoncd) (notwanted)
- 1.3 0.0 maxima-test (notoncd) (notwanted)
- 1.3 0.0 mindi-busybox (notoncd) (notwanted)
- 1.3 0.0 moreutils (notoncd) (notwanted)
- 1.3 0.0 mozilla-noscript (notoncd) (notwanted)
- 1.3 0.0 mpeglib (notoncd) (notwanted)
- 1.3 0.0 mueller7-dict (notoncd) (notwanted)
- 1.3 0.0 myspell-ru (notwanted)
- 1.3 0.0 mythes-de (notwanted)
- 1.3 0.0 nagios-plugins-contrib (notwanted)
- 1.3 0.0 noatun-plugins (notoncd) (notwanted)
- 1.3 0.0 ntp-doc (notoncd) (notwanted)
- 1.3 0.0 nxlibs (notoncd) (notwanted)
- 1.3 0.0 obexftp (notoncd) (notwanted)
- 1.3 0.0 octave (notoncd) (notwanted)
- 1.3 0.0 octave2.1 (notoncd) (notwanted)
- 1.3 0.0 octave3.2-common (notoncd) (notwanted)
- 1.3 0.0 openoffice.org-help-it
- 1.3 0.0 openoffice.org-pdfimport (notoncd) (notwanted)
- 1.3 0.0 openoffice.org-style-hicontrast (notoncd) (notwanted)
- 1.3 0.0 openoffice.org-style-industrial (notoncd) (notwanted)
- 1.3 0.0 openstreetmap-map-icons-square (notoncd) (notwanted)
- 1.3 0.0 openttd-data (notoncd) (notwanted)
- 1.3 0.0 openttd-opengfx (notoncd) (notwanted)
- 1.3 0.0 openttd-openmsx (notoncd) (notwanted)
- 1.3 0.0 otf-freefont (notoncd) (notwanted)
- 1.3 0.0 pgadmin3-data (notoncd) (notwanted)
- 1.3 0.0 php-doc (notoncd) (notwanted)
- 1.3 0.0 piklab (notoncd) (notwanted)
- 1.3 0.0 pinentry-qt (notoncd) (notwanted)
- 1.3 0.0 postgresql-doc (notoncd) (notwanted)
- 1.3 0.0 postgresql-doc-9.1 (notoncd) (notwanted)
- 1.3 0.0 proll (notoncd) (notwanted)
- 1.3 0.0 python-all (notoncd) (notwanted)
- 1.3 0.0 python-eyed3 (notoncd) (notwanted)
- 1.3 0.0 python-gtop (notoncd) (notwanted)
- 1.3 0.0 python-launchpadlib (notoncd) (notwanted)
- 1.3 0.0 python-mediaprofiles (notoncd) (notwanted)
- 1.3 0.0 python-metacity (notoncd) (notwanted)
- 1.3 0.0 python-sss (notwanted)
- 1.3 0.0 python-subversion (notoncd) (notwanted)
- 1.3 0.0 python-totem-plparser (notoncd) (notwanted)
- 1.3 0.0 r-base-dev (notoncd) (notwanted)
- 1.3 0.0 r-doc-html (notoncd) (notwanted)
- 1.3 0.0 rakarrack (notoncd) (notwanted)
- 1.3 0.0 rdoc1.8 (notoncd) (notwanted)
- 1.3 0.0 remmina-common (notoncd) (notwanted)
- 1.3 0.0 samba-tools (notoncd) (notwanted)
- 1.3 0.0 scilab-doc (notoncd) (notwanted)
- 1.3 0.0 scribus-template (notoncd) (notwanted)
- 1.3 0.0 setools (notoncd) (notwanted)
- 1.3 0.0 shotwell-common (notwanted)
- 1.3 0.0 snd (notoncd) (notwanted)
- 1.3 0.0 sng (notoncd) (notwanted)
- 1.3 0.0 spotify-client (notoncd) (notwanted)
- 1.3 0.0 stardict-common (notoncd) (notwanted)
- 1.3 0.0 synfig-examples (notoncd) (notwanted)
- 1.3 0.0 systemimager-common (notoncd) (notwanted)
- 1.3 0.0 tesseract-ocr-eng (notoncd) (notwanted)
- 1.3 0.0 tex4ht-common (notoncd) (notwanted)
- 1.3 0.0 texlive-generic-extra (notoncd) (notwanted)
- 1.3 0.0 texlive-humanities (notoncd) (notwanted)
- 1.3 0.0 texlive-humanities-doc (notoncd) (notwanted)
- 1.3 0.0 texlive-lang-french (notoncd) (notwanted)
- 1.3 0.0 texlive-publishers (notoncd) (notwanted)
- 1.3 0.0 texmacs-extra-fonts (notoncd) (notwanted)
- 1.3 0.0 tinymce (notoncd) (notwanted)
- 1.3 0.0 tkgate-data (notoncd) (notwanted)
- 1.3 0.0 tkgate-doc (notoncd) (notwanted)
- 1.3 0.0 tklib (notoncd) (notwanted)
- 1.3 0.0 transcode-doc (notoncd) (notwanted)
- 1.3 0.0 trigger (notoncd) (notwanted)
- 1.3 0.0 ttf-aenigma (notoncd) (notwanted)
- 1.3 0.0 ttf-ecofont (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-artemisia (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-baskerville (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-bodoni-classic (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-didot (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-didot-classic (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-gazis (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-neohellenic (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-olga (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-porson (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-solomos (notoncd) (notwanted)
- 1.3 0.0 ttf-gfs-theokritos (notoncd) (notwanted)
- 1.3 0.0 ttf-mathematica4.1 (notoncd) (notwanted)
- 1.3 0.0 ttf-uralic (notoncd) (notwanted)
- 1.3 0.0 ttf-wqy-zenhei
- 1.3 0.0 ttf-xfree86-nonfree (notoncd) (notwanted)
- 1.3 0.0 virtualbox-guest-dkms (notoncd) (notwanted)
- 1.3 0.0 w3c-dtd-xhtml (notoncd) (notwanted)
- 1.3 0.0 wesnoth-data (notoncd) (notwanted)
- 1.3 0.0 worldwind (notoncd) (notwanted)
- 1.3 0.0 wx2.6-i18n (notoncd) (notwanted)
- 1.3 0.0 wx2.8-i18n (notoncd) (notwanted)
- 1.3 0.0 x11proto-xf86vidmode-dev (notoncd) (notwanted)
- 1.3 0.0 xfe-i18n (notoncd) (notwanted)
- 1.3 0.0 xfe-themes (notoncd) (notwanted)
- 1.3 0.0 xmms2-icon (notoncd) (notwanted)
- 1.3 0.0 xmoto-data (notoncd) (notwanted)
- 1.3 0.0 xul-ext-noscript (notoncd) (notwanted)
- 1.3 0.0 xulrunner-13.0 (notoncd) (notwanted)
- 1.3 0.0 xulrunner-14.0 (notoncd) (notwanted)
- 1.3 0.0 xulrunner-21.0 (notoncd) (notwanted)
- 1.3 0.0 yofrankie (notoncd) (notwanted)
- 0.9 0.0 acroread-doc-de (notoncd) (notwanted)
- 0.9 0.0 alien-arena-data (notoncd) (notwanted)
- 0.9 0.0 altree-examples (notoncd) (notwanted)
- 0.9 0.0 arping (notoncd) (notwanted)
- 0.9 0.0 asclock-themes (notoncd) (notwanted)
- 0.9 0.0 aspell-sv (notoncd) (notwanted)
- 0.9 0.0 asterisk-config (notoncd) (notwanted)
- 0.9 0.0 asterisk-core-sounds-en-gsm (notoncd) (notwanted)
- 0.9 0.0 avant-window-navigator-data (notoncd) (notwanted)
- 0.9 0.0 avifile-xvid-plugin (notoncd) (notwanted)
- 0.9 0.0 awn-applets-common (notoncd) (notwanted)
- 0.9 0.0 awn-applets-python-core (notoncd) (notwanted)
- 0.9 0.0 axiom-tex (notoncd) (notwanted)
- 0.9 0.0 bacula-common (notoncd) (notwanted)
- 0.9 0.0 bible-kjv-text (notoncd) (notwanted)
- 0.9 0.0 bibledit-data (notoncd) (notwanted)
- 0.9 0.0 bibletime-data (notoncd) (notwanted)
- 0.9 0.0 bibus-doc-en (notoncd) (notwanted)
- 0.9 0.0 biloba-data (notoncd) (notwanted)
- 0.9 0.0 bind9-doc (notoncd) (notwanted)
- 0.9 0.0 blackbox-themes (notoncd) (notwanted)
- 0.9 0.0 bluez-audio (notoncd) (notwanted)
- 0.9 0.0 bluez-utils (notoncd) (notwanted)
- 0.9 0.0 bomberclone-data (notoncd) (notwanted)
- 0.9 0.0 bootlogd (notoncd) (notwanted)
- 0.9 0.0 broadcom-sta-common (notoncd) (notwanted)
- 0.9 0.0 broadcom-sta-source (notoncd) (notwanted)
- 0.9 0.0 bwm-ng (notoncd) (notwanted)
- 0.9 0.0 byobu (notoncd) (notwanted)
- 0.9 0.0 c-cpp-reference (notoncd) (notwanted)
- 0.9 0.0 cairo-dock-plugin-data (notoncd) (notwanted)
- 0.9 0.0 calendar-google-provider (notoncd) (notwanted)
- 0.9 0.0 camstream-doc (notoncd) (notwanted)
- 0.9 0.0 cdd-common (notoncd) (notwanted)
- 0.9 0.0 cdfs-src (notoncd) (notwanted)
- 0.9 0.0 celestia-common-nonfree (notoncd) (notwanted)
- 0.9 0.0 checkinstall (notoncd) (notwanted)
- 0.9 0.0 childsplay-alphabet-sounds-fr (notoncd) (notwanted)
- 0.9 0.0 childsplay-plugins-lfc (notoncd) (notwanted)
- 0.9 0.0 cl-kmrcl (notoncd) (notwanted)
- 0.9 0.0 cl-rt (notoncd) (notwanted)
- 0.9 0.0 clamav-docs (notoncd) (notwanted)
- 0.9 0.0 clamav-testfiles (notoncd) (notwanted)
- 0.9 0.0 claws-mail-i18n (notoncd) (notwanted)
- 0.9 0.0 cm-super (notoncd) (notwanted)
- 0.9 0.0 cm-super-minimal (notoncd) (notwanted)
- 0.9 0.0 cndrvcups-common (notoncd) (notwanted)
- 0.9 0.0 cndrvcups-ufr2-uk (notoncd) (notwanted)
- 0.9 0.0 crack-common (notoncd) (notwanted)
- 0.9 0.0 create-resources (notoncd) (notwanted)
- 0.9 0.0 crossfire-client-images (notoncd) (notwanted)
- 0.9 0.0 crossfire-client-sounds (notoncd) (notwanted)
- 0.9 0.0 crossfire-client-x11 (notoncd) (notwanted)
- 0.9 0.0 cupsys-common (notoncd) (notwanted)
- 0.9 0.0 debian-history (notoncd) (notwanted)
- 0.9 0.0 debian-maintainers (notoncd) (notwanted)
- 0.9 0.0 debian-refcard (notoncd) (notwanted)
- 0.9 0.0 defendguin-data (notoncd) (notwanted)
- 0.9 0.0 developers-reference-fr (notoncd) (notwanted)
- 0.9 0.0 dict-gcide (notoncd) (notwanted)
- 0.9 0.0 dict-jargon (notoncd) (notwanted)
- 0.9 0.0 dict-moby-thesaurus (notoncd) (notwanted)
- 0.9 0.0 dict-wn (notoncd) (notwanted)
- 0.9 0.0 diploma (notoncd) (notwanted)
- 0.9 0.0 dirdiff (notoncd) (notwanted)
- 0.9 0.0 distro-info-data (notoncd) (notwanted)
- 0.9 0.0 djagios (notoncd) (notwanted)
- 0.9 0.0 docbook-mathml (notoncd) (notwanted)
- 0.9 0.0 docbook-utils (notoncd) (notwanted)
- 0.9 0.0 docbook-xsl-doc-html (notoncd) (notwanted)
- 0.9 0.0 doom-wad-shareware (notoncd) (notwanted)
- 0.9 0.0 dosbox (notoncd) (notwanted)
- 0.9 0.0 drbl (notoncd) (notwanted)
- 0.9 0.0 dtach (notoncd) (notwanted)
- 0.9 0.0 dvdisaster-doc (notoncd) (notwanted)
- 0.9 0.0 dvidvi (notoncd) (notwanted)
- 0.9 0.0 eclipse-cdt (notoncd) (notwanted)
- 0.9 0.0 eclipse-emf (notoncd) (notwanted)
- 0.9 0.0 eclipse-plugin-cvs (notoncd) (notwanted)
- 0.9 0.0 eclipse-rse (notoncd) (notwanted)
- 0.9 0.0 education-thin-client
- 0.9 0.0 elvis-common (notoncd) (notwanted)
- 0.9 0.0 emacs21 (notoncd) (notwanted)
- 0.9 0.0 emacs22-nox (notoncd) (notwanted)
- 0.9 0.0 etoys-doc (notoncd) (notwanted)
- 0.9 0.0 euler-doc (notoncd) (notwanted)
- 0.9 0.0 extremetuxracer-extras (notoncd) (notwanted)
- 0.9 0.0 fbreader (notoncd) (notwanted)
- 0.9 0.0 festlex-oald (notoncd) (notwanted)
- 0.9 0.0 festvox-rablpc16k (notoncd) (notwanted)
- 0.9 0.0 fgfs-base (notoncd) (notwanted)
- 0.9 0.0 fglrx-amdcccle (notoncd) (notwanted)
- 0.9 0.0 fglrx-modules-dkms (notoncd) (notwanted)
- 0.9 0.0 fglrx-source (notoncd) (notwanted)
- 0.9 0.0 filezilla-locales (notoncd) (notwanted)
- 0.9 0.0 firefox (notoncd) (notwanted)
- 0.9 0.0 flip (notoncd) (notwanted)
- 0.9 0.0 fonts-freefont-otf (notoncd) (notwanted)
- 0.9 0.0 fonts-gfs-baskerville (notoncd) (notwanted)
- 0.9 0.0 fonts-linuxlibertine (notoncd) (notwanted)
- 0.9 0.0 fontypython (notoncd) (notwanted)
- 0.9 0.0 foomatic-gui (notoncd) (notwanted)
- 0.9 0.0 fp-docs
- 0.9 0.0 freeciv-sound-standard (notoncd) (notwanted)
- 0.9 0.0 freemat-data (notoncd) (notwanted)
- 0.9 0.0 freenx-media (notoncd) (notwanted)
- 0.9 0.0 freenx-rdp (notoncd) (notwanted)
- 0.9 0.0 freenx-vnc (notoncd) (notwanted)
- 0.9 0.0 freetennis-common (notoncd) (notwanted)
- 0.9 0.0 frei0r-plugins-dev (notoncd) (notwanted)
- 0.9 0.0 g++-4.6 (notoncd) (notwanted)
- 0.9 0.0 gambas2 (notoncd)
- 0.9 0.0 gambas2-doc (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-chart (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-crypt (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-db-firebird (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-db-form (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-db-mysql (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-db-odbc (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-db-sqlite3 (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-desktop (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-form-dialog (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-form-mdi (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-gtk-ext (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-gtk-svg (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-image (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-info (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-net (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-net-curl (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-net-smtp (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-opengl (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-pcre (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-qt-opengl (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-report (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-sdl (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-sdl-sound (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-v4l (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-vb (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-web (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-xml-rpc (notoncd) (notwanted)
- 0.9 0.0 gambas2-gb-xml-xslt (notoncd) (notwanted)
- 0.9 0.0 gcc-4.6-multilib (notoncd) (notwanted)
- 0.9 0.0 gcc-4.7-multilib (notoncd) (notwanted)
- 0.9 0.0 gcc-doc (notoncd) (notwanted)
- 0.9 0.0 gcc-doc-base (notoncd) (notwanted)
- 0.9 0.0 gcj (notoncd) (notwanted)
- 0.9 0.0 gcj-4.6-jre (notoncd) (notwanted)
- 0.9 0.0 gdebi-kde (notoncd) (notwanted)
- 0.9 0.0 gdpc (notoncd) (notwanted)
- 0.9 0.0 geda (notoncd) (notwanted)
- 0.9 0.0 geda-doc (notoncd) (notwanted)
- 0.9 0.0 geda-symbols (notoncd) (notwanted)
- 0.9 0.0 geogebra-mime-data (notoncd) (notwanted)
- 0.9 0.0 geotranz-doc (notoncd) (notwanted)
- 0.9 0.0 gfortran-doc (notoncd) (notwanted)
- 0.9 0.0 gimp-help-fr
- 0.9 0.0 gimp2.0-quiteinsane (notoncd) (notwanted)
- 0.9 0.0 gl-117-data (notoncd) (notwanted)
- 0.9 0.0 glibc-doc (notoncd) (notwanted)
- 0.9 0.0 gnat-4.4-base (notoncd) (notwanted)
- 0.9 0.0 gnokii (notoncd) (notwanted)
- 0.9 0.0 gnome-brave-icon-theme (notoncd) (notwanted)
- 0.9 0.0 gnome-colors (notoncd) (notwanted)
- 0.9 0.0 gnome-devel-docs (notoncd) (notwanted)
- 0.9 0.0 gnome-icon-theme-dlg-neu (notoncd) (notwanted)
- 0.9 0.0 gnome-icon-theme-nuovo (notoncd) (notwanted)
- 0.9 0.0 gnome-icon-theme-yasis (notoncd) (notwanted)
- 0.9 0.0 gnome-keyring-manager (notoncd) (notwanted)
- 0.9 0.0 gnome-theme-gilouche (notoncd) (notwanted)
- 0.9 0.0 gnupg-doc (notwanted)
- 0.9 0.0 gnustep-back-common (notoncd) (notwanted)
- 0.9 0.0 gnustep-back0.18 (notoncd) (notwanted)
- 0.9 0.0 gnustep-gui-common (notoncd) (notwanted)
- 0.9 0.0 gosa-plugin-goto (notwanted)
- 0.9 0.0 gpac-modules-base (notoncd) (notwanted)
- 0.9 0.0 gprolog-doc (notoncd) (notwanted)
- 0.9 0.0 grub-splashimages (notoncd) (notwanted)
- 0.9 0.0 gstreamer0.10-doc (notoncd) (notwanted)
- 0.9 0.0 gsynaptics (notoncd) (notwanted)
- 0.9 0.0 gtk2-engines-gtk-qt (notoncd) (notwanted)
- 0.9 0.0 gui-apt-key (notoncd) (notwanted)
- 0.9 0.0 guile-cairo (notoncd) (notwanted)
- 0.9 0.0 hannah-data (notoncd) (notwanted)
- 0.9 0.0 help2man (notoncd) (notwanted)
- 0.9 0.0 heroes-common (notoncd) (notwanted)
- 0.9 0.0 heroes-data (notoncd) (notwanted)
- 0.9 0.0 heroes-sdl (notoncd) (notwanted)
- 0.9 0.0 heroes-sound-effects (notoncd) (notwanted)
- 0.9 0.0 heroes-sound-tracks (notoncd) (notwanted)
- 0.9 0.0 hfsprogs (notoncd) (notwanted)
- 0.9 0.0 hfsutils (notoncd) (notwanted)
- 0.9 0.0 highlight-common (notoncd) (notwanted)
- 0.9 0.0 homebank-data (notoncd) (notwanted)
- 0.9 0.0 html2ps (notoncd) (notwanted)
- 0.9 0.0 htmldoc-common (notoncd) (notwanted)
- 0.9 0.0 hyperlatex (notoncd) (notwanted)
- 0.9 0.0 hyphen-en-us (notoncd) (notwanted)
- 0.9 0.0 ia32-libs-xulrunner (notoncd) (notwanted)
- 0.9 0.0 icc-profiles-free (notoncd) (notwanted)
- 0.9 0.0 icedove-l10n-de (notwanted)
- 0.9 0.0 icedtea-7-jre-cacao (notoncd) (notwanted)
- 0.9 0.0 icedtea-7-jre-jamvm (notoncd) (notwanted)
- 0.9 0.0 icedtea-plugin (notoncd) (notwanted)
- 0.9 0.0 icewm-common (notoncd) (notwanted)
- 0.9 0.0 imagination-common (notoncd) (notwanted)
- 0.9 0.0 imms-audacious (notoncd) (notwanted)
- 0.9 0.0 indicator-status-provider-mc5 (notoncd) (notwanted)
- 0.9 0.0 ipcalc (notoncd) (notwanted)
- 0.9 0.0 irssi (notoncd) (notwanted)
- 0.9 0.0 iswedish (notoncd) (notwanted)
- 0.9 0.0 itk3 (notoncd) (notwanted)
- 0.9 0.0 iucode-tool (notoncd) (notwanted)
- 0.9 0.0 iwidgets4 (notoncd) (notwanted)
- 0.9 0.0 java3ds-fileloader (notoncd) (notwanted)
- 0.9 0.0 junior-arcade (notoncd) (notwanted)
- 0.9 0.0 junior-games-card (notoncd) (notwanted)
- 0.9 0.0 junior-kde (notoncd) (notwanted)
- 0.9 0.0 junior-puzzle (notoncd) (notwanted)
- 0.9 0.0 junior-toys (notoncd) (notwanted)
- 0.9 0.0 kbuild (notoncd) (notwanted)
- 0.9 0.0 kde-icons-crystal (notoncd) (notwanted)
- 0.9 0.0 kde-l10n-da
- 0.9 0.0 kdelibs5-dbg (notoncd) (notwanted)
- 0.9 0.0 kdevelop-l10n-engb (notoncd) (notwanted)
- 0.9 0.0 kdevelop-php-docs-l10n-engb (notoncd) (notwanted)
- 0.9 0.0 kdevplatform-l10n-engb (notoncd) (notwanted)
- 0.9 0.0 keymapper (notoncd) (notwanted)
- 0.9 0.0 kivio-data (notoncd) (notwanted)
- 0.9 0.0 kmymoney-common (notoncd) (notwanted)
- 0.9 0.0 kmymoney2 (notoncd) (notwanted)
- 0.9 0.0 ko.tex-extra-hlfont (notoncd) (notwanted)
- 0.9 0.0 koffice (notwanted)
- 0.9 0.0 koffice-doc-html (notoncd) (notwanted)
- 0.9 0.0 komba2 (notoncd) (notwanted)
- 0.9 0.0 konwert-filters (notoncd) (notwanted)
- 0.9 0.0 koules (notoncd) (notwanted)
- 0.9 0.0 ktorrent-data (notoncd) (notwanted)
- 0.9 0.0 kvpnc-data (notoncd) (notwanted)
- 0.9 0.0 latex-cjk-all (notoncd) (notwanted)
- 0.9 0.0 latex-cjk-chinese-arphic-bsmi00lp (notoncd) (notwanted)
- 0.9 0.0 latex-cjk-chinese-arphic-gbsn00lp (notoncd) (notwanted)
- 0.9 0.0 latex-cjk-chinese-arphic-gkai00mp (notoncd) (notwanted)
- 0.9 0.0 latex-cjk-common (notoncd) (notwanted)
- 0.9 0.0 latex-cjk-japanese-wadalab (notoncd) (notwanted)
- 0.9 0.0 latex-cjk-korean (notoncd) (notwanted)
- 0.9 0.0 latex-cjk-thai (notoncd) (notwanted)
- 0.9 0.0 lib32asound2-plugins (notoncd) (notwanted)
- 0.9 0.0 lib32itm1 (notoncd) (notwanted)
- 0.9 0.0 lib32quadmath0 (notoncd) (notwanted)
- 0.9 0.0 libadplug0c2a (notoncd) (notwanted)
- 0.9 0.0 libalure1 (notoncd) (notwanted)
- 0.9 0.0 libanydata-perl (notoncd) (notwanted)
- 0.9 0.0 libaopalliance-java (notoncd) (notwanted)
- 0.9 0.0 libapache-poi-java (notoncd) (notwanted)
- 0.9 0.0 libaqbanking29 (notoncd) (notwanted)
- 0.9 0.0 libaqbanking34 (notoncd) (notwanted)
- 0.9 0.0 libaqhbci17 (notoncd) (notwanted)
- 0.9 0.0 libaqhbci20 (notoncd) (notwanted)
- 0.9 0.0 libaqofxconnect5 (notoncd) (notwanted)
- 0.9 0.0 libaqofxconnect7 (notoncd) (notwanted)
- 0.9 0.0 libarmadillo3 (notoncd) (notwanted)
- 0.9 0.0 libasm-java (notoncd) (notwanted)
- 0.9 0.0 libatk1.0-doc (notoncd) (notwanted)
- 0.9 0.0 libaudutil1 (notoncd) (notwanted)
- 0.9 0.0 libavdevice-dev (notoncd) (notwanted)
- 0.9 0.0 libavdevice54 (notoncd) (notwanted)
- 0.9 0.0 libavfilter3 (notoncd) (notwanted)
- 0.9 0.0 libavifile-0.7-common (notoncd) (notwanted)
- 0.9 0.0 libawn1 (notoncd) (notwanted)
- 0.9 0.0 libbase-java (notoncd) (notwanted)
- 0.9 0.0 libbasicplayer-java (notoncd) (notwanted)
- 0.9 0.0 libboost-chrono-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-chrono1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-chrono1.49.0 (notoncd) (notwanted)
- 0.9 0.0 libboost-date-time1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-filesystem1.42-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-graph-parallel-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-graph1.42-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-iostreams1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-math-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-mpi-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-program-options1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-python1.33.1 (notoncd) (notwanted)
- 0.9 0.0 libboost-regex1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-serialization1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-serialization1.49.0 (notoncd) (notwanted)
- 0.9 0.0 libboost-signals1.42-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-system1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-test1.42-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-thread1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libboost-wave1.42-dev (notoncd) (notwanted)
- 0.9 0.0 libboost1.49-dev (notoncd) (notwanted)
- 0.9 0.0 libbox2d0 (notoncd) (notwanted)
- 0.9 0.0 libbt0 (notoncd) (notwanted)
- 0.9 0.0 libbuoy-java (notoncd) (notwanted)
- 0.9 0.0 libc3p0-java (notoncd) (notwanted)
- 0.9 0.0 libcairo2-doc (notoncd) (notwanted)
- 0.9 0.0 libcanlock2 (notoncd) (notwanted)
- 0.9 0.0 libcap-dev (notoncd) (notwanted)
- 0.9 0.0 libcdio6 (notoncd) (notwanted)
- 0.9 0.0 libcf0 (notoncd) (notwanted)
- 0.9 0.0 libcgns2 (notoncd) (notwanted)
- 0.9 0.0 libchipcard-ctapi0 (notoncd) (notwanted)
- 0.9 0.0 libchipcard-data (notoncd) (notwanted)
- 0.9 0.0 libchipcardc2 (notoncd) (notwanted)
- 0.9 0.0 libclass-dbi-abstractsearch-perl (notoncd) (notwanted)
- 0.9 0.0 libclass-dbi-perl (notoncd) (notwanted)
- 0.9 0.0 libclass-trigger-perl (notoncd) (notwanted)
- 0.9 0.0 libclassworlds-java (notoncd) (notwanted)
- 0.9 0.0 libcloog-ppl0 (notoncd) (notwanted)
- 0.9 0.0 libcommons-jci-java (notoncd) (notwanted)
- 0.9 0.0 libcommons-validator-java (notoncd) (notwanted)
- 0.9 0.0 libcorosync4 (notoncd) (notwanted)
- 0.9 0.0 libcppunit-1.12-1 (notoncd) (notwanted)
- 0.9 0.0 libcrypto++9 (notoncd) (notwanted)
- 0.9 0.0 libcsiro0 (notoncd) (notwanted)
- 0.9 0.0 libctemplate0 (notoncd) (notwanted)
- 0.9 0.0 libcv1 (notoncd) (notwanted)
- 0.9 0.0 libcvaux1 (notoncd) (notwanted)
- 0.9 0.0 libdap11 (notoncd) (notwanted)
- 0.9 0.0 libdapclient3 (notoncd) (notwanted)
- 0.9 0.0 libdapserver7 (notoncd) (notwanted)
- 0.9 0.0 libdb3 (notoncd) (notwanted)
- 0.9 0.0 libdbix-contextualfetch-perl (notoncd) (notwanted)
- 0.9 0.0 libdbusmenu-glib4 (notoncd) (notwanted)
- 0.9 0.0 libdbusmenu-gtk3-4 (notoncd) (notwanted)
- 0.9 0.0 libdbusmenu-gtk4 (notoncd) (notwanted)
- 0.9 0.0 libdcmtk1 (notoncd) (notwanted)
- 0.9 0.0 libdevmapper1.02 (notoncd) (notwanted)
- 0.9 0.0 libdns81 (notoncd) (notwanted)
- 0.9 0.0 libdshconfig1 (notoncd) (notwanted)
- 0.9 0.0 libdumbnet1 (notoncd) (notwanted)
- 0.9 0.0 libdv4-dev (notoncd) (notwanted)
- 0.9 0.0 libepsilon0 (notoncd) (notwanted)
- 0.9 0.0 libexif-gtk5 (notoncd) (notwanted)
- 0.9 0.0 libexo-1-0 (notoncd) (notwanted)
- 0.9 0.0 libexo-helpers (notoncd) (notwanted)
- 0.9 0.0 libexplain30 (notoncd) (notwanted)
- 0.9 0.0 libfakekey0 (notoncd) (notwanted)
- 0.9 0.0 libfann-doc (notoncd) (notwanted)
- 0.9 0.0 libfann2 (notoncd) (notwanted)
- 0.9 0.0 libffi6 (notoncd) (notwanted)
- 0.9 0.0 libfftw3-double3 (notoncd) (notwanted)
- 0.9 0.0 libfftw3-single3 (notoncd) (notwanted)
- 0.9 0.0 libfile-nfslock-perl (notoncd) (notwanted)
- 0.9 0.0 libflash0c2 (notoncd) (notwanted)
- 0.9 0.0 libflatzebra-0.1-2 (notoncd) (notwanted)
- 0.9 0.0 libflute-java (notoncd) (notwanted)
- 0.9 0.0 libfm-data (notwanted)
- 0.9 0.0 libfm-gtk1 (notwanted)
- 0.9 0.0 libfm1 (notwanted)
- 0.9 0.0 libfontbox-java (notoncd) (notwanted)
- 0.9 0.0 libfreecell-solver0 (notoncd) (notwanted)
- 0.9 0.0 libfreeipmi12 (notwanted)
- 0.9 0.0 libfreexl1 (notoncd) (notwanted)
- 0.9 0.0 libg2c0 (notoncd) (notwanted)
- 0.9 0.0 libgail17 (notoncd) (notwanted)
- 0.9 0.0 libgarcon-1-0 (notoncd) (notwanted)
- 0.9 0.0 libgarcon-common (notoncd) (notwanted)
- 0.9 0.0 libgarmin0 (notoncd) (notwanted)
- 0.9 0.0 libgcal0 (notoncd) (notwanted)
- 0.9 0.0 libgcj12-awt (notoncd) (notwanted)
- 0.9 0.0 libgcompris-1-0 (notoncd) (notwanted)
- 0.9 0.0 libgconf2-doc (notoncd) (notwanted)
- 0.9 0.0 libgd-tools (notoncd) (notwanted)
- 0.9 0.0 libgda-4.0-common (notoncd) (notwanted)
- 0.9 0.0 libgda2-3 (notoncd) (notwanted)
- 0.9 0.0 libgda2-common (notoncd) (notwanted)
- 0.9 0.0 libgdal1 (notoncd) (notwanted)
- 0.9 0.0 libgdcm2.0 (notoncd) (notwanted)
- 0.9 0.0 libgdl-1-3 (notoncd) (notwanted)
- 0.9 0.0 libgeda-common (notoncd) (notwanted)
- 0.9 0.0 libgeda38 (notoncd) (notwanted)
- 0.9 0.0 libgeos-3.0.0 (notoncd) (notwanted)
- 0.9 0.0 libgeronimo-jta-1.1-spec-java (notoncd) (notwanted)
- 0.9 0.0 libginac1.5 (notoncd) (notwanted)
- 0.9 0.0 libgl2ps-dev (notoncd) (notwanted)
- 0.9 0.0 libglazedlists-java (notoncd) (notwanted)
- 0.9 0.0 libglee0d1 (notoncd) (notwanted)
- 0.9 0.0 libglewmx1.7 (notoncd) (notwanted)
- 0.9 0.0 libglib1.2-dev (notoncd) (notwanted)
- 0.9 0.0 libglib2.0-doc (notoncd) (notwanted)
- 0.9 0.0 libglibmm-2.4-dev (notoncd) (notwanted)
- 0.9 0.0 libgmyth0 (notoncd) (notwanted)
- 0.9 0.0 libgnat-4.4 (notoncd) (notwanted)
- 0.9 0.0 libgnatprj4.4 (notoncd) (notwanted)
- 0.9 0.0 libgnatvsn4.4 (notoncd) (notwanted)
- 0.9 0.0 libgnokii6 (notoncd) (notwanted)
- 0.9 0.0 libgnomekbd2 (notoncd) (notwanted)
- 0.9 0.0 libgnomekbdui2 (notoncd) (notwanted)
- 0.9 0.0 libgnumail-java-doc (notoncd) (notwanted)
- 0.9 0.0 libgnustep-gui0.18 (notoncd) (notwanted)
- 0.9 0.0 libgoffice-1-2 (notoncd) (notwanted)
- 0.9 0.0 libgoffice-1-common (notoncd) (notwanted)
- 0.9 0.0 libgpac2 (notoncd) (notwanted)
- 0.9 0.0 libgpewidget1 (notoncd) (notwanted)
- 0.9 0.0 libgpiv3-common (notoncd) (notwanted)
- 0.9 0.0 libgraphite2-3 (notoncd) (notwanted)
- 0.9 0.0 libgrib2c0d (notoncd) (notwanted)
- 0.9 0.0 libgringotts2 (notwanted)
- 0.9 0.0 libgssapi2 (notoncd) (notwanted)
- 0.9 0.0 libgtk2-ruby (notoncd) (notwanted)
- 0.9 0.0 libgtk2.0-doc (notoncd) (notwanted)
- 0.9 0.0 libgwengui-gtk2-0 (notoncd) (notwanted)
- 0.9 0.0 libgwenhywfar-data (notoncd) (notwanted)
- 0.9 0.0 libharfbuzz0a (notoncd) (notwanted)
- 0.9 0.0 libhash-merge-perl (notoncd) (notwanted)
- 0.9 0.0 libhd13 (notoncd) (notwanted)
- 0.9 0.0 libhdf4-0 (notoncd) (notwanted)
- 0.9 0.0 libhdf4g (notoncd) (notwanted)
- 0.9 0.0 libhesiod0 (notoncd) (notwanted)
- 0.9 0.0 libhighgui1 (notoncd) (notwanted)
- 0.9 0.0 libhttrack2 (notoncd) (notwanted)
- 0.9 0.0 libibverbs-dev (notoncd) (notwanted)
- 0.9 0.0 libiksemel3 (notoncd) (notwanted)
- 0.9 0.0 libima-dbi-perl (notoncd) (notwanted)
- 0.9 0.0 libindicate5 (notoncd) (notwanted)
- 0.9 0.0 libindicator-messages-status-provider1 (notoncd) (notwanted)
- 0.9 0.0 libindicator3-7 (notoncd) (notwanted)
- 0.9 0.0 libindicator7 (notoncd) (notwanted)
- 0.9 0.0 libinventor0 (notoncd) (notwanted)
- 0.9 0.0 libisc83 (notoncd) (notwanted)
- 0.9 0.0 libiso9660-4 (notoncd) (notwanted)
- 0.9 0.0 libjack0.100.0-0 (notoncd) (notwanted)
- 0.9 0.0 libjempbox-java (notoncd) (notwanted)
- 0.9 0.0 libjflac-java (notoncd) (notwanted)
- 0.9 0.0 libjinglebase0.3-0 (notoncd) (notwanted)
- 0.9 0.0 libjinglexmllite0.3-0 (notoncd) (notwanted)
- 0.9 0.0 libjlayer-java (notoncd) (notwanted)
- 0.9 0.0 libjorbis-java (notoncd) (notwanted)
- 0.9 0.0 libjpfcodegen-java (notoncd) (notwanted)
- 0.9 0.0 libjs-jquery-cookie (notoncd) (notwanted)
- 0.9 0.0 libjs-jquery-ui (notoncd) (notwanted)
- 0.9 0.0 libjspeex-java (notoncd) (notwanted)
- 0.9 0.0 libjtidy-java-doc (notoncd) (notwanted)
- 0.9 0.0 libjts-java (notoncd) (notwanted)
- 0.9 0.0 libkeybinder0 (notoncd) (notwanted)
- 0.9 0.0 libkeyutils-dev (notoncd) (notwanted)
- 0.9 0.0 libkggzgames4 (notoncd) (notwanted)
- 0.9 0.0 libkggzmod4 (notoncd) (notwanted)
- 0.9 0.0 libkggznet4 (notoncd) (notwanted)
- 0.9 0.0 libkjdsp-java (notoncd) (notwanted)
- 0.9 0.0 libkmahjongglib4 (notoncd) (notwanted)
- 0.9 0.0 libkml0 (notoncd) (notwanted)
- 0.9 0.0 libknopflerfish-osgi-framework-java (notoncd) (notwanted)
- 0.9 0.0 libktorrent-l10n (notoncd) (notwanted)
- 0.9 0.0 libktorrent4 (notoncd) (notwanted)
- 0.9 0.0 liblablgtk2-ocaml-doc (notoncd) (notwanted)
- 0.9 0.0 liblinebreak1 (notoncd) (notwanted)
- 0.9 0.0 liblingua-en-inflect-perl (notoncd) (notwanted)
- 0.9 0.0 libltdl3-dev (notoncd) (notwanted)
- 0.9 0.0 libmatchbox1 (notoncd) (notwanted)
- 0.9 0.0 libmatheval1 (notoncd) (notwanted)
- 0.9 0.0 libmdb2 (notoncd) (notwanted)
- 0.9 0.0 libmdbsql2 (notoncd) (notwanted)
- 0.9 0.0 libmgl-data (notoncd) (notwanted)
- 0.9 0.0 libmgl-fltk5 (notoncd) (notwanted)
- 0.9 0.0 libmgl5 (notoncd) (notwanted)
- 0.9 0.0 libmicroba-java (notoncd) (notwanted)
- 0.9 0.0 libmime-perl (notoncd) (notwanted)
- 0.9 0.0 libming0 (notoncd) (notwanted)
- 0.9 0.0 libmjpegtools-1.9 (notoncd) (notwanted)
- 0.9 0.0 libmono-profiler (notoncd) (notwanted)
- 0.9 0.0 libmono-simd4.0-cil (notoncd) (notwanted)
- 0.9 0.0 libmono-system-web-applicationservices4.0-cil (notoncd) (notwanted)
- 0.9 0.0 libmono-system-web-services4.0-cil (notoncd) (notwanted)
- 0.9 0.0 libmono-system-web4.0-cil (notoncd) (notwanted)
- 0.9 0.0 libmono-web4.0-cil (notoncd) (notwanted)
- 0.9 0.0 libmozjs-dev (notoncd) (notwanted)
- 0.9 0.0 libmozjs12d (notoncd) (notwanted)
- 0.9 0.0 libmozjs19d (notoncd) (notwanted)
- 0.9 0.0 libmp3lame-dev (notoncd) (notwanted)
- 0.9 0.0 libmp3spi-java (notoncd) (notwanted)
- 0.9 0.0 libmp3splt0 (notoncd) (notwanted)
- 0.9 0.0 libmpc3 (notoncd) (notwanted)
- 0.9 0.0 libmpdclient2 (notoncd) (notwanted)
- 0.9 0.0 libmpeg3hv-1.5.0-1 (notoncd) (notwanted)
- 0.9 0.0 libmsv-java (notoncd) (notwanted)
- 0.9 0.0 libmyspell3c2 (notoncd) (notwanted)
- 0.9 0.0 libmysqlcppconn5 (notoncd) (notwanted)
- 0.9 0.0 libnautilus-extension-dev (notoncd) (notwanted)
- 0.9 0.0 libneko0 (notoncd) (notwanted)
- 0.9 0.0 libneon25 (notoncd) (notwanted)
- 0.9 0.0 libnetcdff5 (notoncd) (notwanted)
- 0.9 0.0 libnewmat10ldbl (notoncd) (notwanted)
- 0.9 0.0 libnova-0.12-1 (notoncd) (notwanted)
- 0.9 0.0 libnss-sss
- 0.9 0.0 libnxcl1 (notoncd) (notwanted)
- 0.9 0.0 libocas0 (notoncd) (notwanted)
- 0.9 0.0 libodbcinstq1c2 (notoncd) (notwanted)
- 0.9 0.0 libopal-2.2 (notoncd) (notwanted)
- 0.9 0.0 libopenais3 (notoncd) (notwanted)
- 0.9 0.0 libopencascade-foundation-6.3.0 (notoncd) (notwanted)
- 0.9 0.0 libopencascade-modeling-6.3.0 (notoncd) (notwanted)
- 0.9 0.0 libopencascade-ocaf-6.3.0 (notoncd) (notwanted)
- 0.9 0.0 libopencascade-ocaf-lite-6.3.0 (notoncd) (notwanted)
- 0.9 0.0 libopencascade-visualization-6.3.0 (notoncd) (notwanted)
- 0.9 0.0 libopencdk10 (notoncd) (notwanted)
- 0.9 0.0 libopenr2-3 (notoncd) (notwanted)
- 0.9 0.0 libopenthreads13 (notoncd) (notwanted)
- 0.9 0.0 libopenthreads14 (notoncd) (notwanted)
- 0.9 0.0 libopenvas2 (notoncd) (notwanted)
- 0.9 0.0 libopenvasnasl2 (notoncd) (notwanted)
- 0.9 0.0 liborigin0 (notoncd) (notwanted)
- 0.9 0.0 liborigin2-1 (notoncd) (notwanted)
- 0.9 0.0 liborsa0c2a (notoncd) (notwanted)
- 0.9 0.0 libosmesa6 (notoncd) (notwanted)
- 0.9 0.0 libossp-uuid15 (notoncd) (notwanted)
- 0.9 0.0 libpango-1.0-0 (notoncd) (notwanted)
- 0.9 0.0 libpango1.0-doc (notoncd) (notwanted)
- 0.9 0.0 libpangocairo-1.0-0 (notoncd) (notwanted)
- 0.9 0.0 libpangoft2-1.0-0 (notoncd) (notwanted)
- 0.9 0.0 libpangomm-1.4-dev (notoncd) (notwanted)
- 0.9 0.0 libpangox-1.0-0 (notoncd) (notwanted)
- 0.9 0.0 libpangoxft-1.0-0 (notoncd) (notwanted)
- 0.9 0.0 libpari2-gmp (notoncd) (notwanted)
- 0.9 0.0 libpcap0.7 (notoncd) (notwanted)
- 0.9 0.0 libpci2 (notoncd) (notwanted)
- 0.9 0.0 libpciaccess-dev (notoncd) (notwanted)
- 0.9 0.0 libpcmanx-core0 (notoncd) (notwanted)
- 0.9 0.0 libpdfbox-java (notoncd) (notwanted)
- 0.9 0.0 libperlio-gzip-perl (notoncd) (notwanted)
- 0.9 0.0 libpg-java (notoncd) (notwanted)
- 0.9 0.0 libplexus-classworlds-java (notoncd) (notwanted)
- 0.9 0.0 libpoe-perl (notoncd) (notwanted)
- 0.9 0.0 libpolkit-dbus2 (notoncd) (notwanted)
- 0.9 0.0 libpolkit2 (notoncd) (notwanted)
- 0.9 0.0 libpoppler0c2 (notoncd) (notwanted)
- 0.9 0.0 libpoppler13 (notoncd) (notwanted)
- 0.9 0.0 libpotrace0 (notoncd) (notwanted)
- 0.9 0.0 libppl-c4 (notoncd) (notwanted)
- 0.9 0.0 libppl9 (notoncd) (notwanted)
- 0.9 0.0 libpq4 (notoncd) (notwanted)
- 0.9 0.0 libpri1.4 (notoncd) (notwanted)
- 0.9 0.0 libprinterconf0c2a (notoncd) (notwanted)
- 0.9 0.0 libprotobuf-lite7 (notoncd) (notwanted)
- 0.9 0.0 libprotobuf7 (notoncd) (notwanted)
- 0.9 0.0 libprotoc6 (notoncd) (notwanted)
- 0.9 0.0 libprotoc7 (notoncd) (notwanted)
- 0.9 0.0 libpt2.6.5 (notoncd) (notwanted)
- 0.9 0.0 libpwl5 (notoncd) (notwanted)
- 0.9 0.0 libqscintilla2-8 (notoncd) (notwanted)
- 0.9 0.0 libqt4-dbg (notoncd) (notwanted)
- 0.9 0.0 libqtcore4-perl (notoncd) (notwanted)
- 0.9 0.0 libqtgui4-perl (notoncd) (notwanted)
- 0.9 0.0 libqtscript4-opengl (notoncd) (notwanted)
- 0.9 0.0 libqtscript4-phonon (notoncd) (notwanted)
- 0.9 0.0 libqtscript4-qtbindings (notoncd) (notwanted)
- 0.9 0.0 libqtscript4-svg (notoncd) (notwanted)
- 0.9 0.0 libqtscript4-webkit (notoncd) (notwanted)
- 0.9 0.0 libqtscript4-xmlpatterns (notoncd) (notwanted)
- 0.9 0.0 libquantlib-1.0.0 (notoncd) (notwanted)
- 0.9 0.0 libquicktimehv-1.6.0-1 (notoncd) (notwanted)
- 0.9 0.0 libquvi0 (notoncd) (notwanted)
- 0.9 0.0 libqwtplot3d-qt3-0 (notoncd) (notwanted)
- 0.9 0.0 librack-ruby (notoncd) (notwanted)
- 0.9 0.0 librelaxng-datatype-java (notoncd) (notwanted)
- 0.9 0.0 libreoffice-help-en-gb (notoncd) (notwanted)
- 0.9 0.0 libreoffice-mysql-connector (notoncd) (notwanted)
- 0.9 0.0 libreoffice-script-provider-python (notoncd) (notwanted)
- 0.9 0.0 libresample1 (notoncd) (notwanted)
- 0.9 0.0 libroar2 (notoncd) (notwanted)
- 0.9 0.0 libs3d2 (notoncd) (notwanted)
- 0.9 0.0 libs3dw2 (notoncd) (notwanted)
- 0.9 0.0 libsad2 (notoncd) (notwanted)
- 0.9 0.0 libsaga (notoncd) (notwanted)
- 0.9 0.0 libsane-dev (notoncd) (notwanted)
- 0.9 0.0 libsasl2 (notoncd) (notwanted)
- 0.9 0.0 libsdo-api-java (notoncd) (notwanted)
- 0.9 0.0 libserializer-java (notoncd) (notwanted)
- 0.9 0.0 libsgutils1 (notoncd) (notwanted)
- 0.9 0.0 libsidutils0 (notoncd) (notwanted)
- 0.9 0.0 libsigc++-1.2-5c2 (notoncd) (notwanted)
- 0.9 0.0 libslab0 (notoncd) (notwanted)
- 0.9 0.0 libsnmp9 (notoncd) (notwanted)
- 0.9 0.0 libsnmpkit2c2a (notoncd) (notwanted)
- 0.9 0.0 libsox-dev (notoncd) (notwanted)
- 0.9 0.0 libsox-fmt-flac (notoncd) (notwanted)
- 0.9 0.0 libsox-fmt-gsm (notoncd) (notwanted)
- 0.9 0.0 libsox-fmt-ogg (notoncd) (notwanted)
- 0.9 0.0 libsox-fmt-sndfile (notoncd) (notwanted)
- 0.9 0.0 libspatialite3 (notoncd) (notwanted)
- 0.9 0.0 libsphinx2g0 (notoncd) (notwanted)
- 0.9 0.0 libspin-java (notoncd) (notwanted)
- 0.9 0.0 libspiro0 (notoncd) (notwanted)
- 0.9 0.0 libspnav0 (notwanted)
- 0.9 0.0 libsql-abstract-limit-perl (notoncd) (notwanted)
- 0.9 0.0 libsql-statement-perl (notoncd) (notwanted)
- 0.9 0.0 libss7-1 (notoncd) (notwanted)
- 0.9 0.0 libssl0.9.7 (notoncd) (notwanted)
- 0.9 0.0 libstaden-read1 (notoncd) (notwanted)
- 0.9 0.0 libstax-java (notoncd) (notwanted)
- 0.9 0.0 libstax2-api-java (notoncd) (notwanted)
- 0.9 0.0 libstdc++6-4.6-dev (notoncd) (notwanted)
- 0.9 0.0 libstroke0 (notoncd) (notwanted)
- 0.9 0.0 libsub-uplevel-perl (notoncd) (notwanted)
- 0.9 0.0 libsublime5 (notwanted)
- 0.9 0.0 libsvnkit-java (notoncd) (notwanted)
- 0.9 0.0 libsybdb5 (notoncd) (notwanted)
- 0.9 0.0 libsynaptics0 (notoncd) (notwanted)
- 0.9 0.0 libsynfigapp0 (notoncd) (notwanted)
- 0.9 0.0 libtest-exception-perl (notoncd) (notwanted)
- 0.9 0.0 libthunar-vfs-1-common (notoncd) (notwanted)
- 0.9 0.0 libthunarx-2-0 (notoncd) (notwanted)
- 0.9 0.0 libtonezone2.0 (notoncd) (notwanted)
- 0.9 0.0 libtrilead-ssh2-java (notoncd) (notwanted)
- 0.9 0.0 libtritonus-java (notoncd) (notwanted)
- 0.9 0.0 libtumbler-1-0 (notoncd) (notwanted)
- 0.9 0.0 libtunepimp3 (notoncd) (notwanted)
- 0.9 0.0 libuclmmbase1 (notoncd) (notwanted)
- 0.9 0.0 libudf0 (notoncd) (notwanted)
- 0.9 0.0 libudunits2-0 (notoncd) (notwanted)
- 0.9 0.0 libuim-custom2 (notoncd) (notwanted)
- 0.9 0.0 libuim-scm0 (notoncd) (notwanted)
- 0.9 0.0 libuim8 (notoncd) (notwanted)
- 0.9 0.0 libungif4-dev (notoncd) (notwanted)
- 0.9 0.0 libuniconf4.6 (notoncd) (notwanted)
- 0.9 0.0 libuniversal-moniker-perl (notoncd) (notwanted)
- 0.9 0.0 libuno-cli-basetypes1.0-cil (notoncd) (notwanted)
- 0.9 0.0 libuno-cli-oootypes1.0-cil (notoncd) (notwanted)
- 0.9 0.0 libuno-cli-uretypes1.0-cil (notoncd) (notwanted)
- 0.9 0.0 libvirt0 (notoncd) (notwanted)
- 0.9 0.0 libvolpack1 (notoncd) (notwanted)
- 0.9 0.0 libvorbisspi-java (notoncd) (notwanted)
- 0.9 0.0 libvte4 (notoncd) (notwanted)
- 0.9 0.0 libvtk5.4 (notoncd) (notwanted)
- 0.9 0.0 libwbxml2-0 (notoncd) (notwanted)
- 0.9 0.0 libwebcam0 (notoncd) (notwanted)
- 0.9 0.0 libwraster3 (notoncd) (notwanted)
- 0.9 0.0 libwvstreams4.6-base (notoncd) (notwanted)
- 0.9 0.0 libwvstreams4.6-extras (notoncd) (notwanted)
- 0.9 0.0 libx264-133 (notoncd) (notwanted)
- 0.9 0.0 libx264-54 (notoncd) (notwanted)
- 0.9 0.0 libxcb-xlib0-dev (notoncd) (notwanted)
- 0.9 0.0 libxdg-basedir1 (notoncd) (notwanted)
- 0.9 0.0 libxerces-c2-dev (notoncd) (notwanted)
- 0.9 0.0 libxfce4ui-1-0 (notoncd) (notwanted)
- 0.9 0.0 libxine1-all-plugins (notoncd) (notwanted)
- 0.9 0.0 libxine2-console (notoncd) (notwanted)
- 0.9 0.0 libxkbfile-dev (notoncd) (notwanted)
- 0.9 0.0 libxml2-doc (notoncd) (notwanted)
- 0.9 0.0 libxmuu-dev (notoncd) (notwanted)
- 0.9 0.0 libxp-dev (notoncd) (notwanted)
- 0.9 0.0 libxres-dev (notoncd) (notwanted)
- 0.9 0.0 libxsettings-client0 (notoncd) (notwanted)
- 0.9 0.0 libxtst-dev (notoncd) (notwanted)
- 0.9 0.0 libxv-dev (notoncd) (notwanted)
- 0.9 0.0 libxvmc-dev (notoncd) (notwanted)
- 0.9 0.0 libytnef0 (notoncd) (notwanted)
- 0.9 0.0 libzip2 (notoncd) (notwanted)
- 0.9 0.0 libzlcore-data (notoncd) (notwanted)
- 0.9 0.0 libzlcore0.10 (notoncd) (notwanted)
- 0.9 0.0 libzltext-data (notoncd) (notwanted)
- 0.9 0.0 libzltext0.10 (notoncd) (notwanted)
- 0.9 0.0 libzlui-qt4 (notoncd) (notwanted)
- 0.9 0.0 libzrtpcpp-1.4-0 (notoncd) (notwanted)
- 0.9 0.0 libzzip-0-13 (notoncd) (notwanted)
- 0.9 0.0 linpopup (notoncd) (notwanted)
- 0.9 0.0 linux-headers-2.6.32-4-686 (notoncd) (notwanted)
- 0.9 0.0 linux-headers-2.6.32-4-common (notoncd) (notwanted)
- 0.9 0.0 linux-headers-2.6.39-bpo.2-amd64 (notoncd) (notwanted)
- 0.9 0.0 linux-headers-3.2.0-0.bpo.2-common (notoncd) (notwanted)
- 0.9 0.0 linux-headers-3.2.0-0.bpo.3-amd64 (notoncd) (notwanted)
- 0.9 0.0 linux-headers-3.2.0-0.bpo.3-common (notoncd) (notwanted)
- 0.9 0.0 linux-image-2.6-686-bigmem (notoncd) (notwanted)
- 0.9 0.0 linux-image-2.6.18-5-486 (notoncd) (notwanted)
- 0.9 0.0 linux-image-2.6.26-1-686 (notoncd) (notwanted)
- 0.9 0.0 linux-image-2.6.32-bpo.5-amd64 (notoncd) (notwanted)
- 0.9 0.0 linux-image-686 (notoncd) (notwanted)
- 0.9 0.0 liquidwar-data (notoncd) (notwanted)
- 0.9 0.0 lordsawar-data (notoncd) (notwanted)
- 0.9 0.0 lvm-common (notoncd) (notwanted)
- 0.9 0.0 lxpolkit (notwanted)
- 0.9 0.0 maint-guide (notoncd) (notwanted)
- 0.9 0.0 maint-guide-fr (notoncd) (notwanted)
- 0.9 0.0 make-doc (notoncd) (notwanted)
- 0.9 0.0 manpages-ru (notoncd) (notwanted)
- 0.9 0.0 maxima-emacs (notoncd) (notwanted)
- 0.9 0.0 memtester (notoncd) (notwanted)
- 0.9 0.0 mono-complete (notoncd) (notwanted)
- 0.9 0.0 movixmaker-2 (notoncd) (notwanted)
- 0.9 0.0 mpi-default-dev (notoncd) (notwanted)
- 0.9 0.0 murrine-themes (notoncd) (notwanted)
- 0.9 0.0 musescore-common (notoncd) (notwanted)
- 0.9 0.0 musescore-soundfont-gm (notoncd) (notwanted)
- 0.9 0.0 mutter (notoncd) (notwanted)
- 0.9 0.0 mypaint-data (notoncd) (notwanted)
- 0.9 0.0 mythes-de-ch (notwanted)
- 0.9 0.0 nagvis (notoncd) (notwanted)
- 0.9 0.0 navit-data (notoncd) (notwanted)
- 0.9 0.0 neko (notoncd) (notwanted)
- 0.9 0.0 netcdf-doc (notoncd) (notwanted)
- 0.9 0.0 nvi-doc (notoncd) (notwanted)
- 0.9 0.0 obexfs (notoncd) (notwanted)
- 0.9 0.0 octave-control (notoncd) (notwanted)
- 0.9 0.0 openarena-data (notoncd) (notwanted)
- 0.9 0.0 opencubicplayer-doc (notoncd) (notwanted)
- 0.9 0.0 opendict-plugins-lingvosoft (notoncd) (notwanted)
- 0.9 0.0 openipmi (notoncd) (notwanted)
- 0.9 0.0 openjdk-7-jre-lib (notoncd) (notwanted)
- 0.9 0.0 openoffice.org-hyphenation-fr
- 0.9 0.0 openoffice.org-l10n-ru (notoncd) (notwanted)
- 0.9 0.0 openshot-ffmpeg (notoncd) (notwanted)
- 0.9 0.0 openshot-frei0r (notoncd) (notwanted)
- 0.9 0.0 openshot-mlt (notoncd) (notwanted)
- 0.9 0.0 openshot-x264 (notoncd) (notwanted)
- 0.9 0.0 openstreetmap-map-icons-scalable (notoncd) (notwanted)
- 0.9 0.0 pari-extra (notoncd) (notwanted)
- 0.9 0.0 pcb (notoncd) (notwanted)
- 0.9 0.0 pcb-common (notoncd) (notwanted)
- 0.9 0.0 pconf-detect (notoncd) (notwanted)
- 0.9 0.0 pear-phpunit-channel (notoncd) (notwanted)
- 0.9 0.0 pear-symfony-project-channel (notoncd) (notwanted)
- 0.9 0.0 pgapack (notoncd) (notwanted)
- 0.9 0.0 pinball-data (notoncd) (notwanted)
- 0.9 0.0 po4a (notoncd) (notwanted)
- 0.9 0.0 postgresql-client (notwanted)
- 0.9 0.0 postgresql-contrib (notoncd) (notwanted)
- 0.9 0.0 postgresql-doc-8.4 (notoncd) (notwanted)
- 0.9 0.0 pslib1 (notoncd) (notwanted)
- 0.9 0.0 python-4suite-doc (notoncd) (notwanted)
- 0.9 0.0 python-aptdaemon.gtkwidgets (notoncd) (notwanted)
- 0.9 0.0 python-awn-extras (notoncd) (notwanted)
- 0.9 0.0 python-docutils (notoncd) (notwanted)
- 0.9 0.0 python-editobj (notoncd) (notwanted)
- 0.9 0.0 python-encutils (notoncd) (notwanted)
- 0.9 0.0 python-enthoughtbase (notoncd) (notwanted)
- 0.9 0.0 python-envisagecore (notoncd) (notwanted)
- 0.9 0.0 python-envisageplugins (notoncd) (notwanted)
- 0.9 0.0 python-flickrapi (notoncd) (notwanted)
- 0.9 0.0 python-flup (notoncd) (notwanted)
- 0.9 0.0 python-hachoir-core (notoncd) (notwanted)
- 0.9 0.0 python-hachoir-parser (notoncd) (notwanted)
- 0.9 0.0 python-keyring (notoncd) (notwanted)
- 0.9 0.0 python-logilab-astng (notoncd) (notwanted)
- 0.9 0.0 python-networkx (notoncd) (notwanted)
- 0.9 0.0 python-pampy (notoncd) (notwanted)
- 0.9 0.0 python-ply (notoncd) (notwanted)
- 0.9 0.0 python-protobuf (notoncd) (notwanted)
- 0.9 0.0 python-psutil (notoncd) (notwanted)
- 0.9 0.0 python-pychart (notoncd) (notwanted)
- 0.9 0.0 python-pyevolve-doc (notoncd) (notwanted)
- 0.9 0.0 python-pyopenssl (notoncd) (notwanted)
- 0.9 0.0 python-roman (notoncd) (notwanted)
- 0.9 0.0 python-skype (notoncd) (notwanted)
- 0.9 0.0 python-stats (notoncd) (notwanted)
- 0.9 0.0 python-traitsbackendwx (notoncd) (notwanted)
- 0.9 0.0 python-traitsgui (notoncd) (notwanted)
- 0.9 0.0 python-webpy (notoncd) (notwanted)
- 0.9 0.0 python3-apt (notoncd) (notwanted)
- 0.9 0.0 qc-usb-source (notoncd) (notwanted)
- 0.9 0.0 qelectrotech-data (notoncd) (notwanted)
- 0.9 0.0 qelectrotech-examples (notoncd) (notwanted)
- 0.9 0.0 qgis-common (notoncd) (notwanted)
- 0.9 0.0 qgis-plugin-grass-common (notoncd) (notwanted)
- 0.9 0.0 qt3-qtconfig (notoncd) (notwanted)
- 0.9 0.0 qt4-doc-html (notoncd) (notwanted)
- 0.9 0.0 r-doc-info (notoncd) (notwanted)
- 0.9 0.0 r-doc-pdf (notoncd) (notwanted)
- 0.9 0.0 rcconf (notoncd) (notwanted)
- 0.9 0.0 reiserfsprogs (notoncd) (notwanted)
- 0.9 0.0 ruby-progressbar (notoncd) (notwanted)
- 0.9 0.0 rubygems (notoncd) (notwanted)
- 0.9 0.0 salasaga-common (notoncd) (notwanted)
- 0.9 0.0 scapy (notoncd) (notwanted)
- 0.9 0.0 screenshoter (notoncd) (notwanted)
- 0.9 0.0 selinux-policy-default (notoncd) (notwanted)
- 0.9 0.0 shiki-brave-theme (notoncd) (notwanted)
- 0.9 0.0 shiki-colors (notoncd) (notwanted)
- 0.9 0.0 shiki-colors-metacity-theme (notoncd) (notwanted)
- 0.9 0.0 shiki-colors-xfwm-theme (notoncd) (notwanted)
- 0.9 0.0 shiki-dust-theme (notoncd) (notwanted)
- 0.9 0.0 shiki-human-theme (notoncd) (notwanted)
- 0.9 0.0 shiki-illustrious-theme (notoncd) (notwanted)
- 0.9 0.0 shiki-noble-theme (notoncd) (notwanted)
- 0.9 0.0 shiki-wine-theme (notoncd) (notwanted)
- 0.9 0.0 shiki-wise-theme (notoncd) (notwanted)
- 0.9 0.0 smart-activation (notoncd) (notwanted)
- 0.9 0.0 smart-common (notoncd) (notwanted)
- 0.9 0.0 smart-gallerysetup (notoncd) (notwanted)
- 0.9 0.0 smart-hwr (notoncd) (notwanted)
- 0.9 0.0 smart-languagesetup (notoncd) (notwanted)
- 0.9 0.0 smarty3 (notwanted)
- 0.9 0.0 sphinx2-hmm-6k (notoncd) (notwanted)
- 0.9 0.0 splashy-themes (notoncd) (notwanted)
- 0.9 0.0 spotify-client-qt (notoncd) (notwanted)
- 0.9 0.0 spring-common (notoncd) (notwanted)
- 0.9 0.0 sqlite-doc (notoncd) (notwanted)
- 0.9 0.0 sqlite3-doc (notoncd) (notwanted)
- 0.9 0.0 squareness (notoncd) (notwanted)
- 0.9 0.0 squid-cgi (notoncd) (notwanted)
- 0.9 0.0 stardict (notoncd) (notwanted)
- 0.9 0.0 stardict-plugin-spell (notoncd) (notwanted)
- 0.9 0.0 sun-java5-plugin (notoncd) (notwanted)
- 0.9 0.0 sun-java6-demo (notoncd) (notwanted)
- 0.9 0.0 sun-java6-javadb (notoncd) (notwanted)
- 0.9 0.0 supertuxkart-data (notoncd) (notwanted)
- 0.9 0.0 swath (notoncd) (notwanted)
- 0.9 0.0 swfdec-gnome (notoncd) (notwanted)
- 0.9 0.0 swfdec-mozilla (notoncd) (notwanted)
- 0.9 0.0 sword-dict-naves (notoncd) (notwanted)
- 0.9 0.0 sword-text-web (notoncd) (notwanted)
- 0.9 0.0 sysadmin-guide (notoncd) (notwanted)
- 0.9 0.0 systemimager-client (notoncd) (notwanted)
- 0.9 0.0 tagua-data (notoncd) (notwanted)
- 0.9 0.0 task-desktop (notoncd) (notwanted)
- 0.9 0.0 task-kde-desktop (notoncd) (notwanted)
- 0.9 0.0 tellico-data (notoncd) (notwanted)
- 0.9 0.0 tellico-scripts (notoncd) (notwanted)
- 0.9 0.0 tetex-bin (notoncd) (notwanted)
- 0.9 0.0 texlive-doc-de (notoncd) (notwanted)
- 0.9 0.0 texlive-doc-it (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-croatian (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-danish (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-dutch (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-finnish (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-greek (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-hungarian (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-latin (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-mongolian (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-norwegian (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-other (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-portuguese (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-spanish (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-swedish (notoncd) (notwanted)
- 0.9 0.0 texlive-lang-vietnamese (notoncd) (notwanted)
- 0.9 0.0 texlive-latex3 (notoncd) (notwanted)
- 0.9 0.0 texlive-music (notoncd) (notwanted)
- 0.9 0.0 texlive-publishers-doc (notoncd) (notwanted)
- 0.9 0.0 texmacs-common (notoncd) (notwanted)
- 0.9 0.0 tftp-hpa (notoncd) (notwanted)
- 0.9 0.0 thailatex (notoncd) (notwanted)
- 0.9 0.0 tinymce2 (notoncd) (notwanted)
- 0.9 0.0 tipptrainer-data-de (notoncd) (notwanted)
- 0.9 0.0 toppler (notoncd) (notwanted)
- 0.9 0.0 tor-geoipdb (notoncd) (notwanted)
- 0.9 0.0 transmission (notoncd) (notwanted)
- 0.9 0.0 ttf-baekmuk (notoncd) (notwanted)
- 0.9 0.0 ttf-linux-libertine (notoncd) (notwanted)
- 0.9 0.0 ttf-thai-tlwg (notoncd) (notwanted)
- 0.9 0.0 tumbler (notoncd) (notwanted)
- 0.9 0.0 tumbler-common (notoncd) (notwanted)
- 0.9 0.0 tuxcmd-modules (notoncd) (notwanted)
- 0.9 0.0 tv-fonts (notoncd) (notwanted)
- 0.9 0.0 udpcast (notoncd) (notwanted)
- 0.9 0.0 unetbootin (notoncd) (notwanted)
- 0.9 0.0 unetbootin-translations (notoncd) (notwanted)
- 0.9 0.0 uno-libs3-dbg (notoncd) (notwanted)
- 0.9 0.0 ure-dbg (notoncd) (notwanted)
- 0.9 0.0 usbview (notoncd) (notwanted)
- 0.9 0.0 uvcdynctrl-data (notoncd) (notwanted)
- 0.9 0.0 v4l-utils (notoncd) (notwanted)
- 0.9 0.0 vdpau-va-driver (notoncd) (notwanted)
- 0.9 0.0 vim-full (notoncd) (notwanted)
- 0.9 0.0 virtuoso-opensource (notoncd) (notwanted)
- 0.9 0.0 virtuoso-server (notoncd) (notwanted)
- 0.9 0.0 virtuoso-vad-conductor (notoncd) (notwanted)
- 0.9 0.0 vpb-driver-source (notoncd) (notwanted)
- 0.9 0.0 w3-dtd-mathml (notoncd) (notwanted)
- 0.9 0.0 w64codecs (notoncd) (notwanted)
- 0.9 0.0 warzone2100-data (notoncd) (notwanted)
- 0.9 0.0 wavemon (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10 (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-aoi (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-data (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-did (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-dm (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-dw (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-ei (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-httt (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-l (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-low (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-music (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-nr (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-sof (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-sotbe (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-thot (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-trow (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-tsg (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-ttb (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.10-utbs (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8 (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-aoi (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-data (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-did (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-dm (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-ei (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-httt (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-l (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-low (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-music (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-nr (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-sof (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-sotbe (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-thot (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-trow (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-tsg (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-ttb (notoncd) (notwanted)
- 0.9 0.0 wesnoth-1.8-utbs (notoncd) (notwanted)
- 0.9 0.0 wesnoth-aoi (notoncd) (notwanted)
- 0.9 0.0 wesnoth-did (notoncd) (notwanted)
- 0.9 0.0 wesnoth-ei (notoncd) (notwanted)
- 0.9 0.0 wesnoth-httt (notoncd) (notwanted)
- 0.9 0.0 wesnoth-l (notoncd) (notwanted)
- 0.9 0.0 wesnoth-low (notoncd) (notwanted)
- 0.9 0.0 wesnoth-music (notoncd) (notwanted)
- 0.9 0.0 wesnoth-nr (notoncd) (notwanted)
- 0.9 0.0 wesnoth-sof (notoncd) (notwanted)
- 0.9 0.0 wesnoth-sotbe (notoncd) (notwanted)
- 0.9 0.0 wesnoth-thot (notoncd) (notwanted)
- 0.9 0.0 wesnoth-trow (notoncd) (notwanted)
- 0.9 0.0 wesnoth-tsg (notoncd) (notwanted)
- 0.9 0.0 wesnoth-ttb (notoncd) (notwanted)
- 0.9 0.0 wesnoth-utbs (notoncd) (notwanted)
- 0.9 0.0 wine-doc (notoncd) (notwanted)
- 0.9 0.0 winff-doc (notoncd) (notwanted)
- 0.9 0.0 wing-data (notoncd) (notwanted)
- 0.9 0.0 workrave-data (notoncd) (notwanted)
- 0.9 0.0 x11proto-dri2-dev (notoncd) (notwanted)
- 0.9 0.0 x11proto-fonts-dev (notoncd) (notwanted)
- 0.9 0.0 x11proto-record-dev (notoncd) (notwanted)
- 0.9 0.0 x11proto-resource-dev (notoncd) (notwanted)
- 0.9 0.0 x11proto-video-dev (notoncd) (notwanted)
- 0.9 0.0 x2gobroker-agent (notoncd) (notwanted)
- 0.9 0.0 xchat-common (notwanted)
- 0.9 0.0 xfce4-screenshooter-plugin (notoncd) (notwanted)
- 0.9 0.0 xfonts-intl-european (notoncd) (notwanted)
- 0.9 0.0 xiphos-data (notoncd) (notwanted)
- 0.9 0.0 xmame-common (notoncd) (notwanted)
- 0.9 0.0 xmms2 (notoncd) (notwanted)
- 0.9 0.0 xmms2-plugin-all (notoncd) (notwanted)
- 0.9 0.0 xmms2-plugin-wma (notoncd) (notwanted)
- 0.9 0.0 xmp-common (notoncd) (notwanted)
- 0.9 0.0 xnest (notoncd) (notwanted)
- 0.9 0.0 xscavenger (notoncd) (notwanted)
- 0.9 0.0 xserver-xorg-dev (notoncd) (notwanted)
- 0.9 0.0 xul-ext-firebug (notoncd) (notwanted)
- 0.9 0.0 xulrunner-12.0 (notoncd) (notwanted)
- 0.9 0.0 xulrunner-19.0 (notoncd) (notwanted)
- 0.9 0.0 xvier (notoncd) (notwanted)
- 0.9 0.0 yapps2-runtime (notoncd) (notwanted)
- 0.9 0.0 zlibc (notoncd) (notwanted)
- 0.4 0.0 0ad (notoncd) (notwanted)
- 0.4 0.0 0ad-data (notoncd) (notwanted)
- 0.4 0.0 0ad-data-common (notoncd) (notwanted)
- 0.4 0.0 2mandvd-data (notoncd) (notwanted)
- 0.4 0.0 3ddesktop (notoncd) (notwanted)
- 0.4 0.0 3s-rogue-dhcp (notoncd) (notwanted)
- 0.4 0.0 7kaa (notoncd) (notwanted)
- 0.4 0.0 7kaa-data (notoncd) (notwanted)
- 0.4 0.0 a7xpg-data (notoncd) (notwanted)
- 0.4 0.0 aacplusenc (notoncd) (notwanted)
- 0.4 0.0 abe-data (notoncd) (notwanted)
- 0.4 0.0 abiword-help (notoncd) (notwanted)
- 0.4 0.0 abiword-plugin-goffice (notoncd) (notwanted)
- 0.4 0.0 aboot-base (notoncd) (notwanted)
- 0.4 0.0 abs-guide (notoncd) (notwanted)
- 0.4 0.0 abuledu-aller (notoncd) (notwanted)
- 0.4 0.0 abuledu-anouslesnombres (notoncd) (notwanted)
- 0.4 0.0 abuledu-calculs (notoncd) (notwanted)
- 0.4 0.0 abuledu-chemin (notoncd) (notwanted)
- 0.4 0.0 abuledu-labyrinthe (notoncd) (notwanted)
- 0.4 0.0 abuledu-leterrier-common (notoncd) (notwanted)
- 0.4 0.0 abuledu-leterrier-common-tcl (notoncd) (notwanted)
- 0.4 0.0 abuledu-mulot (notoncd) (notwanted)
- 0.4 0.0 abuledu-operations (notoncd) (notwanted)
- 0.4 0.0 abuse-frabs (notoncd) (notwanted)
- 0.4 0.0 acheck-rules (notoncd) (notwanted)
- 0.4 0.0 acidrip (notoncd) (notwanted)
- 0.4 0.0 adanaxisgpl-data (notoncd) (notwanted)
- 0.4 0.0 addresses.framework (notoncd) (notwanted)
- 0.4 0.0 addressview.framework (notoncd) (notwanted)
- 0.4 0.0 adept-common (notoncd) (notwanted)
- 0.4 0.0 adept-installer (notoncd) (notwanted)
- 0.4 0.0 adept-manager (notoncd) (notwanted)
- 0.4 0.0 adept-notifier (notoncd) (notwanted)
- 0.4 0.0 adept-updater (notoncd) (notwanted)
- 0.4 0.0 af9015-dkms (notoncd) (notwanted)
- 0.4 0.0 afio (notoncd) (notwanted)
- 0.4 0.0 afnix-doc (notoncd) (notwanted)
- 0.4 0.0 aglfn (notoncd) (notwanted)
- 0.4 0.0 airstrike-common (notoncd) (notwanted)
- 0.4 0.0 akunambol (notoncd) (notwanted)
- 0.4 0.0 alarm-clock (notoncd) (notwanted)
- 0.4 0.0 alex4-data (notoncd) (notwanted)
- 0.4 0.0 alien-hunter (notoncd) (notwanted)
- 0.4 0.0 alienblaster-data (notoncd) (notwanted)
- 0.4 0.0 allegro-demo-data (notoncd) (notwanted)
- 0.4 0.0 alsa-modules-2.6.32-5-686 (notoncd) (notwanted)
- 0.4 0.0 alure-doc (notoncd) (notwanted)
- 0.4 0.0 amap-align (notoncd) (notwanted)
- 0.4 0.0 amarok-engines (notoncd) (notwanted)
- 0.4 0.0 amarok-xine (notoncd) (notwanted)
- 0.4 0.0 amoeba-data (notoncd) (notwanted)
- 0.4 0.0 amora-server (notoncd) (notwanted)
- 0.4 0.0 amphetamine-data (notoncd) (notwanted)
- 0.4 0.0 amule-gnome-support (notoncd) (notwanted)
- 0.4 0.0 anarchism (notoncd) (notwanted)
- 0.4 0.0 ant-contrib (notoncd) (notwanted)
- 0.4 0.0 ant-contrib-cpptasks (notoncd) (notwanted)
- 0.4 0.0 anyevent-perl (notoncd) (notwanted)
- 0.4 0.0 anyremote-data (notoncd) (notwanted)
- 0.4 0.0 aolserver4-doc (notoncd) (notwanted)
- 0.4 0.0 apache-common (notoncd) (notwanted)
- 0.4 0.0 apache2-data (notoncd) (notwanted)
- 0.4 0.0 apcupsd-cgi (notoncd) (notwanted)
- 0.4 0.0 apertium-en-ca (notoncd) (notwanted)
- 0.4 0.0 apertium-eo-ca (notoncd) (notwanted)
- 0.4 0.0 apertium-eo-es (notoncd) (notwanted)
- 0.4 0.0 apertium-es-ca (notoncd) (notwanted)
- 0.4 0.0 apertium-es-gl (notoncd) (notwanted)
- 0.4 0.0 apertium-es-pt (notoncd) (notwanted)
- 0.4 0.0 apertium-es-ro (notoncd) (notwanted)
- 0.4 0.0 apertium-eu-es (notoncd) (notwanted)
- 0.4 0.0 apertium-fr-ca (notoncd) (notwanted)
- 0.4 0.0 apertium-fr-es (notoncd) (notwanted)
- 0.4 0.0 apertium-oc-ca (notoncd) (notwanted)
- 0.4 0.0 apertium-oc-es (notoncd) (notwanted)
- 0.4 0.0 apertium-pt-ca (notoncd) (notwanted)
- 0.4 0.0 apertium-pt-gl (notoncd) (notwanted)
- 0.4 0.0 apt-howto-common (notoncd) (notwanted)
- 0.4 0.0 apt-howto-de (notoncd) (notwanted)
- 0.4 0.0 apt-watch (notoncd) (notwanted)
- 0.4 0.0 aqsis-examples (notoncd) (notwanted)
- 0.4 0.0 archivemail (notoncd) (notwanted)
- 0.4 0.0 ario-common (notoncd) (notwanted)
- 0.4 0.0 asc-data (notoncd) (notwanted)
- 0.4 0.0 asc-music (notoncd) (notwanted)
- 0.4 0.0 asciidoc (notoncd) (notwanted)
- 0.4 0.0 aspell-da (notoncd) (notwanted)
- 0.4 0.0 aspell-pt-pt (notoncd) (notwanted)
- 0.4 0.0 aspell-ro (notoncd) (notwanted)
- 0.4 0.0 aspell-ru (notoncd) (notwanted)
- 0.4 0.0 aspell-sk (notoncd) (notwanted)
- 0.4 0.0 aspell-uk (notoncd) (notwanted)
- 0.4 0.0 assaultcube-data (notoncd) (notwanted)
- 0.4 0.0 asterisk-dahdi (notoncd) (notwanted)
- 0.4 0.0 asterisk-moh-opsound-wav (notoncd) (notwanted)
- 0.4 0.0 asterisk-prompt-it (notoncd) (notwanted)
- 0.4 0.0 asterisk-voicemail (notoncd) (notwanted)
- 0.4 0.0 astronomical-almanac (notoncd) (notwanted)
- 0.4 0.0 asylum-data (notoncd) (notwanted)
- 0.4 0.0 asymptote (notoncd) (notwanted)
- 0.4 0.0 asymptote-doc (notoncd) (notwanted)
- 0.4 0.0 atlc-examples (notoncd) (notwanted)
- 0.4 0.0 atom4 (notoncd) (notwanted)
- 0.4 0.0 attal-themes-medieval (notoncd) (notwanted)
- 0.4 0.0 audacious-analog-vumeter-plugin (notoncd) (notwanted)
- 0.4 0.0 audacious-analog-vumeter-plugin-data (notoncd) (notwanted)
- 0.4 0.0 audacious-analog-vumeter-plugin-dbg (notoncd) (notwanted)
- 0.4 0.0 audacious-dbg (notoncd) (notwanted)
- 0.4 0.0 audacious-dev (notoncd) (notwanted)
- 0.4 0.0 audacious-plugins-dbg (notoncd) (notwanted)
- 0.4 0.0 audacious-plugins-extra (notoncd) (notwanted)
- 0.4 0.0 auth2db-common (notoncd) (notwanted)
- 0.4 0.0 auth2db-filters (notoncd) (notwanted)
- 0.4 0.0 autoclass (notoncd) (notwanted)
- 0.4 0.0 autoconf-archive (notoncd) (notwanted)
- 0.4 0.0 autoconf-doc (notoncd) (notwanted)
- 0.4 0.0 autodock (notoncd) (notwanted)
- 0.4 0.0 autokey-common (notoncd) (notwanted)
- 0.4 0.0 automake1.4 (notoncd) (notwanted)
- 0.4 0.0 automake1.7 (notoncd) (notwanted)
- 0.4 0.0 automake1.9-doc (notoncd) (notwanted)
- 0.4 0.0 autotrace (notoncd) (notwanted)
- 0.4 0.0 avida-base (notoncd) (notwanted)
- 0.4 0.0 avifile-divx-plugin (notoncd) (notwanted)
- 0.4 0.0 awesome (notoncd) (notwanted)
- 0.4 0.0 awesome-extra (notoncd) (notwanted)
- 0.4 0.0 awn-applets-python-extras (notoncd) (notwanted)
- 0.4 0.0 ayuntamientos-doc (notoncd) (notwanted)
- 0.4 0.0 balazar3 (notoncd) (notwanted)
- 0.4 0.0 balazar3-2d (notoncd) (notwanted)
- 0.4 0.0 balazar3-3d (notoncd) (notwanted)
- 0.4 0.0 ballview (notoncd) (notwanted)
- 0.4 0.0 ballz-data (notoncd) (notwanted)
- 0.4 0.0 bandwidthd (notoncd) (notwanted)
- 0.4 0.0 banshee-community-extensions (notoncd) (notwanted)
- 0.4 0.0 banshee-extensions-common (notoncd) (notwanted)
- 0.4 0.0 berusky-data (notoncd) (notwanted)
- 0.4 0.0 bgoffice-computer-terms (notoncd) (notwanted)
- 0.4 0.0 bibledit-gtk-data (notoncd) (notwanted)
- 0.4 0.0 bicyclerepair (notoncd) (notwanted)
- 0.4 0.0 bin86 (notoncd) (notwanted)
- 0.4 0.0 bindfs (notoncd) (notwanted)
- 0.4 0.0 bing (notoncd) (notwanted)
- 0.4 0.0 biniax2-data (notoncd) (notwanted)
- 0.4 0.0 bino (notoncd) (notwanted)
- 0.4 0.0 binutils-dev (notoncd) (notwanted)
- 0.4 0.0 biosquid (notoncd) (notwanted)
- 0.4 0.0 bison-doc (notoncd) (notwanted)
- 0.4 0.0 blast2 (notoncd) (notwanted)
- 0.4 0.0 blobby-data (notoncd) (notwanted)
- 0.4 0.0 blocks-of-the-undead-data (notoncd) (notwanted)
- 0.4 0.0 bochs (notoncd) (notwanted)
- 0.4 0.0 bochs-wx (notoncd) (notwanted)
- 0.4 0.0 boinc-client (notoncd) (notwanted)
- 0.4 0.0 bootcd-i386 (notoncd) (notwanted)
- 0.4 0.0 boswars-data (notoncd) (notwanted)
- 0.4 0.0 br2684ctl (notoncd) (notwanted)
- 0.4 0.0 bristol-data (notoncd) (notwanted)
- 0.4 0.0 brmfcfaxcups (notoncd) (notwanted)
- 0.4 0.0 browser-plugin-lightspark (notoncd) (notwanted)
- 0.4 0.0 brscan-skey (notoncd) (notwanted)
- 0.4 0.0 bsh-doc (notoncd) (notwanted)
- 0.4 0.0 bsh-src (notoncd) (notwanted)
- 0.4 0.0 btanks-data (notoncd) (notwanted)
- 0.4 0.0 buzztard-data (notoncd) (notwanted)
- 0.4 0.0 bwa (notoncd) (notwanted)
- 0.4 0.0 bzr-loom (notoncd) (notwanted)
- 0.4 0.0 bzr-search (notoncd) (notwanted)
- 0.4 0.0 c++-annotations (notoncd) (notwanted)
- 0.4 0.0 c++-annotations-contrib (notoncd) (notwanted)
- 0.4 0.0 c++-annotations-dvi (notoncd) (notwanted)
- 0.4 0.0 c++-annotations-html (notoncd) (notwanted)
- 0.4 0.0 c++-annotations-latex (notoncd) (notwanted)
- 0.4 0.0 c++-annotations-pdf (notoncd) (notwanted)
- 0.4 0.0 c++-annotations-ps (notoncd) (notwanted)
- 0.4 0.0 c++-annotations-txt (notoncd) (notwanted)
- 0.4 0.0 cairo-5c (notoncd) (notwanted)
- 0.4 0.0 cairo-dock (notoncd) (notwanted)
- 0.4 0.0 cairo-dock-plugins (notoncd) (notwanted)
- 0.4 0.0 calc (notoncd) (notwanted)
- 0.4 0.0 calligra-data (notwanted)
- 0.4 0.0 caret (notoncd) (notwanted)
- 0.4 0.0 cb2bib (notoncd) (notwanted)
- 0.4 0.0 cbrowser (notoncd) (notwanted)
- 0.4 0.0 cdebootstrap (notoncd) (notwanted)
- 0.4 0.0 cdo (notoncd) (notwanted)
- 0.4 0.0 cdrecord (notoncd) (notwanted)
- 0.4 0.0 cedar-backup2-doc (notoncd) (notwanted)
- 0.4 0.0 celt-doc (notoncd) (notwanted)
- 0.4 0.0 chameleon-cursor-theme (notoncd) (notwanted)
- 0.4 0.0 chaplin (notoncd) (notwanted)
- 0.4 0.0 chatplus (notoncd) (notwanted)
- 0.4 0.0 check (notoncd) (notwanted)
- 0.4 0.0 check-mk-doc (notoncd) (notwanted)
- 0.4 0.0 check-mk-livestatus (notoncd) (notwanted)
- 0.4 0.0 childsplay-alphabet-sounds-de (notoncd) (notwanted)
- 0.4 0.0 childsplay-alphabet-sounds-it (notoncd) (notwanted)
- 0.4 0.0 childsplay-alphabet-sounds-sv (notoncd) (notwanted)
- 0.4 0.0 childsplay-lfc-names-ca (notoncd) (notwanted)
- 0.4 0.0 childsplay-lfc-names-fr (notoncd) (notwanted)
- 0.4 0.0 chimera2 (notoncd) (notwanted)
- 0.4 0.0 chromium-data (notoncd) (notwanted)
- 0.4 0.0 chronicle (notoncd) (notwanted)
- 0.4 0.0 chrpath (notoncd) (notwanted)
- 0.4 0.0 cinelerra-cv (notoncd) (notwanted)
- 0.4 0.0 cinelerra-cv-data (notoncd) (notwanted)
- 0.4 0.0 cinepaint-data (notoncd) (notwanted)
- 0.4 0.0 cipux-cat-web (notoncd) (notwanted)
- 0.4 0.0 cipux-rpcd (notoncd) (notwanted)
- 0.4 0.0 cipux-setup-tools (notoncd) (notwanted)
- 0.4 0.0 ckeditor (notoncd) (notwanted)
- 0.4 0.0 cl-base64 (notoncd) (notwanted)
- 0.4 0.0 cl-hyperobject (notoncd) (notwanted)
- 0.4 0.0 cl-md5 (notoncd) (notwanted)
- 0.4 0.0 cl-regex (notoncd) (notwanted)
- 0.4 0.0 cl-sql (notoncd) (notwanted)
- 0.4 0.0 cl-sql-aodbc (notoncd) (notwanted)
- 0.4 0.0 cl-sql-odbc (notoncd) (notwanted)
- 0.4 0.0 cl-sql-oracle (notoncd) (notwanted)
- 0.4 0.0 cl-sql-postgresql (notoncd) (notwanted)
- 0.4 0.0 cl-sql-postgresql-socket (notoncd) (notwanted)
- 0.4 0.0 cl-sql-sqlite (notoncd) (notwanted)
- 0.4 0.0 cl-sql-sqlite3 (notoncd) (notwanted)
- 0.4 0.0 cl-sql-tests (notoncd) (notwanted)
- 0.4 0.0 cl-uffi (notoncd) (notwanted)
- 0.4 0.0 cl-umlisp (notoncd) (notwanted)
- 0.4 0.0 cl-umlisp-orf (notoncd) (notwanted)
- 0.4 0.0 cl-zpb-ttf (notoncd) (notwanted)
- 0.4 0.0 clamfs (notoncd) (notwanted)
- 0.4 0.0 clanlib-doc (notoncd) (notwanted)
- 0.4 0.0 classpath (notoncd) (notwanted)
- 0.4 0.0 classpath-common (notoncd) (notwanted)
- 0.4 0.0 classpath-gtkpeer (notoncd) (notwanted)
- 0.4 0.0 claws-mail-acpi-notifier (notoncd) (notwanted)
- 0.4 0.0 claws-mail-address-keeper (notoncd) (notwanted)
- 0.4 0.0 claws-mail-archiver-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-attach-remover (notoncd) (notwanted)
- 0.4 0.0 claws-mail-attach-warner (notoncd) (notwanted)
- 0.4 0.0 claws-mail-bsfilter-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-clamd-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-doc (notoncd) (notwanted)
- 0.4 0.0 claws-mail-extra-plugins (notoncd) (notwanted)
- 0.4 0.0 claws-mail-fancy-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-feeds-reader (notoncd) (notwanted)
- 0.4 0.0 claws-mail-fetchinfo-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-gdata-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-mailmbox-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-multi-notifier (notoncd) (notwanted)
- 0.4 0.0 claws-mail-newmail-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-pdf-viewer (notoncd) (notwanted)
- 0.4 0.0 claws-mail-pgpinline (notoncd) (notwanted)
- 0.4 0.0 claws-mail-pgpmime (notoncd) (notwanted)
- 0.4 0.0 claws-mail-python-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-smime-plugin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-spam-report (notoncd) (notwanted)
- 0.4 0.0 claws-mail-spamassassin (notoncd) (notwanted)
- 0.4 0.0 claws-mail-themes (notoncd) (notwanted)
- 0.4 0.0 claws-mail-tnef-parser (notoncd) (notwanted)
- 0.4 0.0 claws-mail-tools (notoncd) (notwanted)
- 0.4 0.0 claws-mail-vcalendar-plugin (notoncd) (notwanted)
- 0.4 0.0 clawsker (notoncd) (notwanted)
- 0.4 0.0 cli-uno-bridge (notoncd) (notwanted)
- 0.4 0.0 clips-common (notoncd) (notwanted)
- 0.4 0.0 clips-doc (notoncd) (notwanted)
- 0.4 0.0 clonezilla (notoncd) (notwanted)
- 0.4 0.0 cltl (notoncd) (notwanted)
- 0.4 0.0 cmatrix (notoncd) (notwanted)
- 0.4 0.0 cndrvcups-ps3-uk (notoncd) (notwanted)
- 0.4 0.0 code-saturne (notoncd) (notwanted)
- 0.4 0.0 code-saturne-bin (notoncd) (notwanted)
- 0.4 0.0 code-saturne-doc (notoncd) (notwanted)
- 0.4 0.0 coinor-libcgl0 (notoncd) (notwanted)
- 0.4 0.0 coinor-libcoinutils0 (notoncd) (notwanted)
- 0.4 0.0 coinor-libdylp0 (notoncd) (notwanted)
- 0.4 0.0 coinor-libosi0 (notoncd) (notwanted)
- 0.4 0.0 coinor-libvol0 (notoncd) (notwanted)
- 0.4 0.0 comixcursors-righthanded (notoncd) (notwanted)
- 0.4 0.0 composite-data (notoncd) (notwanted)
- 0.4 0.0 conglomerate-common (notoncd) (notwanted)
- 0.4 0.0 console-log (notoncd) (notwanted)
- 0.4 0.0 coq (notoncd) (notwanted)
- 0.4 0.0 coq-theories (notoncd) (notwanted)
- 0.4 0.0 coqide (notoncd) (notwanted)
- 0.4 0.0 cortado (notoncd) (notwanted)
- 0.4 0.0 couchdb (notoncd) (notwanted)
- 0.4 0.0 cpp-3.3 (notoncd) (notwanted)
- 0.4 0.0 cpp-3.4 (notoncd) (notwanted)
- 0.4 0.0 cpp-4.1-doc (notoncd) (notwanted)
- 0.4 0.0 cpp-4.2-doc (notoncd) (notwanted)
- 0.4 0.0 cpp-4.3-doc (notoncd) (notwanted)
- 0.4 0.0 cpp-4.4-doc (notoncd) (notwanted)
- 0.4 0.0 cpp-doc (notoncd) (notwanted)
- 0.4 0.0 cppcheck (notoncd) (notwanted)
- 0.4 0.0 cque-es (notoncd) (notwanted)
- 0.4 0.0 crafty-books-medium (notoncd) (notwanted)
- 0.4 0.0 crafty-books-medtosmall (notoncd) (notwanted)
- 0.4 0.0 crafty-books-small (notoncd) (notwanted)
- 0.4 0.0 crossfire-client-gtk (notoncd) (notwanted)
- 0.4 0.0 crossfire-client-gtk2 (notoncd) (notwanted)
- 0.4 0.0 crossfire-common (notoncd) (notwanted)
- 0.4 0.0 crossfire-maps-small (notoncd) (notwanted)
- 0.4 0.0 cryptmount (notoncd) (notwanted)
- 0.4 0.0 crystalcursors (notoncd) (notwanted)
- 0.4 0.0 csmash-data (notoncd) (notwanted)
- 0.4 0.0 csound-doc (notoncd) (notwanted)
- 0.4 0.0 ctdb (notoncd) (notwanted)
- 0.4 0.0 cthumb (notoncd) (notwanted)
- 0.4 0.0 cups-windows (notoncd) (notwanted)
- 0.4 0.0 cups-x2go (notoncd) (notwanted)
- 0.4 0.0 cupswrapperhl2250dn (notoncd) (notwanted)
- 0.4 0.0 cupswrappermfc7320 (notoncd) (notwanted)
- 0.4 0.0 cupswrappermfc7820n (notoncd) (notwanted)
- 0.4 0.0 cupsys-driver-gimpprint (notoncd) (notwanted)
- 0.4 0.0 cupsys-driver-gutenprint (notoncd) (notwanted)
- 0.4 0.0 cvs2svn (notoncd) (notwanted)
- 0.4 0.0 cvsutils (notoncd) (notwanted)
- 0.4 0.0 cytadela-data (notoncd) (notwanted)
- 0.4 0.0 dahdi-firmware-nonfree (notoncd) (notwanted)
- 0.4 0.0 dahdi-modules-2.6.32-5-amd64 (notoncd) (notwanted)
- 0.4 0.0 dahdi-source (notoncd) (notwanted)
- 0.4 0.0 db4.6-util (notoncd) (notwanted)
- 0.4 0.0 dballe (notoncd) (notwanted)
- 0.4 0.0 dballe-common (notoncd) (notwanted)
- 0.4 0.0 dbus-1-doc (notoncd) (notwanted)
- 0.4 0.0 dbview (notoncd) (notwanted)
- 0.4 0.0 dcmtk (notoncd) (notwanted)
- 0.4 0.0 dcp150ccupswrapper (notoncd) (notwanted)
- 0.4 0.0 dcp150clpr (notoncd) (notwanted)
- 0.4 0.0 ddrescue (notoncd) (notwanted)
- 0.4 0.0 debian-faq-it (notoncd) (notwanted)
- 0.4 0.0 debian-handbook (notoncd) (notwanted)
- 0.4 0.0 debian-kernel-handbook (notoncd) (notwanted)
- 0.4 0.0 debian-ports-archive-keyring (notoncd) (notwanted)
- 0.4 0.0 debian-reference (notoncd) (notwanted)
- 0.4 0.0 debian-reference-de (notoncd) (notwanted)
- 0.4 0.0 debian-reference-it (notoncd) (notwanted)
- 0.4 0.0 debian-timeline (notoncd) (notwanted)
- 0.4 0.0 debian-unofficial-archive-keyring (notoncd) (notwanted)
- 0.4 0.0 debian-xray-keyring (notoncd) (notwanted)
- 0.4 0.0 debiandoc-sgml-doc (notoncd) (notwanted)
- 0.4 0.0 debsig-verify (notoncd) (notwanted)
- 0.4 0.0 deejayd-xine (notoncd) (notwanted)
- 0.4 0.0 defoma-doc (notoncd) (notwanted)
- 0.4 0.0 derivations (notoncd) (notwanted)
- 0.4 0.0 device3dfx-source (notoncd) (notwanted)
- 0.4 0.0 dhcpdump (notoncd) (notwanted)
- 0.4 0.0 dia-shapes (notoncd) (notwanted)
- 0.4 0.0 dialign (notoncd) (notwanted)
- 0.4 0.0 dialign-tx (notoncd) (notwanted)
- 0.4 0.0 dialign-tx-data (notoncd) (notwanted)
- 0.4 0.0 dicomnifti (notoncd) (notwanted)
- 0.4 0.0 dict-de-en (notoncd) (notwanted)
- 0.4 0.0 dict-easton (notoncd) (notwanted)
- 0.4 0.0 dict-elements (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-deu-eng (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-deu-fra (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-deu-ita (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-eng-deu (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-eng-fra (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-eng-ita (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-eng-rus (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-fra-deu (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-fra-eng (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-ita-deu (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-ita-eng (notoncd) (notwanted)
- 0.4 0.0 dict-freedict-lat-deu (notoncd) (notwanted)
- 0.4 0.0 dict-gazetteer (notoncd) (notwanted)
- 0.4 0.0 dict-gazetteer2k (notoncd) (notwanted)
- 0.4 0.0 dict-gazetteer2k-counties (notoncd) (notwanted)
- 0.4 0.0 dict-gazetteer2k-places (notoncd) (notwanted)
- 0.4 0.0 dict-gazetteer2k-zips (notoncd) (notwanted)
- 0.4 0.0 dict-stardic (notoncd) (notwanted)
- 0.4 0.0 digikam-doc (notoncd) (notwanted)
- 0.4 0.0 discover1 (notoncd) (notwanted)
- 0.4 0.0 django-ajax-selects (notoncd) (notwanted)
- 0.4 0.0 django-filter (notoncd) (notwanted)
- 0.4 0.0 django-tables (notoncd) (notwanted)
- 0.4 0.0 djview (notoncd) (notwanted)
- 0.4 0.0 dmo-archive-keyring (notoncd) (notwanted)
- 0.4 0.0 dnstop (notoncd) (notwanted)
- 0.4 0.0 dnswalk (notoncd) (notwanted)
- 0.4 0.0 doc-gnome-hig (notoncd) (notwanted)
- 0.4 0.0 doc-linux-html (notoncd) (notwanted)
- 0.4 0.0 doc-linux-it (notoncd) (notwanted)
- 0.4 0.0 doc-linux-it-text (notoncd) (notwanted)
- 0.4 0.0 doc-linux-nonfree-html (notoncd) (notwanted)
- 0.4 0.0 doc-linux-nonfree-text (notoncd) (notwanted)
- 0.4 0.0 docbook-doc (notoncd) (notwanted)
- 0.4 0.0 docbook-xsl-doc (notoncd) (notwanted)
- 0.4 0.0 docutils-common (notoncd) (notwanted)
- 0.4 0.0 docutils-doc (notoncd) (notwanted)
- 0.4 0.0 dopewars-data (notoncd) (notwanted)
- 0.4 0.0 dossizola-data (notoncd) (notwanted)
- 0.4 0.0 dovecot-gssapi (notwanted)
- 0.4 0.0 doxygen-doc (notoncd) (notwanted)
- 0.4 0.0 doxygen-latex (notoncd) (notwanted)
- 0.4 0.0 dpkg-awk (notoncd) (notwanted)
- 0.4 0.0 dpkg-repack (notoncd) (notwanted)
- 0.4 0.0 dpt-i2o-raidutils (notwanted)
- 0.4 0.0 drbl-chntpw (notoncd) (notwanted)
- 0.4 0.0 drush (notoncd) (notwanted)
- 0.4 0.0 dudenbib (notoncd) (notwanted)
- 0.4 0.0 dv2sub (notoncd) (notwanted)
- 0.4 0.0 dvb-utils (notoncd) (notwanted)
- 0.4 0.0 dvdstyler (notoncd) (notwanted)
- 0.4 0.0 dvdstyler-data (notoncd) (notwanted)
- 0.4 0.0 dvi2ps-fontdata-ja (notoncd) (notwanted)
- 0.4 0.0 dwm-tools (notoncd) (notwanted)
- 0.4 0.0 dynare-common (notoncd) (notwanted)
- 0.4 0.0 e16-data (notoncd) (notwanted)
- 0.4 0.0 eb-doc (notoncd) (notwanted)
- 0.4 0.0 eboard-extras-pack1 (notoncd) (notwanted)
- 0.4 0.0 ebook-dev-alp (notoncd) (notwanted)
- 0.4 0.0 eclipse-cdt-jni (notoncd) (notwanted)
- 0.4 0.0 eclipse-emf-examples (notoncd) (notwanted)
- 0.4 0.0 eclipse-emf-sdk (notoncd) (notwanted)
- 0.4 0.0 eclipse-xsd (notoncd) (notwanted)
- 0.4 0.0 eclipse-xsd-sdk (notoncd) (notwanted)
- 0.4 0.0 ecs (notoncd) (notwanted)
- 0.4 0.0 education-desktop-sugar
- 0.4 0.0 education-development
- 0.4 0.0 education-services
- 0.4 0.0 elinks-doc (notoncd) (notwanted)
- 0.4 0.0 emacs-intl-fonts (notoncd) (notwanted)
- 0.4 0.0 emacs21-nox (notoncd) (notwanted)
- 0.4 0.0 emacs23-el (notoncd) (notwanted)
- 0.4 0.0 emacs23-nox (notoncd) (notwanted)
- 0.4 0.0 ember-media (notoncd) (notwanted)
- 0.4 0.0 emboss (notoncd) (notwanted)
- 0.4 0.0 emboss-data (notoncd) (notwanted)
- 0.4 0.0 emboss-lib (notoncd) (notwanted)
- 0.4 0.0 emdebian-archive-keyring (notoncd) (notwanted)
- 0.4 0.0 empire-hub (notoncd) (notwanted)
- 0.4 0.0 empire-lafe (notoncd) (notwanted)
- 0.4 0.0 enamdict (notoncd) (notwanted)
- 0.4 0.0 enigma-data (notoncd) (notwanted)
- 0.4 0.0 enigma-doc (notoncd) (notwanted)
- 0.4 0.0 enigma-level-previews (notoncd) (notwanted)
- 0.4 0.0 epigrass-doc (notoncd) (notwanted)
- 0.4 0.0 epiphany-gecko (notoncd) (notwanted)
- 0.4 0.0 epiphany-webkit (notoncd) (notwanted)
- 0.4 0.0 ept-cache (notoncd) (notwanted)
- 0.4 0.0 eqonomize-doc (notoncd) (notwanted)
- 0.4 0.0 erlang-odbc (notoncd) (notwanted)
- 0.4 0.0 espeak-gui (notoncd) (notwanted)
- 0.4 0.0 etsf-io (notoncd) (notwanted)
- 0.4 0.0 etw-data (notoncd) (notwanted)
- 0.4 0.0 evolution-data-server-dev (notoncd) (notwanted)
- 0.4 0.0 execstack (notoncd) (notwanted)
- 0.4 0.0 exiftags (notoncd) (notwanted)
- 0.4 0.0 exim4-doc-html (notoncd) (notwanted)
- 0.4 0.0 exim4-doc-info (notoncd) (notwanted)
- 0.4 0.0 exonerate (notoncd) (notwanted)
- 0.4 0.0 expectk (notoncd) (notwanted)
- 0.4 0.0 ext2resize (notoncd) (notwanted)
- 0.4 0.0 extlinux (notoncd) (notwanted)
- 0.4 0.0 extremetuxracer-gimp-dev (notoncd) (notwanted)
- 0.4 0.0 ezgo-accessories (notoncd) (notwanted)
- 0.4 0.0 ezgo-education (notoncd) (notwanted)
- 0.4 0.0 ezgo-games (notoncd) (notwanted)
- 0.4 0.0 ezgo-imaging (notoncd) (notwanted)
- 0.4 0.0 ezgo-multimedia (notoncd) (notwanted)
- 0.4 0.0 ezgo-network (notoncd) (notwanted)
- 0.4 0.0 ezgo-office (notoncd) (notwanted)
- 0.4 0.0 ezgo-tasks (notoncd) (notwanted)
- 0.4 0.0 famfamfam-flag-png (notoncd) (notwanted)
- 0.4 0.0 fast-user-switch-applet (notoncd) (notwanted)
- 0.4 0.0 fastdnaml (notoncd) (notwanted)
- 0.4 0.0 fastlink (notoncd) (notwanted)
- 0.4 0.0 fatrat-data (notoncd) (notwanted)
- 0.4 0.0 faumachine-data (notoncd) (notwanted)
- 0.4 0.0 fcmp (notoncd) (notwanted)
- 0.4 0.0 ferm (notoncd) (notwanted)
- 0.4 0.0 ferret (notoncd) (notwanted)
- 0.4 0.0 festival-dev (notoncd) (notwanted)
- 0.4 0.0 festlex-ifd (notoncd) (notwanted)
- 0.4 0.0 festvox-don (notoncd) (notwanted)
- 0.4 0.0 festvox-italp16k (notoncd) (notwanted)
- 0.4 0.0 festvox-itapc16k (notoncd) (notwanted)
- 0.4 0.0 festvox-kdlpc16k (notoncd) (notwanted)
- 0.4 0.0 festvox-te-nsk (notoncd) (notwanted)
- 0.4 0.0 fet (notoncd) (notwanted)
- 0.4 0.0 fetchexc (notoncd) (notwanted)
- 0.4 0.0 fftw3 (notoncd) (notwanted)
- 0.4 0.0 fgfs-aircraft-base (notoncd) (notwanted)
- 0.4 0.0 fgfs-models-base (notoncd) (notwanted)
- 0.4 0.0 fgfs-scenery-base (notoncd) (notwanted)
- 0.4 0.0 fglrx-kernel-2.6.32-5-686 (notoncd) (notwanted)
- 0.4 0.0 fglrx-kernel-src (notoncd) (notwanted)
- 0.4 0.0 filelight-l10n (notoncd) (notwanted)
- 0.4 0.0 fileutils (notoncd) (notwanted)
- 0.4 0.0 finger-ldap (notoncd) (notwanted)
- 0.4 0.0 firebird-dev (notoncd) (notwanted)
- 0.4 0.0 firebird2.5-examples (notoncd) (notwanted)
- 0.4 0.0 firebird2.5-server-common (notoncd) (notwanted)
- 0.4 0.0 firefox-l10n-en-gb (notoncd) (notwanted)
- 0.4 0.0 firefox-sage (notoncd) (notwanted)
- 0.4 0.0 firefox-tuning (notoncd) (notwanted)
- 0.4 0.0 firmware-b43-installer (notoncd) (notwanted)
- 0.4 0.0 firmware-b43-lpphy-installer (notoncd) (notwanted)
- 0.4 0.0 firmware-b43legacy-installer (notoncd) (notwanted)
- 0.4 0.0 firmware-netxen (notoncd) (notwanted)
- 0.4 0.0 fityk (notoncd) (notwanted)
- 0.4 0.0 flamethrower (notoncd) (notwanted)
- 0.4 0.0 flashgot (notoncd) (notwanted)
- 0.4 0.0 flim (notoncd) (notwanted)
- 0.4 0.0 fontforge-common (notoncd) (notwanted)
- 0.4 0.0 fontforge-doc (notoncd) (notwanted)
- 0.4 0.0 fonts-arabeyes (notoncd) (notwanted)
- 0.4 0.0 fonts-baekmuk (notoncd) (notwanted)
- 0.4 0.0 fonts-breip (notoncd) (notwanted)
- 0.4 0.0 fonts-century-catalogue (notoncd) (notwanted)
- 0.4 0.0 fonts-cmu (notoncd) (notwanted)
- 0.4 0.0 fonts-comfortaa (notoncd) (notwanted)
- 0.4 0.0 fonts-dejavu (notoncd) (notwanted)
- 0.4 0.0 fonts-dejavu-core (notoncd) (notwanted)
- 0.4 0.0 fonts-dejavu-extra (notoncd) (notwanted)
- 0.4 0.0 fonts-gfs-artemisia (notoncd) (notwanted)
- 0.4 0.0 fonts-gfs-bodoni-classic (notoncd) (notwanted)
- 0.4 0.0 fonts-gfs-complutum (notoncd) (notwanted)
- 0.4 0.0 fonts-gfs-didot (notoncd) (notwanted)
- 0.4 0.0 fonts-gfs-neohellenic (notoncd) (notwanted)
- 0.4 0.0 fonts-gfs-olga (notoncd) (notwanted)
- 0.4 0.0 fonts-gfs-porson (notoncd) (notwanted)
- 0.4 0.0 fonts-gfs-solomos (notoncd) (notwanted)
- 0.4 0.0 fonts-inconsolata (notoncd) (notwanted)
- 0.4 0.0 fonts-jsmath (notoncd) (notwanted)
- 0.4 0.0 fonts-junicode (notoncd) (notwanted)
- 0.4 0.0 fonts-jura (notoncd) (notwanted)
- 0.4 0.0 fonts-larabie-deco (notwanted)
- 0.4 0.0 fonts-larabie-straight (notoncd) (notwanted)
- 0.4 0.0 fonts-larabie-uncommon (notoncd) (notwanted)
- 0.4 0.0 fonts-levien-museum (notoncd) (notwanted)
- 0.4 0.0 fonts-lmodern (notoncd) (notwanted)
- 0.4 0.0 fonts-oflb-asana-math (notoncd) (notwanted)
- 0.4 0.0 fonts-texgyre (notoncd) (notwanted)
- 0.4 0.0 fonts-thai-tlwg (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-garuda (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-kinnari (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-loma (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-mono (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-norasi (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-purisa (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-sawasdee (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-typewriter (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-typist (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-typo (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-umpush (notoncd) (notwanted)
- 0.4 0.0 fonts-tlwg-waree (notoncd) (notwanted)
- 0.4 0.0 fonts-tomsontalks (notoncd) (notwanted)
- 0.4 0.0 fonts-tuffy (notoncd) (notwanted)
- 0.4 0.0 fonts-unfonts-core (notoncd) (notwanted)
- 0.4 0.0 fonts-yanone-kaffeesatz (notoncd) (notwanted)
- 0.4 0.0 fonttools-eexecop (notoncd) (notwanted)
- 0.4 0.0 foomatic-db-compressed-ppds (notwanted)
- 0.4 0.0 fortunes-fr (notoncd) (notwanted)
- 0.4 0.0 fortunes-it (notoncd) (notwanted)
- 0.4 0.0 fortunes-it-off (notoncd) (notwanted)
- 0.4 0.0 fortunes-mario (notoncd) (notwanted)
- 0.4 0.0 fortunes-off (notoncd) (notwanted)
- 0.4 0.0 fotostoldap (notoncd) (notwanted)
- 0.4 0.0 fp-docs-2.6.0 (notwanted)
- 0.4 0.0 fp-units-base-2.6.0 (notwanted)
- 0.4 0.0 fp-units-db-2.6.0 (notwanted)
- 0.4 0.0 fp-units-fcl-2.6.0 (notwanted)
- 0.4 0.0 fp-units-fv-2.6.0 (notwanted)
- 0.4 0.0 fp-units-gfx-2.6.0 (notwanted)
- 0.4 0.0 fp-units-gnome1-2.6.0 (notwanted)
- 0.4 0.0 fp-units-gtk-2.6.0 (notwanted)
- 0.4 0.0 fp-units-gtk2-2.6.0 (notwanted)
- 0.4 0.0 fp-units-math-2.6.0 (notwanted)
- 0.4 0.0 fp-units-misc-2.6.0 (notwanted)
- 0.4 0.0 fp-units-multimedia-2.6.0 (notwanted)
- 0.4 0.0 fp-units-net-2.6.0 (notwanted)
- 0.4 0.0 fp-units-rtl-2.6.0 (notwanted)
- 0.4 0.0 fpc-2.6.0 (notwanted)
- 0.4 0.0 fpc-source-2.6.0 (notwanted)
- 0.4 0.0 fragmaster (notoncd) (notwanted)
- 0.4 0.0 freecad-doc (notoncd) (notwanted)
- 0.4 0.0 freeciv-client-extras (notoncd) (notwanted)
- 0.4 0.0 freecraft (notoncd) (notwanted)
- 0.4 0.0 freedink (notoncd) (notwanted)
- 0.4 0.0 freedink-data (notoncd) (notwanted)
- 0.4 0.0 freedos (notoncd) (notwanted)
- 0.4 0.0 freedroid-data (notoncd) (notwanted)
- 0.4 0.0 freefem-doc (notoncd) (notwanted)
- 0.4 0.0 freefem-examples (notoncd) (notwanted)
- 0.4 0.0 freeipmi-bmc-watchdog (notoncd) (notwanted)
- 0.4 0.0 freeipmi-ipmidetect (notoncd) (notwanted)
- 0.4 0.0 freej-doc (notoncd) (notwanted)
- 0.4 0.0 freenx-session-launcher (notoncd) (notwanted)
- 0.4 0.0 freepops (notoncd) (notwanted)
- 0.4 0.0 freeradius-krb5 (notoncd) (notwanted)
- 0.4 0.0 freetuxtv (notoncd) (notwanted)
- 0.4 0.0 freetype1-tools (notoncd) (notwanted)
- 0.4 0.0 frescobaldi (notoncd) (notwanted)
- 0.4 0.0 frogatto-data (notoncd) (notwanted)
- 0.4 0.0 fslview (notoncd) (notwanted)
- 0.4 0.0 fslview-doc (notoncd) (notwanted)
- 0.4 0.0 fso-config-gta02 (notoncd) (notwanted)
- 0.4 0.0 fso-sounds-none (notoncd) (notwanted)
- 0.4 0.0 fso-sounds-yue-base (notoncd) (notwanted)
- 0.4 0.0 fte-docs (notoncd) (notwanted)
- 0.4 0.0 ftplib-dev (notoncd) (notwanted)
- 0.4 0.0 fvwm-icons (notoncd) (notwanted)
- 0.4 0.0 g++-3.3 (notoncd) (notwanted)
- 0.4 0.0 g++-4.5 (notoncd) (notwanted)
- 0.4 0.0 g++-4.7-multilib (notoncd) (notwanted)
- 0.4 0.0 g++-multilib (notoncd) (notwanted)
- 0.4 0.0 g15daemon-audacious (notoncd) (notwanted)
- 0.4 0.0 g3data (notoncd) (notwanted)
- 0.4 0.0 gadmin-samba (notoncd) (notwanted)
- 0.4 0.0 gadmin-squid (notoncd) (notwanted)
- 0.4 0.0 gallery2 (notoncd) (notwanted)
- 0.4 0.0 gambas2-gb-db-sqlite2 (notoncd) (notwanted)
- 0.4 0.0 gambas2-script (notoncd) (notwanted)
- 0.4 0.0 gamgi (notoncd) (notwanted)
- 0.4 0.0 gap-character-tables (notoncd) (notwanted)
- 0.4 0.0 gap-small-groups-extra (notoncd) (notwanted)
- 0.4 0.0 gap-table-of-marks (notoncd) (notwanted)
- 0.4 0.0 gav (notoncd) (notwanted)
- 0.4 0.0 gav-themes (notoncd) (notwanted)
- 0.4 0.0 gawk-doc (notoncd) (notwanted)
- 0.4 0.0 gbonds-data (notoncd) (notwanted)
- 0.4 0.0 gcc-4.1-locales (notoncd) (notwanted)
- 0.4 0.0 gcc-4.3-locales (notoncd) (notwanted)
- 0.4 0.0 gcc-4.4-doc (notoncd) (notwanted)
- 0.4 0.0 gcc-4.5-base (notoncd) (notwanted)
- 0.4 0.0 gcc-4.5-multilib (notoncd) (notwanted)
- 0.4 0.0 gcc-4.6-doc (notoncd) (notwanted)
- 0.4 0.0 gcc-4.6-locales (notoncd) (notwanted)
- 0.4 0.0 gcc-4.7-doc (notoncd) (notwanted)
- 0.4 0.0 gcc-4.7-locales (notoncd) (notwanted)
- 0.4 0.0 gcc-4.8-base (notoncd) (notwanted)
- 0.4 0.0 gcj-4.4-doc (notoncd) (notwanted)
- 0.4 0.0 gcj-4.4-source (notoncd) (notwanted)
- 0.4 0.0 gcj-4.6-jdk (notoncd) (notwanted)
- 0.4 0.0 gcj-4.6-source (notoncd) (notwanted)
- 0.4 0.0 gcj-4.7-jdk (notoncd) (notwanted)
- 0.4 0.0 gcj-4.7-source (notoncd) (notwanted)
- 0.4 0.0 gcj-doc (notoncd) (notwanted)
- 0.4 0.0 gda2-postgres (notoncd) (notwanted)
- 0.4 0.0 gdb-doc (notoncd) (notwanted)
- 0.4 0.0 gddrescue (notoncd) (notwanted)
- 0.4 0.0 gdk-imlib1 (notoncd) (notwanted)
- 0.4 0.0 geany-plugins-common (notoncd) (notwanted)
- 0.4 0.0 gearhead-data (notoncd) (notwanted)
- 0.4 0.0 geda-examples (notoncd) (notwanted)
- 0.4 0.0 geeknote (notoncd) (notwanted)
- 0.4 0.0 gems (notoncd) (notwanted)
- 0.4 0.0 genx (notoncd) (notwanted)
- 0.4 0.0 geoclue-nominatim (notoncd) (notwanted)
- 0.4 0.0 geole-keyring (notoncd) (notwanted)
- 0.4 0.0 geotranz-help (notoncd) (notwanted)
- 0.4 0.0 gerris (notoncd) (notwanted)
- 0.4 0.0 gettext-doc (notoncd) (notwanted)
- 0.4 0.0 gettext-el (notoncd) (notwanted)
- 0.4 0.0 gfortran-4.4-doc (notoncd) (notwanted)
- 0.4 0.0 gfortran-4.7-doc (notoncd) (notwanted)
- 0.4 0.0 gfortran-4.7-multilib (notoncd) (notwanted)
- 0.4 0.0 gfortran-multilib (notoncd) (notwanted)
- 0.4 0.0 ggz (notoncd) (notwanted)
- 0.4 0.0 ggz-docs (notoncd) (notwanted)
- 0.4 0.0 ggz-gtk-games-data (notoncd) (notwanted)
- 0.4 0.0 ggz-kde-games-data (notoncd) (notwanted)
- 0.4 0.0 ggz-sdl-games-data (notoncd) (notwanted)
- 0.4 0.0 giggle (notoncd) (notwanted)
- 0.4 0.0 gimp-gmic (notoncd) (notwanted)
- 0.4 0.0 gimp-print (notoncd) (notwanted)
- 0.4 0.0 gimp-refocus (notoncd) (notwanted)
- 0.4 0.0 gir1.0-mutter-2.29 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-brasero-3.0 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-ebook-1.2 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-ecalendar-1.2 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-edataserver-1.2 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-gsf-1 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-gst-plugins-base-1.0 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-gstreamer-1.0 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-nautilus-3.0 (notoncd) (notwanted)
- 0.4 0.0 gir1.2-rsvg-2.0 (notoncd) (notwanted)
- 0.4 0.0 gis-gps (notoncd) (notwanted)
- 0.4 0.0 gis-osm (notoncd) (notwanted)
- 0.4 0.0 gis-tasks (notoncd) (notwanted)
- 0.4 0.0 git-daemon-run (notoncd) (notwanted)
- 0.4 0.0 gitstats (notoncd) (notwanted)
- 0.4 0.0 gitweb (notoncd) (notwanted)
- 0.4 0.0 gkdebconf (notoncd) (notwanted)
- 0.4 0.0 glade-common (notoncd) (notwanted)
- 0.4 0.0 glam2 (notoncd) (notwanted)
- 0.4 0.0 glassfish-activation (notoncd) (notwanted)
- 0.4 0.0 glassfish-appserv (notoncd) (notwanted)
- 0.4 0.0 glassfish-jmac-api (notoncd) (notwanted)
- 0.4 0.0 glassfish-mail (notoncd) (notwanted)
- 0.4 0.0 glassfish-toplink-essentials (notoncd) (notwanted)
- 0.4 0.0 glibc-doc-reference (notoncd) (notwanted)
- 0.4 0.0 glob2 (notoncd) (notwanted)
- 0.4 0.0 glob2-data (notoncd) (notwanted)
- 0.4 0.0 glpk (notoncd) (notwanted)
- 0.4 0.0 glpk-doc (notoncd) (notwanted)
- 0.4 0.0 glutg3 (notoncd) (notwanted)
- 0.4 0.0 glx-alternative-fglrx (notoncd) (notwanted)
- 0.4 0.0 glx-alternative-mesa (notoncd) (notwanted)
- 0.4 0.0 glx-diversions (notoncd) (notwanted)
- 0.4 0.0 gmerlin-data (notoncd) (notwanted)
- 0.4 0.0 gmerlin-doc (notoncd) (notwanted)
- 0.4 0.0 gmp-ecm (notoncd) (notwanted)
- 0.4 0.0 gmt-doc-pdf (notoncd) (notwanted)
- 0.4 0.0 gmt-examples (notoncd) (notwanted)
- 0.4 0.0 gmt-tutorial (notoncd) (notwanted)
- 0.4 0.0 gmt-tutorial-pdf (notoncd) (notwanted)
- 0.4 0.0 gnat-4.4-doc (notoncd) (notwanted)
- 0.4 0.0 gnat-doc (notoncd) (notwanted)
- 0.4 0.0 gngeo (notoncd) (notwanted)
- 0.4 0.0 gnome-api-docs (notoncd) (notwanted)
- 0.4 0.0 gnome-app-install (notoncd) (notwanted)
- 0.4 0.0 gnome-breakout (notoncd) (notwanted)
- 0.4 0.0 gnome-dbg (notoncd) (notwanted)
- 0.4 0.0 gnome-icon-theme-gartoon (notoncd) (notwanted)
- 0.4 0.0 gnome-screensaver-flags (notoncd) (notwanted)
- 0.4 0.0 gnome-spell (notoncd) (notwanted)
- 0.4 0.0 gnomesword (notoncd) (notwanted)
- 0.4 0.0 gnu-standards (notoncd) (notwanted)
- 0.4 0.0 gnubg-data (notoncd) (notwanted)
- 0.4 0.0 gnujump-data (notoncd) (notwanted)
- 0.4 0.0 gnuplot-doc (notoncd) (notwanted)
- 0.4 0.0 gnuplot-mode (notoncd) (notwanted)
- 0.4 0.0 gnustep (notoncd) (notwanted)
- 0.4 0.0 gnustep-base-doc (notoncd) (notwanted)
- 0.4 0.0 gnustep-base-examples (notoncd) (notwanted)
- 0.4 0.0 gnustep-core-devel (notoncd) (notwanted)
- 0.4 0.0 gnustep-core-doc (notoncd) (notwanted)
- 0.4 0.0 gnustep-devel (notoncd) (notwanted)
- 0.4 0.0 gnustep-games (notoncd) (notwanted)
- 0.4 0.0 gnustep-gui-doc (notoncd) (notwanted)
- 0.4 0.0 gnustep-icons (notoncd) (notwanted)
- 0.4 0.0 gnustep-make-doc (notoncd) (notwanted)
- 0.4 0.0 gobjc (notoncd) (notwanted)
- 0.4 0.0 gok-doc (notoncd) (notwanted)
- 0.4 0.0 goldendict-wordnet (notoncd) (notwanted)
- 0.4 0.0 gosa-plugin-addressbook (notoncd) (notwanted)
- 0.4 0.0 gosa-plugin-log (notoncd) (notwanted)
- 0.4 0.0 gosa-plugin-log-schema (notoncd) (notwanted)
- 0.4 0.0 gosa-plugin-nagios (notoncd) (notwanted)
- 0.4 0.0 gosa-plugin-nagios-schema (notoncd) (notwanted)
- 0.4 0.0 gpe-icons (notoncd) (notwanted)
- 0.4 0.0 gpgkeys (notoncd) (notwanted)
- 0.4 0.0 gphotofs (notoncd) (notwanted)
- 0.4 0.0 gpiv (notoncd) (notwanted)
- 0.4 0.0 gpiv-mpi (notoncd) (notwanted)
- 0.4 0.0 gpivtools (notoncd) (notwanted)
- 0.4 0.0 gpivtools-mpi (notoncd) (notwanted)
- 0.4 0.0 gq (notoncd) (notwanted)
- 0.4 0.0 grandr (notoncd) (notwanted)
- 0.4 0.0 graphicsmagick-dbg (notoncd) (notwanted)
- 0.4 0.0 grass-dev-doc (notoncd) (notwanted)
- 0.4 0.0 gravitywars (notoncd) (notwanted)
- 0.4 0.0 grdc (notoncd) (notwanted)
- 0.4 0.0 grdc-gnome (notoncd) (notwanted)
- 0.4 0.0 grisbi (notoncd) (notwanted)
- 0.4 0.0 grisbi-common (notoncd) (notwanted)
- 0.4 0.0 grokking-the-gimp (notoncd) (notwanted)
- 0.4 0.0 groovy-doc (notoncd) (notwanted)
- 0.4 0.0 grub-doc (notoncd) (notwanted)
- 0.4 0.0 grub-legacy-doc (notoncd) (notwanted)
- 0.4 0.0 gsettings-desktop-schemas-dev (notoncd) (notwanted)
- 0.4 0.0 gstreamer0.10-packagekit (notoncd) (notwanted)
- 0.4 0.0 gstreamer0.10-plugins-base-doc (notoncd) (notwanted)
- 0.4 0.0 gstreamer0.10-plugins-good-doc (notoncd) (notwanted)
- 0.4 0.0 gstreamer0.10-plugins-really-bad (notoncd) (notwanted)
- 0.4 0.0 gstreamer0.10-qapt (notoncd) (notwanted)
- 0.4 0.0 gstreamer1.0-libav (notoncd) (notwanted)
- 0.4 0.0 gstreamer1.0-plugins-bad (notoncd) (notwanted)
- 0.4 0.0 gstreamer1.0-plugins-base (notoncd) (notwanted)
- 0.4 0.0 gstreamer1.0-plugins-good (notoncd) (notwanted)
- 0.4 0.0 gstreamer1.0-plugins-ugly (notoncd) (notwanted)
- 0.4 0.0 gstreamer1.0-x (notoncd) (notwanted)
- 0.4 0.0 gtablix (notoncd) (notwanted)
- 0.4 0.0 gtk-chtheme (notoncd) (notwanted)
- 0.4 0.0 gtk-smooth-themes (notoncd) (notwanted)
- 0.4 0.0 gtk-theme-switch (notoncd) (notwanted)
- 0.4 0.0 gtk2-engines-wonderland (notoncd) (notwanted)
- 0.4 0.0 gtk2-ex-formfactory-perl (notoncd) (notwanted)
- 0.4 0.0 gtk3-engines-oxygen (notoncd) (notwanted)
- 0.4 0.0 gtk3-engines-unico (notoncd) (notwanted)
- 0.4 0.0 gtkam (notoncd) (notwanted)
- 0.4 0.0 gtkam-gimp (notoncd) (notwanted)
- 0.4 0.0 gtkglarea5 (notoncd) (notwanted)
- 0.4 0.0 gtkglarea5-dev (notoncd) (notwanted)
- 0.4 0.0 gtkmm-documentation (notoncd) (notwanted)
- 0.4 0.0 gtkmorph-example (notoncd) (notwanted)
- 0.4 0.0 gtkpod (notoncd) (notwanted)
- 0.4 0.0 gtkpod-data (notoncd) (notwanted)
- 0.4 0.0 guile-gnome2-gconf (notoncd) (notwanted)
- 0.4 0.0 gunroar-data (notoncd) (notwanted)
- 0.4 0.0 gutenprint-doc (notoncd) (notwanted)
- 0.4 0.0 guvcview (notoncd) (notwanted)
- 0.4 0.0 gwyddion (notoncd) (notwanted)
- 0.4 0.0 gwyddion-common (notoncd) (notwanted)
- 0.4 0.0 h264enc (notoncd) (notwanted)
- 0.4 0.0 hal-device-manager (notoncd) (notwanted)
- 0.4 0.0 handbrake-cli (notoncd) (notwanted)
- 0.4 0.0 handbrake-gtk (notoncd) (notwanted)
- 0.4 0.0 harden-clients (notoncd) (notwanted)
- 0.4 0.0 harden-environment (notoncd) (notwanted)
- 0.4 0.0 harden-nids (notoncd) (notwanted)
- 0.4 0.0 harden-remoteaudit (notoncd) (notwanted)
- 0.4 0.0 hdfview (notoncd) (notwanted)
- 0.4 0.0 hfsplus (notoncd) (notwanted)
- 0.4 0.0 hl2250dnlpr (notoncd) (notwanted)
- 0.4 0.0 hl3040cncupswrapper (notoncd) (notwanted)
- 0.4 0.0 hl3040cnlpr (notoncd) (notwanted)
- 0.4 0.0 hlatex-fonts-base (notoncd) (notwanted)
- 0.4 0.0 hlatex-fonts-extra (notoncd) (notwanted)
- 0.4 0.0 hmmer (notoncd) (notwanted)
- 0.4 0.0 holotz-castle-editor (notoncd) (notwanted)
- 0.4 0.0 honeyd-common (notoncd) (notwanted)
- 0.4 0.0 horgand-data (notoncd) (notwanted)
- 0.4 0.0 hp-openipmi (notoncd) (notwanted)
- 0.4 0.0 hpasm (notoncd) (notwanted)
- 0.4 0.0 hplip-doc (notoncd) (notwanted)
- 0.4 0.0 httperf (notoncd) (notwanted)
- 0.4 0.0 httping (notoncd) (notwanted)
- 0.4 0.0 hunspell-en-ca (notoncd) (notwanted)
- 0.4 0.0 hunspell-ro (notoncd) (notwanted)
- 0.4 0.0 hunspell-se
- 0.4 0.0 hyperspec (notoncd) (notwanted)
- 0.4 0.0 hyphen-sh (notoncd) (notwanted)
- 0.4 0.0 ia32-libs-dev (notoncd) (notwanted)
- 0.4 0.0 ia32-libs-gtk-i386 (notoncd) (notwanted)
- 0.4 0.0 ia32-libs-i386 (notoncd) (notwanted)
- 0.4 0.0 ibm-lotus-notes (notoncd) (notwanted)
- 0.4 0.0 ice34-slice (notoncd) (notwanted)
- 0.4 0.0 icebreaker (notoncd) (notwanted)
- 0.4 0.0 icedove-bidiui (notoncd) (notwanted)
- 0.4 0.0 icedove-gcontactsync (notoncd) (notwanted)
- 0.4 0.0 icedove-locale-da (notoncd) (notwanted)
- 0.4 0.0 icedove-locale-de (notoncd) (notwanted)
- 0.4 0.0 icedove-locale-es-es (notoncd) (notwanted)
- 0.4 0.0 iceowl-extension (notoncd) (notwanted)
- 0.4 0.0 iceweasel-dbg (notoncd) (notwanted)
- 0.4 0.0 iceweasel-downthemall (notoncd) (notwanted)
- 0.4 0.0 iceweasel-gnome-support (notoncd) (notwanted)
- 0.4 0.0 iceweasel-greasemonkey (notoncd) (notwanted)
- 0.4 0.0 iceweasel-l10n-ro (notwanted)
- 0.4 0.0 iceweasel-scrapbook (notoncd) (notwanted)
- 0.4 0.0 iceweasel-torbutton (notoncd) (notwanted)
- 0.4 0.0 icon-naming-utils (notoncd) (notwanted)
- 0.4 0.0 idle (notoncd) (notwanted)
- 0.4 0.0 idzebra-2.0 (notoncd) (notwanted)
- 0.4 0.0 idzebra-2.0-common (notoncd) (notwanted)
- 0.4 0.0 idzebra-2.0-doc (notoncd) (notwanted)
- 0.4 0.0 ifeffit-doc (notoncd) (notwanted)
- 0.4 0.0 ifrit (notoncd) (notwanted)
- 0.4 0.0 ilisp-doc (notoncd) (notwanted)
- 0.4 0.0 imageindex (notoncd) (notwanted)
- 0.4 0.0 imview (notoncd) (notwanted)
- 0.4 0.0 indicator-messages-gtk2 (notoncd) (notwanted)
- 0.4 0.0 infernal (notoncd) (notwanted)
- 0.4 0.0 installation-guide-amd64 (notoncd) (notwanted)
- 0.4 0.0 insync-beta-kde (notoncd) (notwanted)
- 0.4 0.0 inventor-data (notoncd) (notwanted)
- 0.4 0.0 iodbc (notoncd) (notwanted)
- 0.4 0.0 ioquake3 (notoncd) (notwanted)
- 0.4 0.0 ioquake3-server (notoncd) (notwanted)
- 0.4 0.0 iproute-doc (notoncd) (notwanted)
- 0.4 0.0 ipscan (notoncd) (notwanted)
- 0.4 0.0 iptables-persistent (notoncd) (notwanted)
- 0.4 0.0 ipxe (notoncd) (notwanted)
- 0.4 0.0 irb1.9 (notoncd) (notwanted)
- 0.4 0.0 irssi-plugin-silc (notoncd) (notwanted)
- 0.4 0.0 irussian (notoncd) (notwanted)
- 0.4 0.0 isag (notwanted)
- 0.4 0.0 itzks-systems-workstation (notoncd) (notwanted)
- 0.4 0.0 iukrainian (notoncd) (notwanted)
- 0.4 0.0 jackd1-firewire (notoncd) (notwanted)
- 0.4 0.0 jamvm (notoncd) (notwanted)
- 0.4 0.0 java-package (notoncd) (notwanted)
- 0.4 0.0 jconvolver-config-files (notoncd) (notwanted)
- 0.4 0.0 jdownloader (notoncd) (notwanted)
- 0.4 0.0 jfsutils (notoncd) (notwanted)
- 0.4 0.0 jgraph (notoncd) (notwanted)
- 0.4 0.0 josm-l10n (notoncd) (notwanted)
- 0.4 0.0 joystick (notoncd) (notwanted)
- 0.4 0.0 jpeginfo (notoncd) (notwanted)
- 0.4 0.0 junior-art (notoncd) (notwanted)
- 0.4 0.0 junior-games-gl (notoncd) (notwanted)
- 0.4 0.0 junior-games-text (notoncd) (notwanted)
- 0.4 0.0 junior-gnome (notoncd) (notwanted)
- 0.4 0.0 junior-sound (notoncd) (notwanted)
- 0.4 0.0 junior-system (notoncd) (notwanted)
- 0.4 0.0 junior-typing (notoncd) (notwanted)
- 0.4 0.0 kakasi-dic (notoncd) (notwanted)
- 0.4 0.0 kalign (notoncd) (notwanted)
- 0.4 0.0 kallery-data (notoncd) (notwanted)
- 0.4 0.0 kamefu-data (notoncd) (notwanted)
- 0.4 0.0 karchiver (notoncd) (notwanted)
- 0.4 0.0 kasumi (notoncd) (notwanted)
- 0.4 0.0 kate-dbg (notoncd) (notwanted)
- 0.4 0.0 kayali (notoncd) (notwanted)
- 0.4 0.0 kbabel (notoncd) (notwanted)
- 0.4 0.0 kde-baseapps-dbg (notoncd) (notwanted)
- 0.4 0.0 kde-guidance-powermanager (notoncd) (notwanted)
- 0.4 0.0 kde-i18n-af (notoncd) (notwanted)
- 0.4 0.0 kde-i18n-fi (notoncd) (notwanted)
- 0.4 0.0 kde-i18n-pl (notoncd) (notwanted)
- 0.4 0.0 kde-i18n-uk (notoncd) (notwanted)
- 0.4 0.0 kde-icons-crystalproject (notoncd) (notwanted)
- 0.4 0.0 kde-icons-nuvola (notoncd) (notwanted)
- 0.4 0.0 kde-l10n-engb (notoncd) (notwanted)
- 0.4 0.0 kde-l10n-fi (notoncd) (notwanted)
- 0.4 0.0 kde-l10n-ja
- 0.4 0.0 kde-l10n-pl (notoncd) (notwanted)
- 0.4 0.0 kde-l10n-ro (notoncd) (notwanted)
- 0.4 0.0 kde-l10n-ru (notoncd) (notwanted)
- 0.4 0.0 kde-l10n-uk (notoncd) (notwanted)
- 0.4 0.0 kde-runtime-dbg (notoncd) (notwanted)
- 0.4 0.0 kde-sc-dev-latest (notoncd) (notwanted)
- 0.4 0.0 kde-services (notoncd) (notwanted)
- 0.4 0.0 kde-workspace-dbg (notoncd) (notwanted)
- 0.4 0.0 kdebase-dbg (notoncd) (notwanted)
- 0.4 0.0 kdebase-doc (notoncd) (notwanted)
- 0.4 0.0 kdebase-workspace-dbg (notoncd) (notwanted)
- 0.4 0.0 kdelibs4-dev (notoncd) (notwanted)
- 0.4 0.0 kdevelop-l10n-de (notoncd) (notwanted)
- 0.4 0.0 kdevelop-l10n-it (notoncd) (notwanted)
- 0.4 0.0 kdevelop-php-dbg (notoncd) (notwanted)
- 0.4 0.0 kdevelop-php-docs-l10n-it (notoncd) (notwanted)
- 0.4 0.0 kdevelop-php-l10n-engb (notoncd) (notwanted)
- 0.4 0.0 kdevelop-php-l10n-it (notoncd) (notwanted)
- 0.4 0.0 kdevplatform-l10n-de (notoncd) (notwanted)
- 0.4 0.0 kdevplatform-l10n-it (notoncd) (notwanted)
- 0.4 0.0 kdm-theme-aperture (notoncd) (notwanted)
- 0.4 0.0 kdm-theme-bespin (notoncd) (notwanted)
- 0.4 0.0 kdm-theme-tibanna (notoncd) (notwanted)
- 0.4 0.0 kdoomsday (notoncd) (notwanted)
- 0.4 0.0 keepass2-doc (notoncd) (notwanted)
- 0.4 0.0 kernel-image-2.6-686-smp (notoncd) (notwanted)
- 0.4 0.0 kernel-patch-badram (notoncd) (notwanted)
- 0.4 0.0 ketm-data (notoncd) (notwanted)
- 0.4 0.0 keurocalc-data (notoncd) (notwanted)
- 0.4 0.0 keytouch-data (notoncd) (notwanted)
- 0.4 0.0 kiki-the-nano-bot-data (notoncd) (notwanted)
- 0.4 0.0 kile-doc (notoncd) (notwanted)
- 0.4 0.0 kile-i18n (notoncd) (notwanted)
- 0.4 0.0 kile-i18n-de (notoncd) (notwanted)
- 0.4 0.0 kipi-plugins-doc (notoncd) (notwanted)
- 0.4 0.0 klaptopdaemon (notoncd) (notwanted)
- 0.4 0.0 kmpu (notoncd) (notwanted)
- 0.4 0.0 knmap-docs (notoncd) (notwanted)
- 0.4 0.0 kobodeluxe (notoncd) (notwanted)
- 0.4 0.0 kobodeluxe-data (notoncd) (notwanted)
- 0.4 0.0 koffice-i18n-da (notoncd) (notwanted)
- 0.4 0.0 koffice-i18n-de (notoncd) (notwanted)
- 0.4 0.0 koffice-i18n-el (notoncd) (notwanted)
- 0.4 0.0 koffice-i18n-es (notoncd) (notwanted)
- 0.4 0.0 koffice-i18n-fr (notoncd) (notwanted)
- 0.4 0.0 koffice-i18n-it (notoncd) (notwanted)
- 0.4 0.0 koffice-i18n-nb (notoncd) (notwanted)
- 0.4 0.0 koffice-l10n-it (notwanted)
- 0.4 0.0 koffice-l10n-ru (notoncd) (notwanted)
- 0.4 0.0 kolab-webadmin (notoncd) (notwanted)
- 0.4 0.0 konsole-dbg (notoncd) (notwanted)
- 0.4 0.0 korundum4 (notoncd) (notwanted)
- 0.4 0.0 kqemu-common (notoncd) (notwanted)
- 0.4 0.0 kqemu-modules-2.6.26-2-686 (notoncd) (notwanted)
- 0.4 0.0 kqemu-source (notoncd) (notwanted)
- 0.4 0.0 krb5-doc (notoncd) (notwanted)
- 0.4 0.0 krecipes-data (notoncd) (notwanted)
- 0.4 0.0 krecipes-doc (notoncd) (notwanted)
- 0.4 0.0 krecordmydesktop (notoncd) (notwanted)
- 0.4 0.0 kst (notoncd) (notwanted)
- 0.4 0.0 kst-bin (notoncd) (notwanted)
- 0.4 0.0 kst-doc (notoncd) (notwanted)
- 0.4 0.0 kst-plugins (notoncd) (notwanted)
- 0.4 0.0 ktoblzcheck (notoncd) (notwanted)
- 0.4 0.0 kupfer (notoncd) (notwanted)
- 0.4 0.0 kvirc (notoncd) (notwanted)
- 0.4 0.0 kvirc-data (notoncd) (notwanted)
- 0.4 0.0 kvm (notoncd) (notwanted)
- 0.4 0.0 lapack3 (notoncd) (notwanted)
- 0.4 0.0 lash-doc (notoncd) (notwanted)
- 0.4 0.0 last-align (notoncd) (notwanted)
- 0.4 0.0 late-data (notoncd) (notwanted)
- 0.4 0.0 latex-cjk-xcjk (notoncd) (notwanted)
- 0.4 0.0 latex-fonts-thai-tlwg (notoncd) (notwanted)
- 0.4 0.0 latex-sanskrit (notoncd) (notwanted)
- 0.4 0.0 latex2html (notoncd) (notwanted)
- 0.4 0.0 latex2rtf (notoncd) (notwanted)
- 0.4 0.0 latexmk (notoncd) (notwanted)
- 0.4 0.0 lbzip2 (notoncd) (notwanted)
- 0.4 0.0 ldm-themes (notwanted)
- 0.4 0.0 lesstif2-dev (notoncd) (notwanted)
- 0.4 0.0 lfm (notoncd) (notwanted)
- 0.4 0.0 lib32gcc-4.7-dev (notoncd) (notwanted)
- 0.4 0.0 lib32gcc1-dbg (notoncd) (notwanted)
- 0.4 0.0 lib32gfortran3 (notoncd) (notwanted)
- 0.4 0.0 lib32mudflap0 (notoncd) (notwanted)
- 0.4 0.0 lib32ncurses5-dev (notoncd) (notwanted)
- 0.4 0.0 lib32stdc++6-4.7-dbg (notoncd) (notwanted)
- 0.4 0.0 lib32tinfo5 (notoncd) (notwanted)
- 0.4 0.0 lib32v4l-dev (notoncd) (notwanted)
- 0.4 0.0 lib32z1-dev (notoncd) (notwanted)
- 0.4 0.0 libacpi0 (notoncd) (notwanted)
- 0.4 0.0 libactionmailer-ruby (notoncd) (notwanted)
- 0.4 0.0 libactionpack-ruby (notoncd) (notwanted)
- 0.4 0.0 libactiveresource-ruby (notoncd) (notwanted)
- 0.4 0.0 libactivesupport-ruby (notoncd) (notwanted)
- 0.4 0.0 libafterimage0 (notoncd) (notwanted)
- 0.4 0.0 libafterstep1 (notoncd) (notwanted)
- 0.4 0.0 libakonadi-calendar4 (notoncd) (notwanted)
- 0.4 0.0 libakonadi-notes4 (notoncd) (notwanted)
- 0.4 0.0 libalglib-2.6.0 (notoncd) (notwanted)
- 0.4 0.0 libalgorithm-checkdigits-perl (notoncd) (notwanted)
- 0.4 0.0 libalkimia4 (notoncd) (notwanted)
- 0.4 0.0 liballegro4.4 (notoncd) (notwanted)
- 0.4 0.0 liballegro4.4-plugin-alsa (notoncd) (notwanted)
- 0.4 0.0 libalsaplayer0 (notoncd) (notwanted)
- 0.4 0.0 libamrita2-ruby (notoncd) (notwanted)
- 0.4 0.0 libanalitza4 (notoncd) (notwanted)
- 0.4 0.0 libanjuta-3-0 (notoncd) (notwanted)
- 0.4 0.0 libanjuta0 (notoncd) (notwanted)
- 0.4 0.0 libantlr3c-3.2-0 (notoncd) (notwanted)
- 0.4 0.0 libaosd-text2 (notoncd) (notwanted)
- 0.4 0.0 libaosd2 (notoncd) (notwanted)
- 0.4 0.0 libapache-admin-config-perl (notoncd) (notwanted)
- 0.4 0.0 libapache-poi-java-doc (notoncd) (notwanted)
- 0.4 0.0 libapache2-mod-passenger (notoncd) (notwanted)
- 0.4 0.0 libapache2-webauth (notoncd) (notwanted)
- 0.4 0.0 libapol4 (notoncd) (notwanted)
- 0.4 0.0 libappindicator1 (notoncd) (notwanted)
- 0.4 0.0 libappindicator3-1 (notoncd) (notwanted)
- 0.4 0.0 libapreq2 (notoncd) (notwanted)
- 0.4 0.0 libaprutil1-dbd-mysql (notoncd) (notwanted)
- 0.4 0.0 libaprutil1-dbd-odbc (notoncd) (notwanted)
- 0.4 0.0 libaqbanking-doc (notoncd) (notwanted)
- 0.4 0.0 libaqbanking20 (notoncd) (notwanted)
- 0.4 0.0 libaqbanking20-plugins (notoncd) (notwanted)
- 0.4 0.0 libaqbanking20-plugins-qt (notoncd) (notwanted)
- 0.4 0.0 libaqhbci13 (notoncd) (notwanted)
- 0.4 0.0 libaqofxconnect4 (notoncd) (notwanted)
- 0.4 0.0 libarmadillo-dev (notoncd) (notwanted)
- 0.4 0.0 libarmadillo0 (notoncd) (notwanted)
- 0.4 0.0 libart-dev (notoncd) (notwanted)
- 0.4 0.0 libart2.0-cil-dev (notoncd) (notwanted)
- 0.4 0.0 libarts1-dev (notoncd) (notwanted)
- 0.4 0.0 libasound2-data (notoncd) (notwanted)
- 0.4 0.0 libasound2-doc (notoncd) (notwanted)
- 0.4 0.0 libaspell-dev (notoncd) (notwanted)
- 0.4 0.0 libasprintf-dev (notoncd) (notwanted)
- 0.4 0.0 libassa3.5-5 (notoncd) (notwanted)
- 0.4 0.0 libast2 (notoncd) (notwanted)
- 0.4 0.0 libatinject-jsr330-api-java (notoncd) (notwanted)
- 0.4 0.0 libatkmm-1.6-dev (notoncd) (notwanted)
- 0.4 0.0 libatkmm-1.6-doc (notoncd) (notwanted)
- 0.4 0.0 libatlas-cpp-0.6-1 (notoncd) (notwanted)
- 0.4 0.0 libatspi-dev (notoncd) (notwanted)
- 0.4 0.0 libaubio-doc (notoncd) (notwanted)
- 0.4 0.0 libaudio-mixer-perl (notoncd) (notwanted)
- 0.4 0.0 libaudiomask-dev (notoncd) (notwanted)
- 0.4 0.0 libaudiomask1 (notoncd) (notwanted)
- 0.4 0.0 libauthen-cas-client-perl (notoncd) (notwanted)
- 0.4 0.0 libauthen-ntlm-perl (notoncd) (notwanted)
- 0.4 0.0 libauthen-simple-pam-perl (notoncd) (notwanted)
- 0.4 0.0 libauthen-simple-perl (notoncd) (notwanted)
- 0.4 0.0 libautodie-perl (notoncd) (notwanted)
- 0.4 0.0 libautotrace3 (notoncd) (notwanted)
- 0.4 0.0 libavahi-core4 (notoncd) (notwanted)
- 0.4 0.0 libavahi-qt3-dev (notoncd) (notwanted)
- 0.4 0.0 libavahi-qt4-1 (notoncd) (notwanted)
- 0.4 0.0 libavbin0 (notoncd) (notwanted)
- 0.4 0.0 libavcodec0d (notoncd) (notwanted)
- 0.4 0.0 libavcodeccvs51 (notoncd) (notwanted)
- 0.4 0.0 libavcore0 (notoncd) (notwanted)
- 0.4 0.0 libavformat0d (notoncd) (notwanted)
- 0.4 0.0 libavformatcvs51 (notoncd) (notwanted)
- 0.4 0.0 libavl1 (notoncd) (notwanted)
- 0.4 0.0 libavutil1d (notoncd) (notwanted)
- 0.4 0.0 libavutil52 (notoncd) (notwanted)
- 0.4 0.0 libavutilcvs49 (notoncd) (notwanted)
- 0.4 0.0 libaxis-java (notoncd) (notwanted)
- 0.4 0.0 libball1.3 (notoncd) (notwanted)
- 0.4 0.0 libballview1.3 (notoncd) (notwanted)
- 0.4 0.0 libbarcode-code128-perl (notoncd) (notwanted)
- 0.4 0.0 libbasicusageenvironment0 (notoncd) (notwanted)
- 0.4 0.0 libbcmail-java-doc (notoncd) (notwanted)
- 0.4 0.0 libbcprov-java-doc (notoncd) (notwanted)
- 0.4 0.0 libbctsp-java-doc (notoncd) (notwanted)
- 0.4 0.0 libbctsp-java-gcj (notoncd) (notwanted)
- 0.4 0.0 libbft1 (notoncd) (notwanted)
- 0.4 0.0 libbibutils1 (notoncd) (notwanted)
- 0.4 0.0 libbibutils2 (notoncd) (notwanted)
- 0.4 0.0 libbio2jack0 (notoncd) (notwanted)
- 0.4 0.0 libbiojava-java (notoncd) (notwanted)
- 0.4 0.0 libbiojava1.7-java (notoncd) (notwanted)
- 0.4 0.0 libbitstring-ocaml (notoncd) (notwanted)
- 0.4 0.0 libbitstring-ocaml-dev (notoncd) (notwanted)
- 0.4 0.0 libbluray-bdj (notoncd) (notwanted)
- 0.4 0.0 libbobcat2 (notoncd) (notwanted)
- 0.4 0.0 libbognor-regis-0.5-0 (notoncd) (notwanted)
- 0.4 0.0 libboost-all-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-chrono1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-date-time1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-date-time1.53.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-doc (notoncd) (notwanted)
- 0.4 0.0 libboost-filesystem1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-filesystem1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-filesystem1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-filesystem1.53.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-graph-parallel1.42-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-graph-parallel1.42.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-graph-parallel1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-graph-parallel1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-graph-parallel1.49.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-graph1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-graph1.42.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-graph1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-graph1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-iostreams1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-iostreams1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-locale-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-locale1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-locale1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-locale1.49.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-math1.42-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-math1.42.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-math1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-math1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-math1.49.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-mpi-python-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-mpi-python1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-mpi1.42-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-mpi1.42.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-mpi1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-mpi1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-mpi1.49.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-program-options1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-program-options1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-python1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-python1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-random-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-random1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-random1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-random1.49.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-regex1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-regex1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-regex1.53.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-serialization1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-serialization1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-signals1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-signals1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-signals1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-signals1.53.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-system1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-system1.53.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-test1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-test1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-test1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-test1.49.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-thread1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-thread1.53.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-timer-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-timer1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-timer1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-timer1.49.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-wave1.34.1 (notoncd) (notwanted)
- 0.4 0.0 libboost-wave1.48.0 (notoncd) (notwanted)
- 0.4 0.0 libboost-wave1.49-dev (notoncd) (notwanted)
- 0.4 0.0 libboost-wave1.49.0 (notoncd) (notwanted)
- 0.4 0.0 libboost1.42-doc (notoncd) (notwanted)
- 0.4 0.0 libbot-basicbot-perl (notoncd) (notwanted)
- 0.4 0.0 libbotan-1.8.2 (notoncd) (notwanted)
- 0.4 0.0 libbtf1.1.0 (notoncd) (notwanted)
- 0.4 0.0 libbulletml0d2 (notoncd) (notwanted)
- 0.4 0.0 libbusiness-isbn-data-perl (notoncd) (notwanted)
- 0.4 0.0 libbusiness-isbn-perl (notoncd) (notwanted)
- 0.4 0.0 libbuzztard0 (notoncd) (notwanted)
- 0.4 0.0 libbytecode-java (notoncd) (notwanted)
- 0.4 0.0 libc6-dev-x32 (notoncd) (notwanted)
- 0.4 0.0 libc6-x32 (notoncd) (notwanted)
- 0.4 0.0 libcache-memcached-perl (notoncd) (notwanted)
- 0.4 0.0 libcache-perl (notoncd) (notwanted)
- 0.4 0.0 libcairo-java (notoncd) (notwanted)
- 0.4 0.0 libcairo-java-gcj (notoncd) (notwanted)
- 0.4 0.0 libcairo-jni (notoncd) (notwanted)
- 0.4 0.0 libcairo-ruby (notoncd) (notwanted)
- 0.4 0.0 libcairo5c-0 (notoncd) (notwanted)
- 0.4 0.0 libcairomm-1.0-doc (notoncd) (notwanted)
- 0.4 0.0 libcamel-1.2-29 (notoncd) (notwanted)
- 0.4 0.0 libcamel1.2-dev (notoncd) (notwanted)
- 0.4 0.0 libcamomile-ocaml-data (notoncd) (notwanted)
- 0.4 0.0 libcanberra-doc (notoncd) (notwanted)
- 0.4 0.0 libcapi20-dev (notoncd) (notwanted)
- 0.4 0.0 libcapsinetwork0c2a (notoncd) (notwanted)
- 0.4 0.0 libccrtp-doc (notoncd) (notwanted)
- 0.4 0.0 libccrtp1-1.7-0 (notoncd) (notwanted)
- 0.4 0.0 libccrtp1-1.8-0 (notoncd) (notwanted)
- 0.4 0.0 libccss-tools (notoncd) (notwanted)
- 0.4 0.0 libcdr-0.0-0 (notoncd) (notwanted)
- 0.4 0.0 libceguiogrerenderer-1.6.4 (notoncd) (notwanted)
- 0.4 0.0 libcfitsio2 (notoncd) (notwanted)
- 0.4 0.0 libcfitsio3-dev (notoncd) (notwanted)
- 0.4 0.0 libcgi-formbuilder-perl (notoncd) (notwanted)
- 0.4 0.0 libcgi-session-driver-memcached-perl (notoncd) (notwanted)
- 0.4 0.0 libcgi-session-perl (notoncd) (notwanted)
- 0.4 0.0 libcgi-session-serialize-yaml-perl (notoncd) (notwanted)
- 0.4 0.0 libcherokee-base0 (notoncd) (notwanted)
- 0.4 0.0 libcherokee-client0 (notoncd) (notwanted)
- 0.4 0.0 libcherokee-config0 (notoncd) (notwanted)
- 0.4 0.0 libchipcard-libgwenhywfar47-plugins (notoncd) (notwanted)
- 0.4 0.0 libchipcard-libgwenhywfar60-plugins (notoncd) (notwanted)
- 0.4 0.0 libchipcard6 (notoncd) (notwanted)
- 0.4 0.0 libchipcardd0 (notoncd) (notwanted)
- 0.4 0.0 libcipux-cat-web-perl (notoncd) (notwanted)
- 0.4 0.0 libcipux-object-perl (notoncd) (notwanted)
- 0.4 0.0 libcipux-perl (notoncd) (notwanted)
- 0.4 0.0 libcipux-rbac-perl (notoncd) (notwanted)
- 0.4 0.0 libcipux-rpc-perl (notoncd) (notwanted)
- 0.4 0.0 libcipux-setup-perl (notoncd) (notwanted)
- 0.4 0.0 libcipux-storage-perl (notoncd) (notwanted)
- 0.4 0.0 libcipux-task-perl (notoncd) (notwanted)
- 0.4 0.0 libclalsadrv2 (notoncd) (notwanted)
- 0.4 0.0 libclamav2 (notoncd) (notwanted)
- 0.4 0.0 libclamav5 (notoncd) (notwanted)
- 0.4 0.0 libclamunrar6 (notoncd) (notwanted)
- 0.4 0.0 libclass-accessor-grouped-perl (notoncd) (notwanted)
- 0.4 0.0 libclass-adapter-perl (notoncd) (notwanted)
- 0.4 0.0 libclass-dbi-sqlite-perl (notoncd) (notwanted)
- 0.4 0.0 libclass-errorhandler-perl (notoncd) (notwanted)
- 0.4 0.0 libclass-factory-util-perl (notoncd) (notwanted)
- 0.4 0.0 libclass-std-perl (notoncd) (notwanted)
- 0.4 0.0 libclass-xsaccessor-perl (notoncd) (notwanted)
- 0.4 0.0 libclaw-configuration-file1 (notoncd) (notwanted)
- 0.4 0.0 libclaw-logger1 (notoncd) (notwanted)
- 0.4 0.0 libclips (notoncd) (notwanted)
- 0.4 0.0 libcloog-ppl1 (notoncd) (notwanted)
- 0.4 0.0 libclthreads2 (notoncd) (notwanted)
- 0.4 0.0 libclutter-1.0-doc (notoncd) (notwanted)
- 0.4 0.0 libclutter-gst-0.10-0 (notoncd) (notwanted)
- 0.4 0.0 libclutter-gtk-1.0-doc (notoncd) (notwanted)
- 0.4 0.0 libclxclient3 (notoncd) (notwanted)
- 0.4 0.0 libcmis-0.3-3 (notoncd) (notwanted)
- 0.4 0.0 libcogl-doc (notoncd) (notwanted)
- 0.4 0.0 libcoin80 (notoncd) (notwanted)
- 0.4 0.0 libcommoncpp2-1.5-0 (notoncd) (notwanted)
- 0.4 0.0 libcommons-attributes-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-configuration-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-daemon-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-discovery-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-fileupload-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-jci-eclipse-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-jxpath-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-modeler-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-net-java (notoncd) (notwanted)
- 0.4 0.0 libcommons-net1-java (notoncd) (notwanted)
- 0.4 0.0 libcomplearn-dev (notoncd) (notwanted)
- 0.4 0.0 libcomplearn1 (notoncd) (notwanted)
- 0.4 0.0 libcomplearn1-headers (notoncd) (notwanted)
- 0.4 0.0 libcompress-raw-lzma-perl (notoncd) (notwanted)
- 0.4 0.0 libconfig-any-perl (notoncd) (notwanted)
- 0.4 0.0 libconfuse0 (notoncd) (notwanted)
- 0.4 0.0 libconstantine-java (notoncd) (notwanted)
- 0.4 0.0 libcontactsdb0 (notoncd) (notwanted)
- 0.4 0.0 libconvert-tnef-perl (notoncd) (notwanted)
- 0.4 0.0 libcoq-ocaml (notoncd) (notwanted)
- 0.4 0.0 libcppunit-1.13-0 (notoncd) (notwanted)
- 0.4 0.0 libcppunit-dev (notoncd) (notwanted)
- 0.4 0.0 libcroco3-dev (notoncd) (notwanted)
- 0.4 0.0 libcrypt-blowfish-perl (notoncd) (notwanted)
- 0.4 0.0 libcrypt-cbc-perl (notoncd) (notwanted)
- 0.4 0.0 libcrypt-openssl-bignum-perl (notoncd) (notwanted)
- 0.4 0.0 libcrypt-openssl-dsa-perl (notoncd) (notwanted)
- 0.4 0.0 libcrypt-openssl-rsa-perl (notoncd) (notwanted)
- 0.4 0.0 libcrypt-rijndael-perl (notoncd) (notwanted)
- 0.4 0.0 libcsfml-audio1.6 (notoncd) (notwanted)
- 0.4 0.0 libcsfml-doc (notoncd) (notwanted)
- 0.4 0.0 libcsfml-graphics1.6 (notoncd) (notwanted)
- 0.4 0.0 libcsfml-network1.6 (notoncd) (notwanted)
- 0.4 0.0 libcsfml-system1.6 (notoncd) (notwanted)
- 0.4 0.0 libcsfml-window1.6 (notoncd) (notwanted)
- 0.4 0.0 libcsnd5.2 (notoncd) (notwanted)
- 0.4 0.0 libcsound64-5.1 (notoncd) (notwanted)
- 0.4 0.0 libcsound64-dev (notoncd) (notwanted)
- 0.4 0.0 libcsparse2.2.3 (notoncd) (notwanted)
- 0.4 0.0 libctemplate2 (notoncd) (notwanted)
- 0.4 0.0 libctl3 (notoncd) (notwanted)
- 0.4 0.0 libcuda1-ia32 (notoncd) (notwanted)
- 0.4 0.0 libcupsimage2-dev (notoncd) (notwanted)
- 0.4 0.0 libcupsys2-gnutls10 (notoncd) (notwanted)
- 0.4 0.0 libcurl3-nss (notoncd) (notwanted)
- 0.4 0.0 libcurses-perl (notoncd) (notwanted)
- 0.4 0.0 libcurses-ui-perl (notoncd) (notwanted)
- 0.4 0.0 libcv-dev (notoncd) (notwanted)
- 0.4 0.0 libcvc3-2 (notoncd) (notwanted)
- 0.4 0.0 libcvc3-2-dev (notoncd) (notwanted)
- 0.4 0.0 libcw3 (notoncd) (notwanted)
- 0.4 0.0 libcwiid1 (notoncd) (notwanted)
- 0.4 0.0 libdap-dev (notoncd) (notwanted)
- 0.4 0.0 libdata-dump-perl (notoncd) (notwanted)
- 0.4 0.0 libdataobjects-mysql-ruby (notoncd) (notwanted)
- 0.4 0.0 libdataobjects-postgres-ruby (notoncd) (notwanted)
- 0.4 0.0 libdataobjects-ruby (notoncd) (notwanted)
- 0.4 0.0 libdataobjects-sqlite3-ruby (notoncd) (notwanted)
- 0.4 0.0 libdatetime-format-builder-perl (notoncd) (notwanted)
- 0.4 0.0 libdatetime-format-dateparse-perl (notoncd) (notwanted)
- 0.4 0.0 libdatetime-format-iso8601-perl (notoncd) (notwanted)
- 0.4 0.0 libdb-dev (notoncd) (notwanted)
- 0.4 0.0 libdb1-compat (notoncd) (notwanted)
- 0.4 0.0 libdb3-util (notoncd) (notwanted)
- 0.4 0.0 libdb4.2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.0 libdb5.1++ (notoncd) (notwanted)
- 0.4 0.0 libdb5.1-java-gcj (notoncd) (notwanted)
- 0.4 0.0 libdballe4 (notoncd) (notwanted)
- 0.4 0.0 libdbaudiolib0 (notoncd) (notwanted)
- 0.4 0.0 libdbd-anydata-perl (notoncd) (notwanted)
- 0.4 0.0 libdbd-csv-perl (notoncd) (notwanted)
- 0.4 0.0 libdbd-mysql-ruby (notoncd) (notwanted)
- 0.4 0.0 libdbd-mysql-ruby1.8 (notoncd) (notwanted)
- 0.4 0.0 libdbd-sqlite3-ruby (notoncd) (notwanted)
- 0.4 0.0 libdbus-c++-1-0 (notoncd) (notwanted)
- 0.4 0.0 libdbus-java (notoncd) (notwanted)
- 0.4 0.0 libdbusmenu-glib1 (notoncd) (notwanted)
- 0.4 0.0 libdbusmenu-gtk1 (notoncd) (notwanted)
- 0.4 0.0 libdc1394-13 (notoncd) (notwanted)
- 0.4 0.0 libdc5 (notoncd) (notwanted)
- 0.4 0.0 libdebian-installer-extra4 (notoncd) (notwanted)
- 0.4 0.0 libdebian-installer4 (notoncd) (notwanted)
- 0.4 0.0 libdecodeqr0 (notoncd) (notwanted)
- 0.4 0.0 libdesktop-agnostic-fdo-gio (notoncd) (notwanted)
- 0.4 0.0 libdevel-profile-perl (notoncd) (notwanted)
- 0.4 0.0 libdevhelp-1-1 (notoncd) (notwanted)
- 0.4 0.0 libdevhelp-3-0 (notoncd) (notwanted)
- 0.4 0.0 libdevmapper-dev (notoncd) (notwanted)
- 0.4 0.0 libdigest-bubblebabble-perl (notoncd) (notwanted)
- 0.4 0.0 libdigest-sha-perl (notoncd) (notwanted)
- 0.4 0.0 libdime (notoncd) (notwanted)
- 0.4 0.0 libdirac-dev (notoncd) (notwanted)
- 0.4 0.0 libdirectfb-0.9-25 (notoncd) (notwanted)
- 0.4 0.0 libdjconsole-data (notoncd) (notwanted)
- 0.4 0.0 libdjconsole0 (notoncd) (notwanted)
- 0.4 0.0 libdmraid1.0.0.rc16 (notwanted)
- 0.4 0.0 libdmtx-dev (notoncd) (notwanted)
- 0.4 0.0 libdmtx-utils (notoncd) (notwanted)
- 0.4 0.0 libdmx-dev (notoncd) (notwanted)
- 0.4 0.0 libdns-ruby (notoncd) (notwanted)
- 0.4 0.0 libdns50 (notoncd) (notwanted)
- 0.4 0.0 libdoodle1 (notoncd) (notwanted)
- 0.4 0.0 libdoxia-java (notoncd) (notwanted)
- 0.4 0.0 libdoxia-sitetools-java (notoncd) (notwanted)
- 0.4 0.0 libdublincore-record-perl (notoncd) (notwanted)
- 0.4 0.0 libdvb-dev (notoncd) (notwanted)
- 0.4 0.0 libdvbpsi3 (notoncd) (notwanted)
- 0.4 0.0 libdvdcss-dev (notoncd) (notwanted)
- 0.4 0.0 libdynamite0 (notoncd) (notwanted)
- 0.4 0.0 libebackend-1.2-1 (notoncd) (notwanted)
- 0.4 0.0 libebackend1.2-dev (notoncd) (notwanted)
- 0.4 0.0 libebook1.2-dev (notoncd) (notwanted)
- 0.4 0.0 libecal-1.2-10 (notoncd) (notwanted)
- 0.4 0.0 libecal1.2-dev (notoncd) (notwanted)
- 0.4 0.0 libeclipselink-java (notoncd) (notwanted)
- 0.4 0.0 libeclipselink-java-doc (notoncd) (notwanted)
- 0.4 0.0 libecm0 (notoncd) (notwanted)
- 0.4 0.0 libedata-book1.2-dev (notoncd) (notwanted)
- 0.4 0.0 libedata-cal-1.2-13 (notoncd) (notwanted)
- 0.4 0.0 libedata-cal1.2-dev (notoncd) (notwanted)
- 0.4 0.0 libedataserver-1.2-15 (notoncd) (notwanted)
- 0.4 0.0 libedataserver1.2-14 (notoncd) (notwanted)
- 0.4 0.0 libedataserver1.2-dev (notoncd) (notwanted)
- 0.4 0.0 libedataserverui-3.0-dev (notoncd) (notwanted)
- 0.4 0.0 libee0 (notoncd) (notwanted)
- 0.4 0.0 libeel2-dev (notoncd) (notwanted)
- 0.4 0.0 libegroupwise1.2-dev (notoncd) (notwanted)
- 0.4 0.0 libeina1 (notoncd) (notwanted)
- 0.4 0.0 libelemental0 (notoncd) (notwanted)
- 0.4 0.0 libelf-dev (notoncd) (notwanted)
- 0.4 0.0 libemail-abstract-perl (notoncd) (notwanted)
- 0.4 0.0 libemail-date-perl (notoncd) (notwanted)
- 0.4 0.0 libemail-simple-perl (notoncd) (notwanted)
- 0.4 0.0 libemos-data (notoncd) (notwanted)
- 0.4 0.0 libemos0d (notoncd) (notwanted)
- 0.4 0.0 libenet0debian1 (notoncd) (notwanted)
- 0.4 0.0 libenet1a (notoncd) (notwanted)
- 0.4 0.0 libengine-pkcs11-openssl (notoncd) (notwanted)
- 0.4 0.0 libepc-1.0-1 (notoncd) (notwanted)
- 0.4 0.0 libepc-ui-1.0-1 (notoncd) (notwanted)
- 0.4 0.0 liberis-1.3-15 (notoncd) (notwanted)
- 0.4 0.0 libesd-java (notoncd) (notwanted)
- 0.4 0.0 libestools2.0-dev (notoncd) (notwanted)
- 0.4 0.0 libestr0 (notoncd) (notwanted)
- 0.4 0.0 libestraier8 (notoncd) (notwanted)
- 0.4 0.0 libetpan13 (notoncd) (notwanted)
- 0.4 0.0 libetpan15 (notoncd) (notwanted)
- 0.4 0.0 libev3 (notoncd) (notwanted)
- 0.4 0.0 libeval0 (notoncd) (notwanted)
- 0.4 0.0 libevent-core-1.4-2 (notoncd) (notwanted)
- 0.4 0.0 libevent-execflow-perl (notoncd) (notwanted)
- 0.4 0.0 libevent-rpc-perl (notoncd) (notwanted)
- 0.4 0.0 libeventdb2 (notoncd) (notwanted)
- 0.4 0.0 libevocosm-3.1-1 (notoncd) (notwanted)
- 0.4 0.0 libevocosm-dev (notoncd) (notwanted)
- 0.4 0.0 libewf1 (notoncd) (notwanted)
- 0.4 0.0 libexiv2-0.10 (notoncd) (notwanted)
- 0.4 0.0 libexttextcat-2.0-0 (notoncd) (notwanted)
- 0.4 0.0 libezv24-0 (notoncd) (notwanted)
- 0.4 0.0 libfaac-dev (notoncd) (notwanted)
- 0.4 0.0 libfam-dev (notoncd) (notwanted)
- 0.4 0.0 libfam0c102 (notoncd) (notwanted)
- 0.4 0.0 libfbembed2.5 (notoncd) (notwanted)
- 0.4 0.0 libfdt1 (notoncd) (notwanted)
- 0.4 0.0 libfeed-find-perl (notoncd) (notwanted)
- 0.4 0.0 libffcall1-dev (notoncd) (notwanted)
- 0.4 0.0 libfftw3-bin (notoncd) (notwanted)
- 0.4 0.0 libfftw3-long3 (notoncd) (notwanted)
- 0.4 0.0 libfftw3-quad3 (notoncd) (notwanted)
- 0.4 0.0 libfglrx (notoncd) (notwanted)
- 0.4 0.0 libfglrx-amdxvba1 (notoncd) (notwanted)
- 0.4 0.0 libfinance-streamer-perl (notoncd) (notwanted)
- 0.4 0.0 libfinance-yahooquote-perl (notoncd) (notwanted)
- 0.4 0.0 libfishsound1 (notoncd) (notwanted)
- 0.4 0.0 libflac++5 (notoncd) (notwanted)
- 0.4 0.0 libflac-doc (notoncd) (notwanted)
- 0.4 0.0 libflac7 (notoncd) (notwanted)
- 0.4 0.0 libflash-mozplugin (notoncd) (notwanted)
- 0.4 0.0 libflickcurl0 (notoncd) (notwanted)
- 0.4 0.0 libflowcanvas3 (notoncd) (notwanted)
- 0.4 0.0 libflute-1.3-jfree-java (notoncd) (notwanted)
- 0.4 0.0 libflute-java-doc (notoncd) (notwanted)
- 0.4 0.0 libflute-java-openoffice.org (notoncd) (notwanted)
- 0.4 0.0 libfontenc-dev (notoncd) (notwanted)
- 0.4 0.0 libfontforge1 (notoncd) (notwanted)
- 0.4 0.0 libfonts-java-doc (notoncd) (notwanted)
- 0.4 0.0 libfonts-java-openoffice.org (notoncd) (notwanted)
- 0.4 0.0 libforms1 (notoncd) (notwanted)
- 0.4 0.0 libformula-java-doc (notoncd) (notwanted)
- 0.4 0.0 libformula-java-openoffice.org (notoncd) (notwanted)
- 0.4 0.0 libfparser-4.3 (notoncd) (notwanted)
- 0.4 0.0 libfpdf-tpl-php (notoncd) (notwanted)
- 0.4 0.0 libfpdi-php (notoncd) (notwanted)
- 0.4 0.0 libfreeipmi6 (notoncd) (notwanted)
- 0.4 0.0 libfreej0 (notoncd) (notwanted)
- 0.4 0.0 libfreemarker-java (notoncd) (notwanted)
- 0.4 0.0 libfrontier-rpc-perl (notoncd) (notwanted)
- 0.4 0.0 libfs-dev (notoncd) (notwanted)
- 0.4 0.0 libfso-glib1 (notoncd) (notwanted)
- 0.4 0.0 libfsobasics0 (notoncd) (notwanted)
- 0.4 0.0 libfsoframework0 (notoncd) (notwanted)
- 0.4 0.0 libfunambol (notoncd) (notwanted)
- 0.4 0.0 libfuse-dev (notoncd) (notwanted)
- 0.4 0.0 libfvm0 (notoncd) (notwanted)
- 0.4 0.0 libga-dev (notoncd) (notwanted)
- 0.4 0.0 libga2 (notoncd) (notwanted)
- 0.4 0.0 libgai0 (notoncd) (notwanted)
- 0.4 0.0 libgail-3-dev (notoncd) (notwanted)
- 0.4 0.0 libgail-3-doc (notoncd) (notwanted)
- 0.4 0.0 libgail-doc (notoncd) (notwanted)
- 0.4 0.0 libganymed-ssh2-java (notoncd) (notwanted)
- 0.4 0.0 libgavl-doc (notoncd) (notwanted)
- 0.4 0.0 libgcc-4.7-dev (notoncd) (notwanted)
- 0.4 0.0 libgcj-doc (notoncd) (notwanted)
- 0.4 0.0 libgcj12-dbg (notoncd) (notwanted)
- 0.4 0.0 libgcj12-dev (notoncd) (notwanted)
- 0.4 0.0 libgcj13-dbg (notoncd) (notwanted)
- 0.4 0.0 libgcj13-dev (notoncd) (notwanted)
- 0.4 0.0 libgck-1-dev (notoncd) (notwanted)
- 0.4 0.0 libgconf2-ruby (notoncd) (notwanted)
- 0.4 0.0 libgconf2.0-cil-dev (notoncd) (notwanted)
- 0.4 0.0 libgconfmm-2.6-dev (notoncd) (notwanted)
- 0.4 0.0 libgd-barcode-perl (notoncd) (notwanted)
- 0.4 0.0 libgd-graph3d-perl (notoncd) (notwanted)
- 0.4 0.0 libgd3 (notoncd) (notwanted)
- 0.4 0.0 libgda-5.0-4 (notoncd) (notwanted)
- 0.4 0.0 libgda-5.0-common (notoncd) (notwanted)
- 0.4 0.0 libgda-5.0-doc (notoncd) (notwanted)
- 0.4 0.0 libgda2-bin (notoncd) (notwanted)
- 0.4 0.0 libgdal1-1.5.0 (notoncd) (notwanted)
- 0.4 0.0 libgdal1-1.7.0 (notoncd) (notwanted)
- 0.4 0.0 libgdbm-dev (notoncd) (notwanted)
- 0.4 0.0 libgdbmg1 (notoncd) (notwanted)
- 0.4 0.0 libgdbussyncevo0 (notoncd) (notwanted)
- 0.4 0.0 libgdchart-gd2-noxpm (notoncd) (notwanted)
- 0.4 0.0 libgdk-pixbuf-gnome2 (notoncd) (notwanted)
- 0.4 0.0 libgdk-pixbuf2.0-doc (notoncd) (notwanted)
- 0.4 0.0 libgdl-3-2 (notoncd) (notwanted)
- 0.4 0.0 libgdl-3-common (notoncd) (notwanted)
- 0.4 0.0 libgdraw4 (notoncd) (notwanted)
- 0.4 0.0 libgegl-0.0-doc (notoncd) (notwanted)
- 0.4 0.0 libgenders0 (notoncd) (notwanted)
- 0.4 0.0 libgeographiclib-dev (notoncd) (notwanted)
- 0.4 0.0 libgeographiclib1 (notoncd) (notwanted)
- 0.4 0.0 libgeographiclib9 (notoncd) (notwanted)
- 0.4 0.0 libgeoip-dev (notoncd) (notwanted)
- 0.4 0.0 libgeos-3.2.2 (notoncd) (notwanted)
- 0.4 0.0 libgeos-doc (notoncd) (notwanted)
- 0.4 0.0 libgeotiff1.2 (notoncd) (notwanted)
- 0.4 0.0 libgeotiff2 (notoncd) (notwanted)
- 0.4 0.0 libgeronimo-commonj-spec-java (notoncd) (notwanted)
- 0.4 0.0 libgeronimo-ejb-3.0-spec-java (notoncd) (notwanted)
- 0.4 0.0 libgetopt-long-descriptive-perl (notoncd) (notwanted)
- 0.4 0.0 libgetopt-tabular-perl (notoncd) (notwanted)
- 0.4 0.0 libgettextpo-dev (notoncd) (notwanted)
- 0.4 0.0 libgfortran1 (notoncd) (notwanted)
- 0.4 0.0 libgfortran3-dbg (notoncd) (notwanted)
- 0.4 0.0 libgfs-1.3-1 (notoncd) (notwanted)
- 0.4 0.0 libgfs-dev (notoncd) (notwanted)
- 0.4 0.0 libggadget-gtk-1.0-0b (notoncd) (notwanted)
- 0.4 0.0 libggz-gtk1 (notoncd) (notwanted)
- 0.4 0.0 libggzdmod++1 (notoncd) (notwanted)
- 0.4 0.0 libggzdmod6 (notoncd) (notwanted)
- 0.4 0.0 libghc-citeproc-hs-data (notoncd) (notwanted)
- 0.4 0.0 libghc6-cairo-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-data-accessor-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-event-list-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-glib-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-gstreamer-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-haskell-src-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-haskore-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-highlighting-kate-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-midi-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-mtl-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-non-negative-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-openal-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-opengl-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-parsec2-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-parsec3-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-sdl-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-sdl-mixer-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-transformers-doc (notoncd) (notwanted)
- 0.4 0.0 libghc6-xhtml-doc (notoncd) (notwanted)
- 0.4 0.0 libghemical0c2a (notoncd) (notwanted)
- 0.4 0.0 libgig6 (notoncd) (notwanted)
- 0.4 0.0 libginac2 (notoncd) (notwanted)
- 0.4 0.0 libgl1-fglrx-glx (notoncd) (notwanted)
- 0.4 0.0 libgl1-nvidia-alternatives (notoncd) (notwanted)
- 0.4 0.0 libgl1-nvidia-glx (notoncd) (notwanted)
- 0.4 0.0 libglade2-ruby (notoncd) (notwanted)
- 0.4 0.0 libglademm-2.4-dev (notoncd) (notwanted)
- 0.4 0.0 libgladeui-2-0 (notoncd) (notwanted)
- 0.4 0.0 libgladeui-common (notoncd) (notwanted)
- 0.4 0.0 libgles2-mesa (notoncd) (notwanted)
- 0.4 0.0 libglib-java (notoncd) (notwanted)
- 0.4 0.0 libglib-java-gcj (notoncd) (notwanted)
- 0.4 0.0 libglib-jni (notoncd) (notwanted)
- 0.4 0.0 libglib1.2 (notoncd) (notwanted)
- 0.4 0.0 libglibmm-2.4-doc (notoncd) (notwanted)
- 0.4 0.0 libglide2 (notoncd) (notwanted)
- 0.4 0.0 libgloox8 (notoncd) (notwanted)
- 0.4 0.0 libglpng (notoncd) (notwanted)
- 0.4 0.0 libgluezilla (notoncd) (notwanted)
- 0.4 0.0 libglut3 (notoncd) (notwanted)
- 0.4 0.0 libglx-nvidia-alternatives (notoncd) (notwanted)
- 0.4 0.0 libgmerlin-doc (notoncd) (notwanted)
- 0.4 0.0 libgmerlin0 (notoncd) (notwanted)
- 0.4 0.0 libgmime-2.0-2-dev (notoncd) (notwanted)
- 0.4 0.0 libgmime-2.4-dev (notoncd) (notwanted)
- 0.4 0.0 libgmime-2.6-dev (notoncd) (notwanted)
- 0.4 0.0 libgmp-ocaml (notoncd) (notwanted)
- 0.4 0.0 libgmp-ocaml-dev (notoncd) (notwanted)
- 0.4 0.0 libgnelib-doc (notoncd) (notwanted)
- 0.4 0.0 libgnelib0 (notoncd) (notwanted)
- 0.4 0.0 libgnokii3 (notoncd) (notwanted)
- 0.4 0.0 libgnome-desktop-dev (notoncd) (notwanted)
- 0.4 0.0 libgnome-device-manager0 (notoncd) (notwanted)
- 0.4 0.0 libgnome-java (notoncd) (notwanted)
- 0.4 0.0 libgnome-java-gcj (notoncd) (notwanted)
- 0.4 0.0 libgnome-jni (notoncd) (notwanted)
- 0.4 0.0 libgnome-menu-3-dev (notoncd) (notwanted)
- 0.4 0.0 libgnome-menu-dev (notoncd) (notwanted)
- 0.4 0.0 libgnome-pilot2 (notoncd) (notwanted)
- 0.4 0.0 libgnome-vfs2.0-cil-dev (notoncd) (notwanted)
- 0.4 0.0 libgnome-vfsmm-2.6-dev (notoncd) (notwanted)
- 0.4 0.0 libgnome-window-settings-dev (notoncd) (notwanted)
- 0.4 0.0 libgnome2-ruby (notoncd) (notwanted)
- 0.4 0.0 libgnome2.0-cil (notoncd) (notwanted)
- 0.4 0.0 libgnome2.0-cil-dev (notoncd) (notwanted)
- 0.4 0.0 libgnomecanvas2-doc (notoncd) (notwanted)
- 0.4 0.0 libgnomecanvasmm-2.6-dev (notoncd) (notwanted)
- 0.4 0.0 libgnomemm-2.6-dev (notoncd) (notwanted)
- 0.4 0.0 libgnomeprint2.2-dev (notoncd) (notwanted)
- 0.4 0.0 libgnomeprintui2.2-dev (notoncd) (notwanted)
- 0.4 0.0 libgnomeuimm-2.6-dev (notoncd) (notwanted)
- 0.4 0.0 libgnorba-dev (notoncd) (notwanted)
- 0.4 0.0 libgnujaf-java-doc (notoncd) (notwanted)
- 0.4 0.0 libgnustep-dl2-0d (notoncd) (notwanted)
- 0.4 0.0 libgoffice-0-6 (notoncd) (notwanted)
- 0.4 0.0 libgoffice-0-6-common (notoncd) (notwanted)
- 0.4 0.0 libgoffice-1-dev (notoncd) (notwanted)
- 0.4 0.0 libgomp1-dbg (notoncd) (notwanted)
- 0.4 0.0 libgoogle-collections-java (notoncd) (notwanted)
- 0.4 0.0 libgoogle-perftools0 (notoncd) (notwanted)
- 0.4 0.0 libgooglecharts-ruby (notoncd) (notwanted)
- 0.4 0.0 libgp11-dev (notoncd) (notwanted)
- 0.4 0.0 libgpds0 (notoncd) (notwanted)
- 0.4 0.0 libgpepimc0 (notoncd) (notwanted)
- 0.4 0.0 libgpevtype1 (notoncd) (notwanted)
- 0.4 0.0 libgpewidget-data (notoncd) (notwanted)
- 0.4 0.0 libgpiv-mpi3 (notoncd) (notwanted)
- 0.4 0.0 libgpiv3 (notoncd) (notwanted)
- 0.4 0.0 libgpm-dev (notoncd) (notwanted)
- 0.4 0.0 libgpmg1-dev (notoncd) (notwanted)
- 0.4 0.0 libgpod0 (notoncd) (notwanted)
- 0.4 0.0 libgpod3 (notoncd) (notwanted)
- 0.4 0.0 libgraph-readwrite-perl (notoncd) (notwanted)
- 0.4 0.0 libgraphicsmagick1 (notoncd) (notwanted)
- 0.4 0.0 libgravatar-url-perl (notoncd) (notwanted)
- 0.4 0.0 libgrib-api-0d-0 (notoncd) (notwanted)
- 0.4 0.0 libgrib-api-tools (notoncd) (notwanted)
- 0.4 0.0 libgrinvin-core-java (notoncd) (notwanted)
- 0.4 0.0 libgrinvin-core-java-doc (notoncd) (notwanted)
- 0.4 0.0 libgrinvin-factories-java (notoncd) (notwanted)
- 0.4 0.0 libgrinvin-generators-java (notoncd) (notwanted)
- 0.4 0.0 libgrinvin-graphs-java (notoncd) (notwanted)
- 0.4 0.0 libgrinvin-help-java (notoncd) (notwanted)
- 0.4 0.0 libgrinvin-invariants-java (notoncd) (notwanted)
- 0.4 0.0 libgroupsock0 (notoncd) (notwanted)
- 0.4 0.0 libgsf-1-dev (notoncd) (notwanted)
- 0.4 0.0 libgsf-gnome-1-dev (notoncd) (notwanted)
- 0.4 0.0 libgsoap2 (notoncd) (notwanted)
- 0.4 0.0 libgssdp-doc (notoncd) (notwanted)
- 0.4 0.0 libgstbuzztard0 (notoncd) (notwanted)
- 0.4 0.0 libgstfarsight0.10-doc (notoncd) (notwanted)
- 0.4 0.0 libgstreamer-plugins-bad1.0-0 (notoncd) (notwanted)
- 0.4 0.0 libgstreamer-plugins-base1.0-0 (notoncd) (notwanted)
- 0.4 0.0 libgstreamer1.0-0 (notoncd) (notwanted)
- 0.4 0.0 libgtfb0 (notoncd) (notwanted)
- 0.4 0.0 libgtfb0-dev (notoncd) (notwanted)
- 0.4 0.0 libgtk-3-dev (notoncd) (notwanted)
- 0.4 0.0 libgtk-3-doc (notoncd) (notwanted)
- 0.4 0.0 libgtk-java (notoncd) (notwanted)
- 0.4 0.0 libgtk-java-gcj (notoncd) (notwanted)
- 0.4 0.0 libgtk-jni (notoncd) (notwanted)
- 0.4 0.0 libgtk2-perl-doc (notoncd) (notwanted)
- 0.4 0.0 libgtkdatabox-0.9.1-1 (notoncd) (notwanted)
- 0.4 0.0 libgtkgl2.0-1 (notoncd) (notwanted)
- 0.4 0.0 libgtkgl2.0-dev (notoncd) (notwanted)
- 0.4 0.0 libgtkglextmm-x11-1.2-0 (notoncd) (notwanted)
- 0.4 0.0 libgtkhex-3-0 (notoncd) (notwanted)
- 0.4 0.0 libgtkhotkey1 (notoncd) (notwanted)
- 0.4 0.0 libgtkhtml3.14-dev (notoncd) (notwanted)
- 0.4 0.0 libgtkhtml3.16-cil (notoncd) (notwanted)
- 0.4 0.0 libgtkhtml3.8-dev (notoncd) (notwanted)
- 0.4 0.0 libgtkmm-2.4-dev (notoncd) (notwanted)
- 0.4 0.0 libgtkmm-3.0-dev (notoncd) (notwanted)
- 0.4 0.0 libgtkmm-3.0-doc (notoncd) (notwanted)
- 0.4 0.0 libgtksourceview-3.0-doc (notoncd) (notwanted)
- 0.4 0.0 libgtksourceview-dev (notoncd) (notwanted)
- 0.4 0.0 libgtksourceview2.0-dev (notoncd) (notwanted)
- 0.4 0.0 libgtksourceviewmm-2.0-2 (notoncd) (notwanted)
- 0.4 0.0 libgtkspell-3-0 (notoncd) (notwanted)
- 0.4 0.0 libgtkxmhtml1 (notoncd) (notwanted)
- 0.4 0.0 libgucharmap6 (notoncd) (notwanted)
- 0.4 0.0 libgui-commands-java (notoncd) (notwanted)
- 0.4 0.0 libguichan-0.8.1-1 (notoncd) (notwanted)
- 0.4 0.0 libguichan-allegro-0.8.1-1 (notoncd) (notwanted)
- 0.4 0.0 libguichan-sdl-0.8.1-1 (notoncd) (notwanted)
- 0.4 0.0 libgupnp-av-doc (notoncd) (notwanted)
- 0.4 0.0 libgupnp-doc (notoncd) (notwanted)
- 0.4 0.0 libgv-python (notoncd) (notwanted)
- 0.4 0.0 libgwengui-fox16-0 (notoncd) (notwanted)
- 0.4 0.0 libgwengui-qt4-0 (notoncd) (notwanted)
- 0.4 0.0 libgwt-dev-java (notoncd) (notwanted)
- 0.4 0.0 libgwt-user-java (notoncd) (notwanted)
- 0.4 0.0 libgwyddion2-0 (notoncd) (notwanted)
- 0.4 0.0 libhal-storage-dev (notoncd) (notwanted)
- 0.4 0.0 libharfbuzz-dev (notoncd) (notwanted)
- 0.4 0.0 libharfbuzz-icu0 (notoncd) (notwanted)
- 0.4 0.0 libharminv2 (notoncd) (notwanted)
- 0.4 0.0 libhawknl (notoncd) (notwanted)
- 0.4 0.0 libhawtjni-runtime-java (notoncd) (notwanted)
- 0.4 0.0 libhd-doc (notoncd) (notwanted)
- 0.4 0.0 libhdf5-mpi-dev (notoncd) (notwanted)
- 0.4 0.0 libhdf5-mpich-1.8.4 (notoncd) (notwanted)
- 0.4 0.0 libhdf5-openmpi-1.8.4 (notoncd) (notwanted)
- 0.4 0.0 libhdf5-openmpi-dev (notoncd) (notwanted)
- 0.4 0.0 libhdf5-serial-1.6.5-0 (notoncd) (notwanted)
- 0.4 0.0 libhessian-java (notoncd) (notwanted)
- 0.4 0.0 libhfsp0 (notoncd) (notwanted)
- 0.4 0.0 libhibernate3-java (notoncd) (notwanted)
- 0.4 0.0 libhildon-1-0 (notoncd) (notwanted)
- 0.4 0.0 libhildonmime0 (notoncd) (notwanted)
- 0.4 0.0 libhpdf-2.1.0 (notoncd) (notwanted)
- 0.4 0.0 libhpdf-2.2.1 (notoncd) (notwanted)
- 0.4 0.0 libhpricot-ruby (notoncd) (notwanted)
- 0.4 0.0 libhpricot-ruby1.9 (notoncd) (notwanted)
- 0.4 0.0 libhsqldb1.8.0-java (notoncd) (notwanted)
- 0.4 0.0 libhtml-clean-perl (notoncd) (notwanted)
- 0.4 0.0 libhtml-simpleparse-perl (notoncd) (notwanted)
- 0.4 0.0 libhtml-template-pro-perl (notoncd) (notwanted)
- 0.4 0.0 libhtmlparser-java (notoncd) (notwanted)
- 0.4 0.0 libhttp-access2-ruby1.8 (notoncd) (notwanted)
- 0.4 0.0 libib-util (notoncd) (notwanted)
- 0.4 0.0 libical-dev (notoncd) (notwanted)
- 0.4 0.0 libice-doc (notoncd) (notwanted)
- 0.4 0.0 libiceutil34 (notoncd) (notwanted)
- 0.4 0.0 libiconv-hook1 (notoncd) (notwanted)
- 0.4 0.0 libicu36 (notoncd) (notwanted)
- 0.4 0.0 libid3tag0-dev (notoncd) (notwanted)
- 0.4 0.0 libidzebra-2.0-0 (notoncd) (notwanted)
- 0.4 0.0 libidzebra-2.0-mod-alvis (notoncd) (notwanted)
- 0.4 0.0 libidzebra-2.0-mod-dom (notoncd) (notwanted)
- 0.4 0.0 libidzebra-2.0-mod-grs-marc (notoncd) (notwanted)
- 0.4 0.0 libidzebra-2.0-mod-grs-regx (notoncd) (notwanted)
- 0.4 0.0 libidzebra-2.0-mod-grs-xml (notoncd) (notwanted)
- 0.4 0.0 libidzebra-2.0-mod-text (notoncd) (notwanted)
- 0.4 0.0 libidzebra-2.0-modules (notoncd) (notwanted)
- 0.4 0.0 libiec16022-0 (notoncd) (notwanted)
- 0.4 0.0 libimage-base-bundle-perl (notoncd) (notwanted)
- 0.4 0.0 libimage-info-perl (notoncd) (notwanted)
- 0.4 0.0 libindi0a (notoncd) (notwanted)
- 0.4 0.0 libindicate4 (notoncd) (notwanted)
- 0.4 0.0 libindicator0 (notoncd) (notwanted)
- 0.4 0.0 libinotifytools0 (notoncd) (notwanted)
- 0.4 0.0 libintl-gettext-ruby1.8 (notoncd) (notwanted)
- 0.4 0.0 libio-compress-lzma-perl (notoncd) (notwanted)
- 0.4 0.0 libipc-system-simple-perl (notoncd) (notwanted)
- 0.4 0.0 libipe7.0.10 (notoncd) (notwanted)
- 0.4 0.0 libipmimonitoring1 (notoncd) (notwanted)
- 0.4 0.0 libirrlicht-doc (notoncd) (notwanted)
- 0.4 0.0 libirrlicht1.7 (notoncd) (notwanted)
- 0.4 0.0 libiscsi1 (notoncd) (notwanted)
- 0.4 0.0 libisoburn1 (notoncd) (notwanted)
- 0.4 0.0 libitext1-java (notoncd) (notwanted)
- 0.4 0.0 libitext5-java (notoncd) (notwanted)
- 0.4 0.0 libitm1-dbg (notoncd) (notwanted)
- 0.4 0.0 libiulib0 (notoncd) (notwanted)
- 0.4 0.0 libiw28 (notoncd) (notwanted)
- 0.4 0.0 libjack0.100.0-dev (notoncd) (notwanted)
- 0.4 0.0 libjackson-json-java (notoncd) (notwanted)
- 0.4 0.0 libjackson-json-java-doc (notoncd) (notwanted)
- 0.4 0.0 libjakarta-poi-java (notoncd) (notwanted)
- 0.4 0.0 libjakarta-taglibs-standard-java (notoncd) (notwanted)
- 0.4 0.0 libjamon-java (notoncd) (notwanted)
- 0.4 0.0 libjansi-java (notoncd) (notwanted)
- 0.4 0.0 libjansi-native-java (notoncd) (notwanted)
- 0.4 0.0 libjansson4 (notoncd) (notwanted)
- 0.4 0.0 libjasper-1.701-1 (notoncd) (notwanted)
- 0.4 0.0 libjasperreports-java (notoncd) (notwanted)
- 0.4 0.0 libjaudiotagger-java (notoncd) (notwanted)
- 0.4 0.0 libjaula1 (notoncd) (notwanted)
- 0.4 0.0 libjbcrypt-java (notoncd) (notwanted)
- 0.4 0.0 libjcommon-java-doc (notoncd) (notwanted)
- 0.4 0.0 libjcommon-serializer-java (notoncd) (notwanted)
- 0.4 0.0 libjdom0-java (notoncd) (notwanted)
- 0.4 0.0 libjetty-java-doc (notoncd) (notwanted)
- 0.4 0.0 libjexcelapi-java (notoncd) (notwanted)
- 0.4 0.0 libjgraph-java-doc (notoncd) (notwanted)
- 0.4 0.0 libjhdf4-java (notoncd) (notwanted)
- 0.4 0.0 libjhdf4-jni (notoncd) (notwanted)
- 0.4 0.0 libjinglep2p0.3-0 (notoncd) (notwanted)
- 0.4 0.0 libjinglexmpp0.3-0 (notoncd) (notwanted)
- 0.4 0.0 libjinput-java (notoncd) (notwanted)
- 0.4 0.0 libjlatexmath-fop-java (notoncd) (notwanted)
- 0.4 0.0 libjlayer-java-doc (notoncd) (notwanted)
- 0.4 0.0 libjmathtex-java (notoncd) (notwanted)
- 0.4 0.0 libjna-posix-java (notoncd) (notwanted)
- 0.4 0.0 libjoda-time-java (notoncd) (notwanted)
- 0.4 0.0 libjs-codemirror (notoncd) (notwanted)
- 0.4 0.0 libjs-excanvas (notoncd) (notwanted)
- 0.4 0.0 libjs-extjs (notoncd) (notwanted)
- 0.4 0.0 libjs-jquery-event-drag (notoncd) (notwanted)
- 0.4 0.0 libjs-jquery-form (notoncd) (notwanted)
- 0.4 0.0 libjs-jquery-metadata (notoncd) (notwanted)
- 0.4 0.0 libjs-jquery-mousewheel (notoncd) (notwanted)
- 0.4 0.0 libjs-jquery-tablesorter (notoncd) (notwanted)
- 0.4 0.0 libjs-jquery-tipsy (notoncd) (notwanted)
- 0.4 0.0 libjs-openlayers (notoncd) (notwanted)
- 0.4 0.0 libjs-scriptaculous (notoncd) (notwanted)
- 0.4 0.0 libjs-simile-timeline (notoncd) (notwanted)
- 0.4 0.0 libjs-xmlextras (notoncd) (notwanted)
- 0.4 0.0 libjsf-api-java (notoncd) (notwanted)
- 0.4 0.0 libjsf-impl-java (notoncd) (notwanted)
- 0.4 0.0 libjson-any-perl (notoncd) (notwanted)
- 0.4 0.0 libjson-ruby (notoncd) (notwanted)
- 0.4 0.0 libjson-ruby1.8 (notoncd) (notwanted)
- 0.4 0.0 libjsr311-api-java (notoncd) (notwanted)
- 0.4 0.0 libjsr311-api-java-doc (notoncd) (notwanted)
- 0.4 0.0 libjstl1.1-java (notoncd) (notwanted)
- 0.4 0.0 libjtds-java (notoncd) (notwanted)
- 0.4 0.0 libjutils-java (notoncd) (notwanted)
- 0.4 0.0 libjzlib-java (notoncd) (notwanted)
- 0.4 0.0 libk3b2 (notoncd) (notwanted)
- 0.4 0.0 libkastencore4 (notoncd) (notwanted)
- 0.4 0.0 libkastengui4 (notoncd) (notwanted)
- 0.4 0.0 libkdcraw0 (notoncd) (notwanted)
- 0.4 0.0 libkde4-ruby (notoncd) (notwanted)
- 0.4 0.0 libkexif1 (notoncd) (notwanted)
- 0.4 0.0 libklu1.1.0 (notoncd) (notwanted)
- 0.4 0.0 libkohana2-php (notoncd) (notwanted)
- 0.4 0.0 libkonq4-dev (notoncd) (notwanted)
- 0.4 0.0 libkozo0 (notoncd) (notwanted)
- 0.4 0.0 libkpathsea3 (notoncd) (notwanted)
- 0.4 0.0 libkst1-dev (notoncd) (notwanted)
- 0.4 0.0 libkst1c2 (notoncd) (notwanted)
- 0.4 0.0 libktoblzcheck1-dev (notoncd) (notwanted)
- 0.4 0.0 libkwineffects1abi2 (notoncd) (notwanted)
- 0.4 0.0 libkwwidgets1.0.0908 (notoncd) (notwanted)
- 0.4 0.0 libkxl0 (notoncd) (notwanted)
- 0.4 0.0 liblam4 (notoncd) (notwanted)
- 0.4 0.0 liblame0 (notoncd) (notwanted)
- 0.4 0.0 liblangtag-common (notoncd) (notwanted)
- 0.4 0.0 liblangtag1 (notoncd) (notwanted)
- 0.4 0.0 liblas1 (notoncd) (notwanted)
- 0.4 0.0 liblasi0 (notoncd) (notwanted)
- 0.4 0.0 liblastfm-fingerprint0 (notoncd) (notwanted)
- 0.4 0.0 liblayout-java-doc (notoncd) (notwanted)
- 0.4 0.0 liblayout-java-openoffice.org (notoncd) (notwanted)
- 0.4 0.0 libldap-ruby1.8 (notoncd) (notwanted)
- 0.4 0.0 libldl2.0.1 (notoncd) (notwanted)
- 0.4 0.0 liblightdm-gobject-1-0 (notwanted)
- 0.4 0.0 liblightdm-qt-2-0 (notoncd) (notwanted)
- 0.4 0.0 liblikeback-data (notoncd) (notwanted)
- 0.4 0.0 liblikeback0 (notoncd) (notwanted)
- 0.4 0.0 liblineak-0.9-0 (notoncd) (notwanted)
- 0.4 0.0 liblinear-dev (notoncd) (notwanted)
- 0.4 0.0 liblingua-stem-snowball-perl (notoncd) (notwanted)
- 0.4 0.0 liblinphone2 (notoncd) (notwanted)
- 0.4 0.0 liblinphone4 (notoncd) (notwanted)
- 0.4 0.0 liblivemedia7 (notoncd) (notwanted)
- 0.4 0.0 liblo0 (notoncd) (notwanted)
- 0.4 0.0 liblo10k1-0 (notoncd) (notwanted)
- 0.4 0.0 libloader-java-openoffice.org (notoncd) (notwanted)
- 0.4 0.0 liblocale-currency-format-perl (notoncd) (notwanted)
- 0.4 0.0 liblocale-po-perl (notoncd) (notwanted)
- 0.4 0.0 liblockdev1-perl (notoncd) (notwanted)
- 0.4 0.0 liblog4c3 (notoncd) (notwanted)
- 0.4 0.0 liblog4j1.2-java-doc (notoncd) (notwanted)
- 0.4 0.0 liblogback-java (notoncd) (notwanted)
- 0.4 0.0 liblogfile-rotate-perl (notoncd) (notwanted)
- 0.4 0.0 liblognorm0 (notoncd) (notwanted)
- 0.4 0.0 liblouisxml-data (notoncd) (notwanted)
- 0.4 0.0 liblscp2 (notoncd) (notwanted)
- 0.4 0.0 liblsofui4 (notoncd) (notwanted)
- 0.4 0.0 liblua40 (notoncd) (notwanted)
- 0.4 0.0 liblua5.1-0-dev (notoncd) (notwanted)
- 0.4 0.0 liblua5.1-curl0 (notoncd) (notwanted)
- 0.4 0.0 liblua5.1-expat0 (notoncd) (notwanted)
- 0.4 0.0 liblua5.1-filesystem0 (notoncd) (notwanted)
- 0.4 0.0 liblua5.1-socket2 (notoncd) (notwanted)
- 0.4 0.0 liblua50-dev (notoncd) (notwanted)
- 0.4 0.0 liblualib40 (notoncd) (notwanted)
- 0.4 0.0 liblualib50-dev (notoncd) (notwanted)
- 0.4 0.0 liblucene3-contrib-java (notoncd) (notwanted)
- 0.4 0.0 liblucene3-java (notoncd) (notwanted)
- 0.4 0.0 liblunar-1-0 (notoncd) (notwanted)
- 0.4 0.0 liblv2dynparamhost1-1 (notoncd) (notwanted)
- 0.4 0.0 liblv2dynparamplugin1-0 (notoncd) (notwanted)
- 0.4 0.0 liblwjgl-java (notoncd) (notwanted)
- 0.4 0.0 liblwjgl-java-doc (notoncd) (notwanted)
- 0.4 0.0 liblwp-authen-wsse-perl (notoncd) (notwanted)
- 0.4 0.0 liblzo2-dev (notoncd) (notwanted)
- 0.4 0.0 libmac2 (notoncd) (notwanted)
- 0.4 0.0 libmagick++4 (notoncd) (notwanted)
- 0.4 0.0 libmagick++9c2a (notoncd) (notwanted)
- 0.4 0.0 libmagick9 (notoncd) (notwanted)
- 0.4 0.0 libmagickcore4 (notoncd) (notwanted)
- 0.4 0.0 libmagickcore4-extra (notoncd) (notwanted)
- 0.4 0.0 libmagickwand4 (notoncd) (notwanted)
- 0.4 0.0 libmagics++-data (notoncd) (notwanted)
- 0.4 0.0 libmagplus3 (notoncd) (notwanted)
- 0.4 0.0 libmapscript-ruby1.9 (notoncd) (notwanted)
- 0.4 0.0 libmapserver (notoncd) (notwanted)
- 0.4 0.0 libmarblewidget12 (notoncd) (notwanted)
- 0.4 0.0 libmarc-charset-perl (notoncd) (notwanted)
- 0.4 0.0 libmarc-record-perl (notoncd) (notwanted)
- 0.4 0.0 libmath++0c2a (notoncd) (notwanted)
- 0.4 0.0 libmath-bigint-gmp-perl (notoncd) (notwanted)
- 0.4 0.0 libmatthew-debug-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-archiver-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-clean-plugin-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-compiler-plugin-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-dependency-tree-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-file-management-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-filtering-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-install-plugin-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-jar-plugin-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-plugin-tools-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-reporting-impl-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-resources-plugin-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-scm-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-shade-plugin-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-shared-io-java (notoncd) (notwanted)
- 0.4 0.0 libmaven-war-plugin-java (notoncd) (notwanted)
- 0.4 0.0 libmaven2-core-java (notoncd) (notwanted)
- 0.4 0.0 libmbt0 (notoncd) (notwanted)
- 0.4 0.0 libmcpp0 (notoncd) (notwanted)
- 0.4 0.0 libmcs-dev (notoncd) (notwanted)
- 0.4 0.0 libmd5-perl (notoncd) (notwanted)
- 0.4 0.0 libmedc1 (notoncd) (notwanted)
- 0.4 0.0 libmediainfo0 (notoncd) (notwanted)
- 0.4 0.0 libmeep-mpi6 (notoncd) (notwanted)
- 0.4 0.0 libmeep6 (notoncd) (notwanted)
- 0.4 0.0 libmei0 (notoncd) (notwanted)
- 0.4 0.0 libmemcached5 (notoncd) (notwanted)
- 0.4 0.0 libmemoize-memcached-perl (notoncd) (notwanted)
- 0.4 0.0 libmemphis-0.2-0 (notoncd) (notwanted)
- 0.4 0.0 libmemphis-doc (notoncd) (notwanted)
- 0.4 0.0 libmercator-0.2-6 (notoncd) (notwanted)
- 0.4 0.0 libmetacity-dev (notoncd) (notwanted)
- 0.4 0.0 libmilter1.0.1 (notoncd) (notwanted)
- 0.4 0.0 libmime-base32-perl (notoncd) (notwanted)
- 0.4 0.0 libmimedir-gnome0.4 (notoncd) (notwanted)
- 0.4 0.0 libmimedir0 (notoncd) (notwanted)
- 0.4 0.0 libmimic-doc (notoncd) (notwanted)
- 0.4 0.0 libmina-java (notoncd) (notwanted)
- 0.4 0.0 libmina2-java (notoncd) (notwanted)
- 0.4 0.0 libmina2-java-doc (notoncd) (notwanted)
- 0.4 0.0 libminc2-1 (notoncd) (notwanted)
- 0.4 0.0 libmissioncontrol-client0 (notoncd) (notwanted)
- 0.4 0.0 libmissioncontrol-server1 (notoncd) (notwanted)
- 0.4 0.0 libmkv0 (notoncd) (notwanted)
- 0.4 0.0 libmlpost-ocaml-dev (notoncd) (notwanted)
- 0.4 0.0 libmlpost-ocaml-doc (notoncd) (notwanted)
- 0.4 0.0 libmmpong0.9 (notoncd) (notwanted)
- 0.4 0.0 libmnl0 (notoncd) (notwanted)
- 0.4 0.0 libmockito-java (notoncd) (notwanted)
- 0.4 0.0 libmodello-java (notoncd) (notwanted)
- 0.4 0.0 libmono-2.0-1 (notoncd) (notwanted)
- 0.4 0.0 libmono-2.0-dev (notoncd) (notwanted)
- 0.4 0.0 libmono-codecontracts4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-compilerservices-symbolwriter4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-csharp4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-custommarshalers4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-debugger-soft2.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-debugger-soft4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-http4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-i18n-cjk4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-i18n-mideast4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-i18n-other4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-i18n-rare4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-i18n4.0-all (notoncd) (notwanted)
- 0.4 0.0 libmono-ldap4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-management4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-messaging-rabbitmq4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-messaging4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-microsoft-build-engine4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-microsoft-build-framework4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-microsoft-build-tasks-v4.0-4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-microsoft-build-utilities-v4.0-4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-microsoft-csharp4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-microsoft-visualc10.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-microsoft-web-infrastructure1.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-npgsql4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-opensystem-c4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-oracle4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-peapi4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-rabbitmq4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-relaxng4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-componentmodel-composition4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-configuration-install4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-data-datasetextensions4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-data-linq4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-data-services-client4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-data-services4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-design4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-drawing-design4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-dynamic4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-identitymodel-selectors4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-identitymodel4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-ldap4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-management4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-messaging4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-net4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-numerics4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-runtime-caching4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-runtime-durableinstancing4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-runtime-serialization-formatters-soap4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-runtime-serialization4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-runtime4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-servicemodel-discovery4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-servicemodel-routing4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-servicemodel-web4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-servicemodel4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-serviceprocess4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-web-abstractions4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-web-dynamicdata4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-web-extensions-design4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-web-extensions4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-web-routing4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-windows-forms-datavisualization4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-xaml4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-system-xml-linq4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-tasklets4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-webbrowser2.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-webmatrix-data4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmono-windowsbase4.0-cil (notoncd) (notwanted)
- 0.4 0.0 libmopac7-0 (notoncd) (notwanted)
- 0.4 0.0 libmorph (notoncd) (notwanted)
- 0.4 0.0 libmowgli-dev (notoncd) (notwanted)
- 0.4 0.0 libmozjs0d (notoncd) (notwanted)
- 0.4 0.0 libmozjs185-dev (notoncd) (notwanted)
- 0.4 0.0 libmozjs2d-dbg (notoncd) (notwanted)
- 0.4 0.0 libmozjs9d (notoncd) (notwanted)
- 0.4 0.0 libmp3splt0-mp3 (notoncd) (notwanted)
- 0.4 0.0 libmp3splt0-ogg (notoncd) (notwanted)
- 0.4 0.0 libmp4v2-0 (notoncd) (notwanted)
- 0.4 0.0 libmp4v2-2 (notoncd) (notwanted)
- 0.4 0.0 libmpd1 (notoncd) (notwanted)
- 0.4 0.0 libmpeg1 (notoncd) (notwanted)
- 0.4 0.0 libmpeg4ip-0 (notoncd) (notwanted)
- 0.4 0.0 libmpich1.0c2 (notoncd) (notwanted)
- 0.4 0.0 libmspub-0.0-0 (notoncd) (notwanted)
- 0.4 0.0 libmtp-doc (notoncd) (notwanted)
- 0.4 0.0 libmudflap0 (notoncd) (notwanted)
- 0.4 0.0 libmudflap0-4.6-dev (notoncd) (notwanted)
- 0.4 0.0 libmudflap0-4.7-dev (notoncd) (notwanted)
- 0.4 0.0 libmudflap0-dbg (notoncd) (notwanted)
- 0.4 0.0 libmuparser0 (notoncd) (notwanted)
- 0.4 0.0 libmyodbc (notoncd) (notwanted)
- 0.4 0.0 libmyspell-dev (notoncd) (notwanted)
- 0.4 0.0 libmysql-ruby (notoncd) (notwanted)
- 0.4 0.0 libmysql-ruby1.8 (notoncd) (notwanted)
- 0.4 0.0 libmysqlcppconn7 (notoncd) (notwanted)
- 0.4 0.0 libmythes-dev (notoncd) (notwanted)
- 0.4 0.0 libnautilus-burn-dev (notoncd) (notwanted)
- 0.4 0.0 libnautilus-burn3 (notoncd) (notwanted)
- 0.4 0.0 libncbi6 (notoncd) (notwanted)
- 0.4 0.0 libncp (notoncd) (notwanted)
- 0.4 0.0 libncurses4 (notoncd) (notwanted)
- 0.4 0.0 libnekohtml-java (notoncd) (notwanted)
- 0.4 0.0 libnet-dns-sec-perl (notoncd) (notwanted)
- 0.4 0.0 libnet-inet6glue-perl (notoncd) (notwanted)
- 0.4 0.0 libnet-irc-perl (notoncd) (notwanted)
- 0.4 0.0 libnet-xmpp-perl (notoncd) (notwanted)
- 0.4 0.0 libnet-z3950-zoom-perl (notoncd) (notwanted)
- 0.4 0.0 libnetbeans-cvsclient-java (notoncd) (notwanted)
- 0.4 0.0 libnetcdf3 (notoncd) (notwanted)
- 0.4 0.0 libnetcdfc++4 (notoncd) (notwanted)
- 0.4 0.0 libnetcdfc++5 (notoncd) (notwanted)
- 0.4 0.0 libnetcdfc6 (notoncd) (notwanted)
- 0.4 0.0 libnetpbm9 (notoncd) (notwanted)
- 0.4 0.0 libnfo1 (notoncd) (notwanted)
- 0.4 0.0 libnglib-4.9.12 (notoncd) (notwanted)
- 0.4 0.0 libnice-doc (notoncd) (notwanted)
- 0.4 0.0 libnm-util-dev (notoncd) (notwanted)
- 0.4 0.0 libnotify-doc (notoncd) (notwanted)
- 0.4 0.0 libnotmuch-dev (notoncd) (notwanted)
- 0.4 0.0 libnotmuch2 (notoncd) (notwanted)
- 0.4 0.0 libnova-dev (notoncd) (notwanted)
- 0.4 0.0 libnss-lwres (notoncd) (notwanted)
- 0.4 0.0 libnss3-0d (notoncd) (notwanted)
- 0.4 0.0 libnunit2.6-cil (notoncd) (notwanted)
- 0.4 0.0 libnvtt2 (notoncd) (notwanted)
- 0.4 0.0 libnxml0 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-base (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-binfilter (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-core01 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-core02 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-core03 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-core04 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-core05 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-core06 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-core07 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-draw (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-en-us (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-en-us-base (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-en-us-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-en-us-math (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-en-us-res (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-en-us-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-es (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-es-base (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-es-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-es-help (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-es-math (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-es-res (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-es-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-beanshell-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-javascript-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-mediawiki-publisher (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-nlpsolver (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-pdf-import (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-presentation-minimizer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-presenter-screen (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-python-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-extension-report-builder (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-gnome-integration (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-graphicfilter (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-images (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-impress (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-javafilter (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-kde-integration (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-math (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-ogltrans (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-onlineupdate (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-ooofonts (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-ooolinguistic (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-postgresql-sdbc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.5-xsltfilter (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-base (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-binfilter (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-core01 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-core02 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-core03 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-core04 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-core05 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-core06 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-core07 (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-draw (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-gb (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-gb-base (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-gb-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-gb-math (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-gb-res (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-gb-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-us (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-us-base (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-us-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-us-math (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-us-res (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-en-us-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-es (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-es-base (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-es-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-es-math (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-es-res (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-es-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-beanshell-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-javascript-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-mediawiki-publisher (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-nlpsolver (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-pdf-import (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-presentation-minimizer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-presenter-screen (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-python-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-extension-report-builder (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-gnome-integration (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-graphicfilter (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-images (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-impress (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-javafilter (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-kde-integration (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-math (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-nb (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-nb-base (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-nb-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-nb-help (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-nb-math (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-nb-res (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-nb-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-ogltrans (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-onlineupdate (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-ooofonts (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-ooolinguistic (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-postgresql-sdbc (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis3.6-xsltfilter (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-base (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-core01 (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-core02 (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-core03 (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-core04 (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-core05 (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-core06 (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-core07 (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-draw (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-en-us (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-en-us-base (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-en-us-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-en-us-math (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-en-us-res (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-en-us-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-es (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-es-base (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-es-calc (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-es-help (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-es-math (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-es-res (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-es-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-extension-beanshell-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-extension-javascript-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-extension-mediawiki-publisher (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-extension-nlpsolver (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-extension-presentation-minimizer (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-extension-python-script-provider (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-extension-report-builder (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-gnome-integration (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-graphicfilter (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-images (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-impress (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-javafilter (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-kde-integration (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-librelogo (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-math (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-ogltrans (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-onlineupdate (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-ooofonts (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-ooolinguistic (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-postgresql-sdbc (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-writer (notoncd) (notwanted)
- 0.4 0.0 libobasis4.0-xsltfilter (notoncd) (notwanted)
- 0.4 0.0 libobjenesis-java (notoncd) (notwanted)
- 0.4 0.0 libocamlnet-ocaml-doc (notoncd) (notwanted)
- 0.4 0.0 liboce-foundation2 (notoncd) (notwanted)
- 0.4 0.0 liboce-modeling2 (notoncd) (notwanted)
- 0.4 0.0 liboce-ocaf-lite2 (notoncd) (notwanted)
- 0.4 0.0 liboce-ocaf2 (notoncd) (notwanted)
- 0.4 0.0 liboce-visualization2 (notoncd) (notwanted)
- 0.4 0.0 libode1sp (notoncd) (notwanted)
- 0.4 0.0 libofx-dev (notoncd) (notwanted)
- 0.4 0.0 liboggflac3 (notoncd) (notwanted)
- 0.4 0.0 liboggz2 (notwanted)
- 0.4 0.0 libognl-java (notoncd) (notwanted)
- 0.4 0.0 libogre-1.7.4 (notoncd) (notwanted)
- 0.4 0.0 libois-1.2.0 (notoncd) (notwanted)
- 0.4 0.0 liboktetacore4 (notoncd) (notwanted)
- 0.4 0.0 liboktetagui4 (notoncd) (notwanted)
- 0.4 0.0 liboktetakastencontrollers4abi1 (notoncd) (notwanted)
- 0.4 0.0 liboktetakastencore4 (notoncd) (notwanted)
- 0.4 0.0 liboktetakastengui4 (notoncd) (notwanted)
- 0.4 0.0 libokular-ruby (notoncd) (notwanted)
- 0.4 0.0 libopenal0a (notoncd) (notwanted)
- 0.4 0.0 libopenbabel1 (notoncd) (notwanted)
- 0.4 0.0 libopencascade-dev (notoncd) (notwanted)
- 0.4 0.0 libopencascade-ocaf-dev (notoncd) (notwanted)
- 0.4 0.0 libopencascade-ocaf-lite-dev (notoncd) (notwanted)
- 0.4 0.0 libopencdk10-dev (notoncd) (notwanted)
- 0.4 0.0 libopencore-amrnb-dev (notoncd) (notwanted)
- 0.4 0.0 libopencore-amrwb-dev (notoncd) (notwanted)
- 0.4 0.0 libopencv-gpu2.3 (notoncd) (notwanted)
- 0.4 0.0 libopenexr2c2a (notoncd) (notwanted)
- 0.4 0.0 libopenigtlink1 (notoncd) (notwanted)
- 0.4 0.0 libopenturns0 (notoncd) (notwanted)
- 0.4 0.0 libopusfile0 (notoncd) (notwanted)
- 0.4 0.0 liborange0 (notoncd) (notwanted)
- 0.4 0.0 liborbit0 (notoncd) (notwanted)
- 0.4 0.0 liborcus-0.4-0 (notoncd) (notwanted)
- 0.4 0.0 libortp7 (notoncd) (notwanted)
- 0.4 0.0 libosip2-3deb (notoncd) (notwanted)
- 0.4 0.0 libosip2-7 (notoncd) (notwanted)
- 0.4 0.0 libosmpbf-java (notoncd) (notwanted)
- 0.4 0.0 libosp-dev (notoncd) (notwanted)
- 0.4 0.0 libossim1 (notoncd) (notwanted)
- 0.4 0.0 libp11-1 (notoncd) (notwanted)
- 0.4 0.0 libpanelappletmm-2.6-1c2 (notoncd) (notwanted)
- 0.4 0.0 libpari-gmp3 (notoncd) (notwanted)
- 0.4 0.0 libparpack2 (notoncd) (notwanted)
- 0.4 0.0 libparrot2.0.0 (notoncd) (notwanted)
- 0.4 0.0 libparrot4.0.0 (notoncd) (notwanted)
- 0.4 0.0 libpasswdqc0 (notoncd) (notwanted)
- 0.4 0.0 libpassword-ruby (notoncd) (notwanted)
- 0.4 0.0 libpcap-dev (notoncd) (notwanted)
- 0.4 0.0 libpcap-ruby (notoncd) (notwanted)
- 0.4 0.0 libpcap-ruby1.8 (notoncd) (notwanted)
- 0.4 0.0 libpcsc-perl (notoncd) (notwanted)
- 0.4 0.0 libpcsclite-dev (notoncd) (notwanted)
- 0.4 0.0 libpdf-api2-simple-perl (notoncd) (notwanted)
- 0.4 0.0 libpdf-reuse-barcode-perl (notoncd) (notwanted)
- 0.4 0.0 libpdf-table-perl (notoncd) (notwanted)
- 0.4 0.0 libpentaho-reporting-flow-engine-java-doc (notoncd) (notwanted)
- 0.4 0.0 libpentaho-reporting-flow-engine-java-openoffice.org (notoncd) (notwanted)
- 0.4 0.0 libperl-dev (notoncd) (notwanted)
- 0.4 0.0 libperl5.8 (notoncd) (notwanted)
- 0.4 0.0 libperl6-export-perl (notoncd) (notwanted)
- 0.4 0.0 libperl6-slurp-perl (notoncd) (notwanted)
- 0.4 0.0 libpfqueue0 (notoncd) (notwanted)
- 0.4 0.0 libpfs-1.2-0 (notoncd) (notwanted)
- 0.4 0.0 libpgm-5.1-0 (notoncd) (notwanted)
- 0.4 0.0 libpgpool0 (notoncd) (notwanted)
- 0.4 0.0 libphat0 (notoncd) (notwanted)
- 0.4 0.0 libphone-utils0 (notoncd) (notwanted)
- 0.4 0.0 libphp-jpgraph (notoncd) (notwanted)
- 0.4 0.0 libpisync1 (notoncd) (notwanted)
- 0.4 0.0 libplexus-ant-factory-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-archiver-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-bsh-factory-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-build-api-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-cipher-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-compiler-api-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-compiler-javac-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-compiler-manager-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-component-api-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-container-default-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-containers-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-digest-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-i18n-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-interactivity-api-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-interpolation-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-io-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-sec-dispatcher-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-utils-java (notoncd) (notwanted)
- 0.4 0.0 libplexus-velocity-java (notoncd) (notwanted)
- 0.4 0.0 libplplot-c++9c2 (notoncd) (notwanted)
- 0.4 0.0 libpng-sixlegs-java (notoncd) (notwanted)
- 0.4 0.0 libpng3 (notoncd) (notwanted)
- 0.4 0.0 libpocofoundation9 (notoncd) (notwanted)
- 0.4 0.0 libpoconet9 (notoncd) (notwanted)
- 0.4 0.0 libpodofo0.8.0 (notoncd) (notwanted)
- 0.4 0.0 libpoe-component-irc-perl (notoncd) (notwanted)
- 0.4 0.0 libpoe-component-pluggable-perl (notoncd) (notwanted)
- 0.4 0.0 libpoe-filter-ircd-perl (notoncd) (notwanted)
- 0.4 0.0 libpoker-eval (notoncd) (notwanted)
- 0.4 0.0 libpolkit-grant2 (notoncd) (notwanted)
- 0.4 0.0 libpolylib64-8 (notoncd) (notwanted)
- 0.4 0.0 libpoppler-cpp0 (notoncd) (notwanted)
- 0.4 0.0 libpoppler0c2-qt (notoncd) (notwanted)
- 0.4 0.0 libportaudio-dev (notoncd) (notwanted)
- 0.4 0.0 libportaudio-doc (notoncd) (notwanted)
- 0.4 0.0 libportaudiocpp0 (notoncd) (notwanted)
- 0.4 0.0 libportlet-api-2.0-spec-java (notoncd) (notwanted)
- 0.4 0.0 libpostgis-java (notoncd) (notwanted)
- 0.4 0.0 libpostgresql-jdbc-java (notoncd) (notwanted)
- 0.4 0.0 libpostproc0d (notoncd) (notwanted)
- 0.4 0.0 libppd0 (notoncd) (notwanted)
- 0.4 0.0 libppl-c2 (notoncd) (notwanted)
- 0.4 0.0 libppl12 (notoncd) (notwanted)
- 0.4 0.0 libppl7 (notoncd) (notwanted)
- 0.4 0.0 libpqxx-2.6.9ldbl (notoncd) (notwanted)
- 0.4 0.0 libprojectm-qt1 (notoncd) (notwanted)
- 0.4 0.0 libprojectm2 (notoncd) (notwanted)
- 0.4 0.0 libprotobuf-c0 (notoncd) (notwanted)
- 0.4 0.0 libprotobuf-dev (notoncd) (notwanted)
- 0.4 0.0 libprotobuf-java (notoncd) (notwanted)
- 0.4 0.0 libprotoc-dev (notoncd) (notwanted)
- 0.4 0.0 libproxychains3 (notoncd) (notwanted)
- 0.4 0.0 libpt-1.10.0 (notoncd) (notwanted)
- 0.4 0.0 libpt-1.10.10-plugins-v4l2 (notoncd) (notwanted)
- 0.4 0.0 libpt-plugins-oss (notoncd) (notwanted)
- 0.4 0.0 libpt-plugins-v4l2 (notoncd) (notwanted)
- 0.4 0.0 libpuzzle1 (notoncd) (notwanted)
- 0.4 0.0 libpython2.7-dev (notoncd) (notwanted)
- 0.4 0.0 libpython3.1 (notoncd) (notwanted)
- 0.4 0.0 libqapt-runtime (notoncd) (notwanted)
- 0.4 0.0 libqapt1 (notoncd) (notwanted)
- 0.4 0.0 libqbanking5 (notoncd) (notwanted)
- 0.4 0.0 libqca2-plugin-gnupg (notoncd) (notwanted)
- 0.4 0.0 libqgis1.9.0 (notoncd) (notwanted)
- 0.4 0.0 libqglviewer-qt3-2 (notoncd) (notwanted)
- 0.4 0.0 libqglviewer-qt4-2 (notoncd) (notwanted)
- 0.4 0.0 libqmmp0 (notoncd) (notwanted)
- 0.4 0.0 libqmmpui0 (notoncd) (notwanted)
- 0.4 0.0 libqoauth1 (notoncd) (notwanted)
- 0.4 0.0 libqof2 (notoncd) (notwanted)
- 0.4 0.0 libqofexpensesobjects-data (notoncd) (notwanted)
- 0.4 0.0 libqofexpensesobjects1 (notoncd) (notwanted)
- 0.4 0.0 libqpx0 (notoncd) (notwanted)
- 0.4 0.0 libqscintilla-doc (notoncd) (notwanted)
- 0.4 0.0 libqscintilla2-5 (notoncd) (notwanted)
- 0.4 0.0 libqsearch-dev (notoncd) (notwanted)
- 0.4 0.0 libqsearch1 (notoncd) (notwanted)
- 0.4 0.0 libqsearch1-headers (notoncd) (notwanted)
- 0.4 0.0 libqt3-mt-mysql (notoncd) (notwanted)
- 0.4 0.0 libqt3-mt-odbc (notoncd) (notwanted)
- 0.4 0.0 libqtexengine1 (notoncd) (notwanted)
- 0.4 0.0 libqtglib-2.0-0 (notoncd) (notwanted)
- 0.4 0.0 libqtgstreamer-0.10-0 (notoncd) (notwanted)
- 0.4 0.0 libquadmath0-dbg (notoncd) (notwanted)
- 0.4 0.0 libquantlib-1.2 (notoncd) (notwanted)
- 0.4 0.0 libquartz-java (notoncd) (notwanted)
- 0.4 0.0 libquicktime-doc (notoncd) (notwanted)
- 0.4 0.0 libquicktime0 (notoncd) (notwanted)
- 0.4 0.0 libquvi-doc (notoncd) (notwanted)
- 0.4 0.0 libqwt4c2 (notoncd) (notwanted)
- 0.4 0.0 libqwt5-qt4-dev (notoncd) (notwanted)
- 0.4 0.0 libqwt6 (notoncd) (notwanted)
- 0.4 0.0 libqwtplot3d-qt4-0 (notoncd) (notwanted)
- 0.4 0.0 libqyotoshared1 (notoncd) (notwanted)
- 0.4 0.0 libqzeitgeist0 (notoncd) (notwanted)
- 0.4 0.0 librapi2 (notoncd) (notwanted)
- 0.4 0.0 librasterlite1 (notoncd) (notwanted)
- 0.4 0.0 libraul-doc (notoncd) (notwanted)
- 0.4 0.0 libraul3 (notoncd) (notwanted)
- 0.4 0.0 librcc0 (notoncd) (notwanted)
- 0.4 0.0 librcd0 (notoncd) (notwanted)
- 0.4 0.0 libreadline-ruby1.9 (notoncd) (notwanted)
- 0.4 0.0 libreadline5-dbg (notoncd) (notwanted)
- 0.4 0.0 libreadosm1 (notoncd) (notwanted)
- 0.4 0.0 libred5-java (notoncd) (notwanted)
- 0.4 0.0 libremctl1 (notoncd) (notwanted)
- 0.4 0.0 librenaissance0 (notoncd) (notwanted)
- 0.4 0.0 libreoffice-dbg (notoncd) (notwanted)
- 0.4 0.0 libreoffice-help-it (notwanted)
- 0.4 0.0 libreoffice-help-ru (notoncd) (notwanted)
- 0.4 0.0 libreoffice-help-zh-tw (notwanted)
- 0.4 0.0 libreoffice-l10n-ro (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5 (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-base (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-calc (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-dict-an (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-dict-en (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-dict-es (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-dict-fr (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-draw (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-en-us (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-es (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-impress (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-math (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-stdlibs (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.5-writer (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6 (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-base (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-calc (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-dict-an (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-dict-en (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-dict-es (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-dict-fr (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-dict-no (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-draw (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-en-gb (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-en-us (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-es (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-impress (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-math (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-nb (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-stdlibs (notoncd) (notwanted)
- 0.4 0.0 libreoffice3.6-writer (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0 (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-base (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-calc (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-dict-en (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-dict-es (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-dict-fr (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-draw (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-en-us (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-es (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-impress (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-math (notoncd) (notwanted)
- 0.4 0.0 libreoffice4.0-writer (notoncd) (notwanted)
- 0.4 0.0 libreplaygain1 (notoncd) (notwanted)
- 0.4 0.0 librepository-java-doc (notoncd) (notwanted)
- 0.4 0.0 librepository-java-openoffice.org (notoncd) (notwanted)
- 0.4 0.0 librhythmbox-core5 (notoncd) (notwanted)
- 0.4 0.0 librlog5 (notoncd) (notwanted)
- 0.4 0.0 libroar0 (notoncd) (notwanted)
- 0.4 0.0 librpm4 (notoncd) (notwanted)
- 0.4 0.0 librra0 (notoncd) (notwanted)
- 0.4 0.0 librrd-dev (notoncd) (notwanted)
- 0.4 0.0 librrd2 (notoncd) (notwanted)
- 0.4 0.0 librsvg2-2.0-cil-dev (notoncd) (notwanted)
- 0.4 0.0 librsvg2-dev (notoncd) (notwanted)
- 0.4 0.0 libruby1.8-extras (notoncd) (notwanted)
- 0.4 0.0 libruby1.9-dbg (notoncd) (notwanted)
- 0.4 0.0 libsac-java-doc (notoncd) (notwanted)
- 0.4 0.0 libsam-java (notoncd) (notwanted)
- 0.4 0.0 libsasl2-dev (notoncd) (notwanted)
- 0.4 0.0 libschedule-at-perl (notoncd) (notwanted)
- 0.4 0.0 libschroedinger-dev (notoncd) (notwanted)
- 0.4 0.0 libsdl-console (notoncd) (notwanted)
- 0.4 0.0 libsdl-ruby (notoncd) (notwanted)
- 0.4 0.0 libsdl-sge (notoncd) (notwanted)
- 0.4 0.0 libsdl1.2debian-all (notoncd) (notwanted)
- 0.4 0.0 libsdl1.2debian-pulseaudio (notoncd) (notwanted)
- 0.4 0.0 libsearchclient0 (notoncd) (notwanted)
- 0.4 0.0 libsensors-applet-plugin0 (notoncd) (notwanted)
- 0.4 0.0 libsensors4-dev (notoncd) (notwanted)
- 0.4 0.0 libsfml-audio1.6 (notoncd) (notwanted)
- 0.4 0.0 libsfml-dev (notoncd) (notwanted)
- 0.4 0.0 libsfml-doc (notoncd) (notwanted)
- 0.4 0.0 libsfml-graphics1.6 (notoncd) (notwanted)
- 0.4 0.0 libsfml-network1.6 (notoncd) (notwanted)
- 0.4 0.0 libsfml-system1.6 (notoncd) (notwanted)
- 0.4 0.0 libsfml-window1.6 (notoncd) (notwanted)
- 0.4 0.0 libshhmsg1 (notoncd) (notwanted)
- 0.4 0.0 libshhopt1 (notoncd) (notwanted)
- 0.4 0.0 libshogun-dev (notoncd) (notwanted)
- 0.4 0.0 libshogun8 (notoncd) (notwanted)
- 0.4 0.0 libshogunui5 (notoncd) (notwanted)
- 0.4 0.0 libshp-dev (notoncd) (notwanted)
- 0.4 0.0 libskstream-0.3-4 (notoncd) (notwanted)
- 0.4 0.0 libslice34 (notoncd) (notwanted)
- 0.4 0.0 libslicer3 (notoncd) (notwanted)
- 0.4 0.0 libsm-doc (notoncd) (notwanted)
- 0.4 0.0 libsmbclient-dev (notoncd) (notwanted)
- 0.4 0.0 libsmltk0 (notoncd) (notwanted)
- 0.4 0.0 libsmokeokular3 (notoncd) (notwanted)
- 0.4 0.0 libsmokeqt4-3 (notoncd) (notwanted)
- 0.4 0.0 libsms-send-perl (notoncd) (notwanted)
- 0.4 0.0 libsnacc0c2 (notoncd) (notwanted)
- 0.4 0.0 libsnack2-doc (notoncd) (notwanted)
- 0.4 0.0 libsndobj2c2 (notoncd) (notwanted)
- 0.4 0.0 libsnmp-dev (notoncd) (notwanted)
- 0.4 0.0 libsnmp-session-perl (notoncd) (notwanted)
- 0.4 0.0 libsoil1 (notoncd) (notwanted)
- 0.4 0.0 libsoprano-doc (notoncd) (notwanted)
- 0.4 0.0 libsoundgen0 (notoncd) (notwanted)
- 0.4 0.0 libsoup2.2-8 (notoncd) (notwanted)
- 0.4 0.0 libsoup2.4-doc (notoncd) (notwanted)
- 0.4 0.0 libsource-highlight-common (notoncd) (notwanted)
- 0.4 0.0 libsource-highlight3 (notoncd) (notwanted)
- 0.4 0.0 libsoxr0 (notoncd) (notwanted)
- 0.4 0.0 libspatialindex1 (notoncd) (notwanted)
- 0.4 0.0 libspatialite-dev (notoncd) (notwanted)
- 0.4 0.0 libspice-client-glib-2.0-1 (notoncd) (notwanted)
- 0.4 0.0 libspice-client-gtk-2.0-1 (notoncd) (notwanted)
- 0.4 0.0 libspiff4 (notoncd) (notwanted)
- 0.4 0.0 libspring-aop-2.5-java (notoncd) (notwanted)
- 0.4 0.0 libspring-aop-java (notoncd) (notwanted)
- 0.4 0.0 libspring-beans-2.5-java (notoncd) (notwanted)
- 0.4 0.0 libspring-beans-java (notoncd) (notwanted)
- 0.4 0.0 libspring-context-2.5-java (notoncd) (notwanted)
- 0.4 0.0 libspring-context-java (notoncd) (notwanted)
- 0.4 0.0 libspring-context-support-2.5-java (notoncd) (notwanted)
- 0.4 0.0 libspring-core-2.5-java (notoncd) (notwanted)
- 0.4 0.0 libspring-core-java (notoncd) (notwanted)
- 0.4 0.0 libspring-expression-java (notoncd) (notwanted)
- 0.4 0.0 libspring-instrument-java (notoncd) (notwanted)
- 0.4 0.0 libspring-jdbc-2.5-java (notoncd) (notwanted)
- 0.4 0.0 libspring-jdbc-java (notoncd) (notwanted)
- 0.4 0.0 libspring-transaction-java (notoncd) (notwanted)
- 0.4 0.0 libspring-tx-2.5-java (notoncd) (notwanted)
- 0.4 0.0 libspring-web-2.5-java (notoncd) (notwanted)
- 0.4 0.0 libssp0 (notoncd) (notwanted)
- 0.4 0.0 libstdc++2.10-glibc2.2 (notoncd) (notwanted)
- 0.4 0.0 libstdc++5-3.3-dev (notoncd) (notwanted)
- 0.4 0.0 libstdc++6-4.5-dev (notoncd) (notwanted)
- 0.4 0.0 libstdc++6-4.7-dbg (notoncd) (notwanted)
- 0.4 0.0 libstdc++6-4.7-doc (notoncd) (notwanted)
- 0.4 0.0 libstemmer0d (notoncd) (notwanted)
- 0.4 0.0 libstlport4.6c2 (notoncd) (notwanted)
- 0.4 0.0 libstrigihtmlgui0 (notoncd) (notwanted)
- 0.4 0.0 libstruts1.2-java (notoncd) (notwanted)
- 0.4 0.0 libstyx2 (notoncd) (notwanted)
- 0.4 0.0 libsublime1 (notoncd) (notwanted)
- 0.4 0.0 libsuitesparse-dev (notoncd) (notwanted)
- 0.4 0.0 libsuperlu3 (notoncd) (notwanted)
- 0.4 0.0 libsuperlu3-dev (notoncd) (notwanted)
- 0.4 0.0 libsvgsalamander-java (notoncd) (notwanted)
- 0.4 0.0 libsvm-dev (notoncd) (notwanted)
- 0.4 0.0 libsvm2 (notoncd) (notwanted)
- 0.4 0.0 libsvn-java (notoncd) (notwanted)
- 0.4 0.0 libswing-layout-java (notoncd) (notwanted)
- 0.4 0.0 libswirl-java (notoncd) (notwanted)
- 0.4 0.0 libswish-api-common-perl (notoncd) (notwanted)
- 0.4 0.0 libsword-common (notoncd) (notwanted)
- 0.4 0.0 libswscalecvs0 (notoncd) (notwanted)
- 0.4 0.0 libswt-gnome-gtk-3.3-jni (notoncd) (notwanted)
- 0.4 0.0 libsynce0 (notoncd) (notwanted)
- 0.4 0.0 libsyncevo-dbus0 (notoncd) (notwanted)
- 0.4 0.0 libsyncevolution0 (notoncd) (notwanted)
- 0.4 0.0 libsynthesis0 (notoncd) (notwanted)
- 0.4 0.0 libsysactivity0 (notoncd) (notwanted)
- 0.4 0.0 libsysadm-install-perl (notoncd) (notwanted)
- 0.4 0.0 libt1-doc (notoncd) (notwanted)
- 0.4 0.0 libtag1-doc (notoncd) (notwanted)
- 0.4 0.0 libtaglib-cil-dev (notoncd) (notwanted)
- 0.4 0.0 libtamuanova-0.2 (notoncd) (notwanted)
- 0.4 0.0 libtcmalloc-minimal0 (notoncd) (notwanted)
- 0.4 0.0 libtcnative-1 (notoncd) (notwanted)
- 0.4 0.0 libtdb-dev (notoncd) (notwanted)
- 0.4 0.0 libteem1 (notoncd) (notwanted)
- 0.4 0.0 libtelepathy-farsight-doc (notoncd) (notwanted)
- 0.4 0.0 libtelepathy-glib-doc (notoncd) (notwanted)
- 0.4 0.0 libtelepathy2 (notoncd) (notwanted)
- 0.4 0.0 libtemplate-plugin-dbi-perl (notoncd) (notwanted)
- 0.4 0.0 libtemplate-plugin-gd-perl (notoncd) (notwanted)
- 0.4 0.0 libtemplate-plugin-xml-perl (notoncd) (notwanted)
- 0.4 0.0 libterralib1c2a (notoncd) (notwanted)
- 0.4 0.0 libtest-simple-perl (notoncd) (notwanted)
- 0.4 0.0 libtext-csv-encoded-perl (notoncd) (notwanted)
- 0.4 0.0 libtext-levenshtein-perl (notoncd) (notwanted)
- 0.4 0.0 libtext-patch-perl (notoncd) (notwanted)
- 0.4 0.0 libtext-unidecode-perl (notoncd) (notwanted)
- 0.4 0.0 libtiff-opengl (notoncd) (notwanted)
- 0.4 0.0 libtimbl3 (notoncd) (notwanted)
- 0.4 0.0 libtinyxml2-0.0.0 (notoncd) (notwanted)
- 0.4 0.0 libtk-tablematrix-perl (notoncd) (notwanted)
- 0.4 0.0 libtododb0 (notoncd) (notwanted)
- 0.4 0.0 libtogl1 (notoncd) (notwanted)
- 0.4 0.0 libtomcat6-java (notoncd) (notwanted)
- 0.4 0.0 libtommath-docs (notoncd) (notwanted)
- 0.4 0.0 libtool-doc (notoncd) (notwanted)
- 0.4 0.0 libtorch3-dev (notoncd) (notwanted)
- 0.4 0.0 libtorrent-dev (notoncd) (notwanted)
- 0.4 0.0 libtorrent13 (notoncd) (notwanted)
- 0.4 0.0 libtorrent14 (notoncd) (notwanted)
- 0.4 0.0 libtotem-plparser1 (notoncd) (notwanted)
- 0.4 0.0 libtracker-extract-0.8-0 (notoncd) (notwanted)
- 0.4 0.0 libtracker-miner-0.8-0 (notoncd) (notwanted)
- 0.4 0.0 libtracker-sparql-0.12-0 (notoncd) (notwanted)
- 0.4 0.0 libtrackerclient0 (notoncd) (notwanted)
- 0.4 0.0 libtrain1 (notoncd) (notwanted)
- 0.4 0.0 libtre5 (notoncd) (notwanted)
- 0.4 0.0 libtritonus-jni (notoncd) (notwanted)
- 0.4 0.0 libtsk3-3 (notoncd) (notwanted)
- 0.4 0.0 libttspico-data (notoncd) (notwanted)
- 0.4 0.0 libttspico0 (notoncd) (notwanted)
- 0.4 0.0 libtvanytimeapi-java (notoncd) (notwanted)
- 0.4 0.0 libudp-tcl (notoncd) (notwanted)
- 0.4 0.0 libufsparse (notoncd) (notwanted)
- 0.4 0.0 libuim3 (notoncd) (notwanted)
- 0.4 0.0 libumlib0 (notoncd) (notwanted)
- 0.4 0.0 libunac1 (notoncd) (notwanted)
- 0.4 0.0 libungif4g (notoncd) (notwanted)
- 0.4 0.0 libuninameslist0 (notoncd) (notwanted)
- 0.4 0.0 libuno-cli-cppuhelper1.0-cil (notoncd) (notwanted)
- 0.4 0.0 libuno-cli-ure1.0-cil (notoncd) (notwanted)
- 0.4 0.0 libunshield0 (notoncd) (notwanted)
- 0.4 0.0 libunwind7 (notoncd) (notwanted)
- 0.4 0.0 libupsclient1 (notoncd) (notwanted)
- 0.4 0.0 libupse1 (notoncd) (notwanted)
- 0.4 0.0 libuptimed0 (notoncd) (notwanted)
- 0.4 0.0 liburi-fetch-perl (notoncd) (notwanted)
- 0.4 0.0 liburi-template-perl (notoncd) (notwanted)
- 0.4 0.0 libusageenvironment0 (notoncd) (notwanted)
- 0.4 0.0 libusb++-0.1-4c2 (notoncd) (notwanted)
- 0.4 0.0 libusb++-dev (notoncd) (notwanted)
- 0.4 0.0 libusb-1.0-0-dev (notoncd) (notwanted)
- 0.4 0.0 libusbredirhost1 (notoncd) (notwanted)
- 0.4 0.0 libusbredirparser0 (notoncd) (notwanted)
- 0.4 0.0 libv8-3.8.9.20 (notoncd) (notwanted)
- 0.4 0.0 libvala-0.12-0 (notoncd) (notwanted)
- 0.4 0.0 libvala-0.14-0 (notoncd) (notwanted)
- 0.4 0.0 libvala-0.16-0 (notoncd) (notwanted)
- 0.4 0.0 libvala-0.20-0 (notoncd) (notwanted)
- 0.4 0.0 libvala0 (notoncd) (notwanted)
- 0.4 0.0 libvalhalla-doc (notoncd) (notwanted)
- 0.4 0.0 libvalhalla1 (notoncd) (notwanted)
- 0.4 0.0 libvarconf-1.0-6 (notoncd) (notwanted)
- 0.4 0.0 libvarnish1 (notoncd) (notwanted)
- 0.4 0.0 libvarnishapi1 (notoncd) (notwanted)
- 0.4 0.0 libvdemgmt0 (notoncd) (notwanted)
- 0.4 0.0 libvdk2-2c2 (notoncd) (notwanted)
- 0.4 0.0 libverbiste-0.1-0 (notoncd) (notwanted)
- 0.4 0.0 libvia0 (notoncd) (notwanted)
- 0.4 0.0 libvibrant6a (notoncd) (notwanted)
- 0.4 0.0 libvigraimpex2 (notoncd) (notwanted)
- 0.4 0.0 libvips15 (notoncd) (notwanted)
- 0.4 0.0 libvldocking-java (notoncd) (notwanted)
- 0.4 0.0 libvncauth0 (notoncd) (notwanted)
- 0.4 0.0 libvolume-id1 (notoncd) (notwanted)
- 0.4 0.0 libvte-2.90-doc (notoncd) (notwanted)
- 0.4 0.0 libvtk5-dev (notoncd) (notwanted)
- 0.4 0.0 libvtk5.4-qt3 (notoncd) (notwanted)
- 0.4 0.0 libwagon-java (notoncd) (notwanted)
- 0.4 0.0 libwaili1c2 (notoncd) (notwanted)
- 0.4 0.0 libwbclient-dev (notoncd) (notwanted)
- 0.4 0.0 libwebauth4 (notoncd) (notwanted)
- 0.4 0.0 libwebauth5 (notoncd) (notwanted)
- 0.4 0.0 libwebauth6 (notoncd) (notwanted)
- 0.4 0.0 libwebinject-perl (notoncd) (notwanted)
- 0.4 0.0 libweed0 (notoncd) (notwanted)
- 0.4 0.0 libwfmath-0.3-4 (notoncd) (notwanted)
- 0.4 0.0 libwfut-0.2-1 (notoncd) (notwanted)
- 0.4 0.0 libwine-alsa-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-bin-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-cms-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-gl-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-gphoto2-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-ldap-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-openal-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-print-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-sane-unstable (notoncd) (notwanted)
- 0.4 0.0 libwine-unstable (notoncd) (notwanted)
- 0.4 0.0 libwmf-dev (notoncd) (notwanted)
- 0.4 0.0 libwnck-dev (notoncd) (notwanted)
- 0.4 0.0 libwnck18 (notoncd) (notwanted)
- 0.4 0.0 libwpd-stream8c2a (notoncd) (notwanted)
- 0.4 0.0 libws-commons-util-java (notoncd) (notwanted)
- 0.4 0.0 libwsdl4j-java (notoncd) (notwanted)
- 0.4 0.0 libwv2-1c2 (notoncd) (notwanted)
- 0.4 0.0 libwww-facebook-api-perl (notoncd) (notwanted)
- 0.4 0.0 libwww-opensearch-perl (notoncd) (notwanted)
- 0.4 0.0 libwww0 (notoncd) (notwanted)
- 0.4 0.0 libwxgtk2.4-1 (notoncd) (notwanted)
- 0.4 0.0 libwxsvg0 (notoncd) (notwanted)
- 0.4 0.0 libx264-104 (notoncd) (notwanted)
- 0.4 0.0 libx264-114 (notoncd) (notwanted)
- 0.4 0.0 libx264-116 (notoncd) (notwanted)
- 0.4 0.0 libx264-dev (notoncd) (notwanted)
- 0.4 0.0 libx2go-server-perl (notoncd) (notwanted)
- 0.4 0.0 libx32gcc-4.7-dev (notoncd) (notwanted)
- 0.4 0.0 libx32gcc1 (notoncd) (notwanted)
- 0.4 0.0 libx32gomp1 (notoncd) (notwanted)
- 0.4 0.0 libx32itm1 (notoncd) (notwanted)
- 0.4 0.0 libx32quadmath0 (notoncd) (notwanted)
- 0.4 0.0 libxapian-dev (notoncd) (notwanted)
- 0.4 0.0 libxaw6 (notoncd) (notwanted)
- 0.4 0.0 libxbean-java (notoncd) (notwanted)
- 0.4 0.0 libxcb-doc (notoncd) (notwanted)
- 0.4 0.0 libxcb-icccm1 (notoncd) (notwanted)
- 0.4 0.0 libxcb-image0 (notoncd) (notwanted)
- 0.4 0.0 libxcb-keysyms0 (notoncd) (notwanted)
- 0.4 0.0 libxcb-property1 (notoncd) (notwanted)
- 0.4 0.0 libxcb-xinerama0 (notoncd) (notwanted)
- 0.4 0.0 libxcb-xtest0 (notoncd) (notwanted)
- 0.4 0.0 libxcomp1 (notoncd) (notwanted)
- 0.4 0.0 libxcompext1 (notoncd) (notwanted)
- 0.4 0.0 libxdo2 (notoncd) (notwanted)
- 0.4 0.0 libxdo3 (notoncd) (notwanted)
- 0.4 0.0 libxen-4.1 (notoncd) (notwanted)
- 0.4 0.0 libxerces-c3.1 (notoncd) (notwanted)
- 0.4 0.0 libxerces-java (notoncd) (notwanted)
- 0.4 0.0 libxext-doc (notoncd) (notwanted)
- 0.4 0.0 libxfce4ui-utils (notoncd) (notwanted)
- 0.4 0.0 libxfce4util6 (notoncd) (notwanted)
- 0.4 0.0 libxfont-dev (notoncd) (notwanted)
- 0.4 0.0 libxine2-doc (notwanted)
- 0.4 0.0 libxml-atom-perl (notoncd) (notwanted)
- 0.4 0.0 libxml-dumper-perl (notoncd) (notwanted)
- 0.4 0.0 libxml-feed-perl (notoncd) (notwanted)
- 0.4 0.0 libxml-filter-buffertext-perl (notoncd) (notwanted)
- 0.4 0.0 libxml-grove-perl (notoncd) (notwanted)
- 0.4 0.0 libxml-handler-yawriter-perl (notoncd) (notwanted)
- 0.4 0.0 libxml-java-openoffice.org (notoncd) (notwanted)
- 0.4 0.0 libxml-libxml-common-perl (notoncd) (notwanted)
- 0.4 0.0 libxml-sax-writer-perl (notoncd) (notwanted)
- 0.4 0.0 libxml-stream-perl (notoncd) (notwanted)
- 0.4 0.0 libxml1 (notoncd) (notwanted)
- 0.4 0.0 libxmlrpc-c++4 (notoncd) (notwanted)
- 0.4 0.0 libxmlrpc-ruby (notoncd) (notwanted)
- 0.4 0.0 libxmlrpc3-common-java (notoncd) (notwanted)
- 0.4 0.0 libxmlrpc3-server-java (notoncd) (notwanted)
- 0.4 0.0 libxmlsec1 (notoncd) (notwanted)
- 0.4 0.0 libxmlsec1-nss (notoncd) (notwanted)
- 0.4 0.0 libxmltok1 (notoncd) (notwanted)
- 0.4 0.0 libxmmsclient++-glib1 (notoncd) (notwanted)
- 0.4 0.0 libxmmsclient++4 (notoncd) (notwanted)
- 0.4 0.0 libxmmsclient-ruby (notoncd) (notwanted)
- 0.4 0.0 libxnee0 (notoncd) (notwanted)
- 0.4 0.0 libxt-doc (notoncd) (notwanted)
- 0.4 0.0 libxt-java (notoncd) (notwanted)
- 0.4 0.0 libxul-common (notoncd) (notwanted)
- 0.4 0.0 libxul0d (notoncd) (notwanted)
- 0.4 0.0 libxvidcore-dev (notoncd) (notwanted)
- 0.4 0.0 libxxf86dga-dev (notoncd) (notwanted)
- 0.4 0.0 libxy3 (notoncd) (notwanted)
- 0.4 0.0 liby2-14 (notoncd) (notwanted)
- 0.4 0.0 libyahoo2-11 (notoncd) (notwanted)
- 0.4 0.0 libyaml-0-1 (notoncd) (notwanted)
- 0.4 0.0 libyaml-dev (notoncd) (notwanted)
- 0.4 0.0 libyate2.2.0 (notoncd) (notwanted)
- 0.4 0.0 libydpdict2 (notoncd) (notwanted)
- 0.4 0.0 libykpers-1-1 (notoncd) (notwanted)
- 0.4 0.0 libyubikey0 (notoncd) (notwanted)
- 0.4 0.0 libz80ex1 (notoncd) (notwanted)
- 0.4 0.0 libzemberek-java (notoncd) (notwanted)
- 0.4 0.0 libzemberek-tr-java (notoncd) (notwanted)
- 0.4 0.0 libzen0 (notoncd) (notwanted)
- 0.4 0.0 libzephyr3 (notoncd) (notwanted)
- 0.4 0.0 libzeroc-ice34 (notoncd) (notwanted)
- 0.4 0.0 libzita-convolver2 (notoncd) (notwanted)
- 0.4 0.0 libzmq1 (notoncd) (notwanted)
- 0.4 0.0 libzorp0 (notoncd) (notwanted)
- 0.4 0.0 libzvt-dev (notoncd) (notwanted)
- 0.4 0.0 libzvt2 (notoncd) (notwanted)
- 0.4 0.0 licq-plugin-kde4 (notoncd) (notwanted)
- 0.4 0.0 licq-plugin-qt4 (notoncd) (notwanted)
- 0.4 0.0 licq-plugin-qt4-common (notoncd) (notwanted)
- 0.4 0.0 lightdm-vala (notoncd) (notwanted)
- 0.4 0.0 lightspark-common (notoncd) (notwanted)
- 0.4 0.0 lilo-doc (notoncd) (notwanted)
- 0.4 0.0 lilypond-doc-html (notoncd) (notwanted)
- 0.4 0.0 lilypond-doc-pdf (notoncd) (notwanted)
- 0.4 0.0 lincity-ng-data (notoncd) (notwanted)
- 0.4 0.0 line6-usb-source (notoncd) (notwanted)
- 0.4 0.0 linex-menus (notoncd) (notwanted)
- 0.4 0.0 link-monitor-applet-common (notoncd) (notwanted)
- 0.4 0.0 linphone-nogtk (notoncd) (notwanted)
- 0.4 0.0 linux-doc-2.6.32 (notoncd) (notwanted)
- 0.4 0.0 linux-doc-2.6.39 (notoncd) (notwanted)
- 0.4 0.0 linux-doc-3.2 (notoncd) (notwanted)
- 0.4 0.0 linux-headers-2.6.32-bpo.5-amd64 (notoncd) (notwanted)
- 0.4 0.0 linux-headers-2.6.39-bpo.2-686-pae (notoncd) (notwanted)
- 0.4 0.0 linux-headers-2.6.39-bpo.2-all (notoncd) (notwanted)
- 0.4 0.0 linux-headers-2.6.39-bpo.2-all-amd64 (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.2-686-pae (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.2-amd64 (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.3-486 (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.3-686-pae (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.3-all (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.3-all-i386 (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.3-common-rt (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.3-rt-686-pae (notoncd) (notwanted)
- 0.4 0.0 linux-headers-3.2.0-0.bpo.4-686-pae (notoncd) (notwanted)
- 0.4 0.0 linux-headers-486 (notoncd) (notwanted)
- 0.4 0.0 linux-headers-686-pae (notoncd) (notwanted)
- 0.4 0.0 linux-image-2.6-686-smp (notoncd) (notwanted)
- 0.4 0.0 linux-image-2.6.18-5-686 (notoncd) (notwanted)
- 0.4 0.0 linux-image-2.6.18-6-486 (notoncd) (notwanted)
- 0.4 0.0 linux-image-2.6.26-2-686-bigmem (notoncd) (notwanted)
- 0.4 0.0 linux-image-2.6.27.3 (notoncd) (notwanted)
- 0.4 0.0 linux-image-3.2.0-0.bpo.2-686-pae (notoncd) (notwanted)
- 0.4 0.0 linux-image-3.2.0-0.bpo.3-686-pae (notoncd) (notwanted)
- 0.4 0.0 linux-image-3.2.0-4-686-pae-dbg (notoncd) (notwanted)
- 0.4 0.0 linux-image-686-bigmem (notoncd) (notwanted)
- 0.4 0.0 linux-kbuild-2.6.17 (notoncd) (notwanted)
- 0.4 0.0 linux-kbuild-2.6.18 (notoncd) (notwanted)
- 0.4 0.0 linux-kernel-headers (notoncd) (notwanted)
- 0.4 0.0 linux-libertine (notoncd) (notwanted)
- 0.4 0.0 linux-patch-debian-2.6.32 (notoncd) (notwanted)
- 0.4 0.0 linux-patch-debianlogo (notoncd) (notwanted)
- 0.4 0.0 linux-source-2.6 (notoncd) (notwanted)
- 0.4 0.0 linux-source-2.6.32 (notoncd) (notwanted)
- 0.4 0.0 linux-support-2.6.32-5 (notoncd) (notwanted)
- 0.4 0.0 linux-support-3.2.0-0.bpo.4 (notoncd) (notwanted)
- 0.4 0.0 linux-wlan-ng-doc (notoncd) (notwanted)
- 0.4 0.0 linux-wlan-ng-source (notoncd) (notwanted)
- 0.4 0.0 lipsia (notoncd) (notwanted)
- 0.4 0.0 lipsia-doc (notoncd) (notwanted)
- 0.4 0.0 littlewizard-data (notoncd) (notwanted)
- 0.4 0.0 loki (notoncd) (notwanted)
- 0.4 0.0 lrzip (notoncd) (notwanted)
- 0.4 0.0 lsb-qt4 (notoncd) (notwanted)
- 0.4 0.0 ltsp-client
- 0.4 0.0 lua50 (notoncd) (notwanted)
- 0.4 0.0 luckybackup (notoncd) (notwanted)
- 0.4 0.0 luckybackup-data (notoncd) (notwanted)
- 0.4 0.0 luminance-hdr (notoncd) (notwanted)
- 0.4 0.0 luola (notoncd) (notwanted)
- 0.4 0.0 luola-data (notoncd) (notwanted)
- 0.4 0.0 luola-levels (notoncd) (notwanted)
- 0.4 0.0 luxman (notoncd) (notwanted)
- 0.4 0.0 lxmms2 (notoncd) (notwanted)
- 0.4 0.0 lxtask (notoncd) (notwanted)
- 0.4 0.0 lybniz (notoncd) (notwanted)
- 0.4 0.0 lynis (notoncd) (notwanted)
- 0.4 0.0 lzip (notoncd) (notwanted)
- 0.4 0.0 m17n-docs (notoncd) (notwanted)
- 0.4 0.0 m2vrequantiser (notoncd) (notwanted)
- 0.4 0.0 macchanger (notoncd) (notwanted)
- 0.4 0.0 mafft (notoncd) (notwanted)
- 0.4 0.0 magics++ (notoncd) (notwanted)
- 0.4 0.0 maildir-utils (notoncd) (notwanted)
- 0.4 0.0 mailliststat (notoncd) (notwanted)
- 0.4 0.0 maint-guide-de (notoncd) (notwanted)
- 0.4 0.0 maint-guide-it (notoncd) (notwanted)
- 0.4 0.0 manpages-it (notoncd) (notwanted)
- 0.4 0.0 mapnik-viewer (notoncd) (notwanted)
- 0.4 0.0 maq (notoncd) (notwanted)
- 0.4 0.0 maria-doc (notoncd) (notwanted)
- 0.4 0.0 matchbox (notoncd) (notwanted)
- 0.4 0.0 matchbox-panel-manager (notoncd) (notwanted)
- 0.4 0.0 mathgl-doc (notoncd) (notwanted)
- 0.4 0.0 maven2 (notoncd) (notwanted)
- 0.4 0.0 mazeofgalious-data (notoncd) (notwanted)
- 0.4 0.0 mb2md (notoncd) (notwanted)
- 0.4 0.0 mbrola-de6 (notoncd) (notwanted)
- 0.4 0.0 mbrola-de7 (notoncd) (notwanted)
- 0.4 0.0 mbrola-it3 (notoncd) (notwanted)
- 0.4 0.0 mbrola-it4 (notoncd) (notwanted)
- 0.4 0.0 mcl (notoncd) (notwanted)
- 0.4 0.0 mediainfo (notoncd) (notwanted)
- 0.4 0.0 mediainfo-gui (notoncd) (notwanted)
- 0.4 0.0 mediatomb (notoncd) (notwanted)
- 0.4 0.0 mediatomb-daemon (notoncd) (notwanted)
- 0.4 0.0 mediawiki (notoncd) (notwanted)
- 0.4 0.0 mediawiki-extensions-base (notoncd) (notwanted)
- 0.4 0.0 mediawiki-extensions-math (notoncd) (notwanted)
- 0.4 0.0 mediawiki-math (notoncd) (notwanted)
- 0.4 0.0 mediawiki-math-texvc (notoncd) (notwanted)
- 0.4 0.0 melting (notoncd) (notwanted)
- 0.4 0.0 members (notoncd) (notwanted)
- 0.4 0.0 memstat (notoncd) (notwanted)
- 0.4 0.0 menu-l10n (notoncd) (notwanted)
- 0.4 0.0 metamail (notoncd) (notwanted)
- 0.4 0.0 mffm-fftw-dev (notoncd) (notwanted)
- 0.4 0.0 mffm-fftw1 (notoncd) (notwanted)
- 0.4 0.0 mffm-libsndfilew-dev (notoncd) (notwanted)
- 0.4 0.0 mffm-timecode-dev (notoncd) (notwanted)
- 0.4 0.0 micropolis-data (notoncd) (notwanted)
- 0.4 0.0 mimedecode (notoncd) (notwanted)
- 0.4 0.0 minc-tools (notoncd) (notwanted)
- 0.4 0.0 mindi (notoncd) (notwanted)
- 0.4 0.0 mingw32 (notoncd) (notwanted)
- 0.4 0.0 mingw32-binutils (notoncd) (notwanted)
- 0.4 0.0 mingw32-runtime (notoncd) (notwanted)
- 0.4 0.0 mint-flashplugin-10.2 (notoncd) (notwanted)
- 0.4 0.0 mipe (notoncd) (notwanted)
- 0.4 0.0 mirrormagic-data (notoncd) (notwanted)
- 0.4 0.0 mit-scheme (notoncd) (notwanted)
- 0.4 0.0 mkelfimage (notoncd) (notwanted)
- 0.4 0.0 mknbi (notoncd) (notwanted)
- 0.4 0.0 mkpxeinitrd-net (notoncd) (notwanted)
- 0.4 0.0 mkswap-uuid (notoncd) (notwanted)
- 0.4 0.0 mlpost (notoncd) (notwanted)
- 0.4 0.0 mmpong-gl-data (notoncd) (notwanted)
- 0.4 0.0 mnogosearch-common (notoncd) (notwanted)
- 0.4 0.0 mnogosearch-doc (notoncd) (notwanted)
- 0.4 0.0 mod-security-common (notoncd) (notwanted)
- 0.4 0.0 model-builder (notoncd) (notwanted)
- 0.4 0.0 molly-guard (notoncd) (notwanted)
- 0.4 0.0 monav (notoncd) (notwanted)
- 0.4 0.0 monav-data (notoncd) (notwanted)
- 0.4 0.0 mondo (notoncd) (notwanted)
- 0.4 0.0 mono-4.0-service (notoncd) (notwanted)
- 0.4 0.0 mono-runtime-sgen (notoncd) (notwanted)
- 0.4 0.0 monster-masher (notoncd) (notwanted)
- 0.4 0.0 moovida-plugins-bad (notoncd) (notwanted)
- 0.4 0.0 moovida-plugins-good (notoncd) (notwanted)
- 0.4 0.0 moovida-plugins-ugly (notoncd) (notwanted)
- 0.4 0.0 mosh (notoncd) (notwanted)
- 0.4 0.0 most (notoncd) (notwanted)
- 0.4 0.0 mozilla-biofox (notoncd) (notwanted)
- 0.4 0.0 mozilla-diggler (notoncd) (notwanted)
- 0.4 0.0 mozilla-firefox-locale-de-de (notoncd) (notwanted)
- 0.4 0.0 mozilla-livehttpheaders (notoncd) (notwanted)
- 0.4 0.0 mozilla-openthesaurus-de (notoncd) (notwanted)
- 0.4 0.0 mozilla-stumbleupon (notoncd) (notwanted)
- 0.4 0.0 mozilla-venkman (notoncd) (notwanted)
- 0.4 0.0 mpg123-alsa (notoncd) (notwanted)
- 0.4 0.0 mpg123-esd (notoncd) (notwanted)
- 0.4 0.0 mpg123-nas (notoncd) (notwanted)
- 0.4 0.0 mpg123-oss-i486 (notoncd) (notwanted)
- 0.4 0.0 mpglen (notoncd) (notwanted)
- 0.4 0.0 mpi-specs (notoncd) (notwanted)
- 0.4 0.0 mt-st (notoncd) (notwanted)
- 0.4 0.0 mtx (notoncd) (notwanted)
- 0.4 0.0 mueller7-mova (notoncd) (notwanted)
- 0.4 0.0 mueller7accent-dict (notoncd) (notwanted)
- 0.4 0.0 mueller7accent-mova (notoncd) (notwanted)
- 0.4 0.0 multiboot (notoncd) (notwanted)
- 0.4 0.0 multiboot-doc (notoncd) (notwanted)
- 0.4 0.0 mummer (notoncd) (notwanted)
- 0.4 0.0 munin-java-plugins (notoncd) (notwanted)
- 0.4 0.0 muscle (notoncd) (notwanted)
- 0.4 0.0 museeq-locales (notoncd) (notwanted)
- 0.4 0.0 mustang (notoncd) (notwanted)
- 0.4 0.0 muttprint-manual (notoncd) (notwanted)
- 0.4 0.0 myspell-pl (notwanted)
- 0.4 0.0 myspell-sk (notwanted)
- 0.4 0.0 myspell-uk (notoncd) (notwanted)
- 0.4 0.0 mysql-workbench-data (notoncd) (notwanted)
- 0.4 0.0 mythes-it (notwanted)
- 0.4 0.0 nagios2 (notoncd) (notwanted)
- 0.4 0.0 nagios2-common (notoncd) (notwanted)
- 0.4 0.0 nagios2-doc (notoncd) (notwanted)
- 0.4 0.0 nagvis-demos (notoncd) (notwanted)
- 0.4 0.0 nas-doc (notoncd) (notwanted)
- 0.4 0.0 nasm (notoncd) (notwanted)
- 0.4 0.0 nbtscan (notoncd) (notwanted)
- 0.4 0.0 ncbi-data (notoncd) (notwanted)
- 0.4 0.0 ncbi-epcr (notoncd) (notwanted)
- 0.4 0.0 ncbi-tools-bin (notoncd) (notwanted)
- 0.4 0.0 ncbi-tools-x11 (notoncd) (notwanted)
- 0.4 0.0 ncdu (notoncd) (notwanted)
- 0.4 0.0 nco (notoncd) (notwanted)
- 0.4 0.0 ncoils (notoncd) (notwanted)
- 0.4 0.0 ncview (notoncd) (notwanted)
- 0.4 0.0 ndoutils-common (notoncd) (notwanted)
- 0.4 0.0 ndoutils-nagios3-mysql (notoncd) (notwanted)
- 0.4 0.0 netbeans-ide (notoncd) (notwanted)
- 0.4 0.0 netbeans-platform (notoncd) (notwanted)
- 0.4 0.0 netcdf-bin (notoncd) (notwanted)
- 0.4 0.0 netdiag (notoncd) (notwanted)
- 0.4 0.0 netdisco-frontend (notoncd) (notwanted)
- 0.4 0.0 netgen (notoncd) (notwanted)
- 0.4 0.0 netpanzer-data (notoncd) (notwanted)
- 0.4 0.0 netplan (notoncd) (notwanted)
- 0.4 0.0 nettoe (notoncd) (notwanted)
- 0.4 0.0 network-config (notoncd) (notwanted)
- 0.4 0.0 network-manager-dev (notoncd) (notwanted)
- 0.4 0.0 netwox-doc (notoncd) (notwanted)
- 0.4 0.0 neverputt-data (notoncd) (notwanted)
- 0.4 0.0 nexuiz-data (notoncd) (notwanted)
- 0.4 0.0 nexuiz-music (notoncd) (notwanted)
- 0.4 0.0 nexuiz-textures (notoncd) (notwanted)
- 0.4 0.0 nfs4-acl-tools (notoncd) (notwanted)
- 0.4 0.0 nictools-nopci (notoncd) (notwanted)
- 0.4 0.0 nikwi-data (notoncd) (notwanted)
- 0.4 0.0 njplot (notoncd) (notwanted)
- 0.4 0.0 nmh (notoncd) (notwanted)
- 0.4 0.0 notmuch-emacs (notoncd) (notwanted)
- 0.4 0.0 npadmin (notoncd) (notwanted)
- 0.4 0.0 nsca-client (notoncd) (notwanted)
- 0.4 0.0 ntfsdoc (notoncd) (notwanted)
- 0.4 0.0 ntop-data (notoncd) (notwanted)
- 0.4 0.0 ntp-simple (notoncd) (notwanted)
- 0.4 0.0 nut (notoncd) (notwanted)
- 0.4 0.0 nvi (notoncd) (notwanted)
- 0.4 0.0 nvidia-installer-cleanup (notoncd) (notwanted)
- 0.4 0.0 nvidia-kernel-2.6.32-5-amd64 (notoncd) (notwanted)
- 0.4 0.0 nvidia-vdpau-driver (notoncd) (notwanted)
- 0.4 0.0 nxcomp (notoncd) (notwanted)
- 0.4 0.0 nxcompext (notoncd) (notwanted)
- 0.4 0.0 nxcompshad (notoncd) (notwanted)
- 0.4 0.0 obexpushd (notoncd) (notwanted)
- 0.4 0.0 objcryst-fox (notoncd) (notwanted)
- 0.4 0.0 ocropus-data (notoncd) (notwanted)
- 0.4 0.0 octave-communications (notoncd) (notwanted)
- 0.4 0.0 octave-communications-common (notoncd) (notwanted)
- 0.4 0.0 octave-ga (notoncd) (notwanted)
- 0.4 0.0 octave2.1-emacsen (notoncd) (notwanted)
- 0.4 0.0 octave2.1-forge (notoncd) (notwanted)
- 0.4 0.0 octave2.9 (notoncd) (notwanted)
- 0.4 0.0 octave2.9-emacsen (notoncd) (notwanted)
- 0.4 0.0 octave2.9-htmldoc (notoncd) (notwanted)
- 0.4 0.0 octave3.0-emacsen (notoncd) (notwanted)
- 0.4 0.0 octave3.0-htmldoc (notoncd) (notwanted)
- 0.4 0.0 odbc-postgresql (notoncd) (notwanted)
- 0.4 0.0 ogamesim-www (notoncd) (notwanted)
- 0.4 0.0 ogle (notoncd) (notwanted)
- 0.4 0.0 ogle-gui (notoncd) (notwanted)
- 0.4 0.0 ogre-doc (notoncd) (notwanted)
- 0.4 0.0 ohphone (notoncd) (notwanted)
- 0.4 0.0 okular-backend-odp (notoncd) (notwanted)
- 0.4 0.0 okumura-clsfiles (notoncd) (notwanted)
- 0.4 0.0 olp-desktop (notoncd) (notwanted)
- 0.4 0.0 olp-workstation (notoncd) (notwanted)
- 0.4 0.0 omniidl4 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids-fr (notoncd) (notwanted)
- 0.4 0.0 ooo4kids-ure (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-calc (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-calc-brand (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-core01 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-core02 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-core03 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-core04 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-core05 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-core06 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-core07 (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-dict-de-de (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-dict-en (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-dict-fr (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-dict-no (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-draw (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-draw-brand (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-gnome-integration (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-graphicfilter (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-images (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-impress (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-impress-brand (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-math (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-math-brand (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb-brand (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb-calc (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb-draw (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb-help (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb-impress (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb-math (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb-res (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-nb-writer (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-ooofonts (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-ooolinguistic (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-pyuno (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-writer (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-writer-brand (notoncd) (notwanted)
- 0.4 0.0 ooo4kids1.2-xsltfilter (notoncd) (notwanted)
- 0.4 0.0 open-vm-source (notoncd) (notwanted)
- 0.4 0.0 opencascade-examples (notoncd) (notwanted)
- 0.4 0.0 opencity-data (notoncd) (notwanted)
- 0.4 0.0 opengeo-postgis2-shapeloader (notoncd) (notwanted)
- 0.4 0.0 openjdk-6-demo (notoncd) (notwanted)
- 0.4 0.0 openjdk-6-source (notoncd) (notwanted)
- 0.4 0.0 openjdk-7-jre (notoncd) (notwanted)
- 0.4 0.0 openload (notoncd) (notwanted)
- 0.4 0.0 openmpipython (notoncd) (notwanted)
- 0.4 0.0 openobex-apps (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-dbg (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-help-en (notoncd)
- 0.4 0.0 openoffice.org-help-ru (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-hyphenation-it (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-l10n-da
- 0.4 0.0 openoffice.org-l10n-uk (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-mysql-connector (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-ogltrans (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-presentation-minimizer (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-presenter-console (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-report-builder (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-thesaurus-fr
- 0.4 0.0 openoffice.org-thesaurus-ru (notoncd) (notwanted)
- 0.4 0.0 openoffice.org-wiki-publisher (notoncd) (notwanted)
- 0.4 0.0 openprinting-ppds-postscript-brother (notoncd) (notwanted)
- 0.4 0.0 openscenegraph-doc (notoncd) (notwanted)
- 0.4 0.0 openthesaurus-de-text (notoncd) (notwanted)
- 0.4 0.0 openttd-opensfx (notoncd) (notwanted)
- 0.4 0.0 opticalraytracer (notoncd) (notwanted)
- 0.4 0.0 oracle-java7-fonts (notoncd) (notwanted)
- 0.4 0.0 oracle-java7-installer (notoncd) (notwanted)
- 0.4 0.0 oracle-java7-plugin (notoncd) (notwanted)
- 0.4 0.0 otrs2-doc-en (notoncd) (notwanted)
- 0.4 0.0 overgod-data (notoncd) (notwanted)
- 0.4 0.0 pari-elldata (notoncd) (notwanted)
- 0.4 0.0 pari-galdata (notoncd) (notwanted)
- 0.4 0.0 pari-seadata (notoncd) (notwanted)
- 0.4 0.0 parrot-doc (notoncd) (notwanted)
- 0.4 0.0 partclone (notoncd) (notwanted)
- 0.4 0.0 partimage-doc (notoncd) (notwanted)
- 0.4 0.0 partimage-server (notoncd) (notwanted)
- 0.4 0.0 partitionmanager (notoncd) (notwanted)
- 0.4 0.0 pbzip2 (notoncd) (notwanted)
- 0.4 0.0 pdl (notoncd) (notwanted)
- 0.4 0.0 pdns-doc (notoncd) (notwanted)
- 0.4 0.0 pencil (notoncd) (notwanted)
- 0.4 0.0 penguin-command (notoncd) (notwanted)
- 0.4 0.0 perlprimer (notoncd) (notwanted)
- 0.4 0.0 petit (notoncd) (notwanted)
- 0.4 0.0 pgdg-keyring (notoncd) (notwanted)
- 0.4 0.0 pgstaging-client (notoncd) (notwanted)
- 0.4 0.0 pgtap (notoncd) (notwanted)
- 0.4 0.0 phamm-ldap (notoncd) (notwanted)
- 0.4 0.0 phamm-ldap-amavis (notoncd) (notwanted)
- 0.4 0.0 phamm-ldap-vacation (notoncd) (notwanted)
- 0.4 0.0 phonon-backend-null (notoncd) (notwanted)
- 0.4 0.0 photopc (notoncd) (notwanted)
- 0.4 0.0 photoprint (notoncd) (notwanted)
- 0.4 0.0 php-config (notoncd) (notwanted)
- 0.4 0.0 php-console-table (notoncd) (notwanted)
- 0.4 0.0 php-invoker (notoncd) (notwanted)
- 0.4 0.0 php-log (notoncd) (notwanted)
- 0.4 0.0 php-net-sieve (notoncd) (notwanted)
- 0.4 0.0 php-xml-rss (notoncd) (notwanted)
- 0.4 0.0 phpdoc (notoncd) (notwanted)
- 0.4 0.0 phpsysinfo (notoncd) (notwanted)
- 0.4 0.0 phpunit-story (notoncd) (notwanted)
- 0.4 0.0 phpwebcounter-extra (notoncd) (notwanted)
- 0.4 0.0 phyml (notoncd) (notwanted)
- 0.4 0.0 pianobooster (notwanted)
- 0.4 0.0 picard-tools (notoncd) (notwanted)
- 0.4 0.0 pidentd (notoncd) (notwanted)
- 0.4 0.0 pidgin-audacious (notoncd) (notwanted)
- 0.4 0.0 pidgin-awayonlock (notoncd) (notwanted)
- 0.4 0.0 pigz (notoncd) (notwanted)
- 0.4 0.0 pinball-dev (notoncd) (notwanted)
- 0.4 0.0 pinentry-curses (notoncd) (notwanted)
- 0.4 0.0 pinentry-x2go (notoncd) (notwanted)
- 0.4 0.0 pioneers-console-data (notoncd) (notwanted)
- 0.4 0.0 pioneers-data (notoncd) (notwanted)
- 0.4 0.0 pixmaps-linex (notoncd) (notwanted)
- 0.4 0.0 planetpenguin-racer (notoncd) (notwanted)
- 0.4 0.0 planetpenguin-racer-extras (notoncd) (notwanted)
- 0.4 0.0 plasma-scriptengine-kimono (notoncd) (notwanted)
- 0.4 0.0 plasma-widget-x2go (notoncd) (notwanted)
- 0.4 0.0 plink (notoncd) (notwanted)
- 0.4 0.0 plplot9-driver-xwin (notoncd) (notwanted)
- 0.4 0.0 png2html (notoncd) (notwanted)
- 0.4 0.0 pnp4nagios (notoncd) (notwanted)
- 0.4 0.0 pnp4nagios-bin (notoncd) (notwanted)
- 0.4 0.0 pnp4nagios-web (notoncd) (notwanted)
- 0.4 0.0 poa (notoncd) (notwanted)
- 0.4 0.0 pokerth-data (notoncd) (notwanted)
- 0.4 0.0 policykit (notoncd) (notwanted)
- 0.4 0.0 policykit-1-doc (notoncd) (notwanted)
- 0.4 0.0 portaudio19-doc (notoncd) (notwanted)
- 0.4 0.0 postgresql-8.4-postgis (notoncd) (notwanted)
- 0.4 0.0 postgresql-9.1-pgpool2 (notoncd) (notwanted)
- 0.4 0.0 postgresql-doc-9.2 (notoncd) (notwanted)
- 0.4 0.0 postgresql-server-dev-8.3 (notoncd) (notwanted)
- 0.4 0.0 povray-doc (notoncd) (notwanted)
- 0.4 0.0 povray-examples (notoncd) (notwanted)
- 0.4 0.0 povray-includes (notoncd) (notwanted)
- 0.4 0.0 pppconfig (notoncd) (notwanted)
- 0.4 0.0 praat (notoncd) (notwanted)
- 0.4 0.0 prelink (notoncd) (notwanted)
- 0.4 0.0 primer3 (notoncd) (notwanted)
- 0.4 0.0 probcons (notoncd) (notwanted)
- 0.4 0.0 proda (notoncd) (notwanted)
- 0.4 0.0 proftpd (notoncd) (notwanted)
- 0.4 0.0 proftpd-mod-ldap (notoncd) (notwanted)
- 0.4 0.0 proftpd-mod-mysql (notoncd) (notwanted)
- 0.4 0.0 proftpd-mod-pgsql (notoncd) (notwanted)
- 0.4 0.0 project-x (notoncd) (notwanted)
- 0.4 0.0 projectlibre (notoncd) (notwanted)
- 0.4 0.0 projectm-data (notoncd) (notwanted)
- 0.4 0.0 proofgeneral-coq (notoncd) (notwanted)
- 0.4 0.0 protobuf-c-compiler (notoncd) (notwanted)
- 0.4 0.0 proxychains (notoncd) (notwanted)
- 0.4 0.0 psi3 (notoncd) (notwanted)
- 0.4 0.0 psychopy (notoncd) (notwanted)
- 0.4 0.0 ptex-base (notoncd) (notwanted)
- 0.4 0.0 puppet-dashboard (notoncd) (notwanted)
- 0.4 0.0 purity-off (notoncd) (notwanted)
- 0.4 0.0 pydance-music (notoncd) (notwanted)
- 0.4 0.0 pysol (notoncd) (notwanted)
- 0.4 0.0 pysycache-buttons-beerabbit (notoncd) (notwanted)
- 0.4 0.0 pysycache-buttons-crapaud (notoncd) (notwanted)
- 0.4 0.0 pysycache-buttons-wolf (notoncd) (notwanted)
- 0.4 0.0 pysycache-click-sea (notoncd) (notwanted)
- 0.4 0.0 pysycache-dblclick-butterfly (notoncd) (notwanted)
- 0.4 0.0 pysycache-move-food (notoncd) (notwanted)
- 0.4 0.0 pysycache-move-plants (notoncd) (notwanted)
- 0.4 0.0 pysycache-move-sky (notoncd) (notwanted)
- 0.4 0.0 pysycache-move-sports (notoncd) (notwanted)
- 0.4 0.0 pysycache-puzzle-photos (notoncd) (notwanted)
- 0.4 0.0 python-all-dbg (notoncd) (notwanted)
- 0.4 0.0 python-all-dev (notoncd) (notwanted)
- 0.4 0.0 python-ball (notoncd) (notwanted)
- 0.4 0.0 python-ballview (notoncd) (notwanted)
- 0.4 0.0 python-beaker (notoncd) (notwanted)
- 0.4 0.0 python-box2d (notwanted)
- 0.4 0.0 python-bs4 (notoncd) (notwanted)
- 0.4 0.0 python-bs4-doc (notoncd) (notwanted)
- 0.4 0.0 python-carrot (notoncd) (notwanted)
- 0.4 0.0 python-cerealizer (notoncd) (notwanted)
- 0.4 0.0 python-daemon (notwanted)
- 0.4 0.0 python-decoratortools (notoncd) (notwanted)
- 0.4 0.0 python-django-app-plugins (notoncd) (notwanted)
- 0.4 0.0 python-django-authority (notoncd) (notwanted)
- 0.4 0.0 python-django-classy-tags (notoncd) (notwanted)
- 0.4 0.0 python-django-contact-form (notoncd) (notwanted)
- 0.4 0.0 python-django-debug-toolbar (notoncd) (notwanted)
- 0.4 0.0 python-django-djapian (notoncd) (notwanted)
- 0.4 0.0 python-django-djblets (notoncd) (notwanted)
- 0.4 0.0 python-django-extra-views (notoncd) (notwanted)
- 0.4 0.0 python-django-formfieldset (notoncd) (notwanted)
- 0.4 0.0 python-django-markupfield (notoncd) (notwanted)
- 0.4 0.0 python-django-nose (notoncd) (notwanted)
- 0.4 0.0 python-django-notification (notoncd) (notwanted)
- 0.4 0.0 python-django-pagination (notoncd) (notwanted)
- 0.4 0.0 python-django-picklefield (notoncd) (notwanted)
- 0.4 0.0 python-django-rosetta (notoncd) (notwanted)
- 0.4 0.0 python-django-sekizai (notoncd) (notwanted)
- 0.4 0.0 python-django-threaded-multihost (notoncd) (notwanted)
- 0.4 0.0 python-django-tinymce (notoncd) (notwanted)
- 0.4 0.0 python-django-treebeard (notoncd) (notwanted)
- 0.4 0.0 python-djvu (notoncd) (notwanted)
- 0.4 0.0 python-dnspython (notoncd) (notwanted)
- 0.4 0.0 python-docky (notoncd) (notwanted)
- 0.4 0.0 python-easygui (notwanted)
- 0.4 0.0 python-ecasound2.2 (notoncd) (notwanted)
- 0.4 0.0 python-elements (notwanted)
- 0.4 0.0 python-elib.intl (notoncd) (notwanted)
- 0.4 0.0 python-espeak (notoncd) (notwanted)
- 0.4 0.0 python-fontforge (notoncd) (notwanted)
- 0.4 0.0 python-gasp (notoncd) (notwanted)
- 0.4 0.0 python-genetic (notoncd) (notwanted)
- 0.4 0.0 python-gi-dev (notoncd) (notwanted)
- 0.4 0.0 python-gnome2-doc (notoncd) (notwanted)
- 0.4 0.0 python-gnucash (notoncd) (notwanted)
- 0.4 0.0 python-gnuplot (notoncd) (notwanted)
- 0.4 0.0 python-gupnp-igd (notoncd) (notwanted)
- 0.4 0.0 python-h5py (notoncd) (notwanted)
- 0.4 0.0 python-hijra (notoncd) (notwanted)
- 0.4 0.0 python-jarabe-0.84 (notoncd) (notwanted)
- 0.4 0.0 python-jarabe-0.88 (notoncd) (notwanted)
- 0.4 0.0 python-jinja2 (notoncd) (notwanted)
- 0.4 0.0 python-keybinder (notoncd) (notwanted)
- 0.4 0.0 python-ktoblzcheck (notoncd) (notwanted)
- 0.4 0.0 python-ldap-doc (notoncd) (notwanted)
- 0.4 0.0 python-libproxy (notoncd) (notwanted)
- 0.4 0.0 python-libsvm (notoncd) (notwanted)
- 0.4 0.0 python-libtovid (notoncd) (notwanted)
- 0.4 0.0 python-lockfile (notwanted)
- 0.4 0.0 python-mailer (notoncd) (notwanted)
- 0.4 0.0 python-mdp (notoncd) (notwanted)
- 0.4 0.0 python-medusa (notoncd) (notwanted)
- 0.4 0.0 python-medusa-doc (notoncd) (notwanted)
- 0.4 0.0 python-mlpy (notoncd) (notwanted)
- 0.4 0.0 python-mlpy-lib (notoncd) (notwanted)
- 0.4 0.0 python-moovida (notoncd) (notwanted)
- 0.4 0.0 python-mpd (notoncd) (notwanted)
- 0.4 0.0 python-mpi (notoncd) (notwanted)
- 0.4 0.0 python-musicbrainz (notoncd) (notwanted)
- 0.4 0.0 python-musicbrainz2 (notoncd) (notwanted)
- 0.4 0.0 python-mvpa (notoncd) (notwanted)
- 0.4 0.0 python-mvpa-lib (notoncd) (notwanted)
- 0.4 0.0 python-nifti (notoncd) (notwanted)
- 0.4 0.0 python-nmap (notoncd) (notwanted)
- 0.4 0.0 python-notmuch (notoncd) (notwanted)
- 0.4 0.0 python-obexftp (notoncd) (notwanted)
- 0.4 0.0 python-openid (notoncd) (notwanted)
- 0.4 0.0 python-openoffice (notoncd) (notwanted)
- 0.4 0.0 python-oss (notoncd) (notwanted)
- 0.4 0.0 python-pastebin (notoncd) (notwanted)
- 0.4 0.0 python-pdfrw (notoncd) (notwanted)
- 0.4 0.0 python-pdftools (notoncd) (notwanted)
- 0.4 0.0 python-peak.util.decorators (notoncd) (notwanted)
- 0.4 0.0 python-pgq3 (notoncd) (notwanted)
- 0.4 0.0 python-poppler-qt4 (notoncd) (notwanted)
- 0.4 0.0 python-prettytable (notoncd) (notwanted)
- 0.4 0.0 python-psyco (notoncd) (notwanted)
- 0.4 0.0 python-psyco-doc (notoncd) (notwanted)
- 0.4 0.0 python-pyepl (notoncd) (notwanted)
- 0.4 0.0 python-pyepl-common (notoncd) (notwanted)
- 0.4 0.0 python-pyexiv2-doc (notoncd) (notwanted)
- 0.4 0.0 python-pyglet (notoncd) (notwanted)
- 0.4 0.0 python-pygpu (notoncd) (notwanted)
- 0.4 0.0 python-pygraphviz (notoncd) (notwanted)
- 0.4 0.0 python-pyke (notoncd) (notwanted)
- 0.4 0.0 python-pymtp (notoncd) (notwanted)
- 0.4 0.0 python-pyode (notoncd) (notwanted)
- 0.4 0.0 python-pyogg (notoncd) (notwanted)
- 0.4 0.0 python-pyorbit-omg (notoncd) (notwanted)
- 0.4 0.0 python-pypm (notoncd) (notwanted)
- 0.4 0.0 python-pythoncard (notoncd) (notwanted)
- 0.4 0.0 python-pywt (notoncd) (notwanted)
- 0.4 0.0 python-qgis (notoncd) (notwanted)
- 0.4 0.0 python-qgis-common (notoncd) (notwanted)
- 0.4 0.0 python-qt3-doc (notoncd) (notwanted)
- 0.4 0.0 python-qt4-dev (notoncd) (notwanted)
- 0.4 0.0 python-scikits-learn (notoncd) (notwanted)
- 0.4 0.0 python-scikits-learn-lib (notoncd) (notwanted)
- 0.4 0.0 python-sclapp (notoncd) (notwanted)
- 0.4 0.0 python-setools (notoncd) (notwanted)
- 0.4 0.0 python-sexy (notoncd) (notwanted)
- 0.4 0.0 python-sip-dev (notoncd) (notwanted)
- 0.4 0.0 python-six (notoncd) (notwanted)
- 0.4 0.0 python-smartpm (notoncd) (notwanted)
- 0.4 0.0 python-smbc (notoncd) (notwanted)
- 0.4 0.0 python-soya-doc (notoncd) (notwanted)
- 0.4 0.0 python-stompy (notoncd) (notwanted)
- 0.4 0.0 python-subvertpy (notoncd) (notwanted)
- 0.4 0.0 python-sugar-0.84 (notoncd) (notwanted)
- 0.4 0.0 python-sugar-toolkit-0.84 (notoncd) (notwanted)
- 0.4 0.0 python-swiginac (notoncd) (notwanted)
- 0.4 0.0 python-sympy (notoncd) (notwanted)
- 0.4 0.0 python-tksnack (notoncd) (notwanted)
- 0.4 0.0 python-tofu (notoncd) (notwanted)
- 0.4 0.0 python-transaction (notoncd) (notwanted)
- 0.4 0.0 python-tunepimp (notoncd) (notwanted)
- 0.4 0.0 python-twisted-web2 (notoncd) (notwanted)
- 0.4 0.0 python-vigra (notoncd) (notwanted)
- 0.4 0.0 python-web2py (notoncd) (notwanted)
- 0.4 0.0 python-xappy (notoncd) (notwanted)
- 0.4 0.0 python-xml (notoncd) (notwanted)
- 0.4 0.0 python-yahoo (notoncd) (notwanted)
- 0.4 0.0 python-zc.lockfile (notoncd) (notwanted)
- 0.4 0.0 python-zope.authentication (notoncd) (notwanted)
- 0.4 0.0 python-zope.browser (notoncd) (notwanted)
- 0.4 0.0 python-zope.component (notoncd) (notwanted)
- 0.4 0.0 python-zope.component-zcml (notoncd) (notwanted)
- 0.4 0.0 python-zope.configuration (notoncd) (notwanted)
- 0.4 0.0 python-zope.contenttype (notoncd) (notwanted)
- 0.4 0.0 python-zope.copy (notoncd) (notwanted)
- 0.4 0.0 python-zope.event (notoncd) (notwanted)
- 0.4 0.0 python-zope.exceptions (notoncd) (notwanted)
- 0.4 0.0 python-zope.i18n (notoncd) (notwanted)
- 0.4 0.0 python-zope.location (notoncd) (notwanted)
- 0.4 0.0 python-zope.publisher (notoncd) (notwanted)
- 0.4 0.0 python-zope.schema (notoncd) (notwanted)
- 0.4 0.0 python-zope.sendmail (notoncd) (notwanted)
- 0.4 0.0 python-zope.traversing (notoncd) (notwanted)
- 0.4 0.0 python2.6-doc (notoncd) (notwanted)
- 0.4 0.0 python3-chardet (notoncd) (notwanted)
- 0.4 0.0 python3-debian (notoncd) (notwanted)
- 0.4 0.0 python3-dev (notoncd) (notwanted)
- 0.4 0.0 python3-dvdvideo (notoncd) (notwanted)
- 0.4 0.0 python3-gi (notoncd) (notwanted)
- 0.4 0.0 python3-magic (notoncd) (notwanted)
- 0.4 0.0 python3-six (notoncd) (notwanted)
- 0.4 0.0 python3.1-dev (notoncd) (notwanted)
- 0.4 0.0 python3.1-doc (notoncd) (notwanted)
- 0.4 0.0 pyxplot (notoncd) (notwanted)
- 0.4 0.0 pyxplot-doc (notoncd) (notwanted)
- 0.4 0.0 qcake-data (notoncd) (notwanted)
- 0.4 0.0 qdvdauthor-data (notoncd) (notwanted)
- 0.4 0.0 qemu-launcher (notoncd) (notwanted)
- 0.4 0.0 qgis (notoncd) (notwanted)
- 0.4 0.0 qgis-mapserver (notoncd) (notwanted)
- 0.4 0.0 qgis-plugin-globe (notoncd) (notwanted)
- 0.4 0.0 qgis-plugin-globe-common (notoncd) (notwanted)
- 0.4 0.0 qgis-plugin-grass (notoncd) (notwanted)
- 0.4 0.0 qgis-providers (notoncd) (notwanted)
- 0.4 0.0 qgis-providers-common (notoncd) (notwanted)
- 0.4 0.0 qgis-sqlanywhere (notoncd) (notwanted)
- 0.4 0.0 qgit (notoncd) (notwanted)
- 0.4 0.0 qlandkarte (notoncd) (notwanted)
- 0.4 0.0 qof-data (notoncd) (notwanted)
- 0.4 0.0 qrencode (notoncd) (notwanted)
- 0.4 0.0 qt-assistant-compat (notoncd) (notwanted)
- 0.4 0.0 qtcreator-doc (notoncd) (notwanted)
- 0.4 0.0 qtcurve (notoncd) (notwanted)
- 0.4 0.0 qtiplot-doc (notoncd) (notwanted)
- 0.4 0.0 qtparted (notoncd) (notwanted)
- 0.4 0.0 qtsmbstatus-client (notoncd) (notwanted)
- 0.4 0.0 qtsmbstatus-language (notoncd) (notwanted)
- 0.4 0.0 quantum-espresso (notoncd) (notwanted)
- 0.4 0.0 quantum-espresso-data (notoncd) (notwanted)
- 0.4 0.0 quiteinsane (notoncd) (notwanted)
- 0.4 0.0 quotatool (notoncd) (notwanted)
- 0.4 0.0 r-bioc-hilbertvis (notoncd) (notwanted)
- 0.4 0.0 rafkill-data (notoncd) (notwanted)
- 0.4 0.0 raidutils (notoncd) (notwanted)
- 0.4 0.0 raincat-data (notoncd) (notwanted)
- 0.4 0.0 rdoc1.9 (notoncd) (notwanted)
- 0.4 0.0 readpst (notoncd) (notwanted)
- 0.4 0.0 readseq (notoncd) (notwanted)
- 0.4 0.0 recover (notoncd) (notwanted)
- 0.4 0.0 recoverjpeg (notoncd) (notwanted)
- 0.4 0.0 red5-doc (notoncd) (notwanted)
- 0.4 0.0 redmine-sqlite (notoncd) (notwanted)
- 0.4 0.0 refblas3 (notoncd) (notwanted)
- 0.4 0.0 remuco-audacious (notoncd) (notwanted)
- 0.4 0.0 remuco-vlc (notoncd) (notwanted)
- 0.4 0.0 renaissance-doc (notoncd) (notwanted)
- 0.4 0.0 render-dev (notoncd) (notwanted)
- 0.4 0.0 ri (notoncd) (notwanted)
- 0.4 0.0 ri1.8 (notoncd) (notwanted)
- 0.4 0.0 rlplot (notoncd) (notwanted)
- 0.4 0.0 rnahybrid (notoncd) (notwanted)
- 0.4 0.0 roundcube-sqlite (notoncd) (notwanted)
- 0.4 0.0 rrootage-data (notoncd) (notwanted)
- 0.4 0.0 rssreader.app (notoncd) (notwanted)
- 0.4 0.0 rt3.8-apache2 (notoncd) (notwanted)
- 0.4 0.0 rt3.8-clients (notoncd) (notwanted)
- 0.4 0.0 rt3.8-db-mysql (notoncd) (notwanted)
- 0.4 0.0 rt3.8-db-postgresql (notoncd) (notwanted)
- 0.4 0.0 rt3.8-db-sqlite (notoncd) (notwanted)
- 0.4 0.0 rt73-common (notoncd) (notwanted)
- 0.4 0.0 rt73-modules-2.6.26-2-686 (notoncd) (notwanted)
- 0.4 0.0 ruby-dev (notoncd) (notwanted)
- 0.4 0.0 ruby-phonon (notoncd) (notwanted)
- 0.4 0.0 ruby-qt4-script (notoncd) (notwanted)
- 0.4 0.0 ruby-qt4-test (notoncd) (notwanted)
- 0.4 0.0 ruby-qt4-uitools (notoncd) (notwanted)
- 0.4 0.0 ruby1.9-dev (notoncd) (notwanted)
- 0.4 0.0 ruby1.9-examples (notoncd) (notwanted)
- 0.4 0.0 rubygems1.9 (notoncd) (notwanted)
- 0.4 0.0 s3d-data (notoncd) (notwanted)
- 0.4 0.0 sabnzbdplus-theme-classic (notoncd) (notwanted)
- 0.4 0.0 sabnzbdplus-theme-iphone (notoncd) (notwanted)
- 0.4 0.0 sabnzbdplus-theme-mobile (notoncd) (notwanted)
- 0.4 0.0 sabnzbdplus-theme-plush (notoncd) (notwanted)
- 0.4 0.0 sabnzbdplus-theme-smpl (notoncd) (notwanted)
- 0.4 0.0 sailcut-doc (notoncd) (notwanted)
- 0.4 0.0 samba-dbg (notoncd) (notwanted)
- 0.4 0.0 samba-doc-pdf (notoncd) (notwanted)
- 0.4 0.0 samtools (notoncd) (notwanted)
- 0.4 0.0 sankore-data (notoncd) (notwanted)
- 0.4 0.0 sauerbraten-wake6 (notoncd) (notwanted)
- 0.4 0.0 sawfish-data (notoncd) (notwanted)
- 0.4 0.0 sawfish-lisp-source (notoncd) (notwanted)
- 0.4 0.0 sawfish-themes (notoncd) (notwanted)
- 0.4 0.0 scalpel (notoncd) (notwanted)
- 0.4 0.0 scid-spell-data (notoncd) (notwanted)
- 0.4 0.0 scidavis (notoncd) (notwanted)
- 0.4 0.0 science-tasks (notoncd) (notwanted)
- 0.4 0.0 scilab-test (notoncd) (notwanted)
- 0.4 0.0 scim-gtk-immodule (notoncd) (notwanted)
- 0.4 0.0 scorched3d-data (notoncd) (notwanted)
- 0.4 0.0 scribus-doc (notoncd) (notwanted)
- 0.4 0.0 scribus-ng-doc (notoncd) (notwanted)
- 0.4 0.0 scummvm-data (notoncd) (notwanted)
- 0.4 0.0 sdic-edict (notoncd) (notwanted)
- 0.4 0.0 sdic-gene95 (notoncd) (notwanted)
- 0.4 0.0 sdr (notoncd) (notwanted)
- 0.4 0.0 searchandrescue-common (notoncd) (notwanted)
- 0.4 0.0 selfhtml (notoncd) (notwanted)
- 0.4 0.0 sendxmpp (notoncd) (notwanted)
- 0.4 0.0 sfftw2 (notoncd) (notwanted)
- 0.4 0.0 sflphone-data (notoncd) (notwanted)
- 0.4 0.0 shogun-cmdline (notoncd) (notwanted)
- 0.4 0.0 shogun-elwms (notoncd) (notwanted)
- 0.4 0.0 shogun-octave (notoncd) (notwanted)
- 0.4 0.0 shogun-octave-modular (notoncd) (notwanted)
- 0.4 0.0 shogun-python (notoncd) (notwanted)
- 0.4 0.0 shogun-python-modular (notoncd) (notwanted)
- 0.4 0.0 shogun-r (notoncd) (notwanted)
- 0.4 0.0 sibsim4 (notoncd) (notwanted)
- 0.4 0.0 siege (notoncd) (notwanted)
- 0.4 0.0 sigma-align (notoncd) (notwanted)
- 0.4 0.0 silc (notoncd) (notwanted)
- 0.4 0.0 sim4 (notoncd) (notwanted)
- 0.4 0.0 simgear1.9.1 (notoncd) (notwanted)
- 0.4 0.0 simgear2.4.0 (notoncd) (notwanted)
- 0.4 0.0 simulpic (notoncd) (notwanted)
- 0.4 0.0 singularity-music (notoncd) (notwanted)
- 0.4 0.0 sip4 (notoncd) (notwanted)
- 0.4 0.0 sketch-doc (notoncd) (notwanted)
- 0.4 0.0 skrooge-common (notoncd) (notwanted)
- 0.4 0.0 slicer (notoncd) (notwanted)
- 0.4 0.0 slicer-data (notoncd) (notwanted)
- 0.4 0.0 slrn (notoncd) (notwanted)
- 0.4 0.0 slv2-doc (notoncd) (notwanted)
- 0.4 0.0 smb-nat (notoncd) (notwanted)
- 0.4 0.0 smbc (notoncd) (notwanted)
- 0.4 0.0 smbnetfs (notoncd) (notwanted)
- 0.4 0.0 smile-data (notoncd) (notwanted)
- 0.4 0.0 smokeping (notoncd) (notwanted)
- 0.4 0.0 smplayer-themes (notoncd) (notwanted)
- 0.4 0.0 smplayer-translations (notoncd) (notwanted)
- 0.4 0.0 smuxi (notoncd) (notwanted)
- 0.4 0.0 snacc-doc (notoncd) (notwanted)
- 0.4 0.0 snake4 (notoncd) (notwanted)
- 0.4 0.0 snd-doc (notoncd) (notwanted)
- 0.4 0.0 snd-gtk-pulse (notoncd) (notwanted)
- 0.4 0.0 snd-nox-alsa (notoncd) (notwanted)
- 0.4 0.0 snes9x-x (notoncd) (notwanted)
- 0.4 0.0 snort-doc (notoncd) (notwanted)
- 0.4 0.0 snort-rules-default (notoncd) (notwanted)
- 0.4 0.0 source-highlight (notoncd) (notwanted)
- 0.4 0.0 space-orbit-common (notoncd) (notwanted)
- 0.4 0.0 speakup-source (notoncd) (notwanted)
- 0.4 0.0 spectrum-roms (notoncd) (notwanted)
- 0.4 0.0 speex-doc (notoncd) (notwanted)
- 0.4 0.0 spellutils (notoncd) (notwanted)
- 0.4 0.0 spideroak (notoncd) (notwanted)
- 0.4 0.0 spoonwep-spoonwpa-modified (notoncd) (notwanted)
- 0.4 0.0 spotify-client-gnome-support (notoncd) (notwanted)
- 0.4 0.0 sql-ledger (notwanted)
- 0.4 0.0 squid3-common (notoncd) (notwanted)
- 0.4 0.0 squidclient (notoncd) (notwanted)
- 0.4 0.0 squidguard-doc (notoncd) (notwanted)
- 0.4 0.0 ssake (notoncd) (notwanted)
- 0.4 0.0 ssed (notoncd) (notwanted)
- 0.4 0.0 ssh-askpass (notoncd) (notwanted)
- 0.4 0.0 stalonetray (notoncd) (notwanted)
- 0.4 0.0 starvoyager-data (notoncd) (notwanted)
- 0.4 0.0 statcvs (notoncd) (notwanted)
- 0.4 0.0 statsvn (notoncd) (notwanted)
- 0.4 0.0 stda (notoncd) (notwanted)
- 0.4 0.0 stgit (notoncd) (notwanted)
- 0.4 0.0 stops (notoncd) (notwanted)
- 0.4 0.0 strigi-applet (notoncd) (notwanted)
- 0.4 0.0 strigi-plugins (notoncd) (notwanted)
- 0.4 0.0 sugar-artwork-0.84 (notoncd) (notwanted)
- 0.4 0.0 sugar-browse-activity-0.84 (notoncd) (notwanted)
- 0.4 0.0 sugar-browse-activity-0.86 (notoncd)
- 0.4 0.0 sugar-calculate-activity
- 0.4 0.0 sugar-chat-activity-0.84 (notoncd) (notwanted)
- 0.4 0.0 sugar-emulator-0.84 (notoncd) (notwanted)
- 0.4 0.0 sugar-irc-activity (notwanted)
- 0.4 0.0 sugar-physics-activity
- 0.4 0.0 sugar-pippy-activity
- 0.4 0.0 sugar-read-activity-0.86 (notoncd)
- 0.4 0.0 sugar-record-activity (notwanted)
- 0.4 0.0 sugar-terminal-activity (notoncd) (notwanted)
- 0.4 0.0 sugar-turtleart-activity (notwanted)
- 0.4 0.0 sun-java5-demo (notoncd) (notwanted)
- 0.4 0.0 sun-java5-jdk (notoncd) (notwanted)
- 0.4 0.0 sun-java5-source (notoncd) (notwanted)
- 0.4 0.0 sun-java6-source (notoncd) (notwanted)
- 0.4 0.0 sunclock-maps (notwanted)
- 0.4 0.0 supertransball2-data (notoncd) (notwanted)
- 0.4 0.0 susv2 (notoncd) (notwanted)
- 0.4 0.0 susv3 (notoncd) (notwanted)
- 0.4 0.0 swaks (notoncd) (notwanted)
- 0.4 0.0 sweethome3d-furniture (notoncd) (notwanted)
- 0.4 0.0 sword-comm-mhcc (notoncd) (notwanted)
- 0.4 0.0 sword-comm-scofield (notoncd) (notwanted)
- 0.4 0.0 sword-comm-tdavid (notoncd) (notwanted)
- 0.4 0.0 sword-dict-strongs-greek (notoncd) (notwanted)
- 0.4 0.0 sword-dict-strongs-hebrew (notoncd) (notwanted)
- 0.4 0.0 sword-text-kjv (notoncd) (notwanted)
- 0.4 0.0 sword-text-sparv (notoncd) (notwanted)
- 0.4 0.0 sync-ui (notoncd) (notwanted)
- 0.4 0.0 synce-hal (notoncd) (notwanted)
- 0.4 0.0 synce-trayicon (notoncd) (notwanted)
- 0.4 0.0 syncevolution-dbus (notoncd) (notwanted)
- 0.4 0.0 syncevolution-libs (notoncd) (notwanted)
- 0.4 0.0 syslinux-themes-debian (notoncd) (notwanted)
- 0.4 0.0 syslinux-themes-debian-squeeze (notoncd) (notwanted)
- 0.4 0.0 syslinux-themes-debian-wheezy (notoncd) (notwanted)
- 0.4 0.0 system-config-gtk-kde (notoncd) (notwanted)
- 0.4 0.0 systemimager-boot-i386-standard (notoncd) (notwanted)
- 0.4 0.0 systemimager-server (notoncd) (notwanted)
- 0.4 0.0 systemimager-server-bittorrent (notoncd) (notwanted)
- 0.4 0.0 systemimager-server-flamethrowerd (notoncd) (notwanted)
- 0.4 0.0 sysutils (notoncd) (notwanted)
- 0.4 0.0 sysv-rc-conf (notoncd) (notwanted)
- 0.4 0.0 t-coffee (notoncd) (notwanted)
- 0.4 0.0 t1-oldslavic (notoncd) (notwanted)
- 0.4 0.0 t1-xfree86-nonfree (notoncd) (notwanted)
- 0.4 0.0 tablix2 (notoncd) (notwanted)
- 0.4 0.0 talk (notoncd) (notwanted)
- 0.4 0.0 task-british-desktop (notoncd) (notwanted)
- 0.4 0.0 task-english (notoncd) (notwanted)
- 0.4 0.0 task-german (notoncd) (notwanted)
- 0.4 0.0 task-portuguese (notoncd) (notwanted)
- 0.4 0.0 task-print-server (notoncd) (notwanted)
- 0.4 0.0 task-romanian (notoncd) (notwanted)
- 0.4 0.0 task-romanian-desktop (notoncd) (notwanted)
- 0.4 0.0 task-romanian-kde-desktop (notoncd) (notwanted)
- 0.4 0.0 task-slovak (notoncd) (notwanted)
- 0.4 0.0 task-spanish (notoncd) (notwanted)
- 0.4 0.0 tcl8.3 (notoncd) (notwanted)
- 0.4 0.0 tcptrace (notoncd) (notwanted)
- 0.4 0.0 tcputils (notoncd) (notwanted)
- 0.4 0.0 tct (notoncd) (notwanted)
- 0.4 0.0 tecnoballz (notoncd) (notwanted)
- 0.4 0.0 tecnoballz-data (notoncd) (notwanted)
- 0.4 0.0 telnet-ssl (notoncd) (notwanted)
- 0.4 0.0 tesseract-ocr-ita (notoncd) (notwanted)
- 0.4 0.0 tesseract-ocr-spa (notoncd) (notwanted)
- 0.4 0.0 tetex-base (notoncd) (notwanted)
- 0.4 0.0 tetex-brev (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-bg (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-cs+sk (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-en (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-es (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-fi (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-fr (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-ja (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-ko (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-mn (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-nl (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-pl (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-pt (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-ru (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-si (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-th (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-tr (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-uk (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-vi (notoncd) (notwanted)
- 0.4 0.0 texlive-doc-zh (notoncd) (notwanted)
- 0.4 0.0 texlive-full (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-african (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-arabic (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-armenian (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-hebrew (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-indic (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-latvian (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-lithuanian (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-tibetan (notoncd) (notwanted)
- 0.4 0.0 texlive-lang-ukenglish (notoncd) (notwanted)
- 0.4 0.0 texlive-omega (notoncd) (notwanted)
- 0.4 0.0 texlive-plain-extra (notoncd) (notwanted)
- 0.4 0.0 texworks-help-en (notoncd) (notwanted)
- 0.4 0.0 the-doc (notoncd) (notwanted)
- 0.4 0.0 thescoder (notoncd) (notwanted)
- 0.4 0.0 theseus (notoncd) (notwanted)
- 0.4 0.0 thinlinc-rdesktop (notoncd) (notwanted)
- 0.4 0.0 thinlinc-tlmisc-libs32 (notoncd) (notwanted)
- 0.4 0.0 thinlinc-tlprinter (notoncd) (notwanted)
- 0.4 0.0 thrust (notoncd) (notwanted)
- 0.4 0.0 thunderbird-locale-de (notoncd) (notwanted)
- 0.4 0.0 tidy-doc (notoncd) (notwanted)
- 0.4 0.0 tig (notoncd) (notwanted)
- 0.4 0.0 tigr-glimmer (notoncd) (notwanted)
- 0.4 0.0 timidity-interfaces-extra (notoncd) (notwanted)
- 0.4 0.0 tinyca (notoncd) (notwanted)
- 0.4 0.0 tipptrainer-data-en (notoncd) (notwanted)
- 0.4 0.0 tix-dev (notoncd) (notwanted)
- 0.4 0.0 tk8.3 (notoncd) (notwanted)
- 0.4 0.0 tkabber (notoncd) (notwanted)
- 0.4 0.0 tmux (notoncd) (notwanted)
- 0.4 0.0 tmw-data (notoncd) (notwanted)
- 0.4 0.0 tmw-music (notoncd) (notwanted)
- 0.4 0.0 tomcat6 (notoncd) (notwanted)
- 0.4 0.0 tomcat7 (notoncd) (notwanted)
- 0.4 0.0 tomcat7-admin (notoncd) (notwanted)
- 0.4 0.0 tomcat7-docs (notoncd) (notwanted)
- 0.4 0.0 tomcat7-examples (notoncd) (notwanted)
- 0.4 0.0 tork-data (notoncd) (notwanted)
- 0.4 0.0 torus-trooper-data (notoncd) (notwanted)
- 0.4 0.0 totem-xine (notoncd) (notwanted)
- 0.4 0.0 trackballs (notoncd) (notwanted)
- 0.4 0.0 trackballs-data (notoncd) (notwanted)
- 0.4 0.0 tracker-search-tool (notoncd) (notwanted)
- 0.4 0.0 translate-toolkit-dev-doc (notoncd) (notwanted)
- 0.4 0.0 transmission-daemon (notoncd) (notwanted)
- 0.4 0.0 transmission-webinterface (notoncd) (notwanted)
- 0.4 0.0 trash-cli (notoncd) (notwanted)
- 0.4 0.0 tree-puzzle (notoncd) (notwanted)
- 0.4 0.0 tree-puzzle-doc (notoncd) (notwanted)
- 0.4 0.0 tremulous-doc (notoncd) (notwanted)
- 0.4 0.0 truecrypt (notoncd) (notwanted)
- 0.4 0.0 ttf-adf-berenis (notoncd) (notwanted)
- 0.4 0.0 ttf-arphic-ukai
- 0.4 0.0 ttf-essays1743 (notoncd) (notwanted)
- 0.4 0.0 ttf-femkeklaver (notoncd) (notwanted)
- 0.4 0.0 ttf-gentium (notoncd) (notwanted)
- 0.4 0.0 ttf-georgewilliams (notoncd) (notwanted)
- 0.4 0.0 ttf-inconsolata (notoncd) (notwanted)
- 0.4 0.0 ttf-indic-fonts (notoncd) (notwanted)
- 0.4 0.0 ttf-isabella (notoncd) (notwanted)
- 0.4 0.0 ttf-junicode (notoncd) (notwanted)
- 0.4 0.0 ttf-kanjistrokeorders (notoncd) (notwanted)
- 0.4 0.0 ttf-kochi-mincho (notoncd) (notwanted)
- 0.4 0.0 ttf-larabie-straight (notoncd) (notwanted)
- 0.4 0.0 ttf-larabie-uncommon (notoncd) (notwanted)
- 0.4 0.0 ttf-malayalam-fonts (notwanted)
- 0.4 0.0 ttf-root-installer (notoncd) (notwanted)
- 0.4 0.0 ttf-staypuft (notoncd) (notwanted)
- 0.4 0.0 ttf-summersby (notoncd) (notwanted)
- 0.4 0.0 ttf-thryomanes (notoncd) (notwanted)
- 0.4 0.0 ttf-tiresias (notoncd) (notwanted)
- 0.4 0.0 ttf-tomsontalks (notoncd) (notwanted)
- 0.4 0.0 ttf-tuffy (notoncd) (notwanted)
- 0.4 0.0 ttf-yanone-kaffeesatz (notoncd) (notwanted)
- 0.4 0.0 tth (notoncd) (notwanted)
- 0.4 0.0 tumiki-fighters-data (notoncd) (notwanted)
- 0.4 0.0 type-handling (notoncd) (notwanted)
- 0.4 0.0 typespeed (notoncd) (notwanted)
- 0.4 0.0 typo3 (notoncd) (notwanted)
- 0.4 0.0 typo3-database (notoncd) (notwanted)
- 0.4 0.0 ucblogo (notoncd) (notwanted)
- 0.4 0.0 ufsutils (notwanted)
- 0.4 0.0 unicode-data (notoncd) (notwanted)
- 0.4 0.0 unicode-screensaver (notoncd) (notwanted)
- 0.4 0.0 unison-gtk (notoncd) (notwanted)
- 0.4 0.0 unixcw (notoncd) (notwanted)
- 0.4 0.0 update-sun-jre (notoncd) (notwanted)
- 0.4 0.0 updatefotosldap (notoncd) (notwanted)
- 0.4 0.0 upse-audacious (notoncd) (notwanted)
- 0.4 0.0 uqm-content (notoncd) (notwanted)
- 0.4 0.0 uqm-music (notoncd) (notwanted)
- 0.4 0.0 usplash-theme-linex (notoncd) (notwanted)
- 0.4 0.0 uudeview (notoncd) (notwanted)
- 0.4 0.0 v-sim (notoncd) (notwanted)
- 0.4 0.0 v-sim-common (notoncd) (notwanted)
- 0.4 0.0 v4l2ucp (notoncd) (notwanted)
- 0.4 0.0 vala-awn (notoncd) (notwanted)
- 0.4 0.0 vala-desktop-agnostic (notoncd) (notwanted)
- 0.4 0.0 valac-0.16-vapi (notoncd) (notwanted)
- 0.4 0.0 valac-0.20 (notoncd) (notwanted)
- 0.4 0.0 valac-0.20-vapi (notoncd) (notwanted)
- 0.4 0.0 valgrind-dbg (notwanted)
- 0.4 0.0 valknut-translations (notoncd) (notwanted)
- 0.4 0.0 vamp-plugin-sdk-doc (notoncd) (notwanted)
- 0.4 0.0 vblade (notoncd) (notwanted)
- 0.4 0.0 vblade-persist (notoncd) (notwanted)
- 0.4 0.0 vdpauinfo (notoncd) (notwanted)
- 0.4 0.0 velvet (notoncd) (notwanted)
- 0.4 0.0 verilator (notoncd) (notwanted)
- 0.4 0.0 vfdata-morisawa5 (notoncd) (notwanted)
- 0.4 0.0 via-bin (notoncd) (notwanted)
- 0.4 0.0 vic (notoncd) (notwanted)
- 0.4 0.0 videolan-doc (notoncd) (notwanted)
- 0.4 0.0 videoporama (notoncd) (notwanted)
- 0.4 0.0 vim-doc (notoncd) (notwanted)
- 0.4 0.0 vim-latexsuite (notoncd) (notwanted)
- 0.4 0.0 vim-python (notoncd) (notwanted)
- 0.4 0.0 vim-ruby (notoncd) (notwanted)
- 0.4 0.0 vim-syntax-gtk (notoncd) (notwanted)
- 0.4 0.0 virtualbox-ose (notoncd) (notwanted)
- 0.4 0.0 virtualbox-ose-dkms (notoncd) (notwanted)
- 0.4 0.0 virtualbox-ose-qt (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-bpel (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-demo (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-doc (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-isparql (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-ods (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-rdfmappers (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-sparqldemo (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-syncml (notoncd) (notwanted)
- 0.4 0.0 virtuoso-vad-tutorial (notoncd) (notwanted)
- 0.4 0.0 vloopback-source (notoncd) (notwanted)
- 0.4 0.0 vncserver (notoncd) (notwanted)
- 0.4 0.0 vodovod (notoncd) (notwanted)
- 0.4 0.0 vowpal-wabbit (notoncd) (notwanted)
- 0.4 0.0 vrweb (notoncd) (notwanted)
- 0.4 0.0 vsftpd (notoncd) (notwanted)
- 0.4 0.0 vtk-tcl (notoncd) (notwanted)
- 0.4 0.0 w3m-el (notoncd) (notwanted)
- 0.4 0.0 wallpapers-linex (notoncd) (notwanted)
- 0.4 0.0 warsow-data (notoncd) (notwanted)
- 0.4 0.0 warzone2100-music (notoncd) (notwanted)
- 0.4 0.0 webcamstudio (notoncd) (notwanted)
- 0.4 0.0 webmagick (notoncd) (notwanted)
- 0.4 0.0 weka (notoncd) (notwanted)
- 0.4 0.0 wesnoth-1.8-tools (notoncd) (notwanted)
- 0.4 0.0 wesnoth-all (notoncd) (notwanted)
- 0.4 0.0 wesnoth-editor (notoncd) (notwanted)
- 0.4 0.0 wfinnish (notoncd) (notwanted)
- 0.4 0.0 whitedune-docs (notoncd) (notwanted)
- 0.4 0.0 wicd-curses (notoncd) (notwanted)
- 0.4 0.0 widelands-data (notoncd) (notwanted)
- 0.4 0.0 wikipediafs (notoncd) (notwanted)
- 0.4 0.0 wine-unstable (notoncd) (notwanted)
- 0.4 0.0 wing (notoncd) (notwanted)
- 0.4 0.0 wkhtmltopdf (notoncd) (notwanted)
- 0.4 0.0 wordnet-sense-index (notoncd) (notwanted)
- 0.4 0.0 wordtrans-dict (notoncd) (notwanted)
- 0.4 0.0 wordtrans-doc (notoncd) (notwanted)
- 0.4 0.0 wordtrans-web (notoncd) (notwanted)
- 0.4 0.0 wpagui (notoncd) (notwanted)
- 0.4 0.0 wsola-dev (notoncd) (notwanted)
- 0.4 0.0 x-dev (notoncd) (notwanted)
- 0.4 0.0 x-window-system-core (notoncd) (notwanted)
- 0.4 0.0 x11proto-bigreqs-dev (notoncd) (notwanted)
- 0.4 0.0 x11proto-dmx-dev (notoncd) (notwanted)
- 0.4 0.0 x11proto-gl-dev (notoncd) (notwanted)
- 0.4 0.0 x11proto-xcmisc-dev (notoncd) (notwanted)
- 0.4 0.0 x11proto-xf86bigfont-dev (notoncd) (notwanted)
- 0.4 0.0 x11proto-xf86dga-dev (notoncd) (notwanted)
- 0.4 0.0 x11proto-xf86dri-dev (notoncd) (notwanted)
- 0.4 0.0 x11proto-xf86misc-dev (notoncd) (notwanted)
- 0.4 0.0 x2goserver-common (notoncd) (notwanted)
- 0.4 0.0 x2goserver-compat (notoncd) (notwanted)
- 0.4 0.0 x2goserver-one (notoncd) (notwanted)
- 0.4 0.0 x2goserver-pyhoca (notoncd) (notwanted)
- 0.4 0.0 x2gothinclientmanagement (notoncd) (notwanted)
- 0.4 0.0 xapian-doc (notoncd) (notwanted)
- 0.4 0.0 xapian-examples (notoncd) (notwanted)
- 0.4 0.0 xasteroids (notoncd) (notwanted)
- 0.4 0.0 xawtv-plugin-qt (notoncd) (notwanted)
- 0.4 0.0 xblast (notoncd) (notwanted)
- 0.4 0.0 xblast-tnt (notoncd) (notwanted)
- 0.4 0.0 xblast-tnt-images (notoncd) (notwanted)
- 0.4 0.0 xblast-tnt-levels (notoncd) (notwanted)
- 0.4 0.0 xblast-tnt-models (notoncd) (notwanted)
- 0.4 0.0 xboing (notoncd) (notwanted)
- 0.4 0.0 xbubble-data (notoncd) (notwanted)
- 0.4 0.0 xchat-gnome-common (notoncd) (notwanted)
- 0.4 0.0 xdiskusage (notoncd) (notwanted)
- 0.4 0.0 xemacs21-gnome-mule (notoncd) (notwanted)
- 0.4 0.0 xemacs21-gnome-mule-canna-wnn (notoncd) (notwanted)
- 0.4 0.0 xemacs21-gnome-nomule (notoncd) (notwanted)
- 0.4 0.0 xfonts-100dpi-transcoded (notwanted)
- 0.4 0.0 xfonts-bitmap-mule (notoncd) (notwanted)
- 0.4 0.0 xfonts-biznet-100dpi (notoncd) (notwanted)
- 0.4 0.0 xfonts-biznet-75dpi (notoncd) (notwanted)
- 0.4 0.0 xfonts-biznet-base (notoncd) (notwanted)
- 0.4 0.0 xfonts-bolkhov-koi8r-75dpi (notoncd) (notwanted)
- 0.4 0.0 xfonts-bolkhov-koi8r-misc (notoncd) (notwanted)
- 0.4 0.0 xfonts-cronyx-koi8r-100dpi (notoncd) (notwanted)
- 0.4 0.0 xfonts-cyrillic (notoncd) (notwanted)
- 0.4 0.0 xfonts-efont-unicode (notoncd) (notwanted)
- 0.4 0.0 xfonts-efont-unicode-ib (notoncd) (notwanted)
- 0.4 0.0 xfonts-intl-japanese (notoncd) (notwanted)
- 0.4 0.0 xfonts-nexus (notoncd) (notwanted)
- 0.4 0.0 xfonts-terminus-dos (notoncd) (notwanted)
- 0.4 0.0 xfonts-wqy (notoncd) (notwanted)
- 0.4 0.0 xfractint (notoncd) (notwanted)
- 0.4 0.0 xfree86-driver-synaptics (notoncd) (notwanted)
- 0.4 0.0 xgammon (notoncd) (notwanted)
- 0.4 0.0 xkbsel (notoncd) (notwanted)
- 0.4 0.0 xkbset (notoncd) (notwanted)
- 0.4 0.0 xkeycaps (notoncd) (notwanted)
- 0.4 0.0 xlibmesa-dri (notoncd) (notwanted)
- 0.4 0.0 xlibmesa-gl (notoncd) (notwanted)
- 0.4 0.0 xlibmesa-glu (notoncd) (notwanted)
- 0.4 0.0 xmame-sdl (notoncd) (notwanted)
- 0.4 0.0 xmltooling-schemas (notoncd) (notwanted)
- 0.4 0.0 xmltv (notoncd) (notwanted)
- 0.4 0.0 xmltv-gui (notoncd) (notwanted)
- 0.4 0.0 xmms-flac (notoncd) (notwanted)
- 0.4 0.0 xmotd (notoncd) (notwanted)
- 0.4 0.0 xmountains (notoncd) (notwanted)
- 0.4 0.0 xmp-audacious (notoncd) (notwanted)
- 0.4 0.0 xnee (notoncd) (notwanted)
- 0.4 0.0 xnee-doc (notoncd) (notwanted)
- 0.4 0.0 xorg-dev (notoncd) (notwanted)
- 0.4 0.0 xplot-xplot.org (notoncd) (notwanted)
- 0.4 0.0 xrestop (notoncd) (notwanted)
- 0.4 0.0 xserver-xfree86 (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-input-acecad (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-input-aiptek (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-input-elographics (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-input-evtouch (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-input-joystick (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-input-penmount (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-input-tslib (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-input-void (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-video-ati-dbg (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-video-glamo (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-video-glide (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-video-mach64-dbg (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-video-newport (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-video-r128-dbg (notoncd) (notwanted)
- 0.4 0.0 xserver-xorg-video-radeon-dbg (notoncd) (notwanted)
- 0.4 0.0 xsmbrowser (notoncd) (notwanted)
- 0.4 0.0 xsmc-calc (notoncd) (notwanted)
- 0.4 0.0 xsol (notoncd) (notwanted)
- 0.4 0.0 xspecs (notoncd) (notwanted)
- 0.4 0.0 xt (notoncd) (notwanted)
- 0.4 0.0 xtux-common (notoncd) (notwanted)
- 0.4 0.0 xtux-levels (notoncd) (notwanted)
- 0.4 0.0 xul-ext-downthemall (notoncd) (notwanted)
- 0.4 0.0 xul-ext-flashgot (notoncd) (notwanted)
- 0.4 0.0 xul-ext-gcontactsync (notoncd) (notwanted)
- 0.4 0.0 xul-ext-greasemonkey (notoncd) (notwanted)
- 0.4 0.0 xul-ext-livehttpheaders (notoncd) (notwanted)
- 0.4 0.0 xul-ext-sage (notoncd) (notwanted)
- 0.4 0.0 xul-ext-scrapbook (notoncd) (notwanted)
- 0.4 0.0 xul-ext-torbutton (notoncd) (notwanted)
- 0.4 0.0 xul-ext-webdeveloper (notoncd) (notwanted)
- 0.4 0.0 xulrunner-1.9.1-dbg (notoncd) (notwanted)
- 0.4 0.0 xvid4conf (notoncd) (notwanted)
- 0.4 0.0 xvncviewer (notoncd) (notwanted)
- 0.4 0.0 xvt (notoncd) (notwanted)
- 0.4 0.0 yacas-doc (notoncd) (notwanted)
- 0.4 0.0 yorick-data (notoncd) (notwanted)
- 0.4 0.0 yoshimi-data (notoncd) (notwanted)
- 0.4 0.0 yubikey-personalization (notoncd) (notwanted)
- 0.4 0.0 z88dk (notoncd) (notwanted)
- 0.4 0.0 zaz-data (notoncd) (notwanted)
- 0.4 0.0 zeitgeist (notoncd) (notwanted)
- 0.4 0.0 zoem-doc (notoncd) (notwanted)
- 0.4 0.0 zorp-doc (notoncd) (notwanted)
- 0.4 0.0 zsh-beta-doc (notoncd) (notwanted)
- 0.4 0.0 zsh-doc (notoncd) (notwanted)
- 0.4 0.0 zsnes (notoncd) (notwanted)
- 0.4 0.0 zygrib-maps (notoncd) (notwanted)
Deleted: trunk/src/build/CD-administrator/unwantedpkglist-wheezy-test-dvd-amd64.txt
===================================================================
--- trunk/src/build/CD-administrator/unwantedpkglist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:02 UTC (rev 80858)
+++ trunk/src/build/CD-administrator/unwantedpkglist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:21 UTC (rev 80859)
@@ -1,214 +0,0 @@
-9wm
-acorn-fdisk
-aewm
-affs-modules-2.6.32-5-powerpc64-di
-afterstep
-amiga-fdisk-cross
-apache2-mpm-perchild
-apache2-mpm-worker
-apt-file
-aptitude-doc-cs
-aptitude-doc-en
-aptitude-doc-fi
-aptitude-doc-fr
-aspell-fo
-ata-modules-2.6.32-5-powerpc64-di
-aterm
-aterm-ml
-atlas3-3dnow
-atlas3-base
-atlas3-sse
-atlas3-sse2
-biff
-bin86
-bison
-blackbox
-bootp
-cdebconf-udeb
-choose-mirror
-cmap-adobe-japan1
-console-cyrillic
-console-keymaps-acorn
-console-keymaps-amiga
-console-keymaps-atari
-console-keymaps-dec
-console-keymaps-sun
-core-modules-2.6.32-5-powerpc64-di
-courier-mta
-crypto-dm-modules-2.6.32-5-powerpc64-di
-crypto-modules-2.6.32-5-powerpc64-di
-ctwm
-debconf-english
-deliver
-delo
-efibootmgr
-elilo
-elvis-tiny
-enlightenment
-esmtp
-esmtp-run
-evilwm
-expect-tcl8.3
-ext2-modules-2.6.32-5-powerpc64-di
-ext3-modules-2.6.32-5-powerpc64-di
-ext4-modules-2.6.32-5-powerpc64-di
-fam
-fancontrol-modules-2.6.32-5-powerpc64-di
-fat-modules-2.6.32-5-powerpc64-di
-fbset
-file-rc
-flashplugin-nonfree
-flex
-floppy-modules-2.6.32-5-powerpc64-di
-fluxbox
-ftpd
-fvwm
-fvwm-gnome
-fvwm1
-fvwm95
-gcc-4.0-base
-gdm3
-gfortran-4.2
-gnu-efi
-gobjc++-4.2
-gobjc-4.2
-gpm
-gs-afpl
-gs-aladdin
-habak
-hanterm-xf
-hfs-modules-2.6.32-5-powerpc64-di
-hula-mta
-hypervisor-modules-2.6.32-5-powerpc64-di
-ibm-jdk1.1-installer
-icewm
-inetutils-inetd
-inetutils-ping
-inetutils-syslogd
-initrd-tools
-ion2
-ion3
-ipmasqadm
-irda-modules-2.6.32-5-powerpc64-di
-isofs-modules-2.6.32-5-powerpc64-di
-jdk1.1
-jfbterm
-jfs-modules-2.6.32-5-powerpc64-di
-jfsutils
-jikes
-jwm
-kaffe
-kbd-compat
-kqemu-source
-kterm
-libapache2-mod-php4
-libc6-amd64
-libconfigfile-perl
-libdebian-installer4-udeb
-libgamin0
-libgnutls12
-libident
-libnss-db
-libsasl2-modules-mysql
-libsdl1.2debian-all
-libsdl1.2debian-arts
-libsdl1.2debian-nas
-libsdl1.2debian-oss
-libsigc++-1.2-5c2
-libslang1-utf8-udeb
-libtextwrap1
-libtextwrap1-udeb
-lilypond-doc
-linux-image-2.6-powerpc-smp
-linux-image-2.6-powerpc64
-linux-image-2.6.32-5-powerpc-smp
-linux-image-2.6.32-5-powerpc64
-loop-aes-modules-2.6.30-2-powerpc64-di
-loop-modules-2.6.32-5-powerpc64-di
-lpr
-maildrop
-mailutils
-masqmail
-md-modules-2.6.32-5-powerpc64-di
-mlterm
-mlterm-tiny
-mrxvt
-msmtp-mta
-multi-gnome-terminal
-multipath-modules-2.6.32-5-powerpc64-di
-nagios-mysql
-nagios-pgsql
-nagios2
-nagios2-doc
-nas-bin
-nbsmtp
-net-retriever
-netcfg-static
-netkit-ping
-nic-extra-modules-2.6.32-5-powerpc64-di
-nic-modules-2.6.32-5-powerpc64-di
-nic-pcmcia-modules-2.6.32-5-powerpc64-di
-nic-shared-modules-2.6.32-5-powerpc64-di
-nls-core-modules-2.6.32-5-powerpc64-di
-nullmailer
-palo
-pata-modules-2.6.32-5-powerpc64-di
-pcmcia-modules-2.6.32-5-powerpc64-di
-pcmcia-storage-modules-2.6.32-5-powerpc64-di
-pgp
-php4
-php4-cli
-php5-cgi
-pidentd
-postfix
-postfix-ldap
-postfix-pcre
-ppp-modules-2.6.32-5-powerpc64-di
-pterm
-pump
-python-newt
-ratpoison
-realtime-lsm
-realtime-lsm-source
-reiserfs-modules-2.6.32-5-powerpc64-di
-reiserfsprogs
-rxvt
-sablevm
-sata-modules-2.6.32-5-powerpc64-di
-scsi-extra-modules-2.6.32-5-powerpc64-di
-sendmail
-sendmail-base
-sendmail-bin
-sendmail-cf
-sendmail-doc
-serial-modules-2.6.32-5-powerpc64-di
-smail
-socklog-run
-squashfs-modules-2.6.32-5-powerpc64-di
-ssh-askpass
-ssmtp
-sun-java5-bin
-sun-java5-jre
-sun-java5-plugin
-syslog-ng
-sysv-rc-bootsplash
-telnetd
-terminal.app
-tk8.3
-ufs-modules-2.6.32-5-powerpc64-di
-uinput-modules-2.6.32-5-powerpc64-di
-update
-usb-serial-modules-2.6.32-5-powerpc64-di
-vacation
-vim-gnome
-vim-gtk
-vim-lesstif
-vim-nox
-wterm
-wterm-ml
-xdm
-xfce4-terminal
-xfs-modules-2.6.32-5-powerpc64-di
-xfsprogs
-xmail
-yaird
Deleted: trunk/src/build/CD-administrator/wantedpkglist-wheezy-test-dvd-amd64.txt
===================================================================
--- trunk/src/build/CD-administrator/wantedpkglist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:02 UTC (rev 80858)
+++ trunk/src/build/CD-administrator/wantedpkglist-wheezy-test-dvd-amd64.txt 2013-06-18 04:35:21 UTC (rev 80859)
@@ -1,1585 +0,0 @@
-# First process the high priority tasks
-# printing Depends in education-common
-education-common
-rsyslog
-procinfo
-openssh-client
-cfengine2
-vim
-nullidentd
-openbsd-inetd
-man-db
-manpages
-ethtool
-hdparm
-pciutils
-nictools-pci
-apt-listchanges
-debian-archive-keyring
-debian-edu-archive-keyring
-resolvconf
-psmisc
-mii-diag
-lsscsi
-sysfsutils
-etherwake
-mlocate
-reportbug
-bind9-host
-traceroute
-tcptraceroute
-iftop
-less
-tcpdump
-bc
-wget
-strace
-nmap
-eject
-libwww-perl
-mtools
-ncftp
-dmidecode
-hwinfo
-procmail
-iproute
-mtr-tiny
-fping
-iotop
-debian-edu-doc-en
-debian-edu-config
-debian-edu-install
-localization-config
-debconf-utils
-consolekit
-libpam-ck-connector
-cpufrequtils
-cups
-foomatic-db-engine
-foomatic-db-gutenprint
-foomatic-filters-ppds
-pnm2ppa
-hpijs
-hpijs-ppds
-hplip
-ijsgutenprint
-cifs-utils
-# printing Depends in education-networked-common
-education-networked-common
-libnss-ldapd
-ng-utils
-ldap-utils
-ldapvi
-rwho
-rwhod
-ntpdate
-ntp
-nfs-common
-autofs5-ldap
-sudo-ldap
-krb5-clients
-krb5-user
-libsasl2-modules-gssapi-mit
-munin-node
-sitesummary-client
-openssh-server
-shutdown-at-night
-# printing Depends in education-networked
-education-networked
-libpam-krb5
-nscd
-network-manager
-# printing Depends in education-laptop
-education-laptop
-xserver-xorg-input-synaptics
-laptop-mode-tools
-# printing Depends in education-main-server
-education-main-server
-iptables
-bind9
-ldap2zone
-isc-dhcp-server-ldap
-syslinux
-debian-installer-6.0-netboot-i386
-debian-installer-6.0-netboot-amd64
-atftpd
-slapd
-openssl
-dovecot-imapd
-exim4-daemon-heavy
-links
-nfs-kernel-server
-samba
-samba-common-bin
-makepasswd
-tdb-tools
-smbclient
-apache2
-squid
-slbackup
-slbackup-php
-munin
-nagios3
-nagios-plugins-standard
-nagios-nrpe-plugin
-sitesummary
-gosa
-gosa-schema
-gosa-plugin-samba
-gosa-plugin-ldapmanager
-gosa-plugin-sudo
-gosa-plugin-sudo-schema
-gosa-plugin-dhcp
-gosa-plugin-dhcp-schema
-gosa-plugin-dns
-gosa-plugin-dns-schema
-smbldap-tools
-gosa-help-en
-gosa-help-de
-gosa-help-fr
-gosa-help-nl
-debian-edu-config-gosa-netgroups
-krb5-kdc
-krb5-admin-server
-krb5-kdc-ldap
-# printing Depends in education-thin-client-server
-education-thin-client-server
-tftp
-ltsp-server-standalone
-ltspfs
-rdiff-backup
-nbd-server
-education-workstation
-education-desktop-other
-xorg
-xserver-xorg-input-all
-xserver-xorg-video-all
-libgl1-mesa-dri
-numlockx
-unifont
-gsfonts-x11
-xfonts-75dpi-transcoded
-ttf-mgopen
-ttf-freefont
-ttf-liberation
-ttf-linex
-synaptic
-alsa-utils
-alsa-base
-openoffice.org
-gecko-mediaplayer
-konqueror-plugin-gnash
-mozilla-plugin-gnash
-debian-edu-artwork
-gnupg2
-gnupg-agent
-avahi-daemon
-cups-client
-cups-bsd
-unzip
-zip
-bzip2
-isc-dhcp-client
-freerdp-x11
-ktuberling
-openshot
-kdenlive
-stopmotion
-gcompris
-inkscape
-# printing Depends in education-thin-client
-education-thin-client
-ltsp-client
-# printing Depends in education-desktop-other
-# printing Depends in education-workstation
-# printing Depends in education-standalone
-education-standalone
-sudo
-plasma-widget-networkmanagement
-libnss-mdns
-# printing Depends in education-desktop-kde
-education-desktop-kde
-kdm
-kdebase
-kde-standard
-konqueror
-konsole
-kmix
-kdepasswd
-kscreensaver
-dragonplayer
-kdeedu
-menu
-menu-xdg
-# printing Depends in education-roaming-workstation
-education-roaming-workstation
-wicd
-libpam-mklocaluser
-libpam-sss
-libnss-sss
-libpam-cracklib
-# printing Depends in education-lang-no
-education-lang-no
-debian-edu-doc-nb
-# printing Depends in education-lang-no-desktop
-education-lang-no-desktop
-# printing Depends in education-lang-no-desktop-kde
-education-lang-no-desktop-kde
-# printing Depends in education-lang-de
-education-lang-de
-debian-edu-doc-de
-# printing Depends in education-lang-de-desktop
-education-lang-de-desktop
-# printing Depends in education-lang-de-desktop-kde
-education-lang-de-desktop-kde
-# printing Depends in education-lang-es
-education-lang-es
-debian-edu-doc-es
-# printing Depends in education-lang-es-desktop
-education-lang-es-desktop
-gcompris-sound-es
-# printing Depends in education-lang-es-desktop-kde
-education-lang-es-desktop-kde
-# printing Depends in education-lang-fr
-education-lang-fr
-debian-edu-doc-fr
-# printing Depends in education-lang-fr-desktop
-education-lang-fr-desktop
-# printing Depends in education-lang-fr-desktop-kde
-education-lang-fr-desktop-kde
-# printing Depends in education-lang-ja
-education-lang-ja
-# printing Depends in education-lang-ja-desktop
-education-lang-ja-desktop
-# printing Depends in education-lang-ja-desktop-kde
-education-lang-ja-desktop-kde
-# printing Depends in education-lang-zh_TW
-education-lang-zh_TW
-# printing Depends in education-lang-zh_TW-desktop
-education-lang-zh_TW-desktop
-openoffice.org-help-zh-tw
-openoffice.org-l10n-zh-tw
-ttf-arphic-uming
-ttf-wqy-zenhei
-ttf-wqy-microhei
-im-switch
-ibus-chewing
-ibus-table-cangjie
-ibus-array
-ttf-arphic-ukai
-# printing Depends in education-lang-zh_TW-desktop-kde
-education-lang-zh_TW-desktop-kde
-# printing Depends in education-lang-he
-education-lang-he
-# printing Depends in education-lang-he-desktop
-education-lang-he-desktop
-# printing Depends in education-lang-he-desktop-kde
-education-lang-he-desktop-kde
-# printing Depends in education-lang-it
-education-lang-it
-debian-edu-doc-it
-# printing Depends in education-lang-it-desktop
-education-lang-it-desktop
-gcompris-sound-it
-# printing Depends in education-lang-it-desktop-kde
-education-lang-it-desktop-kde
-# printing Depends in education-lang-se
-education-lang-se
-# printing Depends in education-lang-se-desktop-kde
-education-lang-se-desktop-kde
-# printing Depends in education-lang-da
-education-lang-da
-debian-edu-doc-da
-# printing Depends in education-lang-da-desktop
-education-lang-da-desktop
-gcompris-sound-da
-# printing Depends in education-lang-da-desktop-kde
-education-lang-da-desktop-kde
-# printing Recommends in education-common
-iputils-arping
-finger
-gdebi-core
-python-gtk2
-python-vte
-rsync
-memtest86+
-deborphan
-hddtemp
-htop
-screen
-mc
-lshw
-dhcping
-convmv
-system-config-lvm
-gdb
-libnss-myhostname
-libpam-tmpdir
-readahead-fedora
-bash-completion
-# printing Recommends in education-networked-common
-jxplorer
-killer
-nvram-wakeup
-# printing Recommends in education-networked
-# printing Recommends in education-laptop
-kdebluetooth
-unison
-powertop
-kde-config-touchpad
-usb-modeswitch
-# printing Recommends in education-main-server
-libapache2-mod-auth-kerb
-# printing Recommends in education-thin-client-server
-gstreamer0.10-pulseaudio
-pulseaudio
-pulseaudio-esound-compat
-pulseaudio-utils
-nagios-nrpe-server
-xrdp
-vnc4server
-# printing Recommends in education-thin-client
-acpi-support-base
-# printing Recommends in education-desktop-other
-openoffice.org-l10n-el
-openoffice.org-l10n-de
-openoffice.org-l10n-fr
-openoffice.org-l10n-es
-openoffice.org-l10n-ca
-openoffice.org-l10n-nl
-openoffice.org-l10n-sv
-openoffice.org-l10n-pt-br
-openoffice.org-help-el
-openoffice.org-help-fr
-openoffice.org-help-es
-openoffice.org-help-sv
-openoffice.org-help-pt-br
-mozilla-openoffice.org
-openclipart-openoffice.org
-openclipart
-openoffice.org-help-en
-gstreamer0.10-alsa
-gstreamer0.10-esd
-gstreamer0.10-ffmpeg
-gstreamer0.10-x
-gstreamer0.10-plugins-base
-gstreamer0.10-plugins-good
-gstreamer0.10-plugins-ugly
-iceweasel
-iceweasel-l10n-de
-iceweasel-l10n-el
-iceweasel-l10n-it
-iceweasel-l10n-fr
-iceweasel-l10n-es-es
-iceweasel-l10n-eu
-iceweasel-l10n-en-gb
-iceweasel-l10n-es-ar
-iceweasel-l10n-sv-se
-iceweasel-l10n-pt-br
-djvulibre-plugin
-gnome-themes
-gtk-qt-engine
-gstreamer0.10-fluendo-mp3
-gstreamer0.10-audiosink
-default-jre
-icedtea6-plugin
-vgrabbj
-dvgrab
-ffmpeg
-gnuchess
-gnucap
-tuxpaint
-tuxpaint-config
-planner
-gimp
-gimp-data-extras
-gimp-ufraw
-cheese
-sane
-sane-utils
-skanlite
-ocrad
-myspell-en-us
-iamerican
-myspell-en-gb
-ibritish
-myspell-de-de
-ingerman
-myspell-fr
-ifrench
-myspell-es
-ispanish
-myspell-it
-iitalian
-myspell-el-gr
-myspell-pt-br
-ibrazilian
-myspell-ca
-icatalan
-myspell-nl
-idutch
-myspell-pt-pt
-iportuguese
-myspell-fi
-ifinnish-large
-k3b
-k3b-i18n
-tuxmath
-education-astronomy
-education-menus
-education-chemistry
-education-electronics
-education-geography
-education-graphics
-xpaint
-partlibrary
-education-language
-education-logic-games
-education-mathematics
-kig
-geomview
-grace
-graphmonkey
-graphthing
-kalgebra
-xabacus
-education-music
-education-physics
-education-misc
-gtk-recordmydesktop
-pavucontrol
-# printing Recommends in education-workstation
-krb5-auth-dialog
-# printing Recommends in education-standalone
-# printing Recommends in education-desktop-kde
-kcalc
-ark
-kmail
-kaddressbook
-kcharselect
-kdf
-ksnapshot
-korganizer
-konversation
-konq-plugins
-kdemultimedia-kio-plugins
-kdegraphics-strigi-plugins
-kdepimlibs-kio-plugins
-kfloppy
-knotes
-amarok
-kdewallpapers
-kdeutils
-kamera
-digikam
-kipi-plugins
-kdeaccessibility
-kturtle
-kaddressbook-plugins
-digikamimageplugins
-kdenetwork-kfile-plugins
-kiosktool
-printer-applet
-kwalletmanager
-virtuoso-minimal
-freespacenotifier
-kinfocenter
-update-notifier-kde
-quanta
-kde-l10n-es
-kde-l10n-it
-kde-l10n-de
-kde-l10n-fr
-kde-l10n-lv
-kde-l10n-el
-kde-l10n-ptbr
-kde-l10n-nl
-kde-l10n-ca
-kde-l10n-sv
-kde-l10n-se
-openoffice.org-kde
-# printing Recommends in education-roaming-workstation
-# printing Recommends in education-lang-no
-myspell-nb
-aspell-no
-myspell-nn
-inorwegian
-wnorwegian
-# printing Recommends in education-lang-no-desktop
-gcompris-sound-nb
-gimp-help-no
-openoffice.org-l10n-nb
-openoffice.org-l10n-nn
-openoffice.org-help-nb
-openoffice.org-help-nn
-iceweasel-l10n-nb-no
-iceweasel-l10n-nn-no
-# printing Recommends in education-lang-no-desktop-kde
-kde-l10n-nn
-kde-l10n-nb
-# printing Recommends in education-lang-de
-myspell-de-at
-myspell-de-ch
-iswiss
-wngerman
-# printing Recommends in education-lang-de-desktop
-gcompris-sound-de
-gimp-help-de
-openoffice.org-help-de
-openoffice.org-hyphenation-de
-openoffice.org-thesaurus-de
-openoffice.org-thesaurus-de-ch
-# printing Recommends in education-lang-de-desktop-kde
-# printing Recommends in education-lang-es
-wspanish
-manpages-es-extra
-# printing Recommends in education-lang-es-desktop
-gimp-help-es
-i2e
-# printing Recommends in education-lang-es-desktop-kde
-# printing Recommends in education-lang-fr
-wfrench
-manpages-fr-extra
-# printing Recommends in education-lang-fr-desktop
-gcompris-sound-fr
-gimp-help-fr
-openoffice.org-hyphenation-fr
-openoffice.org-thesaurus-fr
-# printing Recommends in education-lang-fr-desktop-kde
-# printing Recommends in education-lang-ja
-# printing Recommends in education-lang-ja-desktop
-ttf-vlgothic
-scim-anthy
-scim-uim
-scim-skk
-scim-prime
-scim-canna
-scim-tables-ja
-openoffice.org-l10n-ja
-openoffice.org-help-ja
-iceweasel-l10n-ja
-# printing Recommends in education-lang-ja-desktop-kde
-kde-l10n-ja
-# printing Recommends in education-lang-zh_TW
-# printing Recommends in education-lang-zh_TW-desktop
-# printing Recommends in education-lang-zh_TW-desktop-kde
-kde-l10n-zhtw
-# printing Recommends in education-lang-he
-# printing Recommends in education-lang-he-desktop
-libfribidi0
-culmus
-aspell-he
-hspell
-myspell-he
-openoffice.org-l10n-he
-openoffice.org-help-he
-iceweasel-l10n-he
-# printing Recommends in education-lang-he-desktop-kde
-kde-l10n-he
-# printing Recommends in education-lang-it
-witalian
-# printing Recommends in education-lang-it-desktop
-gimp-help-it
-openoffice.org-help-it
-openoffice.org-l10n-it
-openoffice.org-thesaurus-it
-# printing Recommends in education-lang-it-desktop-kde
-# printing Recommends in education-lang-se
-hunspell-se
-# printing Recommends in education-lang-se-desktop-kde
-# printing Recommends in education-lang-da
-myspell-da
-idanish
-wdanish
-# printing Recommends in education-lang-da-desktop
-openoffice.org-help-da
-openoffice.org-l10n-da
-iceweasel-l10n-da
-# printing Recommends in education-lang-da-desktop-kde
-kde-l10n-da
-# Next, medium priority tasks tasks
-# printing Depends in education-astronomy
-gpredict
-stellarium
-xplanet
-xplanet-images
-celestia
-kstars
-# printing Depends in education-chemistry
-easychem
-gchempaint
-gdis
-ghemical
-pymol
-viewmol
-xdrawchem
-gperiodic
-chemtool
-kalzium
-# printing Depends in education-electronics
-qucs
-gpsim
-oregano
-ktechlab
-# printing Depends in education-geography
-kgeography
-marble
-# printing Depends in education-graphics
-dia-gnome
-scribus-ng
-# printing Depends in education-language
-kanagram
-trans-de-en
-dict
-gnome-utils
-aspell
-wordnet
-khangman
-klettres
-parley
-ktouch
-# printing Depends in education-logic-games
-atomix
-blinken
-cgoban
-lmemory
-xboard
-gnugo
-gtans
-xjig
-xsok
-# printing Depends in education-mathematics
-geogebra
-drgeo
-gnuplot
-kbruch
-kmplot
-mathwar
-rocs
-# printing Depends in education-misc
-childsplay
-tuxtype
-tilp
-vym
-pysycache
-# printing Depends in education-music
-kguitar
-audacity
-terminatorx
-hydrogen
-noteedit
-denemo
-solfege
-audacious
-score-reading-trainer
-lmms
-rosegarden
-swh-plugins
-mcp-plugins
-qsynth
-fluidsynth
-fluid-soundfont-gm
-qjackctl
-jackd
-# printing Depends in education-physics
-planets
-step
-# printing Depends in education-desktop-gnome
-education-desktop-gnome
-gdm
-gnome-desktop-environment
-openoffice.org-gnome
-openoffice.org-gtk
-openoffice.org-writer
-openoffice.org-calc
-openoffice.org-impress
-openoffice.org-draw
-openoffice.org-math
-openoffice.org-base
-openoffice.org-filter-binfilter
-openoffice.org-java-common
-totem
-# printing Depends in education-desktop-lxde
-education-desktop-lxde
-lxde
-desktop-file-utils
-# printing Recommends in education-astronomy
-# printing Recommends in education-chemistry
-# printing Recommends in education-electronics
-# printing Recommends in education-geography
-# printing Recommends in education-graphics
-# printing Recommends in education-language
-# printing Recommends in education-logic-games
-# printing Recommends in education-mathematics
-# printing Recommends in education-misc
-# printing Recommends in education-music
-# printing Recommends in education-physics
-# printing Recommends in education-desktop-gnome
-# printing Recommends in education-desktop-lxde
-aqualung
-epdfview
-galculator
-osmo
-parcellite
-pidgin
-xchat
-mtpaint
-fotoxx
-chmsee
-# Next process all the others, in alphabetic order
-# printing Depends in education-desktop-sugar
-education-desktop-sugar
-xserver-xorg
-xinit
-sucrose-0.88
-sugar-browse-activity-0.86
-sugar-calculate-activity
-sugar-chat-activity-0.86
-sugar-pippy-activity
-sugar-read-activity-0.86
-sugar-physics-activity
-sugar-session-0.88
-sugar-emulator-0.88
-# printing Depends in education-development
-education-development
-fp-compiler
-fp-ide
-fp-units-base
-fp-units-gfx
-fp-utils
-fp-units-gtk2
-fp-docs
-fpc-source
-fp-units-fcl
-fp-units-i386
-fp-units-multimedia
-fp-units-misc
-fp-units-net
-fp-units-rtl
-fp-units-fv
-lazarus
-gambas2
-bwbasic
-kommander
-squeak-vm
-python
-umbrello
-kdevelop
-build-essential
-autoconf
-subversion
-ddd
-# printing Depends in education-services
-education-services
-dansguardian
-# printing Recommends in education-desktop-sugar
-net-tools
-xserver-xephyr
-x11-xserver-utils
-ttf-dejavu-extra
-python-gst0.10
-# printing Recommends in education-development
-# printing Recommends in education-services
-# printing Suggests in education-astronomy
-sunclock
-xtide
-xtide-data
-spacechart
-xephem
-stars
-# printing Suggests in education-chemistry
-rasmol
-xpovchem
-mek
-xem
-lum
-# printing Suggests in education-common
-rsyslog-doc
-emacs
-ident-server
-apticron
-nictools-nopci
-debsecan
-dpt-i2o-raidutils
-arrayprobe
-mpt-status
-isag
-modconf
-wireshark
-dpt-raidutil
-cpqarrayd
-valgrind
-popularity-contest
-debian-goodies
-kexec-tools
-firmware-bnx2
-firmware-ipw2x00
-firmware-iwlwifi
-firmware-qlogic
-cupsomatic-ppd
-foo2zjs
-# printing Suggests in education-desktop-gnome
-iceweasel-gnome-support
-gnochm
-dasher
-gnome-mag
-gok
-gnome-accessibility-themes
-gnome-orca
-# printing Suggests in education-desktop-kde
-knode
-kcron
-kuser
-kscd
-kfind
-kruler
-kfilereplace
-kde
-krecord
-kview
-kpaint
-kedit
-kate-plugins
-noatun
-noatun-plugins
-kmid
-kmidi
-kiconedit
-kpm
-kdepim-kfile-plugins
-kdeaddons-kfile-plugins
-krfb
-krdc
-koffice
-koffice-l10n-es
-koffice-l10n-it
-koffice-l10n-de
-koffice-l10n-fr
-koffice-l10n-el
-koffice-doc-html
-krita
-kspread
-kpresenter
-kword
-koffice-l10n-lv
-koffice-l10n-se
-kschoolmenu
-# printing Suggests in education-desktop-lxde
-# printing Suggests in education-desktop-other
-xfonts-base-transcoded
-xfonts-100dpi-transcoded
-ttf-malayalam-fonts
-adept
-gij-4.1
-java-gcj-compat
-openoffice.org-filter-mobiledev
-openoffice.org-l10n-en-za
-openoffice.org-style-crystal
-openoffice.org-style-industrial
-openoffice.org-thesaurus-en-us
-openoffice.org-hyphenation
-openoffice.org-l10n-common
-openoffice.org-l10n-en-us
-openoffice.org-style-default
-iceweasel-l10n-af
-iceweasel-l10n-ar
-iceweasel-l10n-be
-iceweasel-l10n-bg
-iceweasel-l10n-ca
-iceweasel-l10n-cs
-iceweasel-l10n-dz-bt
-iceweasel-l10n-fa-ir
-iceweasel-l10n-fi
-iceweasel-l10n-fur-it
-iceweasel-l10n-fy-nl
-iceweasel-l10n-ga-ie
-iceweasel-l10n-gu-in
-iceweasel-l10n-hu
-iceweasel-l10n-ka
-iceweasel-l10n-ko
-iceweasel-l10n-ku
-iceweasel-l10n-lt
-iceweasel-l10n-mk
-iceweasel-l10n-mn
-iceweasel-l10n-nl
-iceweasel-l10n-pa-in
-iceweasel-l10n-pl
-iceweasel-l10n-pt-pt
-iceweasel-l10n-ro
-iceweasel-l10n-ru
-iceweasel-l10n-sk
-iceweasel-l10n-sl
-iceweasel-l10n-tr
-iceweasel-l10n-zh-cn
-iceweasel-l10n-zh-tw
-iceweasel-l10n-cy-gb
-iceweasel-l10n-et-ee
-iceweasel-l10n-roa-es-val
-iceweasel-l10n-uk-ua
-mozilla-mplayer
-icedove
-icedove-l10n-ca
-icedove-l10n-de
-icedove-l10n-el
-icedove-l10n-es-es
-icedove-l10n-fr
-icedove-l10n-it
-flashplugin-nonfree
-flashplugin-nonfree-pulse
-libflashsupport
-gnupg-doc
-avahi-discover
-mdns-scan
-avahi-autoipd
-kdnssd
-foomatic-gui
-kino
-pitivi
-xine-ui
-openmovieeditor
-libdvdcss2
-ogle-gui
-gcompris-sound-en
-gcompris-sound-eu
-gcompris-sound-fi
-gcompris-sound-hu
-gcompris-sound-nl
-gcompris-sound-pt
-gcompris-sound-ru
-gcompris-sound-sv
-gcompris-sound-cs
-gcompris-sound-mr
-gcompris-sound-ptbr
-gcompris-sound-so
-gcompris-sound-tr
-pgdesigner
-dbdesigner
-keuklid
-kgeo
-kgraph
-kmultiply
-klearnspelling
-kpercentage
-knorskverbs
-postgresql-client
-postgresql
-sql-ledger
-geg
-texlive
-texlive-doc-base
-lacheck
-auctex
-texlive-latex-base
-lyx
-texmacs
-kchart
-kformula
-koshell
-kugar
-kivio
-sodipodi
-netpbm
-gv
-dia
-kolourpaint
-myspell-fr-gut
-lightspeed
-klogic
-kppp
-pppoeconf
-kdissert
-tablix2
-gtablix
-fet
-monopd
-atlantik
-atlantikdesigner
-scim-chewing
-scim-tables-zh
-rsibreak
-ktron
-kpat
-kbattleship
-ksame
-kbounce
-kspaceduel
-kgoldrunner
-kolf
-kmines
-konquest
-kshisen
-katomic
-kblackbox
-kjumpingcube
-kmahjongg
-kreversi
-ksnake
-kasteroids
-ksmiletris
-ksirtet
-kpoker
-kworldclock
-kfouleggs
-klickety
-kbackgammon
-wine
-wine-doc
-libwine-alsa
-libwine-oss
-gettext
-kbabel
-kernel-package
-libncurses5-dev
-controlaula
-# printing Suggests in education-desktop-sugar
-sugar-write-activity-0.88
-sugar-turtleart-activity
-sugar-irc-activity
-sugar-record-activity
-etoys
-etoys-doc
-sugar-doc
-# printing Suggests in education-development
-eclipse
-tk8.5-dev
-tcl8.5-dev
-swi-prolog
-swi-prolog-doc
-swi-prolog-clib
-swi-prolog-http
-swi-prolog-semweb
-swi-prolog-sgml
-swi-prolog-table
-swi-prolog-xpce
-# printing Suggests in education-electronics
-gpsim-led
-gpsim-lded
-gpsim-logic
-ksimus
-ksimus-boolean
-ksimus-floatingpoint
-ksimus-datarecorder
-kicad
-kicad-doc-en
-kicad-doc-de
-kicad-doc-es
-kicad-doc-fr
-electric
-pcb
-xcircuit
-freehdl
-gtkwave
-vipec
-# printing Suggests in education-geography
-gpscorrelate
-qlandkartegt
-viking
-googleearth-package
-openscenegraph
-grass
-qgis
-gmt
-thuban
-earth3d
-google-earth
-mapserver
-# printing Suggests in education-graphics
-qcad
-xfig
-xaos
-tgif
-hugin
-blender
-kontour
-panorama
-# printing Suggests in education-lang-da
-# printing Suggests in education-lang-da-desktop
-icedove-l10n-da
-# printing Suggests in education-lang-da-desktop-kde
-koffice-l10n-da
-# printing Suggests in education-lang-de
-# printing Suggests in education-lang-de-desktop
-# printing Suggests in education-lang-de-desktop-kde
-# printing Suggests in education-lang-es
-# printing Suggests in education-lang-es-desktop
-# printing Suggests in education-lang-es-desktop-kde
-# printing Suggests in education-lang-fr
-# printing Suggests in education-lang-fr-desktop
-aptitude-doc-fr
-# printing Suggests in education-lang-fr-desktop-kde
-# printing Suggests in education-lang-he
-# printing Suggests in education-lang-he-desktop
-icedove-l10n-he
-# printing Suggests in education-lang-he-desktop-kde
-koffice-l10n-he
-# printing Suggests in education-lang-it
-# printing Suggests in education-lang-it-desktop
-# printing Suggests in education-lang-it-desktop-kde
-# printing Suggests in education-lang-ja
-# printing Suggests in education-lang-ja-desktop
-icedove-l10n-ja
-aptitude-doc-ja
-# printing Suggests in education-lang-ja-desktop-kde
-koffice-l10n-ja
-# printing Suggests in education-lang-no
-# printing Suggests in education-lang-no-desktop
-icedove-l10n-nb
-icedove-l10n-nn
-# printing Suggests in education-lang-no-desktop-kde
-koffice-l10n-nb
-koffice-l10n-nn
-# printing Suggests in education-lang-se
-# printing Suggests in education-lang-se-desktop-kde
-# printing Suggests in education-lang-zh_TW
-# printing Suggests in education-lang-zh_TW-desktop
-# printing Suggests in education-lang-zh_TW-desktop-kde
-# printing Suggests in education-language
-wordtrans-kde
-wordtrans-data
-kverbos
-klatin
-tipptrainer
-kiten
-typespeed
-festival
-kwordquiz
-kmessedwords
-wordtrans-console
-hanzim
-brazilian-conjugate
-collatinus
-verbiste-gnome
-malted
-# printing Suggests in education-laptop
-bluez-cups
-bluez-utils
-# printing Suggests in education-logic-games
-ksokoban
-crafty
-kdegames
-# printing Suggests in education-main-server
-nslint
-dnswalk
-dlint
-dovecot-pop3d
-nfs-server
-samba-doc
-apache2-doc
-webalizer
-calamaris
-squidguard
-sarg
-dsh
-nagios3-doc
-debian-edu-fr-all
-debian-edu-fr-skels
-ocsinventory-server
-ocsinventory-reports
-mysql-client
-lwat
-gosa-plugin-goto
-krb5-doc
-libsasl2-modules-ldap
-# printing Suggests in education-mathematics
-kseg
-geogebra-kde
-octave3.2
-lybniz
-rkward
-r-cran-rcmdr
-euler
-gretl
-kile
-mathomatic
-pari-gp
-yacas
-abakus
-scilab
-qliss3d
-k3dsurf
-magicsquare
-xarith
-kregexpeditor
-geonext
-# printing Suggests in education-misc
-keduca
-flashkard
-jclic
-ksociograma
-ggradebook
-# printing Suggests in education-music
-freebirth
-lilypond
-lingot
-gtick
-beast
-ultrastar-ng-xine
-lenmus
-# printing Suggests in education-networked
-# printing Suggests in education-networked-common
-libldap2-tls
-luma
-gq
-ntp-doc
-autofs-ldap
-winbind
-smbfs
-libpam-mount
-ocsinventory-agent
-libpam-ccreds
-denyhosts
-fail2ban
-# printing Suggests in education-physics
-xoscope
-pyode
-ejs
-# printing Suggests in education-roaming-workstation
-# printing Suggests in education-services
-wims
-# printing Suggests in education-standalone
-# printing Suggests in education-thin-client
-# printing Suggests in education-thin-client-server
-italc-master
-ltsp-controlaula
-italc-client
-libpulse-mainloop-glib0
-# printing Suggests in education-workstation
-kredentials
-# And last, the alternatives we dropped above
-arping
-gdebi
-cron-apt
-mtr
-raidutils
-vlc
-kaffeine
-mplayer
-kopete
-kde-full
-kaffeine-mozilla
-mozilla-plugin-vlc
-totem-mozilla
-openjdk-6-jre
-gnupg
-dhcp3-client
-rdesktop
-brasero
-workrave
-gnome-games
-pdns-backend-ldap
-pdns-recursor
-tftpd-hpa
-libnss-ldap
-network-manager-gnome
-akregator
-amor
-amsn
-apache2-mpm-worker
-apmd
-arts
-artsbuilder
-astronomical-almanac
-autolog
-backuppc
-battery-stats
-belocs-locales-bin
-bluetooth
-bpalogin
-brltty
-brltty-x11
-capiutils
-cdparanoia
-cervisia
-cipux-cibot
-cipux-common
-cipux-profile
-cipux-rpcd
-cl-geodesics
-clamav
-clamav-data
-clamav-docs
-clamav-freshclam
-clamav-getfiles
-cmt
-contact-lookup-applet
-dc
-dcraw
-diveintopython
-doc-debian
-doc-linux-text
-dosemu
-drawmap
-eagle
-edict
-ejabberd
-espeak
-f-spot
-fnfxd
-freemind
-freenx
-gamin
-gcompris-sound-ar
-gcompris-sound-bg
-gcompris-sound-br
-gcompris-sound-el
-gcompris-sound-hi
-gcompris-sound-id
-gcompris-sound-sr
-gcompris-sound-ur
-gdal-bin
-geotoad
-gimp-help-cs
-gimp-help-en
-gimp-help-nl
-gimp-help-sv
-gimp-help-zh-cn
-gnome-app-install
-gnome-terminal
-gnome2-user-guide
-gocr
-gpaint
-gphoto2
-gpsbabel
-gs
-gtkwhiteboard
-hdaps-utils
-hdapsd
-ifplugd
-ipppd
-isdnutils-base
-isdnutils-xtools
-ispell
-jfsutils
-karamba
-kcpuload
-kde-l10n-af
-kde-l10n-ar
-kde-l10n-az
-kde-l10n-bg
-kde-l10n-bn
-kde-l10n-br
-kde-l10n-bs
-kde-l10n-cs
-kde-l10n-cy
-kde-l10n-engb
-kde-l10n-eo
-kde-l10n-et
-kde-l10n-eu
-kde-l10n-fa
-kde-l10n-fi
-kde-l10n-fy
-kde-l10n-ga
-kde-l10n-gl
-kde-l10n-hi
-kde-l10n-hr
-kde-l10n-hu
-kde-l10n-is
-kde-l10n-km
-kde-l10n-ko
-kde-l10n-lt
-kde-l10n-mk
-kde-l10n-mn
-kde-l10n-ms
-kde-l10n-nds
-kde-l10n-pa
-kde-l10n-pl
-kde-l10n-pt
-kde-l10n-ro
-kde-l10n-ru
-kde-l10n-rw
-kde-l10n-sk
-kde-l10n-sl
-kde-l10n-sr
-kde-l10n-srlatin
-kde-l10n-ss
-kde-l10n-ta
-kde-l10n-tg
-kde-l10n-tr
-kde-l10n-uk
-kde-l10n-uz
-kde-l10n-zhcn
-koha
-kompare
-kpackage
-kqemu-source
-language-support-en
-laptop-net
-laptop-net-doc
-laptop-netconf
-libfile-rsyncp-perl
-libgeo-coordinates-utm-perl
-libgeo-helmerttransform-perl
-libgeo-metar-perl
-libgeo-postcode-perl
-libgeography-nationalgrid-perl
-libgeos-c1
-libgeos2c2a
-libmapnik1d
-libogdi3.2
-libterralib1c2a
-liferea-mozilla
-linux-wlan-ng
-linux-wlan-ng-source
-mcpp
-mgp
-min12xxw
-module-assistant
-moodle-cipux
-moodle-courses-fr
-moodle-debian-edu-theme
-mouseemu
-mozilla-firefox-locale-en-gb
-mpack
-msttcorefonts
-mutt
-ndiswrapper-source
-netboot
-nvidia-glx
-nvidia-settings
-nxclient
-nxdesktop
-ogdi-bin
-openoffice.org-help-cs
-openoffice.org-help-dz
-openoffice.org-help-en-gb
-openoffice.org-help-en-us
-openoffice.org-help-et
-openoffice.org-help-hi-in
-openoffice.org-help-hu
-openoffice.org-help-km
-openoffice.org-help-ko
-openoffice.org-help-nl
-openoffice.org-help-pl
-openoffice.org-help-ru
-openoffice.org-help-sl
-openoffice.org-help-zh-cn
-openoffice.org-l10n-af
-openoffice.org-l10n-as-in
-openoffice.org-l10n-be-by
-openoffice.org-l10n-bg
-openoffice.org-l10n-bn
-openoffice.org-l10n-br
-openoffice.org-l10n-bs
-openoffice.org-l10n-cs
-openoffice.org-l10n-cy
-openoffice.org-l10n-dz
-openoffice.org-l10n-en-gb
-openoffice.org-l10n-eo
-openoffice.org-l10n-et
-openoffice.org-l10n-fa
-openoffice.org-l10n-fi
-openoffice.org-l10n-ga
-openoffice.org-l10n-gu-in
-openoffice.org-l10n-hi
-openoffice.org-l10n-hi-in
-openoffice.org-l10n-hr
-openoffice.org-l10n-hu
-openoffice.org-l10n-in
-openoffice.org-l10n-ka
-openoffice.org-l10n-km
-openoffice.org-l10n-ko
-openoffice.org-l10n-ku
-openoffice.org-l10n-lo
-openoffice.org-l10n-lt
-openoffice.org-l10n-lv
-openoffice.org-l10n-mk
-openoffice.org-l10n-ml-in
-openoffice.org-l10n-ne
-openoffice.org-l10n-nr
-openoffice.org-l10n-ns
-openoffice.org-l10n-or-in
-openoffice.org-l10n-pa-in
-openoffice.org-l10n-pl
-openoffice.org-l10n-pt
-openoffice.org-l10n-ru
-openoffice.org-l10n-rw
-openoffice.org-l10n-sk
-openoffice.org-l10n-sl
-openoffice.org-l10n-sr-cs
-openoffice.org-l10n-ss
-openoffice.org-l10n-st
-openoffice.org-l10n-ta-in
-openoffice.org-l10n-te-in
-openoffice.org-l10n-tg
-openoffice.org-l10n-th
-openoffice.org-l10n-tn
-openoffice.org-l10n-tr
-openoffice.org-l10n-ts
-openoffice.org-l10n-uk
-openoffice.org-l10n-ve
-openoffice.org-l10n-vi
-openoffice.org-l10n-xh
-openoffice.org-l10n-za
-openoffice.org-l10n-zh-cn
-openoffice.org-l10n-zu
-openuniverse
-pessulus
-postgis
-pppdcapiplugin
-proj
-pwgen
-python-at-spi
-python-newt
-python-notify
-qemu
-qemu-launcher
-qemuctl
-qgis-plugin-grass
-quota
-r-cran-mapdata
-r-cran-maps
-recover
-rkhunter
-scim-gtk2-immodule
-scim-modules-socket
-scim-modules-table
-scim-tables-additional
-screem
-sessreg
-shorewall
-smart-notifier
-smartmontools
-smartsuite
-sun-java6-bin
-sun-java6-demo
-sun-java6-fonts
-sun-java6-jdk
-sun-java6-jre
-sun-java6-plugin
-tcsh
-ted
-texinfo
-texlive-full
-thunar
-time
-tmpreaper
-tofrodos
-ttf-arabeyes
-ttf-bengali-fonts
-ttf-devanagari-fonts
-ttf-dzongkha
-ttf-gujarati-fonts
-ttf-indic-fonts
-ttf-kannada-fonts
-ttf-lao
-ttf-mscorefonts-installer
-ttf-oriya-fonts
-ttf-punjabi-fonts
-ttf-tamil-fonts
-ttf-telugu-fonts
-ttf-thai-tlwg
-unattended-upgrades
-upstart
-w3m
-wamerican
-wmgui
-wminput
-worldwind
-xdriinfo
-xfce4-terminal
-xfdesktop4
-xfsprogs
-xkeyboard-config
-xmessage
-xournal
-xpmutils
More information about the debian-edu-commits
mailing list