diff --git a/common/.oh-my-zsh/.git/FETCH_HEAD b/common/.oh-my-zsh/.git/FETCH_HEAD deleted file mode 100644 index fc7fedb..0000000 --- a/common/.oh-my-zsh/.git/FETCH_HEAD +++ /dev/null @@ -1 +0,0 @@ -b6ea876971b2270a2c73a07a6f6a337604132c6f branch 'master' of https://github.com/robbyrussell/oh-my-zsh diff --git a/common/.oh-my-zsh/.git/HEAD b/common/.oh-my-zsh/.git/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/common/.oh-my-zsh/.git/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/common/.oh-my-zsh/.git/ORIG_HEAD b/common/.oh-my-zsh/.git/ORIG_HEAD deleted file mode 100644 index 734b39e..0000000 --- a/common/.oh-my-zsh/.git/ORIG_HEAD +++ /dev/null @@ -1 +0,0 @@ -0198a12953ab92f5cc07ae464c34e3e37ab34d33 diff --git a/common/.oh-my-zsh/.git/config b/common/.oh-my-zsh/.git/config deleted file mode 100644 index 7e0ddd4..0000000 --- a/common/.oh-my-zsh/.git/config +++ /dev/null @@ -1,11 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true -[remote "origin"] - fetch = +refs/heads/*:refs/remotes/origin/* - url = https://github.com/robbyrussell/oh-my-zsh.git -[branch "master"] - remote = origin - merge = refs/heads/master diff --git a/common/.oh-my-zsh/.git/description b/common/.oh-my-zsh/.git/description deleted file mode 100644 index 498b267..0000000 --- a/common/.oh-my-zsh/.git/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/common/.oh-my-zsh/.git/hooks/applypatch-msg.sample b/common/.oh-my-zsh/.git/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/common/.oh-my-zsh/.git/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/common/.oh-my-zsh/.git/hooks/commit-msg.sample b/common/.oh-my-zsh/.git/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/common/.oh-my-zsh/.git/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/common/.oh-my-zsh/.git/hooks/post-update.sample b/common/.oh-my-zsh/.git/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/common/.oh-my-zsh/.git/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/common/.oh-my-zsh/.git/hooks/pre-applypatch.sample b/common/.oh-my-zsh/.git/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/common/.oh-my-zsh/.git/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/common/.oh-my-zsh/.git/hooks/pre-commit.sample b/common/.oh-my-zsh/.git/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/common/.oh-my-zsh/.git/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/common/.oh-my-zsh/.git/hooks/pre-rebase.sample b/common/.oh-my-zsh/.git/hooks/pre-rebase.sample deleted file mode 100755 index f0f6da3..0000000 --- a/common/.oh-my-zsh/.git/hooks/pre-rebase.sample +++ /dev/null @@ -1,172 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -<<\DOC_END -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". - -DOC_END diff --git a/common/.oh-my-zsh/.git/hooks/prepare-commit-msg.sample b/common/.oh-my-zsh/.git/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/common/.oh-my-zsh/.git/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/common/.oh-my-zsh/.git/hooks/update.sample b/common/.oh-my-zsh/.git/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/common/.oh-my-zsh/.git/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/common/.oh-my-zsh/.git/index b/common/.oh-my-zsh/.git/index deleted file mode 100644 index 46119a7..0000000 Binary files a/common/.oh-my-zsh/.git/index and /dev/null differ diff --git a/common/.oh-my-zsh/.git/info/exclude b/common/.oh-my-zsh/.git/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/common/.oh-my-zsh/.git/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/common/.oh-my-zsh/.git/logs/HEAD b/common/.oh-my-zsh/.git/logs/HEAD deleted file mode 100644 index 05bcb39..0000000 --- a/common/.oh-my-zsh/.git/logs/HEAD +++ /dev/null @@ -1,20 +0,0 @@ -0000000000000000000000000000000000000000 1120f973054836eeb53750f57d69fbec41a340dc Christophe Buffenoir 1333921488 +0200 clone: from https://github.com/robbyrussell/oh-my-zsh.git -1120f973054836eeb53750f57d69fbec41a340dc 3fdaf26006e3f075e7ccefd2721295b8bc5172f9 Christophe Buffenoir 1337594224 +0200 pull origin master: Fast-forward -3fdaf26006e3f075e7ccefd2721295b8bc5172f9 caa15548c107b9c31f61a67547ffab0b0cfe4934 Christophe Buffenoir 1338675101 +0200 pull origin master: Fast-forward -caa15548c107b9c31f61a67547ffab0b0cfe4934 e8d582aba98d57214a374bed01570ba791c54d9e Christophe Buffenoir 1339973411 +0200 pull origin master: Fast-forward -e8d582aba98d57214a374bed01570ba791c54d9e d165a84dc0e8d2eb0774ed26995e7046c0aff41f Christophe Buffenoir 1341135626 +0200 pull origin master: Fast-forward -d165a84dc0e8d2eb0774ed26995e7046c0aff41f 11034217a7ea3cffe6e0fe631837c518b8c7e1a5 Christophe Buffenoir 1342430923 +0200 pull origin master: Fast-forward -11034217a7ea3cffe6e0fe631837c518b8c7e1a5 d05b2010ffd4cd33ff9402c402051b1caf985d97 Christophe Buffenoir 1343855320 +0200 pull origin master: Fast-forward -d05b2010ffd4cd33ff9402c402051b1caf985d97 921d2f49ef01acce973980c0aa9c6ffbbd2fbd0b Christophe Buffenoir 1347837670 +0200 pull origin master: Fast-forward -921d2f49ef01acce973980c0aa9c6ffbbd2fbd0b 73f777053725ce61d6fada67ff3f174130dd8c94 Christophe Buffenoir 1349027506 +0200 pull origin master: Fast-forward -73f777053725ce61d6fada67ff3f174130dd8c94 c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9 Christophe Buffenoir 1350205470 +0200 pull origin master: Fast-forward -c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9 6fbe5942383c53fa77373005e9b0d37e2b977cd5 Christophe Buffenoir 1353890587 +0100 pull origin master: Fast-forward -6fbe5942383c53fa77373005e9b0d37e2b977cd5 d750e7d9e3b7d04bafc93211f7db4c607ecea19b Christophe Buffenoir 1354014329 +0100 pull: Fast-forward -d750e7d9e3b7d04bafc93211f7db4c607ecea19b 397c085a19a22f6be515665835d09a2505cb3f23 Christophe Buffenoir 1356338737 +0100 pull origin master: Fast-forward -397c085a19a22f6be515665835d09a2505cb3f23 615e41b0ecdb25acba513fd09619bd56c2eb24eb Christophe Buffenoir 1358767162 +0100 pull origin master: Fast-forward -615e41b0ecdb25acba513fd09619bd56c2eb24eb 6e6cf4303712befb5a7fc3918494aefe4a65991f Christophe Buffenoir 1360343929 +0100 pull origin master: Fast-forward -6e6cf4303712befb5a7fc3918494aefe4a65991f fce68bbba0be99cfd49f9e46572b2d12d0a86d45 Christophe Buffenoir 1361541761 +0100 pull origin master: Fast-forward -fce68bbba0be99cfd49f9e46572b2d12d0a86d45 0ab0e67ecfc52b4779b700149a9c51feeb05318e Christophe Buffenoir 1362932994 +0100 pull origin master: Fast-forward -0ab0e67ecfc52b4779b700149a9c51feeb05318e b8b241f630377aacefade327c94655cec96b002f Christophe Buffenoir 1364497457 +0100 pull origin master: Fast-forward -b8b241f630377aacefade327c94655cec96b002f 0198a12953ab92f5cc07ae464c34e3e37ab34d33 Christophe Buffenoir 1365666375 +0200 pull origin master: Fast-forward -0198a12953ab92f5cc07ae464c34e3e37ab34d33 b6ea876971b2270a2c73a07a6f6a337604132c6f Christophe Buffenoir 1366850456 +0200 pull origin master: Fast-forward diff --git a/common/.oh-my-zsh/.git/logs/refs/heads/master b/common/.oh-my-zsh/.git/logs/refs/heads/master deleted file mode 100644 index 05bcb39..0000000 --- a/common/.oh-my-zsh/.git/logs/refs/heads/master +++ /dev/null @@ -1,20 +0,0 @@ -0000000000000000000000000000000000000000 1120f973054836eeb53750f57d69fbec41a340dc Christophe Buffenoir 1333921488 +0200 clone: from https://github.com/robbyrussell/oh-my-zsh.git -1120f973054836eeb53750f57d69fbec41a340dc 3fdaf26006e3f075e7ccefd2721295b8bc5172f9 Christophe Buffenoir 1337594224 +0200 pull origin master: Fast-forward -3fdaf26006e3f075e7ccefd2721295b8bc5172f9 caa15548c107b9c31f61a67547ffab0b0cfe4934 Christophe Buffenoir 1338675101 +0200 pull origin master: Fast-forward -caa15548c107b9c31f61a67547ffab0b0cfe4934 e8d582aba98d57214a374bed01570ba791c54d9e Christophe Buffenoir 1339973411 +0200 pull origin master: Fast-forward -e8d582aba98d57214a374bed01570ba791c54d9e d165a84dc0e8d2eb0774ed26995e7046c0aff41f Christophe Buffenoir 1341135626 +0200 pull origin master: Fast-forward -d165a84dc0e8d2eb0774ed26995e7046c0aff41f 11034217a7ea3cffe6e0fe631837c518b8c7e1a5 Christophe Buffenoir 1342430923 +0200 pull origin master: Fast-forward -11034217a7ea3cffe6e0fe631837c518b8c7e1a5 d05b2010ffd4cd33ff9402c402051b1caf985d97 Christophe Buffenoir 1343855320 +0200 pull origin master: Fast-forward -d05b2010ffd4cd33ff9402c402051b1caf985d97 921d2f49ef01acce973980c0aa9c6ffbbd2fbd0b Christophe Buffenoir 1347837670 +0200 pull origin master: Fast-forward -921d2f49ef01acce973980c0aa9c6ffbbd2fbd0b 73f777053725ce61d6fada67ff3f174130dd8c94 Christophe Buffenoir 1349027506 +0200 pull origin master: Fast-forward -73f777053725ce61d6fada67ff3f174130dd8c94 c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9 Christophe Buffenoir 1350205470 +0200 pull origin master: Fast-forward -c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9 6fbe5942383c53fa77373005e9b0d37e2b977cd5 Christophe Buffenoir 1353890587 +0100 pull origin master: Fast-forward -6fbe5942383c53fa77373005e9b0d37e2b977cd5 d750e7d9e3b7d04bafc93211f7db4c607ecea19b Christophe Buffenoir 1354014329 +0100 pull: Fast-forward -d750e7d9e3b7d04bafc93211f7db4c607ecea19b 397c085a19a22f6be515665835d09a2505cb3f23 Christophe Buffenoir 1356338737 +0100 pull origin master: Fast-forward -397c085a19a22f6be515665835d09a2505cb3f23 615e41b0ecdb25acba513fd09619bd56c2eb24eb Christophe Buffenoir 1358767162 +0100 pull origin master: Fast-forward -615e41b0ecdb25acba513fd09619bd56c2eb24eb 6e6cf4303712befb5a7fc3918494aefe4a65991f Christophe Buffenoir 1360343929 +0100 pull origin master: Fast-forward -6e6cf4303712befb5a7fc3918494aefe4a65991f fce68bbba0be99cfd49f9e46572b2d12d0a86d45 Christophe Buffenoir 1361541761 +0100 pull origin master: Fast-forward -fce68bbba0be99cfd49f9e46572b2d12d0a86d45 0ab0e67ecfc52b4779b700149a9c51feeb05318e Christophe Buffenoir 1362932994 +0100 pull origin master: Fast-forward -0ab0e67ecfc52b4779b700149a9c51feeb05318e b8b241f630377aacefade327c94655cec96b002f Christophe Buffenoir 1364497457 +0100 pull origin master: Fast-forward -b8b241f630377aacefade327c94655cec96b002f 0198a12953ab92f5cc07ae464c34e3e37ab34d33 Christophe Buffenoir 1365666375 +0200 pull origin master: Fast-forward -0198a12953ab92f5cc07ae464c34e3e37ab34d33 b6ea876971b2270a2c73a07a6f6a337604132c6f Christophe Buffenoir 1366850456 +0200 pull origin master: Fast-forward diff --git a/common/.oh-my-zsh/.git/logs/refs/remotes/origin/master b/common/.oh-my-zsh/.git/logs/refs/remotes/origin/master deleted file mode 100644 index 94f4a1f..0000000 --- a/common/.oh-my-zsh/.git/logs/refs/remotes/origin/master +++ /dev/null @@ -1 +0,0 @@ -1120f973054836eeb53750f57d69fbec41a340dc d750e7d9e3b7d04bafc93211f7db4c607ecea19b Christophe Buffenoir 1354014328 +0100 pull: fast-forward diff --git a/common/.oh-my-zsh/.git/objects/00/2d46287623727a6d6c4ab2291250b677b8c1f9 b/common/.oh-my-zsh/.git/objects/00/2d46287623727a6d6c4ab2291250b677b8c1f9 deleted file mode 100644 index 6cd6231..0000000 Binary files a/common/.oh-my-zsh/.git/objects/00/2d46287623727a6d6c4ab2291250b677b8c1f9 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/00/35b1b262eb8d0d9a18a8b735ed96e72f1f7fd2 b/common/.oh-my-zsh/.git/objects/00/35b1b262eb8d0d9a18a8b735ed96e72f1f7fd2 deleted file mode 100644 index a0ccc70..0000000 --- a/common/.oh-my-zsh/.git/objects/00/35b1b262eb8d0d9a18a8b735ed96e72f1f7fd2 +++ /dev/null @@ -1,3 +0,0 @@ -xm= 0]ͯ8lҡ[)J/i`kwڡE/α\PٰȢӽ0|g)uk6b2'rqh8/8REUKNZ -ciuDDh\/pطM^|;ϴJ2q+,<(TVtR&Z|UXH%/pB[k:U>e{w+T שp?w߹y \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/0a/b45a15d8fdb5b743c24079647799b4f3d0cfca b/common/.oh-my-zsh/.git/objects/0a/b45a15d8fdb5b743c24079647799b4f3d0cfca deleted file mode 100644 index d0d1e2f..0000000 --- a/common/.oh-my-zsh/.git/objects/0a/b45a15d8fdb5b743c24079647799b4f3d0cfca +++ /dev/null @@ -1 +0,0 @@ -x+)JMU01e040031Q(,+)Mӫ*`~|P&c2WDUe3ӝZe \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/0a/de9cc60ebc48d9518cc234f1827a0e51038327 b/common/.oh-my-zsh/.git/objects/0a/de9cc60ebc48d9518cc234f1827a0e51038327 deleted file mode 100644 index 863c3de..0000000 Binary files a/common/.oh-my-zsh/.git/objects/0a/de9cc60ebc48d9518cc234f1827a0e51038327 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/0b/6e7358850f7fd74556289b1e0c1634896ed66b b/common/.oh-my-zsh/.git/objects/0b/6e7358850f7fd74556289b1e0c1634896ed66b deleted file mode 100644 index 7ab7378..0000000 Binary files a/common/.oh-my-zsh/.git/objects/0b/6e7358850f7fd74556289b1e0c1634896ed66b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/0d/c5415f22e561cd840dee20573177a21cd35971 b/common/.oh-my-zsh/.git/objects/0d/c5415f22e561cd840dee20573177a21cd35971 deleted file mode 100644 index 43c5e82..0000000 Binary files a/common/.oh-my-zsh/.git/objects/0d/c5415f22e561cd840dee20573177a21cd35971 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/0f/3b988e90c6d27e7dbbda419c1876b162d688b3 b/common/.oh-my-zsh/.git/objects/0f/3b988e90c6d27e7dbbda419c1876b162d688b3 deleted file mode 100644 index cfc2fe6..0000000 Binary files a/common/.oh-my-zsh/.git/objects/0f/3b988e90c6d27e7dbbda419c1876b162d688b3 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/0f/9fff8aecb154627b42a57cede37f7bd7b6c3ba b/common/.oh-my-zsh/.git/objects/0f/9fff8aecb154627b42a57cede37f7bd7b6c3ba deleted file mode 100644 index 09bf76c..0000000 --- a/common/.oh-my-zsh/.git/objects/0f/9fff8aecb154627b42a57cede37f7bd7b6c3ba +++ /dev/null @@ -1,3 +0,0 @@ -xQn0D)T: 7qֻAT8} w:SҮU$(l]Ns)q`?FjkɊRb-H4rpz0.kHo^<~oL[^8)0ޒk[\ -h -_TQ$ \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/10/64fe4c28c7bd18fdc8cb46e4f2003369add693 b/common/.oh-my-zsh/.git/objects/10/64fe4c28c7bd18fdc8cb46e4f2003369add693 deleted file mode 100644 index 973e845..0000000 Binary files a/common/.oh-my-zsh/.git/objects/10/64fe4c28c7bd18fdc8cb46e4f2003369add693 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/11/034217a7ea3cffe6e0fe631837c518b8c7e1a5 b/common/.oh-my-zsh/.git/objects/11/034217a7ea3cffe6e0fe631837c518b8c7e1a5 deleted file mode 100644 index 91366c6..0000000 Binary files a/common/.oh-my-zsh/.git/objects/11/034217a7ea3cffe6e0fe631837c518b8c7e1a5 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/11/f441a3ac1f08923bea2c9f69a7a0edc9233534 b/common/.oh-my-zsh/.git/objects/11/f441a3ac1f08923bea2c9f69a7a0edc9233534 deleted file mode 100644 index 3a48f00..0000000 --- a/common/.oh-my-zsh/.git/objects/11/f441a3ac1f08923bea2c9f69a7a0edc9233534 +++ /dev/null @@ -1,3 +0,0 @@ -xN09)Vb;Hp7Xm8A'giF3bVgQȃ Ӥ2HBy9Qa f ll0jA,=Yy$KRi$5 -19%$(aᔜGl \1zAZZ;Y9ALBtϪak{kƥ½T@)k+r{h[u's+_pM -}uh \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/11/fbb3a1af02b63964b597134ed8115cf344ea0f b/common/.oh-my-zsh/.git/objects/11/fbb3a1af02b63964b597134ed8115cf344ea0f deleted file mode 100644 index b7391e9..0000000 Binary files a/common/.oh-my-zsh/.git/objects/11/fbb3a1af02b63964b597134ed8115cf344ea0f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/13/114b1c46cbb6bb22f204063617cbf98b80d944 b/common/.oh-my-zsh/.git/objects/13/114b1c46cbb6bb22f204063617cbf98b80d944 deleted file mode 100644 index 96a38cb..0000000 Binary files a/common/.oh-my-zsh/.git/objects/13/114b1c46cbb6bb22f204063617cbf98b80d944 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/14/25ffe85cd83c422f7a2e68992c4556948e1567 b/common/.oh-my-zsh/.git/objects/14/25ffe85cd83c422f7a2e68992c4556948e1567 deleted file mode 100644 index 89cacfa..0000000 --- a/common/.oh-my-zsh/.git/objects/14/25ffe85cd83c422f7a2e68992c4556948e1567 +++ /dev/null @@ -1,2 +0,0 @@ -xPN0WDwl !*:n^.DrFshy;*38C@b')mȨMDJavJЪpJ>g)&EգMD޴PY0HUz< -5/Ol.|`B :C.ƒfZ'R*m\oԽ Re}>ɗox \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/15/848979eedb7f2a947c0e322ae9ac68b208eb64 b/common/.oh-my-zsh/.git/objects/15/848979eedb7f2a947c0e322ae9ac68b208eb64 deleted file mode 100644 index d418af7..0000000 Binary files a/common/.oh-my-zsh/.git/objects/15/848979eedb7f2a947c0e322ae9ac68b208eb64 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/16/58b34d3bfc2140f9aad3c2a81d7322624a8163 b/common/.oh-my-zsh/.git/objects/16/58b34d3bfc2140f9aad3c2a81d7322624a8163 deleted file mode 100644 index 204f74a..0000000 --- a/common/.oh-my-zsh/.git/objects/16/58b34d3bfc2140f9aad3c2a81d7322624a8163 +++ /dev/null @@ -1,3 +0,0 @@ -xT=o0_q@'!#@Ph5ԍaa}H.{AZm[zmm$=?}C['Bz}Pm#mn;:=,X[tѫPrl KGOVtd w u -eP'<0.]!XfǎɳlPgjSM;@͚[tfFB@x5:vJo5ALz4Nh &^K:("t`gDjqE ;'c^+rIm񠌧{n j,Ƌl%rDi/F6toH²0pAXiɸvlh';Δ]z)JѺq*5sa:`sfM08?wWng7)9F -֍ (c߾e12;;U-t.yy|o}k :Ι4EPJ?\,/dTdO2h}%Y161,[t9'K:;,}^:,.?o&o<|0m \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/16/7b6b456b5bcaa95dd04d6ca93692daef0716e8 b/common/.oh-my-zsh/.git/objects/16/7b6b456b5bcaa95dd04d6ca93692daef0716e8 deleted file mode 100644 index 9a39197..0000000 Binary files a/common/.oh-my-zsh/.git/objects/16/7b6b456b5bcaa95dd04d6ca93692daef0716e8 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/16/90a1559a59e2c36dba363a64f32cf82d118a45 b/common/.oh-my-zsh/.git/objects/16/90a1559a59e2c36dba363a64f32cf82d118a45 deleted file mode 100644 index d318063..0000000 Binary files a/common/.oh-my-zsh/.git/objects/16/90a1559a59e2c36dba363a64f32cf82d118a45 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/16/9ae17411f7055e44e3393f862dad191cdc411c b/common/.oh-my-zsh/.git/objects/16/9ae17411f7055e44e3393f862dad191cdc411c deleted file mode 100644 index 5723499..0000000 Binary files a/common/.oh-my-zsh/.git/objects/16/9ae17411f7055e44e3393f862dad191cdc411c and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/17/c77ee20a349d89736911383bd6e829431153c6 b/common/.oh-my-zsh/.git/objects/17/c77ee20a349d89736911383bd6e829431153c6 deleted file mode 100644 index 22c018b..0000000 --- a/common/.oh-my-zsh/.git/objects/17/c77ee20a349d89736911383bd6e829431153c6 +++ /dev/null @@ -1,2 +0,0 @@ -xKN0DY-Xq !V 츝X3qvU*ոk*z(:A10OʣgC f8 he - ;ۄP8JͼG)?~TIA{yPTG:W˼gZϓ^};Qqyڷq__`\#L3ֵ*DpԶY Qy_!tΗ{]cSn]nn&!mer& \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/18/76f1d5581e7b6907ead46a8371826db5eded49 b/common/.oh-my-zsh/.git/objects/18/76f1d5581e7b6907ead46a8371826db5eded49 deleted file mode 100644 index 9ab01d1..0000000 --- a/common/.oh-my-zsh/.git/objects/18/76f1d5581e7b6907ead46a8371826db5eded49 +++ /dev/null @@ -1,3 +0,0 @@ -xAN0CY`@Ig&B\3I2GmJ~{$ KvT:4X" ->$S!#S֣sy^enuPrhEld}I3J㽝 -/}+!!hD1NJu[)O^?{@; ^U2\x-Fs|h,|.$r+tci䙱]\׹$fЇްV޲rZ$mφiCQP h;% U:gQG+mkvΰ$^p˂tm3dJ #qFZ x70-+_*ˑuنB -(-T@s~1x`?lx \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/38/d7b607c4bdf2a43458c3faec106a992a8d1b99 b/common/.oh-my-zsh/.git/objects/38/d7b607c4bdf2a43458c3faec106a992a8d1b99 deleted file mode 100644 index 098631c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/38/d7b607c4bdf2a43458c3faec106a992a8d1b99 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/39/b76ecdf9d8af6221430461b99c545bae2a804f b/common/.oh-my-zsh/.git/objects/39/b76ecdf9d8af6221430461b99c545bae2a804f deleted file mode 100644 index ee6b8a5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/39/b76ecdf9d8af6221430461b99c545bae2a804f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/39/d3ef36a05280e9e285412afecba861278bd73c b/common/.oh-my-zsh/.git/objects/39/d3ef36a05280e9e285412afecba861278bd73c deleted file mode 100644 index cd95f6a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/39/d3ef36a05280e9e285412afecba861278bd73c and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/3a/a0cb74d0a19a8053889a976404a7915585466e b/common/.oh-my-zsh/.git/objects/3a/a0cb74d0a19a8053889a976404a7915585466e deleted file mode 100644 index c840dcd..0000000 --- a/common/.oh-my-zsh/.git/objects/3a/a0cb74d0a19a8053889a976404a7915585466e +++ /dev/null @@ -1,2 +0,0 @@ -xKj1D)zo0%!G*VwǞd3!*^AOu;X^z3Y9S0IkAX.R'K^%۹ٽC` It"T+%UCB"\+ys|s[~mו,"Fpj -r\;| v_YPD \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/3a/c3141cd610de995b2435011ac895ad15b89e2e b/common/.oh-my-zsh/.git/objects/3a/c3141cd610de995b2435011ac895ad15b89e2e deleted file mode 100644 index 4253f6e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/3a/c3141cd610de995b2435011ac895ad15b89e2e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/3a/e0abced46b06c4f5e1428d931fb38b044f783c b/common/.oh-my-zsh/.git/objects/3a/e0abced46b06c4f5e1428d931fb38b044f783c deleted file mode 100644 index 2bfaa1c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/3a/e0abced46b06c4f5e1428d931fb38b044f783c and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/3c/13727ecc448809af861f864c56cda2cd213221 b/common/.oh-my-zsh/.git/objects/3c/13727ecc448809af861f864c56cda2cd213221 deleted file mode 100644 index 93e9538..0000000 Binary files a/common/.oh-my-zsh/.git/objects/3c/13727ecc448809af861f864c56cda2cd213221 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/3f/daf26006e3f075e7ccefd2721295b8bc5172f9 b/common/.oh-my-zsh/.git/objects/3f/daf26006e3f075e7ccefd2721295b8bc5172f9 deleted file mode 100644 index cd02596..0000000 Binary files a/common/.oh-my-zsh/.git/objects/3f/daf26006e3f075e7ccefd2721295b8bc5172f9 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/41/74e5815cd5a2ec2e9f84267075c1b3880be519 b/common/.oh-my-zsh/.git/objects/41/74e5815cd5a2ec2e9f84267075c1b3880be519 deleted file mode 100644 index c344e76..0000000 Binary files a/common/.oh-my-zsh/.git/objects/41/74e5815cd5a2ec2e9f84267075c1b3880be519 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/41/778b53326da900c0905261811db20cabb7b2cb b/common/.oh-my-zsh/.git/objects/41/778b53326da900c0905261811db20cabb7b2cb deleted file mode 100644 index af23174..0000000 Binary files a/common/.oh-my-zsh/.git/objects/41/778b53326da900c0905261811db20cabb7b2cb and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/42/166affce4f9ec85dac536ba1ccfeee2df9c23f b/common/.oh-my-zsh/.git/objects/42/166affce4f9ec85dac536ba1ccfeee2df9c23f deleted file mode 100644 index 0d03baa..0000000 Binary files a/common/.oh-my-zsh/.git/objects/42/166affce4f9ec85dac536ba1ccfeee2df9c23f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/43/5388a3b94768cb3bf71bcd36961ed494d093af b/common/.oh-my-zsh/.git/objects/43/5388a3b94768cb3bf71bcd36961ed494d093af deleted file mode 100644 index 391889e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/43/5388a3b94768cb3bf71bcd36961ed494d093af and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/44/e12eea42f2d911a7f375f1057fb337e5532bc9 b/common/.oh-my-zsh/.git/objects/44/e12eea42f2d911a7f375f1057fb337e5532bc9 deleted file mode 100644 index 1c80bec..0000000 Binary files a/common/.oh-my-zsh/.git/objects/44/e12eea42f2d911a7f375f1057fb337e5532bc9 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/45/1e0532bf011f770685ef3eeb47afcd936bd174 b/common/.oh-my-zsh/.git/objects/45/1e0532bf011f770685ef3eeb47afcd936bd174 deleted file mode 100644 index 0764c6b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/45/1e0532bf011f770685ef3eeb47afcd936bd174 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/45/e428717d0cd0ea34b6bdbc417d6765b8493904 b/common/.oh-my-zsh/.git/objects/45/e428717d0cd0ea34b6bdbc417d6765b8493904 deleted file mode 100644 index 9804d21..0000000 Binary files a/common/.oh-my-zsh/.git/objects/45/e428717d0cd0ea34b6bdbc417d6765b8493904 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/45/e88e3a8cbfd3acfc46976a8fa1588c87e74855 b/common/.oh-my-zsh/.git/objects/45/e88e3a8cbfd3acfc46976a8fa1588c87e74855 deleted file mode 100644 index 6f47017..0000000 Binary files a/common/.oh-my-zsh/.git/objects/45/e88e3a8cbfd3acfc46976a8fa1588c87e74855 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/46/96a43410612a3108cf76d47cfa69fff90a65c2 b/common/.oh-my-zsh/.git/objects/46/96a43410612a3108cf76d47cfa69fff90a65c2 deleted file mode 100644 index c723401..0000000 Binary files a/common/.oh-my-zsh/.git/objects/46/96a43410612a3108cf76d47cfa69fff90a65c2 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/47/0e1a1ecfac3dcc8804c1e786dc4b7abeb710b9 b/common/.oh-my-zsh/.git/objects/47/0e1a1ecfac3dcc8804c1e786dc4b7abeb710b9 deleted file mode 100644 index da50793..0000000 --- a/common/.oh-my-zsh/.git/objects/47/0e1a1ecfac3dcc8804c1e786dc4b7abeb710b9 +++ /dev/null @@ -1,2 +0,0 @@ -xPN0ܯs!w$\1٭mJ.OAٖ;i-Z%ځJI&$OQ1ԞS JD[|h g^H3B;DaEH,wR *l -Q)Tt, \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/48/c9e77f53d8949952549060017f6ac84a5a3945 b/common/.oh-my-zsh/.git/objects/48/c9e77f53d8949952549060017f6ac84a5a3945 deleted file mode 100644 index dae2eb9..0000000 Binary files a/common/.oh-my-zsh/.git/objects/48/c9e77f53d8949952549060017f6ac84a5a3945 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/49/3238e29bcf112a5c891f438f44af8312e546c6 b/common/.oh-my-zsh/.git/objects/49/3238e29bcf112a5c891f438f44af8312e546c6 deleted file mode 100644 index 136c253..0000000 Binary files a/common/.oh-my-zsh/.git/objects/49/3238e29bcf112a5c891f438f44af8312e546c6 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/49/68395c0232297b5d0a1bd69dfb93b15c43b72b b/common/.oh-my-zsh/.git/objects/49/68395c0232297b5d0a1bd69dfb93b15c43b72b deleted file mode 100644 index 912239f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/49/68395c0232297b5d0a1bd69dfb93b15c43b72b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/4a/2e9ed0393b74a4e4b42766a5859e6634ce4c65 b/common/.oh-my-zsh/.git/objects/4a/2e9ed0393b74a4e4b42766a5859e6634ce4c65 deleted file mode 100644 index ac74343..0000000 Binary files a/common/.oh-my-zsh/.git/objects/4a/2e9ed0393b74a4e4b42766a5859e6634ce4c65 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/4a/828fc7af3e14db7414c834803ec0abc826b369 b/common/.oh-my-zsh/.git/objects/4a/828fc7af3e14db7414c834803ec0abc826b369 deleted file mode 100644 index b62d728..0000000 Binary files a/common/.oh-my-zsh/.git/objects/4a/828fc7af3e14db7414c834803ec0abc826b369 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/4c/4647b328f7e8e50e9b34fcf847be16f9a62651 b/common/.oh-my-zsh/.git/objects/4c/4647b328f7e8e50e9b34fcf847be16f9a62651 deleted file mode 100644 index 998d4b8..0000000 Binary files a/common/.oh-my-zsh/.git/objects/4c/4647b328f7e8e50e9b34fcf847be16f9a62651 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/4d/5bfb8dd73193c3da8e70ae5cb1119312c4533a b/common/.oh-my-zsh/.git/objects/4d/5bfb8dd73193c3da8e70ae5cb1119312c4533a deleted file mode 100644 index 93a929d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/4d/5bfb8dd73193c3da8e70ae5cb1119312c4533a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/4d/6b532248fce0e71d762eb1ec3ef2ec8fcd5289 b/common/.oh-my-zsh/.git/objects/4d/6b532248fce0e71d762eb1ec3ef2ec8fcd5289 deleted file mode 100644 index 882ad3a..0000000 --- a/common/.oh-my-zsh/.git/objects/4d/6b532248fce0e71d762eb1ec3ef2ec8fcd5289 +++ /dev/null @@ -1,3 +0,0 @@ -x[ -0E*f-y]tfRwoq~]8p8u- VE pB= -鑭ڻpR0fm͊)wh\lO9 Gb6 e2|ծ[K-Vx>+em=HA.jUT~b\PZmH \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/4f/58e27d12c9dc2fa495250515aedbcb99c1393b b/common/.oh-my-zsh/.git/objects/4f/58e27d12c9dc2fa495250515aedbcb99c1393b deleted file mode 100644 index 89f7e63..0000000 Binary files a/common/.oh-my-zsh/.git/objects/4f/58e27d12c9dc2fa495250515aedbcb99c1393b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/4f/9c58c8c14883e87aae20bba5289010211cd626 b/common/.oh-my-zsh/.git/objects/4f/9c58c8c14883e87aae20bba5289010211cd626 deleted file mode 100644 index d115f2c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/4f/9c58c8c14883e87aae20bba5289010211cd626 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/51/95f19480b771e6f43b76ab3ea24fc892f7be5d b/common/.oh-my-zsh/.git/objects/51/95f19480b771e6f43b76ab3ea24fc892f7be5d deleted file mode 100644 index bb4afca..0000000 Binary files a/common/.oh-my-zsh/.git/objects/51/95f19480b771e6f43b76ab3ea24fc892f7be5d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/51/c55ad17e23db89e72424add0c34fa20654cd8f b/common/.oh-my-zsh/.git/objects/51/c55ad17e23db89e72424add0c34fa20654cd8f deleted file mode 100644 index f25fad3..0000000 Binary files a/common/.oh-my-zsh/.git/objects/51/c55ad17e23db89e72424add0c34fa20654cd8f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/51/d3f7c09665742ca705d6d2ba4e44afb469f215 b/common/.oh-my-zsh/.git/objects/51/d3f7c09665742ca705d6d2ba4e44afb469f215 deleted file mode 100644 index ff547fe..0000000 Binary files a/common/.oh-my-zsh/.git/objects/51/d3f7c09665742ca705d6d2ba4e44afb469f215 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/51/d752dd5c2cc3266077d2249f4ba5d0cefcd706 b/common/.oh-my-zsh/.git/objects/51/d752dd5c2cc3266077d2249f4ba5d0cefcd706 deleted file mode 100644 index b7144d1..0000000 Binary files a/common/.oh-my-zsh/.git/objects/51/d752dd5c2cc3266077d2249f4ba5d0cefcd706 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/52/3b26c6efb1a140aa786c63367d80832a6187fd b/common/.oh-my-zsh/.git/objects/52/3b26c6efb1a140aa786c63367d80832a6187fd deleted file mode 100644 index 4dff320..0000000 --- a/common/.oh-my-zsh/.git/objects/52/3b26c6efb1a140aa786c63367d80832a6187fd +++ /dev/null @@ -1 +0,0 @@ -xKj0)~zZ~ y&%SY훁JCH(yZ(&SPA9g-d ZkLԭbid2HD!+PJep>ctpF p}iYZyН۵T:nt޷ D/n/h^JXvtVǭtк_;F$SeqyE="Roݵ>?L?i7yw| \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/53/df883313b27bdb4598bc712f13ec31e1d19efd b/common/.oh-my-zsh/.git/objects/53/df883313b27bdb4598bc712f13ec31e1d19efd deleted file mode 100644 index 7199399..0000000 Binary files a/common/.oh-my-zsh/.git/objects/53/df883313b27bdb4598bc712f13ec31e1d19efd and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/54/8f68d7f028acc70f4a9026a28161a604edc405 b/common/.oh-my-zsh/.git/objects/54/8f68d7f028acc70f4a9026a28161a604edc405 deleted file mode 100644 index 057c47a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/54/8f68d7f028acc70f4a9026a28161a604edc405 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/56/f1f7643ea71e09e1783ffa322d75361fa02820 b/common/.oh-my-zsh/.git/objects/56/f1f7643ea71e09e1783ffa322d75361fa02820 deleted file mode 100644 index 6d4a34e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/56/f1f7643ea71e09e1783ffa322d75361fa02820 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/58/781fc72d8956807c10b87c6608411ec092bf31 b/common/.oh-my-zsh/.git/objects/58/781fc72d8956807c10b87c6608411ec092bf31 deleted file mode 100644 index 6535d0e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/58/781fc72d8956807c10b87c6608411ec092bf31 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/59/31f64308cbf4b0a8ef740a6b4eda5834479bd7 b/common/.oh-my-zsh/.git/objects/59/31f64308cbf4b0a8ef740a6b4eda5834479bd7 deleted file mode 100644 index 31c4632..0000000 --- a/common/.oh-my-zsh/.git/objects/59/31f64308cbf4b0a8ef740a6b4eda5834479bd7 +++ /dev/null @@ -1,2 +0,0 @@ -xK0)zi d7Q2Ȝ~+̮˭D`F/1yd&ѧiN-A%G0)Fr8G;p FLLa쓢? -ߥi{~jpi)=*+zPkDi{\zXrn+}̇DICV \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/5b/6e5cfd478eae98855113400353f8eb77542904 b/common/.oh-my-zsh/.git/objects/5b/6e5cfd478eae98855113400353f8eb77542904 deleted file mode 100644 index 5305596..0000000 Binary files a/common/.oh-my-zsh/.git/objects/5b/6e5cfd478eae98855113400353f8eb77542904 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/5c/37c85fb49a377b59115efc2aa132665982ac06 b/common/.oh-my-zsh/.git/objects/5c/37c85fb49a377b59115efc2aa132665982ac06 deleted file mode 100644 index 3a2cc7c..0000000 --- a/common/.oh-my-zsh/.git/objects/5c/37c85fb49a377b59115efc2aa132665982ac06 +++ /dev/null @@ -1,3 +0,0 @@ -xA D]s -&ͧ)$xW?k6Ǘ&o23f/z|t~>ǯggÓXlrS؄ 5ARA)+"]zl?_Gse" "_ljd4>Č3R -?G|[f`iu:y ݳ7~7/'x|)\™pRwp?CfgJ\~F$!rphϳ -Ri;h!"qYKՆX}I4m;dJ$R@_2J@㰕nV\]BszkqMok}[-2_u>5_ba,L؜k9P‹_0HBEz _1ϟ R={Z#X[|:z?.|RDݐp^Mo7w?d>l;53n0Kfr%4WY(K"m0:{f~a.fv lv6 -G3k4s@;2"c]OA_2cgqx(ȷw@FwaWt\>yF̏Hͭ: rSU=.U~ojz -)D}PSs:)pS ۽VHHRܯjSCyk@x#nd[g4T G"0zf%-5>ApdVj:X%[ƦP>9iGjM{\/B"߀+!E?0) # \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/5d/6856ebe675f69aa490d0e1b39419d19e842919 b/common/.oh-my-zsh/.git/objects/5d/6856ebe675f69aa490d0e1b39419d19e842919 deleted file mode 100644 index 41a0fd4..0000000 Binary files a/common/.oh-my-zsh/.git/objects/5d/6856ebe675f69aa490d0e1b39419d19e842919 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/5e/b466a7886e1220584322a10964343a101ed1dc b/common/.oh-my-zsh/.git/objects/5e/b466a7886e1220584322a10964343a101ed1dc deleted file mode 100644 index 0cbb6f1..0000000 Binary files a/common/.oh-my-zsh/.git/objects/5e/b466a7886e1220584322a10964343a101ed1dc and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/5f/16ede7cae5c8e9f32d4a980333f0ee1b7abaf6 b/common/.oh-my-zsh/.git/objects/5f/16ede7cae5c8e9f32d4a980333f0ee1b7abaf6 deleted file mode 100644 index 0f3bb8f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/5f/16ede7cae5c8e9f32d4a980333f0ee1b7abaf6 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/60/c3fa937120f38b1215a57889c8207989c9a7f1 b/common/.oh-my-zsh/.git/objects/60/c3fa937120f38b1215a57889c8207989c9a7f1 deleted file mode 100644 index 7095e37..0000000 --- a/common/.oh-my-zsh/.git/objects/60/c3fa937120f38b1215a57889c8207989c9a7f1 +++ /dev/null @@ -1 +0,0 @@ -xA C)~(UUz)!Eo?ܠ{a=a]A; )N$$:癯HIIIbq BMWeGhK#^017p?ڦ2h?hp2-}F|Z/ 8jij2g1Ha]fma_ CG28Sk4 ӗŪƲd *L٤ \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/69/abfc4cec8c6d9586e2b9f991ffe4322c10027d b/common/.oh-my-zsh/.git/objects/69/abfc4cec8c6d9586e2b9f991ffe4322c10027d deleted file mode 100644 index 492bd4e..0000000 --- a/common/.oh-my-zsh/.git/objects/69/abfc4cec8c6d9586e2b9f991ffe4322c10027d +++ /dev/null @@ -1,3 +0,0 @@ -x}n wSX4!^JЪo?FI:NHǝ6|}~?Z'`_g:96p~ZfXͿ -h\xyVxp&w -,ުyԚ֩yzf&&D9N%*Q=,#A}3_I vp\+u,TG7 SOyhlp&s? t2p" y3jk_K ʪVp!UFriKR@._J`+ \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/6a/2e04fefbd794f050d45e7a717d009e39204431 b/common/.oh-my-zsh/.git/objects/6a/2e04fefbd794f050d45e7a717d009e39204431 deleted file mode 100644 index a183ba1..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6a/2e04fefbd794f050d45e7a717d009e39204431 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6a/6e83a2d656f3bb9f06ffca394f9ff20cb842b6 b/common/.oh-my-zsh/.git/objects/6a/6e83a2d656f3bb9f06ffca394f9ff20cb842b6 deleted file mode 100644 index 6acf659..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6a/6e83a2d656f3bb9f06ffca394f9ff20cb842b6 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6a/d978dc8d2aef0dc2a645895554326dd8c715d9 b/common/.oh-my-zsh/.git/objects/6a/d978dc8d2aef0dc2a645895554326dd8c715d9 deleted file mode 100644 index f15ca6e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6a/d978dc8d2aef0dc2a645895554326dd8c715d9 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6b/f839d11d567b0697fe69ac6f5c968c4bf012aa b/common/.oh-my-zsh/.git/objects/6b/f839d11d567b0697fe69ac6f5c968c4bf012aa deleted file mode 100644 index a78d4e1..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6b/f839d11d567b0697fe69ac6f5c968c4bf012aa and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6c/e7cc78d58d860488da9ce9b446b39b45e9677a b/common/.oh-my-zsh/.git/objects/6c/e7cc78d58d860488da9ce9b446b39b45e9677a deleted file mode 100644 index 6aea867..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6c/e7cc78d58d860488da9ce9b446b39b45e9677a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6d/99dda453d0ae320f60afdc0b4c43c6ac02d17c b/common/.oh-my-zsh/.git/objects/6d/99dda453d0ae320f60afdc0b4c43c6ac02d17c deleted file mode 100644 index 2877182..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6d/99dda453d0ae320f60afdc0b4c43c6ac02d17c and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6d/9a18ec18d34515496ab0a0a7f1333f0c8b66c7 b/common/.oh-my-zsh/.git/objects/6d/9a18ec18d34515496ab0a0a7f1333f0c8b66c7 deleted file mode 100644 index 4eb582b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6d/9a18ec18d34515496ab0a0a7f1333f0c8b66c7 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6e/3a8791554111097913c3374f728714d4fe05e8 b/common/.oh-my-zsh/.git/objects/6e/3a8791554111097913c3374f728714d4fe05e8 deleted file mode 100644 index e2b3d93..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6e/3a8791554111097913c3374f728714d4fe05e8 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6e/6cf4303712befb5a7fc3918494aefe4a65991f b/common/.oh-my-zsh/.git/objects/6e/6cf4303712befb5a7fc3918494aefe4a65991f deleted file mode 100644 index 85b553d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6e/6cf4303712befb5a7fc3918494aefe4a65991f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6e/85ff5b44e81f5b9d743b6ba1df7ed7b62dc2df b/common/.oh-my-zsh/.git/objects/6e/85ff5b44e81f5b9d743b6ba1df7ed7b62dc2df deleted file mode 100644 index d4dbfe6..0000000 --- a/common/.oh-my-zsh/.git/objects/6e/85ff5b44e81f5b9d743b6ba1df7ed7b62dc2df +++ /dev/null @@ -1,2 +0,0 @@ -xAj1 Ю} -]cJȶ(]˲ 팃GB._|>q_`Ë @j$ʤM7cATԔShfP5\rHاJqB-jIӑԊ]ح˅M !&<«;W{ykdҠulz<]e}V5 \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/6e/9cac006a8b14e2255391e967e28c0e2c328856 b/common/.oh-my-zsh/.git/objects/6e/9cac006a8b14e2255391e967e28c0e2c328856 deleted file mode 100644 index 7ee0eb2..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6e/9cac006a8b14e2255391e967e28c0e2c328856 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/6f/7dc96cbe9c210f59f0b1f53c8335469cc46346 b/common/.oh-my-zsh/.git/objects/6f/7dc96cbe9c210f59f0b1f53c8335469cc46346 deleted file mode 100644 index cf2fc47..0000000 --- a/common/.oh-my-zsh/.git/objects/6f/7dc96cbe9c210f59f0b1f53c8335469cc46346 +++ /dev/null @@ -1,2 +0,0 @@ -x+)JMU0c040031QHIMI-.fxr͵p.ޘbU^ANizf^Uq ,έ, -Mbf" \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/6f/859c5837753a87544b2672678e36bcf167cc82 b/common/.oh-my-zsh/.git/objects/6f/859c5837753a87544b2672678e36bcf167cc82 deleted file mode 100644 index 445802d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/6f/859c5837753a87544b2672678e36bcf167cc82 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/70/b562e00f733a80c69a5b24ff3905678f27517b b/common/.oh-my-zsh/.git/objects/70/b562e00f733a80c69a5b24ff3905678f27517b deleted file mode 100644 index b55cd60..0000000 Binary files a/common/.oh-my-zsh/.git/objects/70/b562e00f733a80c69a5b24ff3905678f27517b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/71/bc25fc2df3c47c66eea0c1bf265734338c2aeb b/common/.oh-my-zsh/.git/objects/71/bc25fc2df3c47c66eea0c1bf265734338c2aeb deleted file mode 100644 index 53d946a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/71/bc25fc2df3c47c66eea0c1bf265734338c2aeb and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/72/84e6b397712dfff16a740ea12d1015b26f203d b/common/.oh-my-zsh/.git/objects/72/84e6b397712dfff16a740ea12d1015b26f203d deleted file mode 100644 index 7dc01d2..0000000 --- a/common/.oh-my-zsh/.git/objects/72/84e6b397712dfff16a740ea12d1015b26f203d +++ /dev/null @@ -1,2 +0,0 @@ -x[j!E*`(QBG1c!\_rN/ut:(t+MIBmj3F*Vmc<ȭdhh[ 蘝Y'Þpm'cLOܯWr7.%\P"eW1XUk -u>k-m@\z(~c!E_ \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/73/b9f8311030fe249d703178d5cb445eb0642268 b/common/.oh-my-zsh/.git/objects/73/b9f8311030fe249d703178d5cb445eb0642268 deleted file mode 100644 index c71b8f0..0000000 --- a/common/.oh-my-zsh/.git/objects/73/b9f8311030fe249d703178d5cb445eb0642268 +++ /dev/null @@ -1 +0,0 @@ -xO;N0)m8!y+AdO4Si]ʤ51ahj(tWȴUphyT0ra@ `?= p֏(xWYllesF:2{_@}P[._{v]5̥ RVʭa\r5}ϰN+xb)\>'Bҧ[_pP \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/73/f777053725ce61d6fada67ff3f174130dd8c94 b/common/.oh-my-zsh/.git/objects/73/f777053725ce61d6fada67ff3f174130dd8c94 deleted file mode 100644 index da7dc17..0000000 Binary files a/common/.oh-my-zsh/.git/objects/73/f777053725ce61d6fada67ff3f174130dd8c94 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/74/d20f32086a5526b7482ce23d5b62faefa0bd83 b/common/.oh-my-zsh/.git/objects/74/d20f32086a5526b7482ce23d5b62faefa0bd83 deleted file mode 100644 index 7822a08..0000000 Binary files a/common/.oh-my-zsh/.git/objects/74/d20f32086a5526b7482ce23d5b62faefa0bd83 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/75/e5a6dcfc20a582a4b4653a25c074f4263dd7dc b/common/.oh-my-zsh/.git/objects/75/e5a6dcfc20a582a4b4653a25c074f4263dd7dc deleted file mode 100644 index 6f92a66..0000000 Binary files a/common/.oh-my-zsh/.git/objects/75/e5a6dcfc20a582a4b4653a25c074f4263dd7dc and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/76/f2429e8ec30afacd3a913018c8c573962e214c b/common/.oh-my-zsh/.git/objects/76/f2429e8ec30afacd3a913018c8c573962e214c deleted file mode 100644 index 8d08838..0000000 Binary files a/common/.oh-my-zsh/.git/objects/76/f2429e8ec30afacd3a913018c8c573962e214c and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/76/feafc72cdcd649d9a5673c28abf92805f96c6d b/common/.oh-my-zsh/.git/objects/76/feafc72cdcd649d9a5673c28abf92805f96c6d deleted file mode 100644 index 94767ef..0000000 Binary files a/common/.oh-my-zsh/.git/objects/76/feafc72cdcd649d9a5673c28abf92805f96c6d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/77/ddeca21d1b3ed5c2bc780ab18aafa65eb9cf60 b/common/.oh-my-zsh/.git/objects/77/ddeca21d1b3ed5c2bc780ab18aafa65eb9cf60 deleted file mode 100644 index abdac89..0000000 Binary files a/common/.oh-my-zsh/.git/objects/77/ddeca21d1b3ed5c2bc780ab18aafa65eb9cf60 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/78/1c8f83fd875445779e7f88f945673718ecba08 b/common/.oh-my-zsh/.git/objects/78/1c8f83fd875445779e7f88f945673718ecba08 deleted file mode 100644 index 58b2f73..0000000 Binary files a/common/.oh-my-zsh/.git/objects/78/1c8f83fd875445779e7f88f945673718ecba08 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/79/41debee44e2731a8966136186feaf48578149f b/common/.oh-my-zsh/.git/objects/79/41debee44e2731a8966136186feaf48578149f deleted file mode 100644 index eb21d4b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/79/41debee44e2731a8966136186feaf48578149f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/7b/9e886273e2abb923ea766ab0dda649031623ce b/common/.oh-my-zsh/.git/objects/7b/9e886273e2abb923ea766ab0dda649031623ce deleted file mode 100644 index fc70e8e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/7b/9e886273e2abb923ea766ab0dda649031623ce and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/7c/98b30d0d0115dff8fff2525510531f5c5c394e b/common/.oh-my-zsh/.git/objects/7c/98b30d0d0115dff8fff2525510531f5c5c394e deleted file mode 100644 index 2f86622..0000000 Binary files a/common/.oh-my-zsh/.git/objects/7c/98b30d0d0115dff8fff2525510531f5c5c394e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/7d/fa18370a426a5394e333c602dd3a6f05356710 b/common/.oh-my-zsh/.git/objects/7d/fa18370a426a5394e333c602dd3a6f05356710 deleted file mode 100644 index 6158470..0000000 Binary files a/common/.oh-my-zsh/.git/objects/7d/fa18370a426a5394e333c602dd3a6f05356710 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/7e/1da28d27f42e4d873cdfc28ef362d59d8c2b07 b/common/.oh-my-zsh/.git/objects/7e/1da28d27f42e4d873cdfc28ef362d59d8c2b07 deleted file mode 100644 index caa14e3..0000000 --- a/common/.oh-my-zsh/.git/objects/7e/1da28d27f42e4d873cdfc28ef362d59d8c2b07 +++ /dev/null @@ -1 +0,0 @@ -xAj0E)f0d[PB2Ǝm#zÃʾWU!F #fKi(#N|bLOđCб]lЏ&0yt|gQ9EDzw@ YB4p3-?JPz ޢk9`(̭CAlM \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/7f/c457d5217d6131b96e89823595ed7aec854815 b/common/.oh-my-zsh/.git/objects/7f/c457d5217d6131b96e89823595ed7aec854815 deleted file mode 100644 index 379638d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/7f/c457d5217d6131b96e89823595ed7aec854815 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/7f/dc000aed700b824d8cedcb145ba76b64d474ca b/common/.oh-my-zsh/.git/objects/7f/dc000aed700b824d8cedcb145ba76b64d474ca deleted file mode 100644 index d39fd1d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/7f/dc000aed700b824d8cedcb145ba76b64d474ca and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/80/06c432488828fa11dd22a294354d2d8bcc460a b/common/.oh-my-zsh/.git/objects/80/06c432488828fa11dd22a294354d2d8bcc460a deleted file mode 100644 index ea301af..0000000 Binary files a/common/.oh-my-zsh/.git/objects/80/06c432488828fa11dd22a294354d2d8bcc460a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/81/7068ed013c3a6604444e4808f1b20acb430760 b/common/.oh-my-zsh/.git/objects/81/7068ed013c3a6604444e4808f1b20acb430760 deleted file mode 100644 index 1597f6d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/81/7068ed013c3a6604444e4808f1b20acb430760 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/82/3cc9180c21c0520713b39fe3e3590645c76ad2 b/common/.oh-my-zsh/.git/objects/82/3cc9180c21c0520713b39fe3e3590645c76ad2 deleted file mode 100644 index cf24945..0000000 Binary files a/common/.oh-my-zsh/.git/objects/82/3cc9180c21c0520713b39fe3e3590645c76ad2 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/82/47a4097d32a85c6a119b114cce44069559dd3e b/common/.oh-my-zsh/.git/objects/82/47a4097d32a85c6a119b114cce44069559dd3e deleted file mode 100644 index c2c4a8f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/82/47a4097d32a85c6a119b114cce44069559dd3e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/82/f785bc6751dc7c199b5d1ea068567120b92511 b/common/.oh-my-zsh/.git/objects/82/f785bc6751dc7c199b5d1ea068567120b92511 deleted file mode 100644 index 4f6a6e8..0000000 Binary files a/common/.oh-my-zsh/.git/objects/82/f785bc6751dc7c199b5d1ea068567120b92511 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/85/10ac002f1dec92f6e9e62809f3dc5493d4b842 b/common/.oh-my-zsh/.git/objects/85/10ac002f1dec92f6e9e62809f3dc5493d4b842 deleted file mode 100644 index 9f98adc..0000000 Binary files a/common/.oh-my-zsh/.git/objects/85/10ac002f1dec92f6e9e62809f3dc5493d4b842 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/86/1d2476444b9f534611804abf3a4f969388749e b/common/.oh-my-zsh/.git/objects/86/1d2476444b9f534611804abf3a4f969388749e deleted file mode 100644 index c34aa2c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/86/1d2476444b9f534611804abf3a4f969388749e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/86/37514cfe97ccf0ce40d208b46c68ebbb8f86bb b/common/.oh-my-zsh/.git/objects/86/37514cfe97ccf0ce40d208b46c68ebbb8f86bb deleted file mode 100644 index c26c6cf..0000000 Binary files a/common/.oh-my-zsh/.git/objects/86/37514cfe97ccf0ce40d208b46c68ebbb8f86bb and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/86/73943306c2e7f7f7c5079a4ba98dae90c4559b b/common/.oh-my-zsh/.git/objects/86/73943306c2e7f7f7c5079a4ba98dae90c4559b deleted file mode 100644 index 5d78f9d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/86/73943306c2e7f7f7c5079a4ba98dae90c4559b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/87/ab8771dac655272895e5904fcf93217ea4a64b b/common/.oh-my-zsh/.git/objects/87/ab8771dac655272895e5904fcf93217ea4a64b deleted file mode 100644 index e28703c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/87/ab8771dac655272895e5904fcf93217ea4a64b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/88/6128f18929e1c522db45b5df770670947b93f6 b/common/.oh-my-zsh/.git/objects/88/6128f18929e1c522db45b5df770670947b93f6 deleted file mode 100644 index 6996c47..0000000 Binary files a/common/.oh-my-zsh/.git/objects/88/6128f18929e1c522db45b5df770670947b93f6 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/88/8ec5f10613a0a1b44acd26f6f9798c2b8f272a b/common/.oh-my-zsh/.git/objects/88/8ec5f10613a0a1b44acd26f6f9798c2b8f272a deleted file mode 100644 index 355afec..0000000 Binary files a/common/.oh-my-zsh/.git/objects/88/8ec5f10613a0a1b44acd26f6f9798c2b8f272a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/89/23694fb42393d063487203e803199b394bbb47 b/common/.oh-my-zsh/.git/objects/89/23694fb42393d063487203e803199b394bbb47 deleted file mode 100644 index 820b28e..0000000 --- a/common/.oh-my-zsh/.git/objects/89/23694fb42393d063487203e803199b394bbb47 +++ /dev/null @@ -1,3 +0,0 @@ -x1N0Pjb.GZ!*'2'HzT5="D)9y lG<:4~ UZ4Wԙ%9% >|y_FuKADpSJ2Rs -8}|rC& ??팁k/eןϒ \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/90/aaae899019440bcb308e4a1073783db8ef9813 b/common/.oh-my-zsh/.git/objects/90/aaae899019440bcb308e4a1073783db8ef9813 deleted file mode 100644 index 836a404..0000000 Binary files a/common/.oh-my-zsh/.git/objects/90/aaae899019440bcb308e4a1073783db8ef9813 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/91/6780ba8c888afac84733ed86ba2d3daf572ff1 b/common/.oh-my-zsh/.git/objects/91/6780ba8c888afac84733ed86ba2d3daf572ff1 deleted file mode 100644 index ca361ca..0000000 Binary files a/common/.oh-my-zsh/.git/objects/91/6780ba8c888afac84733ed86ba2d3daf572ff1 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/91/b0279c565cf503ce159fa9e55c0353df37f63e b/common/.oh-my-zsh/.git/objects/91/b0279c565cf503ce159fa9e55c0353df37f63e deleted file mode 100644 index 2b34ce9..0000000 Binary files a/common/.oh-my-zsh/.git/objects/91/b0279c565cf503ce159fa9e55c0353df37f63e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/91/b4758d8f5a910a60de783f15acb66acda68d7f b/common/.oh-my-zsh/.git/objects/91/b4758d8f5a910a60de783f15acb66acda68d7f deleted file mode 100644 index fbcc24b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/91/b4758d8f5a910a60de783f15acb66acda68d7f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/91/c81e84e253f310d28515497339b29ee9fcc9b4 b/common/.oh-my-zsh/.git/objects/91/c81e84e253f310d28515497339b29ee9fcc9b4 deleted file mode 100644 index 8f21ccc..0000000 Binary files a/common/.oh-my-zsh/.git/objects/91/c81e84e253f310d28515497339b29ee9fcc9b4 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/92/1d2f49ef01acce973980c0aa9c6ffbbd2fbd0b b/common/.oh-my-zsh/.git/objects/92/1d2f49ef01acce973980c0aa9c6ffbbd2fbd0b deleted file mode 100644 index 0eb935c..0000000 --- a/common/.oh-my-zsh/.git/objects/92/1d2f49ef01acce973980c0aa9c6ffbbd2fbd0b +++ /dev/null @@ -1 +0,0 @@ -xAN0EY#n3-!ؔxI[q@pz`ӏ%[Ctת$}RƠw=k Nf] Й1!G4E2灇=Di&uV(2hZNØkp.̟pU O|Z0K Rc,АpPRN[M==K,nv0֒!N[kj>{a/Rm@J:!ǯz%t( \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/92/b6cae02638f644e6359e3f553805e2c3eba957 b/common/.oh-my-zsh/.git/objects/92/b6cae02638f644e6359e3f553805e2c3eba957 deleted file mode 100644 index ea99787..0000000 --- a/common/.oh-my-zsh/.git/objects/92/b6cae02638f644e6359e3f553805e2c3eba957 +++ /dev/null @@ -1,2 +0,0 @@ -x1n0 E;@ -R%9@vJfjUlJrh RGf 1MHYC@g^PnjN16voqQ\Qxr9>XAm^+\}բK58t|ϼ{Cp8t6a=ffޠ`L \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/96/bfea150e7f0a2441213cbab93e60e2158eddd8 b/common/.oh-my-zsh/.git/objects/96/bfea150e7f0a2441213cbab93e60e2158eddd8 deleted file mode 100644 index 9d8603c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/96/bfea150e7f0a2441213cbab93e60e2158eddd8 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/97/07537f5aea029266665df5f3fa636aae6fefd4 b/common/.oh-my-zsh/.git/objects/97/07537f5aea029266665df5f3fa636aae6fefd4 deleted file mode 100644 index 5ba11c5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/97/07537f5aea029266665df5f3fa636aae6fefd4 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/97/14458371aac8622cb98f8a989f4881bf2a3354 b/common/.oh-my-zsh/.git/objects/97/14458371aac8622cb98f8a989f4881bf2a3354 deleted file mode 100644 index 4cdb854..0000000 Binary files a/common/.oh-my-zsh/.git/objects/97/14458371aac8622cb98f8a989f4881bf2a3354 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/97/628a11091d4d8da5fbe906add61dbc58a30d93 b/common/.oh-my-zsh/.git/objects/97/628a11091d4d8da5fbe906add61dbc58a30d93 deleted file mode 100644 index 325f22d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/97/628a11091d4d8da5fbe906add61dbc58a30d93 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/98/ce750ad8058378735bcfd66e4f538cfa30254c b/common/.oh-my-zsh/.git/objects/98/ce750ad8058378735bcfd66e4f538cfa30254c deleted file mode 100644 index 99b5839..0000000 Binary files a/common/.oh-my-zsh/.git/objects/98/ce750ad8058378735bcfd66e4f538cfa30254c and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/98/d7a010994cd39758e4a1599cefe9e130a346db b/common/.oh-my-zsh/.git/objects/98/d7a010994cd39758e4a1599cefe9e130a346db deleted file mode 100644 index a6ceaeb..0000000 --- a/common/.oh-my-zsh/.git/objects/98/d7a010994cd39758e4a1599cefe9e130a346db +++ /dev/null @@ -1,3 +0,0 @@ -xM -0F]seDt=&-4i)-xwoK)Smܩm":`=t9xq}uVڤ6H3> -[䔍6I1:mm\6x,e/[7mY۴ /]oP>: g&YTѓP \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/99/280c0fc57a8b6751be987bbf057b5877b1ee3b b/common/.oh-my-zsh/.git/objects/99/280c0fc57a8b6751be987bbf057b5877b1ee3b deleted file mode 100644 index fe7eb26..0000000 Binary files a/common/.oh-my-zsh/.git/objects/99/280c0fc57a8b6751be987bbf057b5877b1ee3b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/99/a3c3c5c85b7a72037022607f41d682b77db7d7 b/common/.oh-my-zsh/.git/objects/99/a3c3c5c85b7a72037022607f41d682b77db7d7 deleted file mode 100644 index 6f453ee..0000000 --- a/common/.oh-my-zsh/.git/objects/99/a3c3c5c85b7a72037022607f41d682b77db7d7 +++ /dev/null @@ -1,2 +0,0 @@ -xNIN0Wڻ-|KĒ jURo N@k9jG$ -a^f6@ST!.j7J*9 sbkQg>T[ .7Rj{ htA`i ۍ2 ΃j޿J㌵`~Z \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/9c/d37c10b277fc4408466a87efe6244c2ace97ad b/common/.oh-my-zsh/.git/objects/9c/d37c10b277fc4408466a87efe6244c2ace97ad deleted file mode 100644 index c7cb9ba..0000000 Binary files a/common/.oh-my-zsh/.git/objects/9c/d37c10b277fc4408466a87efe6244c2ace97ad and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/9c/fcff3d0e07fce6a23c7344e11e96b706d88eab b/common/.oh-my-zsh/.git/objects/9c/fcff3d0e07fce6a23c7344e11e96b706d88eab deleted file mode 100644 index 1813471..0000000 Binary files a/common/.oh-my-zsh/.git/objects/9c/fcff3d0e07fce6a23c7344e11e96b706d88eab and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/9e/ee6c493aae0059133da514eecb38ce42edfb46 b/common/.oh-my-zsh/.git/objects/9e/ee6c493aae0059133da514eecb38ce42edfb46 deleted file mode 100644 index 417fb0a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/9e/ee6c493aae0059133da514eecb38ce42edfb46 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a0/430a0a45f81ecff5682070647f9c4c2da6410f b/common/.oh-my-zsh/.git/objects/a0/430a0a45f81ecff5682070647f9c4c2da6410f deleted file mode 100644 index 52b19a6..0000000 --- a/common/.oh-my-zsh/.git/objects/a0/430a0a45f81ecff5682070647f9c4c2da6410f +++ /dev/null @@ -1,2 +0,0 @@ -xJ@;HdM ͮra y] -RZ4Wk$H w.nB[#%FFtQ83.Ee$Y & Qq\'\[r!v,\nu_p咷ǐR}2֝yҿʅ`o'W=C*yi{Z8 ]_!wneugmsP3 =*Er \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/a0/a64c7e47ca2b9b47ac790e94f08e3798ae72c8 b/common/.oh-my-zsh/.git/objects/a0/a64c7e47ca2b9b47ac790e94f08e3798ae72c8 deleted file mode 100644 index b99386c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a0/a64c7e47ca2b9b47ac790e94f08e3798ae72c8 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a1/478be31ca8e538769246e22bba3330d81dc3c8 b/common/.oh-my-zsh/.git/objects/a1/478be31ca8e538769246e22bba3330d81dc3c8 deleted file mode 100644 index 335c15c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a1/478be31ca8e538769246e22bba3330d81dc3c8 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a1/5bcd6461b5b8237844c4e2968df0518dab5e9a b/common/.oh-my-zsh/.git/objects/a1/5bcd6461b5b8237844c4e2968df0518dab5e9a deleted file mode 100644 index e571236..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a1/5bcd6461b5b8237844c4e2968df0518dab5e9a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a2/695630cdd7144da1667dad56650614ba526ba5 b/common/.oh-my-zsh/.git/objects/a2/695630cdd7144da1667dad56650614ba526ba5 deleted file mode 100644 index 2783b71..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a2/695630cdd7144da1667dad56650614ba526ba5 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a3/108da813ed06db90dc07a2d497cb5a5e52dc3a b/common/.oh-my-zsh/.git/objects/a3/108da813ed06db90dc07a2d497cb5a5e52dc3a deleted file mode 100644 index 427a2d8..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a3/108da813ed06db90dc07a2d497cb5a5e52dc3a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a3/6a90b932d4ef759691e1fbb8f8f6c0b7f077d4 b/common/.oh-my-zsh/.git/objects/a3/6a90b932d4ef759691e1fbb8f8f6c0b7f077d4 deleted file mode 100644 index d6f9bdb..0000000 --- a/common/.oh-my-zsh/.git/objects/a3/6a90b932d4ef759691e1fbb8f8f6c0b7f077d4 +++ /dev/null @@ -1,2 +0,0 @@ -xP;N0)D࿳Bfo<'mC(ki]-DzŅ\8''reb2 oI$c\LlVnj3N_kR14@$Cn 쀭.%9wK;6x*?%obS|i.f+,cCgJީB -3 ^ ^.@ڼFHqAj5Z8ʼd 4oRxL \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/a3/9c9ffe5b7236b6e4dc78efa80b478cc411af7f b/common/.oh-my-zsh/.git/objects/a3/9c9ffe5b7236b6e4dc78efa80b478cc411af7f deleted file mode 100644 index 9572372..0000000 --- a/common/.oh-my-zsh/.git/objects/a3/9c9ffe5b7236b6e4dc78efa80b478cc411af7f +++ /dev/null @@ -1,2 +0,0 @@ -x[J0E(/i,p''mMjE~`ؘVC+D(9 pqHPP(] F䜝VH 89 ^yrJlPeyaRa2JGoddxo,cZrԳij7k:SS?J^ -nCPW^ģuCm \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/a3/b1bb7bd56992320907a49102151f414e5f582b b/common/.oh-my-zsh/.git/objects/a3/b1bb7bd56992320907a49102151f414e5f582b deleted file mode 100644 index d6ee48d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a3/b1bb7bd56992320907a49102151f414e5f582b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a3/c0fbef28309fc3d21a8c30d5f8f2bb6df30c3d b/common/.oh-my-zsh/.git/objects/a3/c0fbef28309fc3d21a8c30d5f8f2bb6df30c3d deleted file mode 100644 index ae11693..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a3/c0fbef28309fc3d21a8c30d5f8f2bb6df30c3d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a4/7f49406144cf5db8288aee28f4a592ede1e6dd b/common/.oh-my-zsh/.git/objects/a4/7f49406144cf5db8288aee28f4a592ede1e6dd deleted file mode 100644 index 5181893..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a4/7f49406144cf5db8288aee28f4a592ede1e6dd and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a4/916541dce1b7dfd0ce6e0f890632343fd0bfa0 b/common/.oh-my-zsh/.git/objects/a4/916541dce1b7dfd0ce6e0f890632343fd0bfa0 deleted file mode 100644 index 95fe4bc..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a4/916541dce1b7dfd0ce6e0f890632343fd0bfa0 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a5/8891ab3418e095652ffcfe1a1b53be46fc3af0 b/common/.oh-my-zsh/.git/objects/a5/8891ab3418e095652ffcfe1a1b53be46fc3af0 deleted file mode 100644 index 92a47c0..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a5/8891ab3418e095652ffcfe1a1b53be46fc3af0 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a5/a226b69b93e8e81d2479a158a6e182fc8b4d10 b/common/.oh-my-zsh/.git/objects/a5/a226b69b93e8e81d2479a158a6e182fc8b4d10 deleted file mode 100644 index b135c80..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a5/a226b69b93e8e81d2479a158a6e182fc8b4d10 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a5/a6f6bb6c95422964f9fe9b8e19d1a830202733 b/common/.oh-my-zsh/.git/objects/a5/a6f6bb6c95422964f9fe9b8e19d1a830202733 deleted file mode 100644 index 948e63e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a5/a6f6bb6c95422964f9fe9b8e19d1a830202733 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a6/2dd560209e7a63b782e3043e4300bbbd07a252 b/common/.oh-my-zsh/.git/objects/a6/2dd560209e7a63b782e3043e4300bbbd07a252 deleted file mode 100644 index 40c560e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a6/2dd560209e7a63b782e3043e4300bbbd07a252 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a6/8f4d25632f5d4e1ea6c7e4c24d01976ed2f9fd b/common/.oh-my-zsh/.git/objects/a6/8f4d25632f5d4e1ea6c7e4c24d01976ed2f9fd deleted file mode 100644 index dc6bee4..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a6/8f4d25632f5d4e1ea6c7e4c24d01976ed2f9fd and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a7/1f7ef175ad7b2e5123a1d755423878e3824d65 b/common/.oh-my-zsh/.git/objects/a7/1f7ef175ad7b2e5123a1d755423878e3824d65 deleted file mode 100644 index 09fea1d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a7/1f7ef175ad7b2e5123a1d755423878e3824d65 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a8/b1e5781fefdac1f24e62e07d0e53641657ff4a b/common/.oh-my-zsh/.git/objects/a8/b1e5781fefdac1f24e62e07d0e53641657ff4a deleted file mode 100644 index a1f66d5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a8/b1e5781fefdac1f24e62e07d0e53641657ff4a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a9/3c8e8633351f5e31904d2c3d681043ced94739 b/common/.oh-my-zsh/.git/objects/a9/3c8e8633351f5e31904d2c3d681043ced94739 deleted file mode 100644 index 3614f16..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a9/3c8e8633351f5e31904d2c3d681043ced94739 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/a9/5fb50f7e5277f3a468e2c552676a186e7ead5b b/common/.oh-my-zsh/.git/objects/a9/5fb50f7e5277f3a468e2c552676a186e7ead5b deleted file mode 100644 index 1abb9f3..0000000 Binary files a/common/.oh-my-zsh/.git/objects/a9/5fb50f7e5277f3a468e2c552676a186e7ead5b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/aa/a1af387af13551050424583e431e551c7db38a b/common/.oh-my-zsh/.git/objects/aa/a1af387af13551050424583e431e551c7db38a deleted file mode 100644 index 29dc160..0000000 Binary files a/common/.oh-my-zsh/.git/objects/aa/a1af387af13551050424583e431e551c7db38a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ab/f82dce8f9e763e37b10623ec1b53b736a5a2f4 b/common/.oh-my-zsh/.git/objects/ab/f82dce8f9e763e37b10623ec1b53b736a5a2f4 deleted file mode 100644 index 529de6a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ab/f82dce8f9e763e37b10623ec1b53b736a5a2f4 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ac/4af4f13da57f86b8e51976f11536dabf4c632d b/common/.oh-my-zsh/.git/objects/ac/4af4f13da57f86b8e51976f11536dabf4c632d deleted file mode 100644 index 61e989e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ac/4af4f13da57f86b8e51976f11536dabf4c632d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ae/479266825e8dd6d6d26a69c08e91902b8550e4 b/common/.oh-my-zsh/.git/objects/ae/479266825e8dd6d6d26a69c08e91902b8550e4 deleted file mode 100644 index 17754a4..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ae/479266825e8dd6d6d26a69c08e91902b8550e4 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ae/add7371b244468aadf81a48e6009a4aa612f23 b/common/.oh-my-zsh/.git/objects/ae/add7371b244468aadf81a48e6009a4aa612f23 deleted file mode 100644 index 4a4e486..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ae/add7371b244468aadf81a48e6009a4aa612f23 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/b0/80be3a115c4d9b6feaa3368bbd7e1c9451e84e b/common/.oh-my-zsh/.git/objects/b0/80be3a115c4d9b6feaa3368bbd7e1c9451e84e deleted file mode 100644 index 4930a0f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/b0/80be3a115c4d9b6feaa3368bbd7e1c9451e84e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/b1/1e28914139fb585c0a4de4ddb6a55f19a5493d b/common/.oh-my-zsh/.git/objects/b1/1e28914139fb585c0a4de4ddb6a55f19a5493d deleted file mode 100644 index 90207da..0000000 Binary files a/common/.oh-my-zsh/.git/objects/b1/1e28914139fb585c0a4de4ddb6a55f19a5493d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/b1/b1137d1aa89b098d4c40ee3852df3f647f0f93 b/common/.oh-my-zsh/.git/objects/b1/b1137d1aa89b098d4c40ee3852df3f647f0f93 deleted file mode 100644 index fa57eb1..0000000 Binary files a/common/.oh-my-zsh/.git/objects/b1/b1137d1aa89b098d4c40ee3852df3f647f0f93 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/b2/07792f30f523e2fc82a70e75893bf1124bf7a8 b/common/.oh-my-zsh/.git/objects/b2/07792f30f523e2fc82a70e75893bf1124bf7a8 deleted file mode 100644 index 6e6f948..0000000 --- a/common/.oh-my-zsh/.git/objects/b2/07792f30f523e2fc82a70e75893bf1124bf7a8 +++ /dev/null @@ -1,2 +0,0 @@ -xM -0F]s%IDt \gRm#xGp{^Vܹux"ZH֯/ob޿ySo3k z1/o8 \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/bf/4157514f8880ac04ba328f7f1b74c34f1b39d7 b/common/.oh-my-zsh/.git/objects/bf/4157514f8880ac04ba328f7f1b74c34f1b39d7 deleted file mode 100644 index 0c90e10..0000000 Binary files a/common/.oh-my-zsh/.git/objects/bf/4157514f8880ac04ba328f7f1b74c34f1b39d7 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/bf/98a2d68bb18b34d8df52b25d9f04db0e12b6f0 b/common/.oh-my-zsh/.git/objects/bf/98a2d68bb18b34d8df52b25d9f04db0e12b6f0 deleted file mode 100644 index b8ada0c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/bf/98a2d68bb18b34d8df52b25d9f04db0e12b6f0 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/bf/b567c4122af4680bf9f61ba9dc1d5f3b2c7146 b/common/.oh-my-zsh/.git/objects/bf/b567c4122af4680bf9f61ba9dc1d5f3b2c7146 deleted file mode 100644 index 742854f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/bf/b567c4122af4680bf9f61ba9dc1d5f3b2c7146 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c1/b00c62bf6ec6889cd0f88c41321b4aabf971a8 b/common/.oh-my-zsh/.git/objects/c1/b00c62bf6ec6889cd0f88c41321b4aabf971a8 deleted file mode 100644 index e556a04..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c1/b00c62bf6ec6889cd0f88c41321b4aabf971a8 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c1/cf378896f64143ef39538d2128fdc8dfad5b9f b/common/.oh-my-zsh/.git/objects/c1/cf378896f64143ef39538d2128fdc8dfad5b9f deleted file mode 100644 index f39298c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c1/cf378896f64143ef39538d2128fdc8dfad5b9f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c2/7183abcd113da59c0d25c5324b7b7d15060f95 b/common/.oh-my-zsh/.git/objects/c2/7183abcd113da59c0d25c5324b7b7d15060f95 deleted file mode 100644 index a1151d1..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c2/7183abcd113da59c0d25c5324b7b7d15060f95 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c2/b6049cbcba4db8963673e6093690d6f1721b0e b/common/.oh-my-zsh/.git/objects/c2/b6049cbcba4db8963673e6093690d6f1721b0e deleted file mode 100644 index a0f989a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c2/b6049cbcba4db8963673e6093690d6f1721b0e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c2/d42f5a90f12ca925702ed4e8fc5563baf8397c b/common/.oh-my-zsh/.git/objects/c2/d42f5a90f12ca925702ed4e8fc5563baf8397c deleted file mode 100644 index 7e23631..0000000 --- a/common/.oh-my-zsh/.git/objects/c2/d42f5a90f12ca925702ed4e8fc5563baf8397c +++ /dev/null @@ -1,2 +0,0 @@ -xA - E/PJ龇ѱ X XK7@˜ϣað ؈1 C r?23ibN6 ֻi:E6 ^sdx֥W[9@x Kk=:Ԉ\Ztm獢$i>&)~CU \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/c3/107c06c04fb42b0ca27b0a81b15854819969c6 b/common/.oh-my-zsh/.git/objects/c3/107c06c04fb42b0ca27b0a81b15854819969c6 deleted file mode 100644 index 13cc56e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c3/107c06c04fb42b0ca27b0a81b15854819969c6 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c3/1b7fcae86a3a057e74340d927f80722203ccdc b/common/.oh-my-zsh/.git/objects/c3/1b7fcae86a3a057e74340d927f80722203ccdc deleted file mode 100644 index 5c76335..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c3/1b7fcae86a3a057e74340d927f80722203ccdc and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c4/2c68df1d2b1a759dd618a18d75ce2d3685856a b/common/.oh-my-zsh/.git/objects/c4/2c68df1d2b1a759dd618a18d75ce2d3685856a deleted file mode 100644 index c7e842c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c4/2c68df1d2b1a759dd618a18d75ce2d3685856a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c4/e2011f49bdc5d791abf2b3a75dc69c9e17cf11 b/common/.oh-my-zsh/.git/objects/c4/e2011f49bdc5d791abf2b3a75dc69c9e17cf11 deleted file mode 100644 index 1c0998e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c4/e2011f49bdc5d791abf2b3a75dc69c9e17cf11 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c6/5539255143738c60a48e04e837109fc0d1d1b9 b/common/.oh-my-zsh/.git/objects/c6/5539255143738c60a48e04e837109fc0d1d1b9 deleted file mode 100644 index 7f128e1..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c6/5539255143738c60a48e04e837109fc0d1d1b9 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c6/5a53df811953b9f4117ff0b8014d869565bf9d b/common/.oh-my-zsh/.git/objects/c6/5a53df811953b9f4117ff0b8014d869565bf9d deleted file mode 100644 index b56543a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c6/5a53df811953b9f4117ff0b8014d869565bf9d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c6/86dd51d3e30a02f20364f9c84201b5b10d094a b/common/.oh-my-zsh/.git/objects/c6/86dd51d3e30a02f20364f9c84201b5b10d094a deleted file mode 100644 index ac253a4..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c6/86dd51d3e30a02f20364f9c84201b5b10d094a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c6/9893813f8e561f8c2c8f7b0d6ce8e17333041e b/common/.oh-my-zsh/.git/objects/c6/9893813f8e561f8c2c8f7b0d6ce8e17333041e deleted file mode 100644 index 82972a9..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c6/9893813f8e561f8c2c8f7b0d6ce8e17333041e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c8/b11ad43ba61d2cde7cc7930fac669403dab783 b/common/.oh-my-zsh/.git/objects/c8/b11ad43ba61d2cde7cc7930fac669403dab783 deleted file mode 100644 index fb7731b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c8/b11ad43ba61d2cde7cc7930fac669403dab783 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c9/6774f9d7f5d8aeddc6089d0ac6c2a9167bb7de b/common/.oh-my-zsh/.git/objects/c9/6774f9d7f5d8aeddc6089d0ac6c2a9167bb7de deleted file mode 100644 index cf08ef3..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c9/6774f9d7f5d8aeddc6089d0ac6c2a9167bb7de and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c9/b2e2cf3a2c2189e15bcdfe2a166e3cce9c2597 b/common/.oh-my-zsh/.git/objects/c9/b2e2cf3a2c2189e15bcdfe2a166e3cce9c2597 deleted file mode 100644 index 861a694..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c9/b2e2cf3a2c2189e15bcdfe2a166e3cce9c2597 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/c9/c81c43217031a171dd8006e1f3866216ed1198 b/common/.oh-my-zsh/.git/objects/c9/c81c43217031a171dd8006e1f3866216ed1198 deleted file mode 100644 index a95ef31..0000000 Binary files a/common/.oh-my-zsh/.git/objects/c9/c81c43217031a171dd8006e1f3866216ed1198 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ca/a15548c107b9c31f61a67547ffab0b0cfe4934 b/common/.oh-my-zsh/.git/objects/ca/a15548c107b9c31f61a67547ffab0b0cfe4934 deleted file mode 100644 index 36030f9..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ca/a15548c107b9c31f61a67547ffab0b0cfe4934 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ca/f3c1e206af0c4cdc79a0bb6b8a5a53672947e0 b/common/.oh-my-zsh/.git/objects/ca/f3c1e206af0c4cdc79a0bb6b8a5a53672947e0 deleted file mode 100644 index 197b374..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ca/f3c1e206af0c4cdc79a0bb6b8a5a53672947e0 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/cc/831508d7c2e839e1c4effe31ac2d92f2741f94 b/common/.oh-my-zsh/.git/objects/cc/831508d7c2e839e1c4effe31ac2d92f2741f94 deleted file mode 100644 index 9e8634f..0000000 --- a/common/.oh-my-zsh/.git/objects/cc/831508d7c2e839e1c4effe31ac2d92f2741f94 +++ /dev/null @@ -1,4 +0,0 @@ -xAn EsDHUM:ئ)/N(B i B<@]RV$U6saDRs%NhTU،\X45IxٕJ -UiC&SeC\1<l)& -u~B;^(e#ʺx4\ `?`~}mnZ -1X#Ak4 `( d]63!Qu0h|w ɳLap6GqcC,<%&Y"fF_]逮Uu)қ \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/cc/aa0919d67f63dd38ab89b68713e78aad81fe85 b/common/.oh-my-zsh/.git/objects/cc/aa0919d67f63dd38ab89b68713e78aad81fe85 deleted file mode 100644 index 87498ca..0000000 Binary files a/common/.oh-my-zsh/.git/objects/cc/aa0919d67f63dd38ab89b68713e78aad81fe85 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/cd/48691dd408eee3b38877e6d528b4447b5fe51d b/common/.oh-my-zsh/.git/objects/cd/48691dd408eee3b38877e6d528b4447b5fe51d deleted file mode 100644 index 1ea71f0..0000000 Binary files a/common/.oh-my-zsh/.git/objects/cd/48691dd408eee3b38877e6d528b4447b5fe51d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ce/1cfb7b85813a5a692f9cf396d375914e915485 b/common/.oh-my-zsh/.git/objects/ce/1cfb7b85813a5a692f9cf396d375914e915485 deleted file mode 100644 index 80ac253..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ce/1cfb7b85813a5a692f9cf396d375914e915485 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ce/2c0eb5f5fb025990e6d0b0f1f908456863f2ae b/common/.oh-my-zsh/.git/objects/ce/2c0eb5f5fb025990e6d0b0f1f908456863f2ae deleted file mode 100644 index 8a75743..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ce/2c0eb5f5fb025990e6d0b0f1f908456863f2ae and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ce/36db6af621c33d09a44bd63ab6c40c7ad400dd b/common/.oh-my-zsh/.git/objects/ce/36db6af621c33d09a44bd63ab6c40c7ad400dd deleted file mode 100644 index e933925..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ce/36db6af621c33d09a44bd63ab6c40c7ad400dd and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ce/ff134e50c6981d17b971d06d3f9e02f3097d8a b/common/.oh-my-zsh/.git/objects/ce/ff134e50c6981d17b971d06d3f9e02f3097d8a deleted file mode 100644 index 21e48ee..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ce/ff134e50c6981d17b971d06d3f9e02f3097d8a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/cf/1997c5be62ffeebc99253cced7608415e38e4e b/common/.oh-my-zsh/.git/objects/cf/1997c5be62ffeebc99253cced7608415e38e4e deleted file mode 100644 index 7261f14..0000000 --- a/common/.oh-my-zsh/.git/objects/cf/1997c5be62ffeebc99253cced7608415e38e4e +++ /dev/null @@ -1,3 +0,0 @@ -x%̱ -0FagBnQ9I& 7>|3Aԛy뮗wi.cX | -Ї}D=eF,zƐ)‹$n2ALeo),\~\m4o \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/cf/1cecbd9a6117785459593c8c4f12bfd5293778 b/common/.oh-my-zsh/.git/objects/cf/1cecbd9a6117785459593c8c4f12bfd5293778 deleted file mode 100644 index dafedb4..0000000 Binary files a/common/.oh-my-zsh/.git/objects/cf/1cecbd9a6117785459593c8c4f12bfd5293778 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/cf/907b755afdca14c00be0010962d0861af29264 b/common/.oh-my-zsh/.git/objects/cf/907b755afdca14c00be0010962d0861af29264 deleted file mode 100644 index 32f1f6a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/cf/907b755afdca14c00be0010962d0861af29264 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d0/14084febd3cd165944eae633461db038c05c42 b/common/.oh-my-zsh/.git/objects/d0/14084febd3cd165944eae633461db038c05c42 deleted file mode 100644 index f2d57c3..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d0/14084febd3cd165944eae633461db038c05c42 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d0/29c9996bb00ea37aa109235c893a6da5f293bf b/common/.oh-my-zsh/.git/objects/d0/29c9996bb00ea37aa109235c893a6da5f293bf deleted file mode 100644 index a26fd8c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d0/29c9996bb00ea37aa109235c893a6da5f293bf and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d0/4c2222d2450edc04a60dd376b555c2c2b4ec79 b/common/.oh-my-zsh/.git/objects/d0/4c2222d2450edc04a60dd376b555c2c2b4ec79 deleted file mode 100644 index cb95b9d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d0/4c2222d2450edc04a60dd376b555c2c2b4ec79 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d0/5b2010ffd4cd33ff9402c402051b1caf985d97 b/common/.oh-my-zsh/.git/objects/d0/5b2010ffd4cd33ff9402c402051b1caf985d97 deleted file mode 100644 index 01ec6ac..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d0/5b2010ffd4cd33ff9402c402051b1caf985d97 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d0/d51cb47bc098ba1cb44c99df020d6fab2821c3 b/common/.oh-my-zsh/.git/objects/d0/d51cb47bc098ba1cb44c99df020d6fab2821c3 deleted file mode 100644 index 5ceab86..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d0/d51cb47bc098ba1cb44c99df020d6fab2821c3 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d1/59f20e07f9a384e47e4cc16b78cce80aeeeef6 b/common/.oh-my-zsh/.git/objects/d1/59f20e07f9a384e47e4cc16b78cce80aeeeef6 deleted file mode 100644 index 1ed1641..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d1/59f20e07f9a384e47e4cc16b78cce80aeeeef6 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d1/5ec4bf248cf091fb31dd10da066c040abcd744 b/common/.oh-my-zsh/.git/objects/d1/5ec4bf248cf091fb31dd10da066c040abcd744 deleted file mode 100644 index bf522d2..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d1/5ec4bf248cf091fb31dd10da066c040abcd744 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d1/64367c586ce0aafba47e14438af2f6d56d206a b/common/.oh-my-zsh/.git/objects/d1/64367c586ce0aafba47e14438af2f6d56d206a deleted file mode 100644 index 0de0db0..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d1/64367c586ce0aafba47e14438af2f6d56d206a and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d1/65a84dc0e8d2eb0774ed26995e7046c0aff41f b/common/.oh-my-zsh/.git/objects/d1/65a84dc0e8d2eb0774ed26995e7046c0aff41f deleted file mode 100644 index c3249c7..0000000 --- a/common/.oh-my-zsh/.git/objects/d1/65a84dc0e8d2eb0774ed26995e7046c0aff41f +++ /dev/null @@ -1 +0,0 @@ -xOIN0Wۻ2?hۙeq=8VV^Л FjAXBdU|aB1{1ըq6da"+OC.8<#S#'~|Ѻ@ׅڜמ7X=&~W6z \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/d3/7e9aa15b1196b2c60116afa4ffa613397f2185 b/common/.oh-my-zsh/.git/objects/d3/7e9aa15b1196b2c60116afa4ffa613397f2185 deleted file mode 100644 index 2894b0f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d3/7e9aa15b1196b2c60116afa4ffa613397f2185 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d4/2584f1a49b6236f2104fd8e54837e678a10a01 b/common/.oh-my-zsh/.git/objects/d4/2584f1a49b6236f2104fd8e54837e678a10a01 deleted file mode 100644 index 78dc25d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d4/2584f1a49b6236f2104fd8e54837e678a10a01 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d5/72c65d54ee553b0492a02460267295734189ae b/common/.oh-my-zsh/.git/objects/d5/72c65d54ee553b0492a02460267295734189ae deleted file mode 100644 index d50f268..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d5/72c65d54ee553b0492a02460267295734189ae and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d5/7e574e28eeabdc2d41eb877fb0df46534a28b4 b/common/.oh-my-zsh/.git/objects/d5/7e574e28eeabdc2d41eb877fb0df46534a28b4 deleted file mode 100644 index 9207f39..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d5/7e574e28eeabdc2d41eb877fb0df46534a28b4 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d5/bfbf05d16634fa3c2834c7097edb1cf2487d96 b/common/.oh-my-zsh/.git/objects/d5/bfbf05d16634fa3c2834c7097edb1cf2487d96 deleted file mode 100644 index 0ba81f8..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d5/bfbf05d16634fa3c2834c7097edb1cf2487d96 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d5/e5fe1d15dca13a270de99fa21406192beb4a87 b/common/.oh-my-zsh/.git/objects/d5/e5fe1d15dca13a270de99fa21406192beb4a87 deleted file mode 100644 index cb26ee1..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d5/e5fe1d15dca13a270de99fa21406192beb4a87 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d6/5bf2c998c5161c8fdd1ae1a6779ce20ef6db93 b/common/.oh-my-zsh/.git/objects/d6/5bf2c998c5161c8fdd1ae1a6779ce20ef6db93 deleted file mode 100644 index def6c72..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d6/5bf2c998c5161c8fdd1ae1a6779ce20ef6db93 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d6/71f1e8432752d90d9f2e4e65450b5f69ab9d5f b/common/.oh-my-zsh/.git/objects/d6/71f1e8432752d90d9f2e4e65450b5f69ab9d5f deleted file mode 100644 index 39652ec..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d6/71f1e8432752d90d9f2e4e65450b5f69ab9d5f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d7/50e7d9e3b7d04bafc93211f7db4c607ecea19b b/common/.oh-my-zsh/.git/objects/d7/50e7d9e3b7d04bafc93211f7db4c607ecea19b deleted file mode 100644 index 9ece9c0..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d7/50e7d9e3b7d04bafc93211f7db4c607ecea19b and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d7/c2aef80e8e124486adf1cd31478c530ab2d72d b/common/.oh-my-zsh/.git/objects/d7/c2aef80e8e124486adf1cd31478c530ab2d72d deleted file mode 100644 index f993c64..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d7/c2aef80e8e124486adf1cd31478c530ab2d72d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d8/55c244552ebd6e2b418108c0d3cce1f8fa7202 b/common/.oh-my-zsh/.git/objects/d8/55c244552ebd6e2b418108c0d3cce1f8fa7202 deleted file mode 100644 index eb74e1f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d8/55c244552ebd6e2b418108c0d3cce1f8fa7202 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/d9/98151e654dd546edcfdec630bc82d90619ac8e b/common/.oh-my-zsh/.git/objects/d9/98151e654dd546edcfdec630bc82d90619ac8e deleted file mode 100644 index 6f8aa45..0000000 Binary files a/common/.oh-my-zsh/.git/objects/d9/98151e654dd546edcfdec630bc82d90619ac8e and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/da/ba01b64d2a38f775a3615b36bff493324a9722 b/common/.oh-my-zsh/.git/objects/da/ba01b64d2a38f775a3615b36bff493324a9722 deleted file mode 100644 index 63f72be..0000000 Binary files a/common/.oh-my-zsh/.git/objects/da/ba01b64d2a38f775a3615b36bff493324a9722 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/da/ce87ae361722c0332c18e5470ca10f16720f7f b/common/.oh-my-zsh/.git/objects/da/ce87ae361722c0332c18e5470ca10f16720f7f deleted file mode 100644 index b44c686..0000000 Binary files a/common/.oh-my-zsh/.git/objects/da/ce87ae361722c0332c18e5470ca10f16720f7f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/dd/afaf65fb8c968278f66a84d23f518f4c91dae6 b/common/.oh-my-zsh/.git/objects/dd/afaf65fb8c968278f66a84d23f518f4c91dae6 deleted file mode 100644 index 14a833c..0000000 --- a/common/.oh-my-zsh/.git/objects/dd/afaf65fb8c968278f66a84d23f518f4c91dae6 +++ /dev/null @@ -1,2 +0,0 @@ -xKN0DY-_GB K6h۝IFIl1 .TR=UH:WPV 6 a4 -i2Ï1Fx]-?Xd] ѼzCp*6N΋~ny?M \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/de/e54a2477d2a5be5d6cced7497f539ecfc2e05f b/common/.oh-my-zsh/.git/objects/de/e54a2477d2a5be5d6cced7497f539ecfc2e05f deleted file mode 100644 index 3b6216f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/de/e54a2477d2a5be5d6cced7497f539ecfc2e05f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/df/f849f8c7640e6f1959232a0a74a207a8d1f94c b/common/.oh-my-zsh/.git/objects/df/f849f8c7640e6f1959232a0a74a207a8d1f94c deleted file mode 100644 index acaee5f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/df/f849f8c7640e6f1959232a0a74a207a8d1f94c and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e0/7eb905b55b323a1d3ccbeac851f783c8cc9b42 b/common/.oh-my-zsh/.git/objects/e0/7eb905b55b323a1d3ccbeac851f783c8cc9b42 deleted file mode 100644 index e741ef5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e0/7eb905b55b323a1d3ccbeac851f783c8cc9b42 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e0/ee002fce6c04ed5661e3f341b3279d358bf3b2 b/common/.oh-my-zsh/.git/objects/e0/ee002fce6c04ed5661e3f341b3279d358bf3b2 deleted file mode 100644 index d70fa22..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e0/ee002fce6c04ed5661e3f341b3279d358bf3b2 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e0/f6e052c71fedabcecbdc4f8968419da50d8e56 b/common/.oh-my-zsh/.git/objects/e0/f6e052c71fedabcecbdc4f8968419da50d8e56 deleted file mode 100644 index bfbc6b8..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e0/f6e052c71fedabcecbdc4f8968419da50d8e56 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e2/ddf1ef8c1147586a11c25007b201e9cbcfe278 b/common/.oh-my-zsh/.git/objects/e2/ddf1ef8c1147586a11c25007b201e9cbcfe278 deleted file mode 100644 index 0495367..0000000 --- a/common/.oh-my-zsh/.git/objects/e2/ddf1ef8c1147586a11c25007b201e9cbcfe278 +++ /dev/null @@ -1,3 +0,0 @@ -xAN ENͧԨq8smc)Ԩpvsrs5xUISV -19i&T -Р,:9VJˢNMiRI mqh1}%$x>*۪3giwRXJ7uS01dȅ4ߩN 8m \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/e2/f7623534054645e849db42a0030a1642e5ba97 b/common/.oh-my-zsh/.git/objects/e2/f7623534054645e849db42a0030a1642e5ba97 deleted file mode 100644 index c0593cc..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e2/f7623534054645e849db42a0030a1642e5ba97 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e3/60344b096676864471314519f9637f67655ad4 b/common/.oh-my-zsh/.git/objects/e3/60344b096676864471314519f9637f67655ad4 deleted file mode 100644 index 778ee29..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e3/60344b096676864471314519f9637f67655ad4 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e3/e3e88c3cf5a0308d982280eaa690a0f16d1902 b/common/.oh-my-zsh/.git/objects/e3/e3e88c3cf5a0308d982280eaa690a0f16d1902 deleted file mode 100644 index cc46b2a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e3/e3e88c3cf5a0308d982280eaa690a0f16d1902 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e3/ff4b58c6b0012c616ea7a1dc44cde7a2ecfb57 b/common/.oh-my-zsh/.git/objects/e3/ff4b58c6b0012c616ea7a1dc44cde7a2ecfb57 deleted file mode 100644 index dd1ec30..0000000 --- a/common/.oh-my-zsh/.git/objects/e3/ff4b58c6b0012c616ea7a1dc44cde7a2ecfb57 +++ /dev/null @@ -1,5 +0,0 @@ -xKn0D)zEwFad\àa~~4ۧM9@VUzsao9"[~ZصSj#*F`EUDamQ]UK.rpy"IKeJB[T2FusYm?k?e'+wdA+nˍ<nS o,80& -ҝ0 -P WmӐ癚1 A ȧ8#2=ʝ)ư -tI9jiG\< -RN/M|>5REȡF,ή2-d)?$XI*^yW&SΌ~\i r ԊKx?8 \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/e4/7391ca6b9477e091152093e4582fe5aa6188cc b/common/.oh-my-zsh/.git/objects/e4/7391ca6b9477e091152093e4582fe5aa6188cc deleted file mode 100644 index 1b15a4f..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e4/7391ca6b9477e091152093e4582fe5aa6188cc and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e4/ca4facd65707c1f2ada112fb8781664439e637 b/common/.oh-my-zsh/.git/objects/e4/ca4facd65707c1f2ada112fb8781664439e637 deleted file mode 100644 index 0d2511a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e4/ca4facd65707c1f2ada112fb8781664439e637 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e5/244fd569ec31e1c756b867515acc39a2639ba1 b/common/.oh-my-zsh/.git/objects/e5/244fd569ec31e1c756b867515acc39a2639ba1 deleted file mode 100644 index b3283f0..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e5/244fd569ec31e1c756b867515acc39a2639ba1 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e5/93dff85bd2b03be757f78c3b4101acd3b8e308 b/common/.oh-my-zsh/.git/objects/e5/93dff85bd2b03be757f78c3b4101acd3b8e308 deleted file mode 100644 index 6311538..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e5/93dff85bd2b03be757f78c3b4101acd3b8e308 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e5/ca18a4e2a5d9700a27af71dd53b7bd771d3409 b/common/.oh-my-zsh/.git/objects/e5/ca18a4e2a5d9700a27af71dd53b7bd771d3409 deleted file mode 100644 index c83e7b2..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e5/ca18a4e2a5d9700a27af71dd53b7bd771d3409 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e6/fc2c6748ab32430012d0d572fb06b6b3e6daca b/common/.oh-my-zsh/.git/objects/e6/fc2c6748ab32430012d0d572fb06b6b3e6daca deleted file mode 100644 index a673c48..0000000 --- a/common/.oh-my-zsh/.git/objects/e6/fc2c6748ab32430012d0d572fb06b6b3e6daca +++ /dev/null @@ -1,3 +0,0 @@ -xOJ1<_Ѡt2y EՋIz:#2wV(+(Gɒ -$:Ϩ#e@cX'y,(EV 8eVVmk|L Ո:Ҝb44SBgS26(Ôa; x侇K>\BO5MZWS(VjU[]Pm8e]%>7;o - zNp;q \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/e7/0a29c1cf68a08338e37c29c4a0cafe2d09caa9 b/common/.oh-my-zsh/.git/objects/e7/0a29c1cf68a08338e37c29c4a0cafe2d09caa9 deleted file mode 100644 index 03fa49a..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e7/0a29c1cf68a08338e37c29c4a0cafe2d09caa9 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e7/c99c905168768940f55097e7253c935b33b3d5 b/common/.oh-my-zsh/.git/objects/e7/c99c905168768940f55097e7253c935b33b3d5 deleted file mode 100644 index d061937..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e7/c99c905168768940f55097e7253c935b33b3d5 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e7/fc3fa3aac96d33f33a7d71638ac629bbd777ee b/common/.oh-my-zsh/.git/objects/e7/fc3fa3aac96d33f33a7d71638ac629bbd777ee deleted file mode 100644 index 7d0097b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e7/fc3fa3aac96d33f33a7d71638ac629bbd777ee and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e8/e2ec015cd86001fc7a117c857f4cf64c3b620f b/common/.oh-my-zsh/.git/objects/e8/e2ec015cd86001fc7a117c857f4cf64c3b620f deleted file mode 100644 index 79c7d26..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e8/e2ec015cd86001fc7a117c857f4cf64c3b620f and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/e9/a9deacb09196a48a39adc827d861e1896f4c59 b/common/.oh-my-zsh/.git/objects/e9/a9deacb09196a48a39adc827d861e1896f4c59 deleted file mode 100644 index 3b80787..0000000 Binary files a/common/.oh-my-zsh/.git/objects/e9/a9deacb09196a48a39adc827d861e1896f4c59 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/eb/1ba24509420cee7ea0273cf24ab1fbcad29eaf b/common/.oh-my-zsh/.git/objects/eb/1ba24509420cee7ea0273cf24ab1fbcad29eaf deleted file mode 100644 index 2e0156c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/eb/1ba24509420cee7ea0273cf24ab1fbcad29eaf and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/eb/46ec0902a6bb687cd707a3b6700a24ae9745f4 b/common/.oh-my-zsh/.git/objects/eb/46ec0902a6bb687cd707a3b6700a24ae9745f4 deleted file mode 100644 index 389d843..0000000 Binary files a/common/.oh-my-zsh/.git/objects/eb/46ec0902a6bb687cd707a3b6700a24ae9745f4 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ec/6f03ba34d95decc204f0c928fb127956ac0435 b/common/.oh-my-zsh/.git/objects/ec/6f03ba34d95decc204f0c928fb127956ac0435 deleted file mode 100644 index 30abcf5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ec/6f03ba34d95decc204f0c928fb127956ac0435 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ed/0a30358d97c951d31de0ad3bc304bdc3d62dc3 b/common/.oh-my-zsh/.git/objects/ed/0a30358d97c951d31de0ad3bc304bdc3d62dc3 deleted file mode 100644 index 73ff542..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ed/0a30358d97c951d31de0ad3bc304bdc3d62dc3 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ed/932ee89fae5965f74bdad6cd65a18cfa696640 b/common/.oh-my-zsh/.git/objects/ed/932ee89fae5965f74bdad6cd65a18cfa696640 deleted file mode 100644 index b61bc97..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ed/932ee89fae5965f74bdad6cd65a18cfa696640 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ed/c6fa2354894e15beea10c5fb27ae8851eaccb5 b/common/.oh-my-zsh/.git/objects/ed/c6fa2354894e15beea10c5fb27ae8851eaccb5 deleted file mode 100644 index fcb737e..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ed/c6fa2354894e15beea10c5fb27ae8851eaccb5 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ef/4c08e51421a6c5aad989307444ae037b2b0cbc b/common/.oh-my-zsh/.git/objects/ef/4c08e51421a6c5aad989307444ae037b2b0cbc deleted file mode 100644 index eb8571b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ef/4c08e51421a6c5aad989307444ae037b2b0cbc and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ef/4c6d740d8abd92e0fb647906c172050748caa0 b/common/.oh-my-zsh/.git/objects/ef/4c6d740d8abd92e0fb647906c172050748caa0 deleted file mode 100644 index cc88c6b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ef/4c6d740d8abd92e0fb647906c172050748caa0 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ef/579702e859d664d68bde5260b8734ed788edaf b/common/.oh-my-zsh/.git/objects/ef/579702e859d664d68bde5260b8734ed788edaf deleted file mode 100644 index eade929..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ef/579702e859d664d68bde5260b8734ed788edaf and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f1/4a9b0feac6d46d843a95fe11af537dfbbe5f86 b/common/.oh-my-zsh/.git/objects/f1/4a9b0feac6d46d843a95fe11af537dfbbe5f86 deleted file mode 100644 index b47e533..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f1/4a9b0feac6d46d843a95fe11af537dfbbe5f86 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f2/2ce2719375ead781f6420d3255b7e1915004a2 b/common/.oh-my-zsh/.git/objects/f2/2ce2719375ead781f6420d3255b7e1915004a2 deleted file mode 100644 index f25ec6d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f2/2ce2719375ead781f6420d3255b7e1915004a2 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f3/bcf864b2e1255788c795fc4774260c686b2de6 b/common/.oh-my-zsh/.git/objects/f3/bcf864b2e1255788c795fc4774260c686b2de6 deleted file mode 100644 index 998afd9..0000000 --- a/common/.oh-my-zsh/.git/objects/f3/bcf864b2e1255788c795fc4774260c686b2de6 +++ /dev/null @@ -1,2 +0,0 @@ -xO;n0 SI%Ke(z.HSri)An_@/Ѕ#߇ҲLL矲0qPCӚGC;{o hf kJ) -عX:eLw&FSJ:q YK#*&|IxSwgxrrNXmZ=x +m˙a+UYj(ioi6IibW}J+)Ӆ5 zi \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/f4/4077d4bf67cd8bf196326760f7069fa73aef49 b/common/.oh-my-zsh/.git/objects/f4/4077d4bf67cd8bf196326760f7069fa73aef49 deleted file mode 100644 index 7231c47..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f4/4077d4bf67cd8bf196326760f7069fa73aef49 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f5/067d689be0f2e93c3ba524159d86c2fd9dd0b3 b/common/.oh-my-zsh/.git/objects/f5/067d689be0f2e93c3ba524159d86c2fd9dd0b3 deleted file mode 100644 index fc9cb48..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f5/067d689be0f2e93c3ba524159d86c2fd9dd0b3 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f5/7f2974b40d27f43431479fcd43f607a02966ef b/common/.oh-my-zsh/.git/objects/f5/7f2974b40d27f43431479fcd43f607a02966ef deleted file mode 100644 index fb70f19..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f5/7f2974b40d27f43431479fcd43f607a02966ef and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f5/a445e49a15d964002c279d3b04b4a4f2ba9579 b/common/.oh-my-zsh/.git/objects/f5/a445e49a15d964002c279d3b04b4a4f2ba9579 deleted file mode 100644 index 0d1918b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f5/a445e49a15d964002c279d3b04b4a4f2ba9579 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f7/50893837bf7dfb8504a7aa73720f75a739b143 b/common/.oh-my-zsh/.git/objects/f7/50893837bf7dfb8504a7aa73720f75a739b143 deleted file mode 100644 index 8245086..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f7/50893837bf7dfb8504a7aa73720f75a739b143 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f8/87e1eaa58e73648afd0280d079c15528ca6ef4 b/common/.oh-my-zsh/.git/objects/f8/87e1eaa58e73648afd0280d079c15528ca6ef4 deleted file mode 100644 index 86a9954..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f8/87e1eaa58e73648afd0280d079c15528ca6ef4 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/f9/018c5efbb6cf164139009eff1863837d72b412 b/common/.oh-my-zsh/.git/objects/f9/018c5efbb6cf164139009eff1863837d72b412 deleted file mode 100644 index 83ac201..0000000 Binary files a/common/.oh-my-zsh/.git/objects/f9/018c5efbb6cf164139009eff1863837d72b412 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/fa/bcfed43775bb7bfa88473da662c53bd3d0e7f2 b/common/.oh-my-zsh/.git/objects/fa/bcfed43775bb7bfa88473da662c53bd3d0e7f2 deleted file mode 100644 index 41f183b..0000000 Binary files a/common/.oh-my-zsh/.git/objects/fa/bcfed43775bb7bfa88473da662c53bd3d0e7f2 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/fb/04f8d3009c3bec1b48844549ce78d4f3bf233d b/common/.oh-my-zsh/.git/objects/fb/04f8d3009c3bec1b48844549ce78d4f3bf233d deleted file mode 100644 index f1b5cb5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/fb/04f8d3009c3bec1b48844549ce78d4f3bf233d and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/fb/9df4bdd89fa7db15bbe21d23ef4a5097f07652 b/common/.oh-my-zsh/.git/objects/fb/9df4bdd89fa7db15bbe21d23ef4a5097f07652 deleted file mode 100644 index 4c53def..0000000 Binary files a/common/.oh-my-zsh/.git/objects/fb/9df4bdd89fa7db15bbe21d23ef4a5097f07652 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/fb/f82ae62fe03f69af0114011c0d6848a83d4fb3 b/common/.oh-my-zsh/.git/objects/fb/f82ae62fe03f69af0114011c0d6848a83d4fb3 deleted file mode 100644 index aa0180d..0000000 --- a/common/.oh-my-zsh/.git/objects/fb/f82ae62fe03f69af0114011c0d6848a83d4fb3 +++ /dev/null @@ -1 +0,0 @@ -xKj0D)zZ Ӳ,dy9}MUye0mt"١ VkS\E@ }NŚT$A8b2gP)<[tr{lgzQ'x^Fݾ\*hD6 9u+̧Z*&9WNW&b?X \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/fc/05f4124605f94650f799aee86ecb4f324bd6f1 b/common/.oh-my-zsh/.git/objects/fc/05f4124605f94650f799aee86ecb4f324bd6f1 deleted file mode 100644 index 7dbc36c..0000000 Binary files a/common/.oh-my-zsh/.git/objects/fc/05f4124605f94650f799aee86ecb4f324bd6f1 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/fc/e68bbba0be99cfd49f9e46572b2d12d0a86d45 b/common/.oh-my-zsh/.git/objects/fc/e68bbba0be99cfd49f9e46572b2d12d0a86d45 deleted file mode 100644 index f885cf9..0000000 --- a/common/.oh-my-zsh/.git/objects/fc/e68bbba0be99cfd49f9e46572b2d12d0a86d45 +++ /dev/null @@ -1 +0,0 @@ -xIN0EY%nBرrQ&5' qikm]"`c:d[WN)XL,H[܀X[؇z_R3f$#Hge,3'E[rJ%H{ĄSX\xoR}dȗuY2?ezN##v=n5wA&"j].ǁ癇e<]dNz ~0d\~n \ No newline at end of file diff --git a/common/.oh-my-zsh/.git/objects/ff/9edbfaf193848e9ae8c1093278c25c02c4f0c8 b/common/.oh-my-zsh/.git/objects/ff/9edbfaf193848e9ae8c1093278c25c02c4f0c8 deleted file mode 100644 index 9f049d4..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ff/9edbfaf193848e9ae8c1093278c25c02c4f0c8 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/ff/a4c3d04fee8ef7cce025760dc38e7d72aac662 b/common/.oh-my-zsh/.git/objects/ff/a4c3d04fee8ef7cce025760dc38e7d72aac662 deleted file mode 100644 index cc462ce..0000000 Binary files a/common/.oh-my-zsh/.git/objects/ff/a4c3d04fee8ef7cce025760dc38e7d72aac662 and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-4036a1851b5852ed1e5304c8f39fdf494cf0acfd.idx b/common/.oh-my-zsh/.git/objects/pack/pack-4036a1851b5852ed1e5304c8f39fdf494cf0acfd.idx deleted file mode 100644 index d79ed4d..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-4036a1851b5852ed1e5304c8f39fdf494cf0acfd.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-4036a1851b5852ed1e5304c8f39fdf494cf0acfd.pack b/common/.oh-my-zsh/.git/objects/pack/pack-4036a1851b5852ed1e5304c8f39fdf494cf0acfd.pack deleted file mode 100644 index c083119..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-4036a1851b5852ed1e5304c8f39fdf494cf0acfd.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-545a688b85577e929cd7ed1cf9377c6710507024.idx b/common/.oh-my-zsh/.git/objects/pack/pack-545a688b85577e929cd7ed1cf9377c6710507024.idx deleted file mode 100644 index 926f058..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-545a688b85577e929cd7ed1cf9377c6710507024.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-545a688b85577e929cd7ed1cf9377c6710507024.pack b/common/.oh-my-zsh/.git/objects/pack/pack-545a688b85577e929cd7ed1cf9377c6710507024.pack deleted file mode 100644 index 5acc725..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-545a688b85577e929cd7ed1cf9377c6710507024.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-637994060bcbfc0a1c3cd71824537418ce32879f.idx b/common/.oh-my-zsh/.git/objects/pack/pack-637994060bcbfc0a1c3cd71824537418ce32879f.idx deleted file mode 100644 index d65da24..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-637994060bcbfc0a1c3cd71824537418ce32879f.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-637994060bcbfc0a1c3cd71824537418ce32879f.pack b/common/.oh-my-zsh/.git/objects/pack/pack-637994060bcbfc0a1c3cd71824537418ce32879f.pack deleted file mode 100644 index 15697c6..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-637994060bcbfc0a1c3cd71824537418ce32879f.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-64f90835b4e76a8d677833b8f2b4877d5a9f3d5e.idx b/common/.oh-my-zsh/.git/objects/pack/pack-64f90835b4e76a8d677833b8f2b4877d5a9f3d5e.idx deleted file mode 100644 index 28c5b82..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-64f90835b4e76a8d677833b8f2b4877d5a9f3d5e.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-64f90835b4e76a8d677833b8f2b4877d5a9f3d5e.pack b/common/.oh-my-zsh/.git/objects/pack/pack-64f90835b4e76a8d677833b8f2b4877d5a9f3d5e.pack deleted file mode 100644 index e521b30..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-64f90835b4e76a8d677833b8f2b4877d5a9f3d5e.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-6a1c6c25307d65fb851f9bdd96f39df94ecf09df.idx b/common/.oh-my-zsh/.git/objects/pack/pack-6a1c6c25307d65fb851f9bdd96f39df94ecf09df.idx deleted file mode 100644 index f8c1dd2..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-6a1c6c25307d65fb851f9bdd96f39df94ecf09df.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-6a1c6c25307d65fb851f9bdd96f39df94ecf09df.pack b/common/.oh-my-zsh/.git/objects/pack/pack-6a1c6c25307d65fb851f9bdd96f39df94ecf09df.pack deleted file mode 100644 index 1be6d88..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-6a1c6c25307d65fb851f9bdd96f39df94ecf09df.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-76bb3196e4bc040d26dfcb5d6107a435df00a139.idx b/common/.oh-my-zsh/.git/objects/pack/pack-76bb3196e4bc040d26dfcb5d6107a435df00a139.idx deleted file mode 100644 index b623604..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-76bb3196e4bc040d26dfcb5d6107a435df00a139.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-76bb3196e4bc040d26dfcb5d6107a435df00a139.pack b/common/.oh-my-zsh/.git/objects/pack/pack-76bb3196e4bc040d26dfcb5d6107a435df00a139.pack deleted file mode 100644 index 8cb9650..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-76bb3196e4bc040d26dfcb5d6107a435df00a139.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-89e379ca203b5cf88dd051bbae34a9bfe9812ded.idx b/common/.oh-my-zsh/.git/objects/pack/pack-89e379ca203b5cf88dd051bbae34a9bfe9812ded.idx deleted file mode 100644 index f5be2dd..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-89e379ca203b5cf88dd051bbae34a9bfe9812ded.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-89e379ca203b5cf88dd051bbae34a9bfe9812ded.pack b/common/.oh-my-zsh/.git/objects/pack/pack-89e379ca203b5cf88dd051bbae34a9bfe9812ded.pack deleted file mode 100644 index 97c1fa5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-89e379ca203b5cf88dd051bbae34a9bfe9812ded.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-94b62ad87fab79a70b04e604f4761819e5e7967e.idx b/common/.oh-my-zsh/.git/objects/pack/pack-94b62ad87fab79a70b04e604f4761819e5e7967e.idx deleted file mode 100644 index f292955..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-94b62ad87fab79a70b04e604f4761819e5e7967e.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-94b62ad87fab79a70b04e604f4761819e5e7967e.pack b/common/.oh-my-zsh/.git/objects/pack/pack-94b62ad87fab79a70b04e604f4761819e5e7967e.pack deleted file mode 100644 index b200dd5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-94b62ad87fab79a70b04e604f4761819e5e7967e.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-e9ceba85461cdb1c4bb4aa6153735603fe48a37c.idx b/common/.oh-my-zsh/.git/objects/pack/pack-e9ceba85461cdb1c4bb4aa6153735603fe48a37c.idx deleted file mode 100644 index 0699ce5..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-e9ceba85461cdb1c4bb4aa6153735603fe48a37c.idx and /dev/null differ diff --git a/common/.oh-my-zsh/.git/objects/pack/pack-e9ceba85461cdb1c4bb4aa6153735603fe48a37c.pack b/common/.oh-my-zsh/.git/objects/pack/pack-e9ceba85461cdb1c4bb4aa6153735603fe48a37c.pack deleted file mode 100644 index 2f77640..0000000 Binary files a/common/.oh-my-zsh/.git/objects/pack/pack-e9ceba85461cdb1c4bb4aa6153735603fe48a37c.pack and /dev/null differ diff --git a/common/.oh-my-zsh/.git/packed-refs b/common/.oh-my-zsh/.git/packed-refs deleted file mode 100644 index c744d8e..0000000 --- a/common/.oh-my-zsh/.git/packed-refs +++ /dev/null @@ -1,4 +0,0 @@ -# pack-refs with: peeled -1120f973054836eeb53750f57d69fbec41a340dc refs/remotes/origin/master -0cc0915bf83c1915575182d1287abfc6dd3e6f3c refs/remotes/origin/nel-fix-title-bar -59bfd87e08c127e6aacf473e99d2ebbc20e633ff refs/remotes/origin/plugins diff --git a/common/.oh-my-zsh/.git/refs/heads/master b/common/.oh-my-zsh/.git/refs/heads/master deleted file mode 100644 index af6a4d1..0000000 --- a/common/.oh-my-zsh/.git/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -b6ea876971b2270a2c73a07a6f6a337604132c6f diff --git a/common/.oh-my-zsh/.git/refs/remotes/origin/HEAD b/common/.oh-my-zsh/.git/refs/remotes/origin/HEAD deleted file mode 100644 index 6efe28f..0000000 --- a/common/.oh-my-zsh/.git/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/master diff --git a/common/.oh-my-zsh/.git/refs/remotes/origin/master b/common/.oh-my-zsh/.git/refs/remotes/origin/master deleted file mode 100644 index 474fc3c..0000000 --- a/common/.oh-my-zsh/.git/refs/remotes/origin/master +++ /dev/null @@ -1 +0,0 @@ -d750e7d9e3b7d04bafc93211f7db4c607ecea19b diff --git a/common/.oh-my-zsh/.gitignore b/common/.oh-my-zsh/.gitignore deleted file mode 100644 index 51a5ee6..0000000 --- a/common/.oh-my-zsh/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -locals.zsh -log/.zsh_history -projects.zsh -custom/* -!custom/example -!custom/example.zsh -*.swp -!custom/example.zshcache -cache/ diff --git a/common/.oh-my-zsh/MIT-LICENSE.txt b/common/.oh-my-zsh/MIT-LICENSE.txt deleted file mode 100644 index f6edab6..0000000 --- a/common/.oh-my-zsh/MIT-LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License - -Copyright (c) 2009-2013 Robby Russell and contributors (see https://github.com/robbyrussell/oh-my-zsh/contributors) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/common/.oh-my-zsh/README.textile b/common/.oh-my-zsh/README.textile deleted file mode 100644 index 5f80674..0000000 --- a/common/.oh-my-zsh/README.textile +++ /dev/null @@ -1,95 +0,0 @@ -oh-my-zsh is an open source, community-driven framework for managing your ZSH configuration. It comes bundled with a ton of helpful functions, helpers, plugins, themes, and few things that make you shout... - -bq. "OH MY ZSHELL!" - -h2. Setup - -@oh-my-zsh@ should work with any recent release of "zsh":http://www.zsh.org/, the minimum recommended version is 4.3.9. - -h3. The automatic installer... (do you trust me?) - -You can install this via the command line with either `curl` or `wget`. - -h4. via `curl` - -@curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh@ - -h4. via `wget` - -@wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh@ - -h3. The manual way - - -1. Clone the repository - - @git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh@ - -2. *OPTIONAL* Backup your existing ~/.zshrc file - - @cp ~/.zshrc ~/.zshrc.orig@ - -3. Create a new zsh config by copying the zsh template we've provided. - - @cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc@ - - -4. Set zsh as your default shell: - - @chsh -s /bin/zsh@ - -5. Start / restart zsh (open a new terminal is easy enough...) - -h3. Problems? - -You _might_ need to modify your PATH in ~/.zshrc if you're not able to find some commands after switching to _Oh My Zsh_. - -h2. Usage - -* enable the plugins you want in your @~/.zshrc@ (take a look at @plugins/@ to see what's possible) -** example: @plugins=(git osx ruby)@ -* Theme support: Change the @ZSH_THEME@ environment variable in @~/.zshrc@. -** Take a look at the "current themes":https://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with _Oh My Zsh_. -* much much more... take a look at @lib/@ what _Oh My Zsh_ offers... - -h2. Useful - -the "refcard":http://www.bash2zsh.com/zsh_refcard/refcard.pdf is pretty tasty for tips. - -h3. Customization - -If you want to override any of the default behavior, just add a new file (ending in @.zsh@) into the @custom/@ directory. -If you have many functions which go well together you can put them as a *.plugin.zsh file in the @custom/plugins/@ directory and then enable this plugin. -If you would like to override the functionality of a plugin distributed with oh-my-zsh, create a plugin of the same name in the @custom/plugins/@ directory and it will be loaded instead of the one in @plugins/@. - -h3. Updates - -By default you will be prompted to check for updates. If you would like oh-my-zsh to automatically update itself without prompting you, set the following in your ~/.zshrc - -@DISABLE_UPDATE_PROMPT=true@ - -To disable updates entirely, put this in your ~/.zshrc - -@DISABLE_AUTO_UPDATE=true@ - -h3. Uninstalling - -If you want to uninstall it, just run @uninstall_oh_my_zsh@ from the command line and it'll remove itself and revert you to bash (or your previous zsh config). - -h2. Help out! - -I'm far from being a zsh-expert and suspect there are many ways to improve. If you have ideas on how to make the configuration easier to maintain (and faster), don't hesitate to fork and send pull requests! - -h3. (Don't) Send us your theme! (for now) - --I'm hoping to collect a bunch of themes for our command prompts. You can see existing ones in the @themes/@ directory.- - -We have enough themes for the time being. Please fork the project and add on in there, you can let people know how to grab it from there. - -h2. Contributors - -This project wouldn't exist without all of our awesome users and contributors. - -* "View our growing list of contributors":https://github.com/robbyrussell/oh-my-zsh/contributors - -Thank you so much! diff --git a/common/.oh-my-zsh/cache/DEBS_avail b/common/.oh-my-zsh/cache/DEBS_avail deleted file mode 100644 index f663cc3..0000000 --- a/common/.oh-my-zsh/cache/DEBS_avail +++ /dev/null @@ -1 +0,0 @@ -_deb_packages_cache_avail=( 'libmrpt-hmtslam0.9' 'gcc-4.6-arm-linux-gnueabi-base' 'openoffice.org-l10n-mn' 'g++-4.5-multilib' 'xserver-xorg-video-cirrus-lts-quantal' 'tesseract-ocr-epo' 'pipenightdreams' 'mumudvb' 'mpg123-alsa' 'tbb-examples' 'libsvm-java' 'kcm-touchpad' 'snort-rules-default' 'freediams-doc-fr' 'ebook-speaker' 'davical' 'cutmp3' 'aspell-am' 'libsalck3-dev' 'libgtk-3-0-dbg' 'libc6-xen' 'xserver-xorg' 'openoffice.org-l10n-lt' 'trophy-data' 't38modem' 'pioneers-console' 'packagekit-gtk3-module' 'libxenapi-ocaml-dev' 'libqmi-glib0' 'libbind-config-parser-perl' 'kubuntu-notification-helper-dbg' 'isdnutils-xtools' 'cyrus-admin-2.4' 'bfbtester' 'libsaevt3' 'libgtkspell-3-dev' 'emacs24-lucid' 'ubuntuone-client' 'bitbake' 'wmpuzzle' 'trafshow' 'python-plplot' 'python-djvu-dbg' 'lx-gdb' 'libscm-dev' 'librefdb-client-perl' 'libtaint-util-perl' 'liboptions-java' 'liblog-agent-logger-perl' 'libkeybinder-3.0-dev' 'libgluegen2-jni' 'libccrtp-doc' 'libclass-throwable-perl' 'libkdecorations4abi1' 'kamailio-radius-modules' 'crtmpserver-apps' 'coinor-libvol-doc' 'libclang-common-dev' 'afpfs-ng' 'nabi' 'libsnappy-dev' 'popularity-contest' 'libgfcui-2.0-0c2a-dbg' 'awn-applet-sysmon' 'openoffice.org-l10n-nl' 'openoffice.org-l10n-lv' 'linux-backports-modules-net-3.2.0-38-generic-pae' 'xracer-tools' 'virtuoso-vad-bpel' 'pd-cxc' 'opendrim-lmp-baseserver' 'libvorbisfile-ruby' 'liblocalizer-java' 'libghc-fgl-prof' 'libfacets-ruby-doc' 'libdkim1d-dbg' 'libblacs-mpi-dev' 'lebiniou' 'otf-symbols-circos' 'libmono-addins-gui0.2-cil' 'dict-freedict-spa-eng' 'blender-ogrexml' 'aspell-da' 'x11-apps' 'libhsqldb-java-doc' 'sg3-utils' 'openoffice.org-l10n-mr' 'yorick-yeti-gsl' 'scilab-minimal-bin' 'qashctl' 'plasma-widget-cpuload' 'mcpp' 'mathgl-doc-en' 'libspring-webflow-2.0-java-doc' 'libopencv-stitching-dev' 'libmtbl0-dbg' 'libghc-blaze-builder-dev' 'libghc-bitarray-prof' 'libdolfin1.0-dbg' 'libhtml-clean-perl' 'asterisk-dbg' 'apt-dater-dbg' 'antlr3-maven-plugin' 'python-pymssql' 'language-pack-gnome-yo' 'gir1.2-folks-0.6' 'python-crypto' 'libghc6-primitive-dev' 'libghc6-haskell-lexer-prof' 'openoffice.org-l10n-nn' 'linux-image-extra-3.2.0-32-virtual' 'linux-image-extra-3.2.0-27-virtual' 'svn-autoreleasedeb' 'sugar-terminal-activity' 'python-gamera.toolkits.ocr' 'muffin' 'mii-diag' 'maria-doc' 'live-build-cgi' 'libterm-vt102-perl' 'libplexus-component-api-java-doc' 'libplasma4-perl' 'libofa0-dev' 'libhugs-hgl-bundled' 'libhttp-parser-xs-perl' 'libghc-resource-pool-dev' 'libghc-lrucache-dev' 'knetwalk' 'k3b-i18n' 'gosa-plugin-fai-schema' 'gobjc++-arm-linux-gnueabi' 'gnome-panel-control' 'globus-gass-server-ez-dbg' 'freefem3d' 'freecad-doc' 'cakephp-scripts' 'aspell-ar' 'language-pack-gnome-li-base' 'language-pack-gnome-kn-base' 'policykit-1-gnome' 'libghc6-vte-doc' 'awn-applets-all' 'meep-mpi' 'libkasten1controllers1' 'whizzytex' 'mono-2.0-gac' 'memaker' 'lordsawar-data' 'libwriter2latex-java-doc' 'libstxxl-dev' 'rep-doc' 'libopenmpi1.6-dbg' 'libmediawiki-api-perl' 'libapache-session-perl' 'jxplorer' 'ident2' 'grass-core' 'gambas3-gb-option' 'diet-agent' 'browser-plugin-gnash' 'aspell-bn' 'libahven21.0' 'python-pyao-dbg' 'libwacom2-dbg' 'libfuse-dev' 'gfaim-data' 'tesseract-ocr-heb' 'supercat' 'pdlzip' 'openstreetmap-client' 'python-vatnumber' 'opendrim-lmp-systemmemory' 'mathomatic' 'libhtml-display-perl' 'kinput2-common' 'laditools' 'gimp-cbmplugs' 'gauche-c-wrapper' 'debian-reference-en' 'covered-doc' 'aspell-de' 'libopenal1' 'vsftpd' 'python-gtk2-dev' 'x11proto-resource-dev' 'libcglib-java' 'language-pack-kde-ml-base' 'gir1.2-polkit-1.0' 'libperl4caml-ocaml-dev' 'libghc-netwire-prof' 'libmodule-optional-perl' 'landell' 'kpat' 'gnomint' 'galax-doc' 'fxcyberjack' 'efingerd' 'easymp3gain-gtk' 'python-tagpy' 'arandr' 'apt-watch-gnome' 'libgs9-common' 'language-pack-gnome-csb-base' 'lilo' 'geoclue-examples' 'llvm-2.8-runtime' 'libtntdb2' 'libggi-target-monotext' 'openoffice.org-l10n-om' 'openoffice.org-l10n-nr' 'ruby-http-accept-language' 'opennebula' 'libsdl-ruby' 'ruby-phonon' 'libpaq0' 'oar-node' 'liblua5.1-rex-posix-dev' 'llvm-3.0-dev' 'libfastjet-fortran-dev' 'libdbix-class-candy-perl' 'knotes-mobile' 'jmeter-help' 'plplot11-driver-xwin' 'gir1.2-appindicator3-0.1' 'libccscript-dev' 'openoffice.org-l10n-ns' 'libmusicbrainz4-3' 'linux-backports-modules-net-3.2.0-32-generic' 'linux-backports-modules-net-3.2.0-27-generic' 'xblast-tnt-models' 'virtuoso-vad-syncml' 'sisu-complete' 'saods9-doc' 'python-tgext.admin' 'pnopaste' 'mummer-doc' 'libusbip0' 'libtntdb3' 'libpuzzle1' 'gimp-gap' 'fonts-knda-extra' 'aspell-br' 'almanah' 'ttf-manchufont' 'libfolks-telepathy25' 'dosfstools-dbg' 'libghc6-regex-tdfa-dev' 'tuxguitar-jack' 'tesseract-ocr-equ' 'runlim' 'qgis-plugin-grass-common' 'php-mail-mbox' 'monodevelop-nunit' 'owncloud-client' 'lightdm-gtk-greeter' 'libcmph0' 'libauthen-sasl-cyrus-perl' 'libactiviz.net-cil' 'lbreakout2' 'libcgi-ajax-perl' 'greed' 'gis-osm' 'g++-arm-linux-gnueabi' 'qt3-assistant' 'ubuntu-defaults-nexus7' 'gnome-sushi' 'python-gpgme' 'libghc6-haskeline-dev' 'linux-headers-lbm-3.2.0-33-generic' 'xcp-guest-templates' 'resapplet' 'png2html' 'mupen64plus-video-z64' 'mana-data' 'llk-linux' 'libgroboutils-java' 'gtkpool' 'gtkaml' 'dmucs' 'dict-gazetteer2k-zips' 'cereal' 'libwps-doc' 'libecpg6' 'libopencc1' 'gfs2-utils' 'ubuntuone-control-panel' 'openoffice.org-l10n-pl' 'libcublas4' 'linux-image-3.2.0-39-generic' 't-coffee-examples' 'php-horde-webmail' 'libxml-tokeparser-perl' 'libvuser-google-api-perl' 'libtext-context-eitherside-perl' 'libsocket-linux-perl' 'libmono-upnp-cil-dev' 'libinnodb-dev' 'libgstrtspserver-0.10-dev' 'libglyr-dev' 'libboost-regex1.53-dev' 'indicator-multiload' 'feel++-doc' 'aspell-fa' 'afnix-doc' 'libunity-core-6.0-5' 'libboost-regex1.48-dev' 'lib64gfortran3-dbg' 'sane-utils' 'devscripts-el' 'libggi-target-emu' 'gambas2-gb-pdf' 'openoffice.org-l10n-or' 'picon-unknown' 'r-cran-latticeextra' 'owfs-doc' 'octave-sundials' 'libsoil-dev' 'libsamdb-dev' 'libmupen64plus2-dbg' 'liblxc0' 'libhwloc-common' 'libghc-terminfo-dev' 'libuniversal-isa-perl' 'lebiniou-data' 'fonts-gfs-gazis' 'caspar' 'libalgorithm-diff-ruby1.8' 'apitrace-gl-tracers' 'gir1.2-bamf-3' 'dovecot-dbg' 'python-ftputil' 'jppy-lbdb-module' 'libcplui12' 'python-zope.session' 'libsundials-serial-dev' 'ruby-qt4-webkit' 'libjs-htmlparser' 'libjboss-server-java' 'libcryptui-dev' 'libmatthew-java-doc' 'libbasicusageenvironment0' 'libpano13-bin' 'buddycloud-server' 'bochs-sdl' 'libakonadi-socialutils4' 'libmono-compilerservices-symbolwriter4.0-cil' 'libglapi-mesa' 'language-pack-gnome-zu' 'libkcmutils4' 'scim-python-xingma' 'drizzle-dev' 'libsss-sudo0' 'virt-goodies' 'pybridge-common' 'proftpd-mod-tar' 'octave-gdf' 'med-tools' 'lighttpd-dev' 'libstfl-spl' 'libmrpt-hmtslam1.0' 'libjs-jquery-meiomask' 'libjenkins-winstone-java' 'libcsoap1-dbg' 'libmediawiki1' 'katoob' 'libibdm1' 'gosa-plugin-goto' 'gpsbabel' 'debian-reference-fr' 'libglobus-gsi-proxy-core0' 'cmatrix-xfont' 'aspell-cs' 'texlive-lang-finnish' 'account-plugin-yahoojp' 'maas-dns' 'libsaxon-java-gcj' 'libqt3support4-perl' 'gnome-keyring' 'activity-log-manager-control-center' 'koffice-l10n-nds' 'mythtv-frontend' 'rest-bench-dbg' 'powerman' 'ospics' 'libpacparser1' 'libghc-hamlet-dev' 'ipmitool' 'f-spot' 'babel-doc' 'ax25-apps' 'acl2-infix' 'ttf-bitstream-vera' 'tao-utils' 'python-pysqlite2-dbg' 'pysycache-buttons-beerabbit' 'php-horde-secret' 'libwavefront-standalone3.0' 'libmicroba-java-doc' 'libghc-shakespeare-prof' 'html2markdown' 'libcplui20' 'chalow' 'bibledit-data' 'aspell-ga' 'anerd' 'latex-cjk-chinese-arphic-gbsn00lp' 'perlqt-dbg' 'network-manager-openconnect-gnome' 'libsane-dev' 'libpopt-dev' 'checksecurity' 'libkeyutils1' 'android-tools-fsutils' 'libggiwmh0-target-x' 'gforge-mta-courier' 'libplexus-cli-java-doc' 'libghc-brainfuck-dev' 'libbiojava-java-demos' 'libehcache-java' 'kolab-libcyrus-imap-perl' 'i3-wm-dbg' 'libfolia1' 'devilspie2' 'debian-reference-ja' 'aspell-el' 'libidm-console-framework-java' 'libxfixes3-dbg' 'libxcb-doc' 'libstrigiqtdbusclient0' 'fonts-tlwg-mono' 'spf-tools-perl' 'libterm-readline-gnu-perl' 'libghc6-stm-dev' 'wcanadian-small' 'tvflash' 'tesseract-ocr-est' 'swisswatch' 'python3-pyside.phonon' 'librt-client-rest-perl' 'libglobus-gsi-cert-utils-dev' 'libpawlib-lesstif3-gfortran' 'libgit-repository-perl' 'knews' 'hexter' 'gonzui' 'fflas-ffpack' 'coccinelle-doc' 'normalize-audio' 'libppix-regexp-perl' 'libhfsp-dev' 'libplist1' 'libboost-chrono1.48.0' 'openoffice.org-l10n-pt' 'libnepomukdatamanagement4' 'virtuoso-vad-demo' 'tesseract-ocr-fra' 'python-tegakitools' 'python-box2d-doc' 'mp4h' 'libtemplate-plugin-comma-perl' 'libowfat-dietlibc-dev' 'libsvnclientadapter-java' 'libmeep-openmpi6' 'libghc-data-accessor-template-prof' 'libboost-chrono1.53.0' 'libb-hooks-endofscope-perl' 'libast2-dev' 'gretl-data' 'fonts-unfonts-extra' 'fcitx-table-rustrad' 'eclipse-mylyn-wikitext' 'cclib' 'aspell-fi' 'qapt-batch' 'actionaz' 'libcommons-collections3-java' 'gnuplot' 'branding-ubuntu' 'aspell-en' 'openoffice.org-l10n-ta' 'picon-misc' 'xubuntu-live-settings' 'tesseract-ocr-glg' 'shelr' 'ruby-recaptcha' 'plasma-mediacenter-dbg' 'ocaml-core' 'noiz2sa' 'ml-lpt' 'mini-httpd' 'libuima-document-annotation-java' 'libtext-tabulardisplay-perl' 'libtaoframework-ode0.9-cil' 'libquantum-superpositions-perl' 'libjs-gordon' 'libnumber-format-perl' 'libghc-parallel-doc' 'libecasoundc2.2-dev' 'kdepim' 'k4dirstat' 'jhbuild' 'meld' 'aspell-eo' 'aspell-cy' 'libaosd-text2' 'wbritish-huge' 'libavdevice-dev' 'language-pack-id-base' 'language-pack-hi-base' 'dmsetup' 'libpci3' 'apache2-suexec-custom' 'libghc6-non-negative-dev' 'xserver-xorg-input-void-lts-quantal' 'widelands' 'vdr-plugin-epgsearch' 'pianobooster-dbg' 'pekwm-themes' 'ltsp-manager' 'libparallel-iterator-perl' 'libisl-dev' 'liblingua-en-inflect-number-perl' 'libdspam7-drv-mysql' 'libdoodle1' 'dl10n' 'cinnamon' 'blockattack' 'archipel-agent-hypervisor-platformrequest' 'accessodf' 'libfreerdp-dev' 'libjna-java' 'libgtk2.0-common' 'libedit2' 'libclucene0ldbl' 'sagasu' 'python-zope.app.rotterdam' 'php-codecoverage' 'libvdkxdb2-2c2' 'libopenvdb-doc' 'liblasi0' 'libsys-sigaction-perl' 'libbluecloth-ruby' 'kolf' 'viewvc' 'gnustep-dl2-sqlite-adaptor' 'lib64gcc-4.7-dev-powerpc-cross' 'gambas3-gb-qt4-opengl' 'fcitx-libs-gclient' 'coinor-libcbc0-dbg' 'apertium-en-es' 'xcdroast' 'libmono-system-data4.0-cil' 'libjdom1-java-doc' 'libclutter-gst-2.0-dbg' 'ifinnish-large' 'libstdc++6-4.4-dev-armel-cross' 'openoffice.org-l10n-si' 'ruby-redcarpet' 'python3-jsonschema' 'python3-hamcrest' 'pike7.8-manual' 'mtbl-bin' 'msort' 'libsimplelist0' 'libsfmudflap0-dbg-armhf-cross' 'libranlip-dev' 'libnanoxml2-java' 'libghc-persistent-sqlite-doc' 'libghc-acid-state-prof' 'libfastjettools0' 'libdatetime-format-duration-perl' 'libcrypto++-doc' 'libstlport4.6ldbl' 'igstk-doc' 'linux-headers-server' 'libhsqldb-java-gcj' 'language-pack-nso' 'language-pack-si-base' 'bluez-hcidump' 'libkjdsp-java' 'awn-applets-dbg' 'openoffice.org-l10n-te' 'openoffice.org-l10n-ro' 'xserver-xorg-input-all-lts-quantal' 'mgltools-gle' 'seccure' 'rabbitvcs-core' 'python-milter-docs' 'med-statistics' 'lxappearance-dbg' 'libtest-command-simple-perl' 'libqwt-doc' 'libghc-vector-space-dev' 'libdevel-refcount-perl' 'ksystemlog' 'grr.app' 'libgstrtspserver-0.10-0' 'coinor-libcbc0' 'aspell-es' 'mauve' 'libsignon-qt5-1' 'lirc' 'openoffice.org-l10n-sk' 'amiwm' 'syfi-dev' 'qtscript5-examples' 'oftc-hybrid-respond' 'mysqmail-dovecot-logger' 'mic2' 'libxfcegui4-4' 'libvala-0.14-dev' 'uim-pinyin' 'libxine-dev' 'libgldi-dev' 'libghc-network-multicast-prof' 'libghc-hbro-contrib-prof' 'libgeotiff-dev' 'libuhd003' 'bitlbee-dev' 'aspell-he' 'aspell-fo' 'aspell-et' 'libtext-microtemplate-perl' 'unpaper' 'libharfbuzz-dev' 'gstreamer0.10-alsa' 'otf-ipafont' 'openoffice.org-l10n-tg' 'openoffice.org-l10n-sl' 'fonts-cns11643-kai' 'roarplaylistd-tools' 'pcsxr' 'openyahtzee' 'lire' 'libjibx1.2-java' 'libghc-hsx-doc' 'libcss-minifier-perl' 'libboost-math1.53-dev' 'libboost-math1.48-dev' 'knot' 'js-of-ocaml' 'hellanzb' 'gtimer' 'libjlatexmath-java' 'html-helper-mode' 'cruft' 'atanks-dbg' 'ldirectord' 'hplip-doc' 'bluez-alsa' 'openoffice.org-l10n-th' 'xserver-xorg-input-evdev-lts-quantal-dbg' 'ydpdict' 'lubuntu-restricted-extras' 'tesseract-ocr-eus' 'ruby-popen4' 'pdfcube' 'libownet-php' 'libocsync-plugin-smb' 'libmlpcap-ocaml' 'libghc-regex-posix-dev' 'libghc-debian-dev' 'libghc-crypto-conduit-doc' 'libwant-perl' 'libadasockets4' 'ipwatchd-gnotify' 'idutch' 'xlhtml' 'gosa-plugin-pureftpd' 'php-fpdf' 'gbonds' 'ftp-proxy' 'freefem-doc' 'pymacs' 'menu-xdg' 'python-sip-dbg' 'nova-volume' 'libhpmud-dev' 'liborbit2-dev' 'python-fontforge' 'masqmail' 'prelink' 'linux-backports-modules-net-precise-generic' 'trac-mastertickets' 'spf-tools-python' 'piespy' 'monsterz' 'libmoosex-singleton-perl' 'libjettison-java' 'libimdi-dev' 'libconfuse-dev' 'xteddy' 'gimp-texturize' 'gifsicle' 'python-alsaaudio' 'freehdl' 'ttf-jsmath' 'ffado-tools' 'citadel-server' 'bibutils' 'aspell-fr' 'libdbus-c++-doc' 'tesseract-ocr-frk' 'rapid-photo-downloader' 'pgdbf' 'openarena-dbg' 'libpod-2-docbook-perl' 'libosptk3' 'liblicense-icons' 'libghc-language-haskell-extract-prof' 'libtext-multimarkdown-perl' 'hylafax-server-dbg' 'geoclue-localnet' 'libhttpcore-java' 'libsoxr0' 'aspell-id' 'libmath-bigint-perl' 'evolution-common' 'aspell-hi' 'openoffice.org-l10n-ru' 'xserver-xorg-lts-precise' 'shr-specs' 'nethogs' 'mecab-jumandic-utf8' 'ocsigen-dev' 'libnvtoolsext5.0' 'libghc-gsasl-dev' 'libghc-case-insensitive-prof' 'libdesktop-agnostic-fdo-gio' 'libdcerpc0' 'libasm2-java-doc' 'komi' 'libmusicbrainz5-0' 'python-swift' 'libmono-system-runtime-caching4.0-cil' 'libmetacity-private0a' 'mesa-utils' 'libtao-foxresource-dev' 'libboost-system1.48.0' 'openoffice.org-l10n-ug' 'tesseract-ocr-frm' 'ruby-columnize' 'python-spyderlib' 'lives-dbg' 'libvirt-ocaml-dev' 'libtulip-dev' 'libtie-cphash-perl' 'librqrcode-ruby1.8' 'libmodello-maven-plugin1.4-java' 'libjconv-bin' 'libghc-socks-prof' 'libcommons-jxpath-java-doc' 'libboost-system1.53.0' 'libantlr3-gunit-java-doc' 'junior-sound' 'libswing-layout-java' 'debian-reference-it' 'claws-mail-spamassassin' 'chromium-browser-l10n' '9wm' 'pwgen' 'libapparmor-dev' 'indent-doc' 'fetchexc' 'openoffice.org-l10n-sr' 'openoffice.org-l10n-rw' 'r-cran-rggobi' 'nyancat-server' 'mazeofgalious' 'libzorpll-dev' 'libsigrok0-dev' 'librqrcode-ruby1.9' 'libgettext-activerecord-ruby1.8' 'libgeocode-glib-dbg' 'kdevelop-l10n' 'jmeter-junit' 'fookb-plainx' 'fcitx-table-wanfeng' 'libdolfin1.0-dev' 'asterisk-dev' 'qt5-qmake' 'libxml-parser-lite-tree-perl' 'libsdl1.2debian' 'gstreamer0.10-plugins-bad-dbg' 'casper' 'drizzle-plugin-pbms' 'openoffice.org-l10n-tn' 'openoffice.org-l10n-ss' 'php-text-captcha' 'oaklisp' 'libpcl1' 'libmonkey-patch-perl' 'libmenu-cache-dbg' 'libghc-blaze-builder-doc' 'libextutils-typemaps-default-perl' 'gcc-4.5-arm-linux-gnueabi' 'libstdc++6-4.7-dbg-arm64-cross' 'dvdrip-queue' '7kaa-data' 'matchbox-window-manager' 'liblqr-1-0-dbg' 'libatomic-ops-dev' 'python-pytrilinos' 'libghc6-primitive-doc' 'openoffice.org-l10n-ve' 'openoffice.org-l10n-st' 'vocproc' 'tk-brief' 'psychtoolbox-3-dbg' 'libopenmpi1.6-dev' 'libivykis0-dbg' 'libghc-resource-pool-doc' 'libghc-lrucache-doc' 'libbtparse-dev' 'kamailio-mysql-modules' 'gptsync' 'g2p-sk' 'mingw-w64' 'bwctl-client' 'librados-dev' 'libdlmcontrol3' 'xserver-xorg-video-rendition' 'melange-client' 'awn-applet-awn-notification-daemon' 'openoffice.org-l10n-uk' 'python-launchpadlib-toolkit' 'libstxxl-doc' 'libobrender27' 'libfennec-lite-perl' 'libeigenbase-resgen-java-doc' 'liburi-find-perl' 'libgentlyweb-utils-java' 'gnustep-base-doc' 'eflite' 'libosmesa6-dev' 'unity-asset-pool' 'rubilicious' 'openoffice.org-l10n-sv' 'xemacs21-support' 'torcs-data' 'remuco-mplayer' 'weboob' 'plasma-dataengines-workspace' 'libykclient-dev' 'libobby-0.4-1-dbg' 'libghc-strptime-dev' 'melt' 'mingw-w64-i686-dev' 'libcmor2' 'aspell-gu' 'python-gtk2-doc' 'libcanberra-gtk0-dbg' 'emacspeak' 'python3-gi' 'kasumi' 'openoffice.org-l10n-tr' 'mythmusic' 'xfce4-genmon-plugin' 'tesseract-ocr-hin' 'pwget' 'pd-hcs' 'minetest-dbg' 'libperl4caml-ocaml-doc' 'libjansson4' 'libghc-xmonad-contrib-dev' 'libghc-web-routes-dev' 'libfakekey-dev' 'libdrmaa-java' 'libdee-qt4-dev' 'httpfs2' 'hgsubversion' 'ejabberd' 'boinc-manager' 'blinken' 'libio-socket-ip-perl' 'libkrb5-3' 'libgradle-ide-java' 'openoffice.org-l10n-vi' 'openoffice.org-l10n-ts' 'libbiosig0' 'python-zope.hookable' 'omniorb-idl' 'libzeep2.9' 'lua-cyrussasl' 'llvm-3.0-doc' 'libicc-utils-dev' 'libfelix-framework-java-doc' 'libeventmachine-ruby-doc' 'libdatetime-format-dateparse-perl' 'libdata-float-perl' 'fswebcam' 'dhis-client' 'dahdi-source' 'crashmail' 'cmis-client' 'cl-xlunit' 'aspell-hr' 'libcups2-dev' 'libsam-dev' 'augeas-dbg' 'libstdc++6-4.6-pic-armhf-cross' 'xserver-xorg-input-joystick-lts-quantal' 'libvmtk-dev' 'w3c-sgml-lib' 'pari-extra' 'ruby-sigar' 'libtokyocabinet-ruby-doc' 'libmlpcap-ocaml-dev' 'libmath-numbercruncher-perl' 'libinline-java-perl' 'libghc-type-level-dev' 'libcuinj32-5.0' 'libbiosig1' 'kde-config-cddb' 'ibus-table-cantonese' 'gwyddion' 'kscreensaver-xsavers' 'libxmlrpc3-common-java' 'mozilla-openoffice.org' 'thunderbird-locale-ast' 'libvncserver-dev' 'libqt5concurrent5' 'lib64ncurses5' 'libghc6-regex-tdfa-doc' 'xfonts-cronyx-koi8r-75dpi' 'xcowsay' 'uwsgi-plugin-pyerl-python3' 'libpcp-gui2' 'libmetaid-ruby' 'libmercator-0.3-dev' 'libgnustep-base1.22-dbg' 'libatasmart-bin' 'ruby-activerecord' 'gnome-do' 'fonty-rg' 'libplayer2' 'convertall' 'bognor-regis' '9menu' 'vim-nox' 'libgladeui-2-0' 'desktop-base' 'libghc6-haskeline-doc' 'linux-image-3.2.0-34-generic-pae' 'linux-image-3.2.0-29-generic-pae' 'splint-doc-html' 'postgresql-9.1-slony1-2' 'openfetion' 'libtest-debian-perl' 'libsndobj-dev' 'libghc-syb-with-class-instances-text-prof' 'libdiagnostics0' 'seahorse-daemon' 'libmmdb-dev' 'libclass-returnvalue-perl' 'juke' 'hol88-contrib-help' 'python-exactimage' 'djvusmooth' 'coriander' 'cachefilesd' 'aspell-hu' 'libapache2-mod-scgi' 'libdbd-sqlite3' 'language-pack-gnome-lg-base' 'language-pack-gnome-kl-base' 'libsm-dev' 'at-spi2-doc' 'libatk1.0-0' 'python-gammu-dbg' 'lxsession' 'nginx-extras' 'libumlib-dev' 'libterm-ansicolor-ruby1.8' 'libstarpu-contribfft-1.0' 'libsignatures-perl' 'libshairport1' 'libglyr-doc' 'libghc-hs3-prof' 'jclassinfo' 'flwrap' 'diodon-plugins' 'libclxclient3' 'xorg-docs-core' 'sbsigntool' 'powernap' 'maas-common' 'libvala-0.18-0' 'qt4-doc' 'libclucene-contribs1' 'dovecot-dev' 'libgnomekbd7' 'yaml-mode' 'tkinspect' 'simhash' 'rxvt-beta' 'omegat-plugin-tokenizer' 'libruli-bin' 'libpresage1-dbg' 'libuser-identity-perl' 'libjifty-dbi-perl' 'libghc-terminfo-doc' 'libaften-dev' 'python-liblo' 'gpsdrive-scripts' 'dov4l' 'codeblocks' 'cipux-rpc-tools' 'ibrazilian' 'language-pack-kde-ne-base' 'language-pack-kde-lo-base' 'sl-modem-dkms' 'xonix' 'tropic-session-splashes' 'tesseract-ocr-chi-sim' 'ruby-unf-ext' 'python3-unidecode' 'python-zope.app.localpermission' 'python-ipdb' 'renattach' 'loki-doc' 'libwirble-ruby1.8' 'libtioga-ruby' 'roarclients' 'libocsigen-xhtml-ocaml-dev' 'libsuper-perl' 'libghc-cond-dev' 'libestraier-perl' 'libcryptui-doc' 'libboost-chrono1.49.0' 'kdepimlibs-dbg' 'jsvc' 'gosa-plugin-rsyslog' 'gnome-scan-common' 'gambas3-gb-image-effect' 'hlins' 'aspell-is' 'thunderbird-globalmenu' 'python-lazr.restfulclient' 'logcheck-database' 'gsl-ref-psdoc' 'libgladeui-2-4' 'libgnomekbd8' 'kcheckgmail' 'xserver-xorg-video-neomagic-lts-quantal' 'linux-headers-3.2.0-34-virtual' 'linux-headers-3.2.0-29-virtual' 'xmp-common' 'supertransball2-data' 'python-weboob-core' 'python-obexftp' 'mgen' 'members' 'lighttpd-doc' 'libtomoe0' 'libnet-subnets-perl' 'libmeep-openmpi-dev' 'libace-flreactor-dev' 'kdeadmin-dbg' 'hlint' 'libganv-1-1' 'drizzle-doc' 'libcpan-distnameinfo-perl' 'gir1.2-muffin-3.0' 'asterisk-mobile' 'aspell-it' 'aspell-hy' 'libmono-system-ldap4.0-cil' 'libperl-ostype-perl' 'libglewmx1.5-dev' 'libconvert-binhex-perl' 'netcat-traditional' 'libpurple0' 'rt3.8-extension-emailcompletion' 'slepc3.1-doc' 'koffice-l10n-engb' 'tesseract-ocr-grc' 'python-pdfminer' 'mcollective-plugins-logstash' 'libopencascade-visualization-dev' 'libnews-article-nocem-perl' 'libmathml-ruby1.9.1' 'libgringotts-dev' 'libghc-hamlet-doc' 'libgd-gd2-noxpm-ocaml-dev' 'lib4store-dev' 'libofx4' 'gap-dev' 'ttf-sawarabi-mincho' 'libdrizzledmessage0' 'claws-mail-trayicon' 'geant321-doc' 'aspell-kk' 'perlqt-dev' 'libdb5.3-java-jni' 'ttf-freefont' 'libpam0g' 'openmpi1.5-checkpoint' 'openoffice.org-l10n-xh' 'slurm-llnl-doc' 'pear-horde-channel' 'openswan-dbg' 'licq-plugin-console' 'libnet-sieve-script-perl' 'libmultidimensional-perl' 'libmojomojo-perl' 'libmath-clipper-perl' 'libghc-hsmagick-dev' 'libexodusii-dev' 'ruby-bluecloth' 'freedoom' 'fosfat-dbg' 'echoping' 'nama' 'libapache2-mod-auth-sys-group' 'amavisd-milter-dbg' 'libtirpc-dev' 'dict-gcide' 'menu' 'nvidia-173-updates' 'shorewall-init' 'qbittorrent' 'python-zodb' 'peace-wallpapers' 'metche' 'libxcompshad-dev' 'libsocksd0-dev' 'libpresage-dev' 'libghc-dlist-dev' 'libghc-brainfuck-doc' 'libzip-dev' 'libts-0.0-0' 'gameclock' 'fastdnaml' 'diction' 'xserver-xorg-video-nouveau-dbg' 'libmrpt-slam0.9' 'libghc6-stm-doc' 'unicode' 'radiotray' 'quassel-qt4-data' 'medit' 'mc-data' 'lxc-templates' 'liwc' 'libsystemu-ruby1.8' 'libreact-ocaml' 'libpgsql-9.1-asn1oid' 'libopenjpa-java' 'libglobus-gsi-cert-utils-doc' 'libghc-hsql-postgresql-prof' 'libdogleg2' 'libcdi-dev' 'telnetd-ssl' 'aspell-kn' 'thunderbird-locale-nn-no' 'oem-config-gtk' 'libffado-dev' 'freeradius-postgresql' 'openoffice.org-l10n-za' 'openoffice.org-l10n-uz' 'calligra-map-shape' 'yacas-doc' 'qla-tools' 'pngquant-dbg' 'plasma-mediacenter-dev' 'php-horde-form' 'newbiedoc' 'libxs-object-magic-perl' 'libomxil-bellagio0-components-fbdevsink' 'libipset-dev' 'libmousex-strictconstructor-perl' 'jgraph' 'hsqldb-utils' 'gstreamer1.0-crystalhd' 'libxsettings0' 'libflowcanvas5' 'fcitx-sayura' 'bzr-webdav' 'brutalchess' 'shogun-python-modular' 'libjpeg-turbo8-dbg' 'python-twisted-names' 'librest-extras-0.7-0' 'texlive-extra-utils' 'libghc6-xml-prof' 'libghc6-hsql-postgresql-prof' 'liblaunchpad-integration1' 'ubuntustudio-graphics' 'ramond' 'python-zope.app.basicskin' 'openhpi-plugin-watchdog' 'node-sink-test' 'libpano13-dev' 'libplack-middleware-deflater-perl' 'libghc-regex-tdfa-utf8-dev' 'libdataobjects-postgres-ruby1.8' 'gedit-valatoys-plugin' 'festival-freebsoft-utils' 'libghc6-non-negative-doc' 'yate-sctp' 'x86info' 'python-zope.catalog' 'python-gnatpython-doc' 'pdns-backend-geo' 'pd-hid' 'nana' 'musetup-gtk' 'mergelog' 'libvdeplug-dev' 'libsysactivity1-dbg' 'libpdf-report-perl' 'libghc-base64-conduit-dev' 'libepc-ui-1.0-3' 'libdbix-class-uuidcolumns-perl' 'libjaxe-java' 'xshogi' 'juju' 'ubuntuone-control-panel-common' 'libclutter-gst-2.0-dev' 'cgroup-bin' 'apturl-common' 'libghc6-hsh-dev' 'yorick-mira' 'yaskkserv' 'thepeg-gui' 'rtai-doc' 'rcconf' 'libxdffileio0-dbg' 'ocaml-ulex' 'libghc-cryptohash-prof' 'libalien-wxwidgets-perl' 'libpath-class-perl' 'guile-gnome2-dev' 'libclamav-client-perl' 'carton' 'pbzip2' 'syslinux' 'lxappearance-dev' 'yorick-mpy-mpich2' 'sailcut-doc' 'nordugrid-arc-python' 'libsslcommon2-dev' 'libghc-haskelldb-dev' 'libflickr-upload-perl' 'krdc' 'jvim-canna' 'jblas' 'libspin-java' 'ipv6calc' 'freedroidrpg-data' 'fillets-ng-data' 'axel-dbg' 'libtalloc2' 'libvaladoc0' 'libghc6-parallel-dev' 'xubuntu-restricted-extras' 'windows-el' 'weborf' 'octave-fpl' 'libppix-editortools-perl' 'libpcp3' 'libladspa-ocaml-dev' 'libghc-hxt-curl-prof' 'libghc-vector-space-doc' 'kosd' 'icinga-web-pnp' 'hunspell-de-ch-frami' 'gfortran-4.5-arm-linux-gnueabi' 'opense-basic' 'shtool' 'libvpx-dev' 'qt-x11-free-dbg' 'ultracopier' 'zope-debhelper' 'wraplinux' 'spamassassin-heatu' 'libvaladoc1' 'libomxil-bellagio-bin' 'libjboss-serialization-java' 'libgtkhotkey1' 'libgpelaunch-dev' 'irssi-plugin-xmpp-dbg' 'gem-extra' 'syfi-doc' 'aspell-ku' 'libpeas-common' 'libboost-system1.49.0' 'metacafe-dl' 'lolcat' 'libshell-command-perl' 'txt2html' 'gcc-arm-linux-gnueabi' 'fcitx-config-common' 'banshee-extension-streamrecorder' 'aspell-ml' 'uml-utilities' 'tk-dev' 'python-sip-dev' 'python-libxml2-dbg' 'libtcmalloc-minimal0-dbg' 'awn-applet-volume-control' 'winff-dbg' 'lshell' 'liblog-handler-perl' 'libghc-regex-posix-doc' 'libghc-debian-doc' 'libgdal1-1.9.0-grass' 'ruby-deprecated' 'libaqsis-dev' 'lcdproc-extra-drivers' 'harden-tools' 'gnustep-base-common' 'getlive' 'drupal6-mod-filefield' 'drizzle-plugin-auth-file' 'coldfire' 'barrybackup-gui' 'libpanel-applet-4-0' 'libapache2-mod-php5filter' 'language-pack-gl-base' 'libical0' 'tcpquota' 'libboost-python1.46.1' 'mrtgutils-sensors' 'mp3blaster' 'mediawiki-extensions-ldapauth' 'libpcap-ruby1.8' 'libomxil-bellagio0-components-base-dbg' 'libplexus-interactivity-api-java-doc' 'libldb-dev' 'libghc-bloomfilter-prof' 'libclass-dbi-plugin-perl' 'httperf' 'gthumb-dbg' 'gnuminishogi' 'feynmf' 'fcitx-table-cangjie' 'dh-ada-library' 'python-qt4-phonon-dbg' 'libpam-modules-bin' 'linux-headers-3.2.0-31-generic' 'linux-headers-3.2.0-26-generic' 'xnbd-common' 'vdr-plugin-games' 'node-jsv' 'nigiri' 'libjets3t-java-doc' 'libmuparser-dev' 'libfilter-template-perl' 'icmake' 'ganglia-webfrontend' 'eclipse-emf' 'erubis' 'libherwig59-2-dev' 'obexd-server' 'blktap-dkms' 'libnet-cups-perl' 'aspell-lt' 'unity-webapps-service' 'libaccounts-glib0' 'libpopt0' 'python-djvu-doc' 'plasma-widget-adjustableclock' 'pipenightdreams-data' 'ocsinventory-server' 'linuxvnc' 'linuxdcpp' 'libtifiles-dev' 'liblog4c3' 'libghc-gsasl-doc' 'libghc-gitit-prof' 'libdeprecated-ruby' 'kwstyle' 'ruby-kde4' 'junior-typing' 'viewmol' 'debaux-debconf' 'bs2b-ladspa' 'aspell-pa' 'libshadow-ruby1.8' 'python-netcdf' 'gtk-doc-tools' 'cmake-dbg' 'gambas2-gb-form' 'tardy' 'sql-ledger' 'python-plastex' 'libxfconf-0-dev' 'libghc-wai-extra-dev' 'libcableswig-dev' 'juman-dic' 'libgeocode-glib-dev' 'libpoconet9' 'camera.app' 'aspell-nl' 'aspell-lv' 'lsb-invalid-mta' 'libsunpinyin-dev' 'libmono-system-design4.0-cil' 'lib64z1' 'gobjc++-4.6-multilib-arm-linux-gnueabi' 'libcogl9' 'python-iptcdata' 'parcellite' 'libtelnet2' 'libmenu-cache-dev' 'libitext-rtf-java' 'libestr0' 'ruby-msgpack' 'krfb' 'plasma-netbook' 'fonts-ipaexfont' 'ttf-fanwood' 'cl-sql-odbc' 'asterisk-doc' 'oem-config-kde' 'liblqr-1-0-dev' 'libdbusmenu-gtk-dev' 'backuppc' 'aspell-mr' 'libstarpu0' 'zita-alsa-pcmi-utils' 'yocto-reader' 'pyvnc2swf' 'neard-dev' 'libgtkglarea-cil-examples' 'liberuby-dev' 'libtest-www-mechanize-perl' 'libauthen-simple-passwd-perl' 'gprolog' 'globus-gssapi-gsi-dbg' 'ttf-gfs-neohellenic' 'bowtie-examples' 'anarchism' 'thunderbird-locale-ta-lk' 'libmono-debugger-soft4.0-cil' 'libpostproc-extra-52' 'libghc6-gio-prof' 'warmux-data' 'simpleid' 'roxterm-common' 'remctl-client' 'qpidd-msgstore' 'perroquet' 'open-axiom-source' 'ruby-trollop' 'libtag-extras-dev' 'libmrpt-slam1.0' 'libgflags-dev' 'units' 'debian-timeline' 'aspell-no' 'acl2-books-certs' 'python-pyasn1' 'python-egenix-mxtexttools' 'monodoc-base' 'libreoffice-presenter-console' 'libfont-freetype-perl' 'resource-agents' 'libxatracker1-lts-quantal' 'python-apsw-dbg' 'planarity' 'pekwm' 'nova-ajax-console-proxy' 'live-manual-txt' 'libsmokekde4-dbg' 'libpcp-trace2' 'libnarray-ruby1.8-dbg' 'liblog4tango4-dbg' 'libkmflcomp-dev' 'libghc-hinotify-prof' 'libghc-fsnotify-prof' 'libclanlib-dev' 'libxbean-java' 'kdesdk-dbg' 'python-imdbpy' 'php-auth-http' 'debian-reference-pt' 'liblilv-0-0' 'nano' 'libfontenc-dev' 'libcanberra-gtk3-module-dbg' 'ttf-dejavu-core' 'linux-backports-modules-cw-3.6-3.2.0-37-generic-pae' 'springlobby-dbg' 'socket' 'python-excelerator' 'liboss4-salsa-dev' 'libghc-strptime-doc' 'libgettext-activerecord-ruby-common' 'firewall-applet' 'pokerth' 'grub-legacy-doc' 'ruby1.8-dev' 'ispell' 'udisks2' 'libmarblewidget13' 'brother-cups-wrapper-common' 'tarantool-dbg' 'speechd-up' 'r-cran-permute' 'python3-doit' 'planet-venus' 'libghc-xmonad-contrib-doc' 'libghc-web-routes-doc' 'libghc-persistent-sqlite-prof' 'libfakekey-doc' 'libclutter-perl' 'kdesdk' 'cl-bordeaux-threads' 'aspell-nr' 'ibritish' 'gir1.2-ebook-1.2' 'yodl-doc' 'onioncat' 'monav-routing-daemon' 'luola-nostalgy' 'libqextserialport1' 'libjconv-dev' 'ruby-gstreamer-dbg' 'libapache2-mod-authz-unixgroup' 'libkldap4' 'httpcode' 'ttf-oldstandard' 'libecore-input1' 'libguess1' 'aspell-ns' 'libghc-agda-dev' 'python-aeidon' 'libtommath-docs' 'libsignon-plugins-doc' 'libqscintilla-perl' 'libswscale2' 'libopenrawgnome1-dbg' 'openoffice.org-l10n-zu' 'mess' 'python-systemd' 'python-plplot-qt' 'python-zeroc-ice' 'node-zlib' 'libwebcam0-dbg' 'libthunarx-2-dev' 'libghc-type-level-doc' 'libc6-dbg-arm64-cross' 'libxmlsec1' 'jnoise' 'libstdc++5' 'libfastjet0' 'funkload' 'eclipse-gef' 'cmatrix' 'chromium-codecs-ffmpeg' 'libmarblewidget15' 'blazeblogger' 'texlive-lang-latvian' 'libgtk2.0-0-dbg' 'geoclue' 'libghc6-gitit-dev' 'xlassie' 'smartdoc' 'python-rivet' 'ncdt' 'libyahoo2-dev' 'libsubunit-perl' 'libgmerlin-avdec-dev' 'libglobus-gsi-proxy-ssl-dev' 'libghc-texmath-prof' 'libqtgallery1' 'html-xml-utils' 'gtkrsync' 'gnome-packagekit-tools' 'gkrellm-reminder' 'crossfire-client-sounds' 'c2esp' 'php-kolab-filter' 'nant' 'libegl1-mesa-dbg' 'libaugeas-dev' 'unity' 'dovecot-sieve' 'libstdc++6' 'libghc6-pretty-show-dev' 'xotcl-shells' 'tesseract-ocr-kan' 'tecnoballz' 'ncdu' 'lxshortcut-dbg' 'libxy-bin' 'libmath-gmp-perl' 'libghc-simple-reflect-prof' 'karma-tools' 'gscanbus' 'fonts-yozvox-yozfont-standard-kana' 'fonts-freefont-otf' 'libgettext-ruby1.8' 'aspell-pl' 'libsm-doc' 'librdmacm1-dbg' 'libcupsppdc1-dev' 'libcdio13' 'libusb-0.1-4' 'libopencv-highgui2.3' 'linux-backports-modules-hv-3.2.0-38-generic' 'xfprint4' 'xchat-guile' 'wise-doc' 'vim-syntax-go' 'tcm-doc' 'pixmap' 'libxml-um-perl' 'libimage-science-ruby1.8' 'liberubis-ruby1.9.1' 'libepc-dev' 'libcupti5.0' 'libmailcommon4' 'ipe5toxml' 'chise-db' 'aspell-or' 'ttf-arphic-bkai00mp' 'qbittorrent-nox' 'ogamesim-www' 'mathgl-doc-ru' 'libtest-consistentversion-perl' 'libjs-swfobject' 'libgnomeada2.24.1-dev' 'libghc-asn1-data-prof' 'gnome-video-effects-frei0r' 'planner' 'libmudflap0-dbg-armhf-cross' 'coffeescript-doc' 'bsdtar' 'bootcd-ia64' 'libopencv-highgui2.4' 'libmodplug1' 'amoebax-data' 'libsystemd-journal0' 'libxcb-image0' 'libpcsclite-dbg' 'libdbusmenu-jsonloader4' 'liblcms2-dev' 'jed-extra' 'hdparm' 'qfits-tools' 'python-pyftpdlib' 'putty-doc' 'libgtkada-bin' 'libghc-hlint-dev' 'libghc-cond-doc' 'libdata-password-perl' 'kscd' 'insanity-tools' 'wavpack' 'libswirl-java-doc' 'unmo3' 'shinken-arbiter' 'python-templayer' 'python-mvpa-doc' 'opendrim-lmp-recordlog' 'libzrtpcpp-dev' 'libvorbisfile-ruby1.8' 'libsamba-credentials-dev' 'libfile-tee-perl' 'libcgi-application-plugin-logdispatch-perl' 'glassfish-toplink-essentials' 'gbase' 'fso-gsm0710muxd' 'pkg-config-powerpc-linux-gnu' 'cl-spatial-trees' 'cl-ftp' 'vblade' 'libnuma-dbg' 'libmono-web4.0-cil' 'ldp-docbook-xsl' 'evolution-data-server-dbg' 'doc-linux-nonfree-text' 'tqsllib-dev' 'tesseract-ocr-ind' 'turtleart' 'search-citeseer' 'python-pysqlite2-doc' 'plasma-widget-uim' 'makexvpics' 'lynis' 'librack-ruby' 'libnet6-1.3-dev' 'libncbi6-dbg' 'mutter-common' 'libjpeg-turbo-test' 'libatdgen-ocaml-dev' 'libsaml7' 'kppp' 'jupp' 'jbofihe' 'ispanish' 'gap-doc' 'fosfat-dev' 'flatzinc' 'fcitx-table-wubi-large' 'apt-transport-spacewalk' 'libuninameslist-dev' 'lib64bz2-1.0' 'libghc6-terminfo-dev' 'kodos' 'gcc-4.5-multilib' 'parmetis-doc' 'amoeba-data' 'xfonts-cronyx-75dpi' 'libmemcache-client-ruby1.8' 'libghc-semigroupoids-dev' 'libghc-hsmagick-doc' 'libapache-authenhook-perl' 'gtkballs' 'eldav' 'drizzle-client' 'python-gamera' 'dell-recovery-casper' 'dadadodo' 'libtwolame0' 'phonon-backend-gstreamer-dbg' 'libcgi-pm-perl' 'libvpx1-dbg' 'libspiro-dev' 'libatasmart-dev' 'language-pack-kde-am-base' 'emacs23-el' 'tntdb-mysql2' 'python-awn-extras' 'openoffice.org-style-oxygen' 'tcpreen' 'rubybook' 'radicale' 'python-zope.publisher' 'octave-strings' 'octave-quaternion' 'nbtscan' 'llvm-2.9-examples' 'uim-prime' 'libtext-bidi-perl' 'libsc-dev' 'libpresage-doc' 'libpam-krb5-migrate-heimdal' 'libow-dev' 'libghc-dlist-doc' 'libanimal-sniffer-java-doc' 'libspring-jdbc-java' 'lib64go0-dbg-powerpc-cross' 'gambas3-gb-report' 'wm-icons' 'funnelweb-doc' 'kubuntu-debug-installer' 'aegis-tk' 'libaddresses0' 'libgssglue-dev' 'libgmime2.6-cil' 'language-pack-gnome-it-base' 'language-pack-gnome-hy-base' 'tntdb-mysql3' 'libqmfutil1' 'libcnf-dev' 'iesperanto' 'hotwire' 'hibernate' 'libgnuradio-atsc3.6.1' 'ttf-lindenhill' 'ekeyd' 'eiskaltdcpp-qt' 'tomboy' 'cssed' 'bluez-pcmcia-support' 'aspell-pt' 'libxmuu-dev' 'libtiff-opengl' 'libjpeg-turbo8-dev' 'rdnssd' 'freeipmi-ipmidetect' 'debian-installer' 'libopencv-features2d2.3' 'picon-news' 'xara-gtk' 'python3-objgraph' 'llvm-3.0-source' 'lighttpd-mod-webdav' 'libsvrcore-dev' 'libpod-tree-perl' 'libsord-dev' 'libgaiagraphics1' 'libevas1-engines-core' 'libhdf5-openmpi-7' 'konversation' 'libktnef4' 'funkload-doc' 'python-poppler-qt4' 'freemind-plugins-script' 'chimera2' 'blocks-of-the-undead-data' 'aspell-ta' 'cairo-5c' 'libload-perl' 'libzeitgeist-1.0-1-dbg' 'libboost-locale1.49-dev' 'execstack' 'libntfs-gnomevfs' 'libmesh0.7.1' 'linux-image-3.5.0-26-generic' 'virtuoso-vad-sparqldemo' 'virtuoso-vad-tutorial' 'manpages-ja-dev' 'libwwwbrowser-perl' 'uima-examples' 'libjarjar-maven-plugin-java' 'libghc-regex-tdfa-utf8-doc' 'libopencv-features2d2.4' 'libcommons-javaflow-java-doc' 'gosa-plugin-gofax' 'libfsosystem0' 'drawmap' 'chaksem' 'asterisk-core-sounds-ru-wav' 'libjs-jquery-ui' 'python-keystoneclient' 'plymouth-theme-ubuntu-text' 'language-pack-gnome-tt-base' 'libgda-4.0-mysql' 'qtquick1-5-examples' 'libtk-histentry-perl' 'libxml-rss-perl' 'libomnithread3-dev' 'liblttng-ust0' 'libgtkada-dbg' 'libghc-hsh-prof' 'libghc-base64-conduit-doc' 'libnamespace-autoclean-perl' 'dvipost' 'camorama' 'python-iso8601' 'nova-compute-kvm' 'libklu1.1.0' 'libglib-perl' 'libclutter-gst-2.0-doc' 'python-twisted-core' 'libkafs0-heimdal' 'libxfixes3' 'libghc6-hsql-sqlite3-dev' 'linux-image-3.2.0-39-lowlatency' 'wmaker-data' 'torus-trooper-pure' 'squeak-vm' 'python-starpy' 'netsurf-gtk' 'licq-plugin-forwarder' 'libsexp-processor-ruby1.8' 'libneedle-ruby1.8' 'libncursesada2-dev' 'liblua5.1-orbit-dev' 'liblocale-subcountry-perl' 'libdata-javascript-anon-perl' 'gcompris-sound-af' 'krita-data' 'libtest-memory-cycle-perl' 'libparams-classify-perl' 'language-pack-kde-xh-base' 'junit4' 'ovaldi' 'gforge-plugin-mediawiki' 'qasconfig' 'ocsinventory-reports' 'libxqdbm3c2' 'liborigin2-1' 'libghc-haskelldb-doc' 'libdesktop-agnostic-fdo-gnome' 'libwildmidi1' 'libgcc1-dbg-powerpc-cross' 'aspell-te' 'aspell-ro' 'libsonic-dev' 'libmdbodbc1' 'libcaca-dev' 'libattr1-dev' 'wamerican' 'bzip2' 'libghc6-parallel-doc' 'evolution-webcal' 'dvdrip-doc' 'wzdftpd-back-mysql' 'tatan' 'semantik' 'razorqt-panel' 'qtxmlpatterns5-examples' 'qmf-tests' 'ec2-ami-tools' 'python-grokcore.component' 'php-horde-cli' 'libpod-constants-perl' 'libjs-flotr' 'libtemplate-declare-perl' 'libghc-snap-server-prof' 'libfirestring-dev' 'libcryptgps-ocaml-dev' 'libipc-system-simple-perl' 'libjetty-extra' 'fastlink' 'bzr-upload' 'aspell-sk' 'python-pytest' 'libvpx-doc' 'ubuntustudio-publishing' 'slurm-llnl-sview' 'newmail' 'mldemos' 'mazeofgalious-data' 'libtest-log4perl-perl' 'libopenwalnut1' 'libmetaid-ruby1.8' 'libkakasi2' 'libghc-mmap-dev' 'libapache-dbilogger-perl' 'mpi-doc' 'kde-sc-dev-latest' 'gtranslator' 'simph323' 'gcc-msp430' 'gaim-themes' 'ekiga' 'mgetty-viewfax' 'libkactivities6' 'aspell-sl' 'amphetamine' 'python3-pyinotify' 'python-pygoocanvas' 'espeak' 'libfparser-4.3-dbg' 'kompozer-data' 'wordplay' 'vdr-plugin-osdteletext' 'kseg' 'quantum-plugin-hyperv' 'python-pydoubles' 'python-opencv' 'libtest-class-perl' 'libidzebra-2.0-mod-grs-regx' 'libhamlib2-perl' 'libghc-yesod-markdown-dev' 'libgetopt-tabular-perl' 'jocaml-base' 'libudunits2-0' 'flann-doc' 'fdclock' 'tk-doc' 'python-sip-doc' 'pth-dbg' 'libwvstreams4.6-doc' 'language-pack-kde-ast-base' 'libghc6-vty-prof' 'linux-hwe-generic' 'abrowser-branding' 'sispmctl' 'python-zc.lockfile' 'python-chameleon' 'libstdc++6-4.6-pic' 'libmoosex-compiletime-traits-perl' 'liblablgtksourceview2-ocaml-dev' 'ibus-table-jyutping' 'gthumb-dev' 'flobopuyo' 'blktool' 'nasm' 'libsmokeqtsql4-3' 'gnome-sharp2-examples' 'xbmc-standalone' 'undistract-me' 'twoftpd' 'tesseract-ocr-hrv' 'syncevolution-dbg' 'mythexport' 'lletters-media' 'libmpich1.0gf' 'libjs-jquery-ui-theme-humanity' 'ges0.10-tools' 'gcompris-sound-bg' 'linux-backports-modules-cw-3.5-3.2.0-34-generic-pae' 'udo-doc-de' 'remake' 'python-zope.app.generations' 'noiz2sa-data' 'monodoc-gstreamer-manual' 'liburg0-dev' 'libstdc++6-4.5-dbg-armhf-cross' 'librqrcode-ruby-doc' 'libmuparser-doc' 'libghc-csv-conduit-dev' 'userconfig' 'libkwinactiveglesutils1' 'gobby-dbg' 'globus-gram-protocol-dbg' 'coinor-libdylp0-dbg' 'aspell-ru' 'texlive-lang-african' 'lua5.1-doc' 'libstonith1-dev' 'translate' 'tortoisehg-nautilus' 'proj-ps-doc' 'pngtools' 'libzinnia0-dbg' 'libmudflap0-armhf-cross' 'liblablgtk2-gnome-ocaml' 'libzzip-0-13' 'kubuntu-default-settings' 'gretl' 'globus-gram-job-manager-condor' 'gddrescue' 'gcc-mingw-w64' 'bzr-builder' 'bogosec' 'aspell-tl' 'libnih-dbus1' 'libchewing3-data' 'lib64quadmath0' 'libzn-poly-0.8' 'gobjc-4.6-multilib-arm-linux-gnueabi' 'gambas2-gb-sdl' 'python-maas-provision' 'python-captcha' 'php-horde-scheduler' 'libwarnings-illegalproto-perl' 'libxml-tidy-perl' 'libgtksourceview2-ruby1.8-dbg' 'libghc-wai-extra-doc' 'libghc-crypto-dev' 'libgeocode-glib-doc' 'libcsync-plugin-owncloud' 'libcgroup-dev' 'libtemplate-provider-encoding-perl' 'gstreamer0.10-plugins-bad-doc' 'xemacs21-gnome-mule' 'edgy-community-wallpapers' 'alsa-tools' 'tstools' 'lv2-c++-tools' 'libzn-poly-0.9' 'libraspell-ruby1.8' 'libomxil-bellagio-dev' 'libmenu-cache-doc' 'libjenkins-xstream-java-doc' 'libhtml-formattext-withlinks-andtables-perl' 'ruby-feedtools' 'libgnomedesktop2.0-cil-dev' 'gcompris-sound-da' 'fonts-samyak-taml' 'flexml' 'fdflush' 'exactimage' 'drupal6-mod-masquerade' 'dict-freedict-fra-deu' 'dibbler-client' 'kaptain' 'aspell-tn' 'aspell-ss' 'libtomcat6-java' 'libossp-uuid-dev' 'libdbusmenu-gtk-doc' 'zbar-tools' 'octave-gsl' 'libshevek-dev' 'libopenct1' 'libnet-sftp2-ruby' 'libmono-upnp-cil' 'libghc-tar-prof' 'libfixposix-dev' 'libfastjet-fortran0' 'libethos-ui-dev' 'kshisen' 'kamailio-berkeley-modules' 'doctorj' 'libsolidcontrol4abi2' 'aspell-st' 'vim-scripts' 'python-pyxattr-dbg' 'pulseaudio-esound-compat-dbg' 'computer-janitor-gtk' 'virtuoso-vad-ods' 'themole' 'scribble' 'scilab-minimal-bin-dbg' 'rhythmbox-radio-browser' 'pike7.8-gl' 'nast' 'liquidwar-server' 'libxmpi4c2' 'libshhopt1' 'libmoosex-types-structured-perl' 'liblog4tango4-dev' 'libini-config-dev' 'libgflags-doc' 'libflickrnet-cil-dev' 'libbitstring-ocaml' 'kradio4' 'gcompris-sound-ar' 'gatling' 'garmin-plugin' 'intercal' 'aspell-uk' 'libcupscgi1-dev' 'language-pack-fo-base' 'language-pack-he-base' 'language-pack-et-base' 'libgsf-gnome-1-114' 'vxi-dev' 'tesseract-ocr-hun' 'qutemol' 'linphone-common' 'libjthread-dbg' 'libidna-punycode-perl' 'rxvt-unicode-lite' 'liblcgdm1' 'libjets3t-java' 'aspell-sv' 'kdepim-runtime' 'ubuntuone-control-panel-gtk' 'python3-py' 'libva-x11-1' 'libdconf-dbg' 'language-pack-shs' 'libmudflap0-4.4-dev' 'libswirl-java-gcj' 'sigrok-cli' 'rt4-db-sqlite' 'mcrl2' 'liquidsoap-plugin-voaacenc' 'uim-ajax-ime' 'libldb1-dbg' 'libscalar-defer-perl' 'libjaudiotagger-java' 'libcgi-application-plugin-tt-perl' 'kubuntu-patched-l10n' 'keurocalc-data' 'gtkcookie' 'globus-rls-server-dbg' 'gcompris-sound-de' 'python-opengl' 'autoproject' 'libreoffice-l10n-pt-br' 'ebox-openvpn' 'tse3play' 'ricochet' 'nvidia-nsight' 'libsqlheavy0.1-dbg' 'libjavascript-packer-perl' 'libghc-bytestring-nums-prof' 'libreturn-value-perl' 'aspell-ts' 'libmono2.0-cil' 'language-pack-se-base' 'language-pack-pt-base' 'augeas-doc' 'python-desktopcouch-records' 'skrooge' 'python-iso8583' 'postgresql-server-dev-all' 'massif-visualizer' 'libwebcam0-dev' 'libuddi4j-java' 'libmeep-dev' 'libjs-polymaps' 'libghc-agda-doc' 'libdolfin1.0' 'libdbix-recordset-perl' 'libbabeltrace-ctf-dev' 'imageshack-uploader' 'grass-gui' 'fonts-lobster' 'drivel' 'db-upgrade-util' 'python-openid' 'python-examples' 'fonts-farsiweb' 'autofs' 'phaseshift' 'libstdc++6-4.5-pic-armel-cross' 'openoffice.org-gnome' 'linux-backports-modules-cw-3.4-3.2.0-33-generic-pae' 'xbmc-eventclients-dev' 'wxsqlite3-2.8-dbg' 'rtpg-www' 'qtscript5-private-dev' 'libmpfi0' 'mlpost' 'libmaloc-dev' 'liblablgtk2-gl-ocaml' 'libghc-setenv-prof' 'libnb-org-openide-util-java' 'libfinance-bank-ie-permanenttsb-perl' 'gcompris-sound-br' 'cl-webactions' 'athena-jot' 'adacontrol' 'libgnomeui-dev' 'libegl1-mesa-dev' 'liborc-0.4-0' 'libgtkmm-3.0-1' 'auditd' 'libghc6-gitit-doc' 'libbtparse0' 'tesseract-ocr-chi-tra' 'snmptrapfmt' 'rdsconsole' 'php-horde-mnemo' 'libzapojit-dev' 'tomcat6-common' 'liboscpack1' 'libinnodb3' 'libgmerlin-avdec-doc' 'libglobus-gsi-proxy-ssl-doc' 'libcheese-dev' 'libgridsite1.7' 'filezilla' 'python-instant' 'extremetuxracer-extras' 'collectd-dbg' 'aws-status' 'librados2-dbg' 'libghc6-pretty-show-doc' 'yate-alsa' 'pcp-import-iostat2pcp' 'monajat-applet' 'libwtdbosqlite-dev' 'libpgplot-perl' 'libmumps-seq-4.10.0' 'libbtparse1' 'python-gammu-doc' 'libmldbm-sync-perl' 'fso-sounds-yue-full' 'ttf-umefont' 'csound-manpages' 'claws-mail-fetchinfo-plugin' 'apt-transport-debtorrent' 'xchat-gnome-common' 'python-dingus' 'libraptor2-dev' 'python3-tk' 'gir1.2-totem-1.0' 'shared-mime-info' 'device-tree-compiler' 'xttitle' 'wesnoth-1.10-trow' 'tesseract-ocr-ita' 'r-cran-rquantlib' 'nginx-extras-dbg' 'libobexftp-ruby' 'libllvm-3.1-ocaml-dev' 'libjs-jshash' 'libheimdal-kadm5-perl' 'libepc-doc' 'nordugrid-arc-arex' 'kmahjongg' 'itksnap' 'libtemplates-parser11.6' 'libqca2' 'libpcsclite-dev' 'udo-doc-en' 'tesseract-ocr-lav' 'preload' 'libemail-localdelivery-perl' 'libsfml-window1.6' 'heimdal-kdc' 'docvert' 'wmcalclock' 'v4l2ucp' 'moodle-book' 'librhash-ruby' 'libprogressbar-ruby' 'libhugs-x11-bundled' 'libghc-hlint-doc' 'fracplanet' 'python-musicbrainz2' 'asterisk-espeak' 'aranym' 'python-twisted-web2' 'rpm-i18n' 'python-gst0.10' 'libnuma-dev' 'evolution-data-server-dev' 'libfontembed1' 'libghc6-ldap-dev' 'winefish' 'uwsgi-plugin-symcall' 'sawfish' 'python-qgis-common' 'pysycache-move-sky' 'libwww-google-calculator-perl' 'libusbprog-dev' 'libtrove-java-doc' 'libroot-math-splot-dev' 'libofdt1' 'libncbi6-dev' 'libmsv0' 'liblingua-en-inflect-phrase-perl' 'libbsearch-ruby1.8' 'kgb-client-git' 'gcompris-sound-cs' 'denyhosts' 'asmixer' 'wnorwegian' 'siege' 'libsmokeqt4-dbg' 'libsoap-lite-perl' 'byobu' 'libboost-python1.48.0' 'science-engineering-dev' 'python-flufl.lock-doc' 'openswan-doc' 'libupnp6-dbg' 'libstring-errf-perl' 'libcoin60-dev' 'libboost-python1.53.0' 'xblast-tnt-sounds' 'libzbar0' 'libpgf6' 'clips-doc' 'aspell-xh' 'apt-src' 'overlayroot' 'nova-compute-lxc' 'libqt4-opengl' 'libghc6-terminfo-doc' 'libghc6-deepseq-prof' 'libghc-happstack-ixset-prof' 'timidity-interfaces-extra' 'qtoctave' 'python3-epr-dbg' 'yorick-svipc' 'lyskom-server' 'libspnav-dev' 'libproxy-tools' 'libphone-utils0' 'libnmz7' 'libghc-semigroupoids-doc' 'libfannj-java' 'libconvert-ytext-perl' 'libbusiness-onlinepayment-perl' 'gnustep-icons' 'gir1.2-evd-0.1' 'gaduhistory' 'libexactimage-perl' 'ubiquity-slideshow-xubuntu' 'libglobus-rsl2' 'beneath-a-steel-sky' 'avce00' 'xfonts-kapl' 'edubuntu-artwork' 'libxmlrpc-c++4' 'libmodule-corelist-perl' 'libio-string-perl' 'radiance' 'libcanberra-gtk-module' 'libsaxon-java' 'libncurses5' 'ceph-mds-dbg' 'tesseract-ocr-isl' 'supertransball2' 'subcommander' 'python3-validictory' 'otcl-dbg' 'openjdk-6-demo' 'libxy-dev' 'ruby-vte-dbg' 'libuima-core-java' 'libsc-doc' 'libqpidcommon2' 'libmcs-utils' 'publicsuffix' 'heimdal-kcm' 'gcompris-sound-el' 'asterisk-voicemail' 'rev-plugins' 'ttf-devanagari-fonts' 'libmono-microsoft-csharp4.0-cil' 'libc-bin' 'rpm2cpio' 'libtao-qtresource-dev' 'libghc6-happstack-ixset-prof' 'libghc6-gconf-prof' 'rt3.8-db-sqlite' 'readahead-fedora' 'monav-client' 'mandelbulber' 'm17n-im-config' 'libsbigudrv0' 'librdf-ns-perl' 'pari-gp2c' 'libmondrian-java-doc' 'libmemphis-0.2-dbg' 'libimage-base-bundle-perl' 'libapache-session-browseable-perl' 'ko.tex' 'kdepimlibs5-dev' 'globus-gsi-cert-utils-progs' 'gir1.2-guestfs-1.0' 'gimp-normalmap' 'gfxboot-themes-sled' 'libhfgcc-4.7-dev-armel-cross' 'aspell-uz' 'libmono-i18n-cjk4.0-cil' 'libgbm-dev' 'libmtp9' 'account-plugin-flickr' 'libghc6-happstack-data-dev' 'fglrx-experimental-12-dev' 'uec-provisioning-webui' 'symlinks' 'rfdump' 'rep-gtk' 'python-gtkspellcheck-doc' 'mtpfs' 'libsord-doc' 'libicecc-dev' 'libhttp-lrdd-perl' 'libghc-xml-conduit-dev' 'libghc-ranges-dev' 'libdime-dev' 'libapache2-sitecontrol-perl' 'libacr38ucontrol0' 'gsasl' 'gpdftext' 'libglobus-gsi-proxy-ssl1' 'gcompris-sound-fi' 'gcompris-sound-en' 'ffgtk' 'epwutil' 'drupal6-mod-views' 'cl-md5' 'libx32readline6-dev' 'libqt5sql5' 'troffcvt' 'linux-backports-modules-cw-3.6-3.2.0-38-generic' 'libsbigudrv2' 'videoporama' 'python-hivex' 'pidgin-lastfm' 'metacity-themes' 'libx11-freedesktop-desktopentry-perl' 'libtorrent-ruby1.8' 'libxml-commonns-perl' 'liborcus-dev' 'libiso9660-dev' 'libhdfeos5-ruby-doc' 'libgwengui-fox16-0' 'libghc-stringsearch-prof' 'libstring-koremutake-perl' 'libdevel-dumpvar-perl' 'headache' 'gcompris-sound-eo' 'gcompris-sound-ast' 'fcitx-qw' 'python-drslib' 'libprivileges-drop-perl' 'selinux-policy-default' 'libenchant1c2a' 'xsltproc' 'fp-units-i386-2.4.4' 'mariadb-server' 'linux-headers-lbm-3.2.0-38-generic-pae' 'libf2j-java' 'poker-web' 'php-horde-service-facebook' 'mixer.app' 'libpolylib64-dev' 'libinsighttoolkit4.3' 'libghc-gluraw-dev' 'kdevelop-custom-buildsystem' 'libtext-typography-perl' 'gwibber-service' 'ruby-sqlite3' 'notification-daemon' 'libghc6-hsql-sqlite3-doc' 'festvox-us1' 'ruby-httpauth' 'opencascade-draw' 'mythnettv-gui' 'lmms' 'libroot-montecarlo-eg-dev' 'libpam4j-java-doc' 'libnora-ruby1.8' 'libglfw2' 'libxpathselect1.2' 'libjcharts-java' 'draai' 'djbdns' 'listadmin' 'festvox-us2' 'yubikey-server-c' 'taoframework-examples' 'php5-rrd' 'libmysql-ocaml-dev' 'libspring-test-java' 'libabstract-ruby' 'libharminv2' 'buildtorrent' 'sketch' 'rsyslog-mysql' 'libx32gomp1-dbg' 'language-pack-zh-hans' 'language-pack-kde-ca-base' 'bacula-console-qt' 'matita-doc' 'teamspeak-server' 'festvox-us3' 'zorp-modules-dbg' 'supertux-data' 'sortsmill-tools' 'smarty-validate' 'python-django-auth-ldap' 'libmousex-types-path-class-perl' 'libjboss-jmx-java' 'libgtk2-ex-printdialog-perl' 'libcap-ng-utils' 'hylafax-client-dbg' 'libgnuradio-fft3.6.1' 'globus-gsi-proxy-core-dbg' 'gcompris-sound-es' 'chrony' 'node-ltx' 'smokegen-dbg' 'libnm-glib-vpn1' 'libmono-system-data-datasetextensions4.0-cil' 'dkimproxy' 'language-pack-zh-hant' 'libgnomevfs2-0' 'brltty-dbg' 'libscilab-java' 'linux-headers-3.2.0-38-generic-pae' 'unity-2d' 'robot-player' 'r-cran-gmaps' 'postfix-policyd-spf-perl' 'php-net-url' 'pente' 'libwt-dbg' 'librime-data-combo-pinyin' 'libnet-whois-raw-perl' 'libghc-mmap-doc' 'libghc-blaze-builder-prof' 'libdvdnav-dbg' 'libappframework-java-doc' 'kmidimon' 'guile-1.6' 'libgpepimc0' 'libobjc4-dbg-armel-cross' 'libgtksourceview2-cil-dev' 'gcompris-sound-he' 'lua-socket' 'nvidia-310-dev' 'python3-tz' 'python-pyudev' 'python-ldap' 'libreoffice-presentation-minimizer' 'libqimageblitz4' 'libdigest-sha-perl' 'libkrb5support0' 'libatasmart4' 'gcalctool' 'zemberek-server' 'winff-doc' 'python-goopy' 'python-django-pipeline' 'psi-plus-content-downloader' 'ocl-icd-opencl-dev' 'nordugrid-arc-aris' 'libossp-sa-dev' 'libghc-yesod-markdown-doc' 'libghc-sdl-dev' 'libghc-mersenne-random-dev' 'libghc-attempt-dev' 'libfloat-coq' 'libevemu-dev' 'kcharselect' 'gphpedit' 'gcompris-sound-eu' 'firmware-tools-gui' 'firebird2.5-classic-common' 'fex-utils' 'liburiparser1' 'dynare-common' 'texmacs' 'armagetronad-dedicated' 'apertium-eo-ca' 'libportaudiocpp0' 'libghc6-json-prof' 'voms-mysql-plugin-dbg' 'tesseract-ocr-mal' 'python-pgmagick' 'python-igraph' 'prime-dict' 'open-cobol' 'librivescript-perl' 'librhash-cil-dev' 'libghc-leksah-server-dev' 'libdeprecated-ruby1.8' 'libqtversit1' 'libdapserver7' 'libautounit2' 'ifrit' 'guile-1.8' 'libfreehep-graphicsio-pdf-java' 'fenix' 'libtransitioner1' 'libperl-dev' 'language-pack-gnome-tr-base' 'language-pack-gnome-sw-base' 'zzuf' 'tdiary-contrib' 'node-mapnik' 'libghc-strict-concurrency-prof' 'libeventdb2-dbg' 'libapache2-mod-ruid2' 'kabikaboo' 'jenkins-crypto-util' 'libhfgfortran-4.7-dev-armel-cross' 'gcompris-sound-fr' 'python-unidecode' 'libadplug-2.2.1-0' 'llvm-3.2-examples' 'libstrigihtmlgui-dev' 'vim-addon-manager' 'libghc6-hxt-dev' 'tesseract-ocr-jpn' 'node-modestmaps' 'libzinnia-dev' 'libghc-csv-conduit-doc' 'libclass-accessor-grouped-perl' 'kde-thumbnailer-deb' 'kamailio-json-modules' 'turba2' 'gcompris-sound-id' 'gcompris-sound-hi' 'aegis-doc' 'libalgorithm-diff-perl' 'cmake-doc' 'iproute' 'libpolkit-gobject-1-0' 'libghc6-haskore-dev' 'linux-backports-modules-cw-3.5-3.2.0-37-generic' 'mgltools-pybabel' 'ptex-jtex' 'scorched3d-data' 'sablecc' 'ubuntu-ui-toolkit-theme' 'qcake' 'omake' 'libxmlezout-dbg' 'libtrace3' 'libhtree-ruby1.9.1' 'libclang1' 'libicessl34' 'dnet-common' 'asterisk-core-sounds-fr-g722' 'ant1.7' 'libyelp0' 'fonts-mgopen' 'spice-vdagent' 'libpod-markdown-perl' 'libnet-twitter-perl' 'libjs-jquery-mobile' 'libghc-crypto-doc' 'sfftw-dev' 'get-flash-videos' 'libnet-socks-perl' 'dvgrab' 'libproc-simple-perl' 'pnm2ppa' 'libdrm-nouveau2-dbg' 'linux-tools' 'sugar-emulator-0.84' 'purrr' 'libghc6-sdl-image-dev' 'linux-backports-modules-cw-3.3-3.2.0-30-generic-pae' 'linux-backports-modules-cw-3.3-3.2.0-25-generic-pae' 'sword-dict-strongs-hebrew' 'sugar-connect-activity' 'recutils' 'qtcurve-i18n' 'yhsm-tools' 'python-mecab' 'libvldocking-java' 'libsteptalk-dev' 'libshout-ocaml-dev' 'libomxil-bellagio-doc' 'libmm-dbg' 'libknewstuff3-perl' 'libiptcdata-bin' 'libidzebra-2.0-mod-dom' 'libjama-java' 'kdebase-workspace' 'libguac-client-vnc0' 'gthumb' 'espeakedit' 'ttf-gfs-didot-classic' 'bombono-dvd' 'libipc-sharedcache-perl' 'sugar-emulator-0.90' 'mgltools-pyglf' 'sorune' 'python-gnupg' 'ncbi-blast+-legacy' 'libvte-ruby1.8' 'libshevek-doc' 'root-system-common' 'libpoe-api-peek-perl' 'libstapler-java-doc' 'libkiokudb-perl' 'libbuilder-ruby1.9.1' 'kjumpingcube' 'grcompiler' 'gnudatalanguage' 'gfxboot-themes-sles' 'fonts-cwtex-fs' 'fcitx-table-wu' 'ltsp-controlaula' 'bzr-explorer' 'jabberd2' 'python3-gdbm' 'libboost-thread1.46-dev' 'libecj-java' 'sugar-emulator-0.86' 'libgrinvin-core-java' 'gnuboy-x' 'qsapecng-doc' 'python3-cups' 'python-apsw-doc' 'pyscrabble-common' 'openarena-088-data' 'monodoc-poppler-manual' 'libmaven-clean-plugin-java' 'liblog4tango4-doc' 'libjthread-dev' 'libjboss-system-java' 'libghc-ncurses-dev' 'libghc-bindings-gpgme-dev' 'id3ren' 'gtk-theme-switch' 'asterisk-core-sounds-es-wav' 'libdebconf-kde0' 'libsnmp15-dbg' 'libegl1-mesa-drivers-dbg' 'libdconf-dev' 'libcommons-pool-java' 'latex2html' 'xiterm+thai' 'xblast' 'unicorn' 'tunnelx' 'traverso' 'python-ethtool' 'libstring-glob-permute-perl' 'libladr-dev' 'rsplib-docs' 'kamailio-geoip-modules' 'gnash-ext-lirc' 'gis-web' 'libkface1' 'libdynamite0' 'cl-irc' 'libmcs-dev' 'freedesktop-sound-theme' 'bind9' 'sugar-emulator-0.88' 'xserver-xorg-video-radeon-lts-quantal-dbg' 'uwsgi-plugin-fastrouter' 'sextractor' 'pidgin-plugin-pack' 'modem-cmd' 'libgtk2-ruby1.8-dbg' 'libgetopt-ocaml-dev' 'libdispatch-dev' 'libdata-clone-perl' 'libbluray-bdj' 'libaddressable-ruby1.9.1' 'lib64stdc++6-powerpc-cross' 'liblcmaps0' 'lazarus-ide-qt4' 'gsetroot' 'libprogressbar-ruby1.8' 'fts-ltsp-ldap' 'cl-ptester' 'lbzip2' 'rhythmbox-dbg' 'llvm' 'libcommons-net2-java-doc' 'libboost-iostreams1.46-dev' 'libmono-system-xml4.0-cil' 'gnome-desktop-environment' 'librpmbuild2' 'wkhtmltopdf' 'pdfmod-dbg' 'migemo-el' 'libjs-jquery-opacityrollover' 'libgtk3-perl' 'kedpm-gtk' 'kdeartwork-style' 'libxaw7-dbg' 'krb5-user' 'grub-efi-amd64-bin' 'xserver-xorg-video-glamo' 'libnpp4' 'language-pack-tlh' 'sooperlooper' 'qttools5-dbg' 'qtads' 'opendmarc' 'python-django-mumble' 'libsope1-dbg' 'ruby-qt4-test' 'libtorque2' 'libnotmuch-dev' 'libmeep-lam4-dev' 'libdbd-odbc-ruby' 'icc-utils' 'garlic-doc' 'fltk1.3-games' 'libcliquer1' 'aspell-zu' 'libio-interface-perl' 'munin-common' 'sdm-terminal' 'librpmbuild3' 'libnss-ldapd' 'libgtk-vnc-2.0-0-dbg' 'libcolamd2.7.1' 'linux-image-3.2.0-34-virtual' 'linux-image-3.2.0-29-virtual' 'linux-headers-3.2.0-36-generic-pae' 'svtools' 'zentyal-openvpn' 'ubuntukylin-theme' 'sugar-moon-activity' 'sugar-emulator-0.96' 'libmixlib-config-ruby' 'libpythia8' 'libcgi-application-plugin-actiondispatch-perl' 'libmoosex-traits-pluggable-perl' 'matchbox' 'dict-gazetteer2k-places' 'collectd-dev' 'libplplot-dev' 'chasen' 'python-webob' 'libgnomeui-doc' 'libcppunit-dev' 'ckermit' 'python-schooltool.lyceum.journal' 'libzapojit-doc' 'libscirenderer-java-doc' 'librime-data-wugniu' 'libnet-scp-ruby1.9.1' 'libm4ri-dev' 'liblicense-cli' 'libcheese-doc' 'libcephfs-java' 'gravitywars' 'libhpdf-2.2.1' 'edubuntu-fonts' 'dx-doc' 'cups-backend-bjnp' 'chromium-bsu' 'libfontenc1-dbg' 'libboost-python1.49.0' 'libaxis-java' 'sharutils' 'gir1.2-desktopcouch-1.0' 'gambas2-gb-net-smtp' 'svdrpservice-dev' 'ratbox-services-mysql' 'python-z3c.rml' 'pysycache-dblclick-appleandpear' 'meep-openmpi' 'libghc-puremd5-dev' 'libghc-aeson-prof' 'libgearman-dbg' 'libapron-ocaml' 'gcompris-sound-hu' 'dictionary-el' 'ttf-gfs-baskerville' 'python-flickrapi' 'fonts-ipafont' 'gajim' 'libraptor2-doc' 'at-spi2-core-dbg' 'libghc6-binary-shared-prof' 'fusionforge-plugin-contribtracker' 'ruby-amq-protocol' 'r-cran-combinat' 'python-zope.deprecation' 'php-horde-activesync' 'libsbml5-java' 'libnmap-parser-perl' 'libmialm2' 'libiml-dev' 'libmoosex-nonmoose-perl' 'libdata-streamdeserializer-perl' 'ldapscripts' 'libsparsehash-dev' 'pacemaker' 'glib-networking-dbg' 'mlocate' 'emacs' 'tth-common' 'python-brian-doc' 'pike7.8-pg' 'nemiver' 'mythtv-common' 'libwbxml2-0-dbg' 'libsfgcc1-dbg-armhf-cross' 'liblicense-dev' 'libghc-hsql-dev' 'libfltk-gl1.3' 'gcc-4.6-plugin-dev' 'crack-common' 'libc-icap-mod-clamav' 'vim-common' 'dvidvi' 'libghc6-texmath-prof' 'libopenvg1-mesa-lts-quantal-dbg' 'sqldeveloper-package' 'rsplib-legacy-wrappers' 'owncloud' 'openhpi-plugin-ipmi' 'micro-httpd' 'libossim1' 'libplexus-compiler-manager-java' 'liblrdf0-dev' 'libjs-async' 'gmt-doc-ps' 'libgladeui-1-11' 'gdb-source' 'fusil' 'fdclone' 'cp2k-data' 'ample' 'libsmokeqt4-dev' 'libdconf-dbus-1-0' 'libegl1-mesa' 'language-pack-sc-base' 'hplip-gui' 'guile-2.0' 'evolution-data-server-doc' 'emacs24-bin-common' 'uxlaunch' 'libghc6-ldap-doc' 'yabause-qt' 'tenace' 'shisa' 'ratmenu' 'openconnect' 'libupnp6-dev' 'libterm-shell-perl' 'libperl-prereqscanner-perl' 'kcoloredit' 'libitalc' 'gpsim' 'gcompris-sound-it' 'g++-mingw-w64-i686' 'quodlibet-plugins' 'clusterssh' 'cl-flexi-streams' 'binutils-source' 'xserver-xorg-input-evdev' 'wogerman' 'syslog-summary' 'gstreamer-tools' 'grub-efi-amd64-dbg' 'libnl-3-200' 'libgmp10' 'libcompress-raw-zlib-perl' 'libghc6-ftphs-dev' 'unity-webapps-launchpad' 'python-symeig' 'onscripter' 'onetime' 'mediawiki-extensions-fckeditor' 'libnss-pgsql2' 'libglobus-xio-gsi-driver-dev' 'libdata-validate-uri-perl' 'libcoin60-doc' 'ldm-lubuntu-theme' 'i8kutils' 'httrack' 'extplorer' 'python-dicoclient' 'pdns-server' 'coinor-libclp-dev' 'cconv' 'kdemultimedia-dbg' 'alpine' 'libghc6-haddock-dev' 'sbcl-source' 'pd-maxlib' 'mpb-mpi' 'lnpd' 'libteem-dev' 'libperlspeak-perl' 'libmysql-cil-dev' 'haskell-hdbc-postgresql-doc' 'libdata-parsebinary-perl' 'libcgal-dev' 'lammps' 'kanagram' 'httping' 'libxcb-sync0' 'libdb5.3-java' 'gir1.2-json-1.0' 'apache2-utils' 'sendpage-client' 'python-taurus' 'pvpgn' 'phamm' 'mu4e' 'mipe' 'ruby-tokyocabinet' 'libpod-index-perl' 'libmemphis-0.2-dev' 'libmarkdown-php' 'libghc-html-prof' 'libcommoncpp2-dbg' 'kubuntu-settings-low-fat' 'dnet-progs' 'claws-mail-archiver-plugin' 'altos' 'lupin-casper' 'libpolkit-gobject-1-dev' 'libghc6-ghc-mtl-dev' 'xfonts-bolkhov-koi8r-75dpi' 'med-pharmacy' 'lxgames-default-session' 'libstat-lsmode-perl' 'libgme-dev' 'libghc-categories-dev' 'libdigidocpp-common' 'libchi-driver-memcached-perl' 'libboost-mpi1.48-dev' 'libboost-mpi1.53-dev' 'lcmaps-plugins-basic-ldap' 'jing-trang-doc' 'gosa-plugin-gofon' 'libbenchmark-timer-perl' 'comixcursors-righthanded-opaque' 'cl-xptest' 'python-kinterbasdb' 'python-gd-dbg' 'mm-common' 'libice-dev' 'tao-cosnotification' 'libghc6-magic-dev' 'libghc6-happstack-data-doc' 'libmudflap0-4.5-dev-armel-cross' 'botan1.8-dbg' 'uec-provisioning-mirror' 'tesseract-ocr-lit' 'r-cran-fimport' 'python-pyside.phonon' 'python-zope.processlifetime' 'openarena-server' 'mrxvt' 'librtf-writer-perl' 'libjogl-java-doc' 'libghc-ranges-doc' 'libghc-xml-conduit-doc' 'libdime-doc' 'libksane0' 'jpegjudge' 'libgnustep-dl2-0d' 'gnomeradio' 'courier-imap' 'libmono-system-servicemodel-discovery4.0-cil' 'gambas2-gb-desktop' 'libkexiv2-10' 'xfonts-cronyx-koi8u-100dpi' 'tclcl' 'smartpm-core' 'libuima-as-java-doc' 'libpam-pwquality' 'libmaven-repository-builder-java' 'libgtkada-doc' 'libgeronimo-j2ee-connector-1.5-spec-java' 'libexcel-template-plus-perl' 'plasma-widget-homerun' 'libkasten2core2' 'k3b-dbg' 'jpeginfo' 'lp-solve' 'fdpowermon-icons' 'cervisia' 'akonadiconsole' 'libimlib2-dev' 'libcanberra-gtk3-0-dbg' 'traceroute' 'gstreamer0.10-x' 'gstreamer0.10-plugins-base-dbg' 'gir1.2-gconf-2.0' 'automake1.4' 'liboro-java' 'ctioga' 'xplot' 'scanssh' 'python-z3c.formui' 'med-imaging-dev' 'loki' 'libwireshark-dev' 'libtemplate-plugin-utf8decode-perl' 'libghc-gluraw-doc' 'libgdcm-cil' 'libthrowable-perl' 'libclaw-i18n' 'libcatalyst-plugin-customerrormessage-perl' 'libtao-dev' 'gcompris-sound-nb' 'libkexiv2-11' 'culmus-fancy' 'libfile-spec-perl' 'libcompizconfig0' 'libbobcat2' 'open-vm-source' 'tesseract-ocr-kor' 'python-vigra' 'python-pyside.qtsql' 'python-stemmer' 'morsegen' 'ltsp-cluster-control' 'libswami-dev' 'libghc-profunctor-extras-dev' 'libportlet-api-2.0-spec-java' 'libcameleon-ocaml-dev' 'krb5-auth-dialog' 'freemat' 'libhash-merge-perl' 'python-cliapp' 'libtest-warn-perl' 'libpango-perl' 'libtasn1-3-bin' 'iswedish' 'python3-apport' 'linux-image-3.2.0-31-generic' 'linux-image-3.2.0-26-generic' 'widelands-dbg' 'tnat64' 'qprint-doc' 'python-mpmath-doc' 'mirage' 'libunittest++-dev' 'libtest-databaserow-perl' 'libmodglue1-dev' 'liblbfgs-dev' 'libginac-dev' 'libghc-bzlib-prof' 'libeztrace-dev' 'dpsyco-ssh' 'libbobcat3' 'automake1.7' 'apertium-eo-es' 'qtbase5-dev-tools-dbg' 'libgail18' 'libghc6-monoid-transformer-dev' 'ubuntu-packaging-guide-epub-es' 'scilab-doc-fr' 'python-scikits.statsmodels' 'pocketsphinx-utils' 'petitboot' 'libxml-handler-printevents-perl' 'libwt-dev' 'libdvdnav-dev' 'libdune-geometry-dbg' 'libdevel-argnames-perl' 'hildon-theme-mobile-basic' 'zerofree' 'python-zope.component' 'freebirth-data' 'firebird2.5-server-common' 'blobandconquer-data' 'polkit-kde-1' 'language-pack-wae' 'hv-kvp-daemon-init' 'libavutil51' 'telepathy-salut' 'python-jarabe-0.84' 'libghc6-event-list-prof' 'linux-backports-modules-cw-3.4-3.2.0-38-virtual' 'sfcb-test' 'qcomicbook' 'qutecsound' 'python-comedilib' 'postgresql-9.1-repmgr' 'plasma-widget-nextwallpaper' 'libjorbis-java' 'libdata-types-perl' 'php-mdb2-driver-pgsql' 'mutter-dbg' 'einstein' 'blepvco' 'python-apscheduler' 'update-manager' 'php5-enchant' 'libexttextcat-2.0-0' 'automake1.9' 'python-jarabe-0.90' 'wx2.6-doc' 'xul-ext-lightning' 'python-pytils' 'pioneers-data' 'openshot' 'libtemplates-parser11.6-dbg' 'liboobs-1-5-dbg' 'libkfbapi-dev' 'libghc-sdl-doc' 'libghc-mersenne-random-doc' 'libghc-attempt-doc' 'libpawlib2-gfortran' 'qtdeclarative5-ubuntu-ui-toolkit-plugin' 'flwm-dbg' 'dict-freedict-fra-eng' 'libhttp-daemon-perl' 'snowdrop' 'libatlas3gf-base' 'libmpfr4' 'libplumbgpl2-dev' 'python-jarabe-0.86' 'fusionforge-standard' 'ruby-googlecharts' 'scilab-doc-ja' 'opendrim-lmp-cpu' 'mira-examples' 'libtext-dhcpleases-perl' 'libroot-proof-clarens5.34' 'librhash-cil-doc' 'libperl6-form-perl' 'libjenkins-commons-jelly-java-doc' 'libghc-statistics-prof' 'libghc-leksah-server-doc' 'librsplib2' 'libassa3.5-5-dbg' 'lib64go0-dbg' 'jlha-utils' 'neko' 'gnome-do-plugins' 'liblogback-java' 'fcitx-table-all' 'kde-l10n-ptbr' 'libapache2-mod-nss' 'python3-lxml-dbg' 'system-config-kickstart' 'libwhoopsie0' 'samhain' 'xxdiff-scripts' 'doc-rfc-old-std' 'sysrqd' 'pythia8-root-interface' 'objcryst-fox' 'libresiprocate-turn-client-1.8-dev' 'libmapscript-perl' 'libkasten2gui2' 'fonts-yanone-kaffeesatz' 'esniper' 'coinor-libipopt-dev' 'xotcl' 'language-pack-gnome-aa-base' 'openoffice.org-writer' 'fonts-khmeros-core' 'libntfs10' 'libghc6-hxt-doc' 'libmariadbd-dev' 'xfonts-bolkhov-koi8r-misc' 'python-jarabe-0.88' 'nfqueue-bindings-python' 'mp3cd' 'libzinnia-doc' 'libstdc++6-4.4-dbg-armel-cross' 'libvelocity-tools-java' 'libgivaro-dev' 'gosa-plugin-uw-imap' 'libdata-page-perl' 'libglobus-gssapi-gsi4' 'libsword9' 'python-testrepository' 'libqt4-assistant' 'gnome-shell' 'debootstrap' 'bzrtools' 'scim-bridge-client-qt4' 'libghc6-haskore-doc' 'synce-trayicon' 'libsss-sudo-dev' 'libsefs-dev' 'libscirenderer-java' 'libnet-xmpp-perl' 'libghc-attoparsec-dev' 'libdirectfb-1.2-9-dbg' 'libcdi-api-java-doc' 'gkrelltopd' 'gcompris-sound-pa' 'eclipse-jdt' 'blueman' 'python3-setuptools' 'libtasn1-3-dbg' 'libsgutils2-dev' 'libmono-system-servicemodel4.0-cil' 'libmono-data-tds2.0-cil' 'libaspell-dev' 'apparmor-docs' 'language-pack-gnome-la-base' 'unifdef' 'trac-includemacro' 'supercollider-supernova' 'uwsgi-core' 'php-horde-oauth' 'libosptk3-dbg' 'libmm-dev' 'libjxgrabkey-doc' 'libfusioninventory-agent-task-netdiscovery-perl' 'libosgi-compendium-java-doc' 'libexchangemapi-1.0-dev' 'libapq-postgresql3.2.0-dbg' 'gtamsanalyzer.app' 'gcompris-sound-nl' 'php-mail-mime' 'realpath' 'galax' 'language-pack-gnome-hu-base' 'libpth20' 'libghc6-sdl-image-doc' 'libghc6-glib-dev' 'libgradle-scala-java' 'tilestache' 'seyon' 'python-pydhcplib' 'python-jarabe-0.96' 'r-bioc-biobase' 'ruby-krb5-auth' 'libghc-split-dev' 'libdap-bin' 'supertuxkart' 'gem-plugin-v4l2' 'gcompris-sound-mr' 'libcflow-perl' 'gtk3-engines-unico' 'efibootmgr' 'account-plugin-yahoo' 'libtulip-ogl-3.1' 'libghc6-debian-prof' 'planfacile' 'octave-fixed' 'mp3info-gtk' 'linaro-image-tools' 'libpostscript-file-perl' 'libpadre-plugin-parsertool-perl' 'libavbin0' 'libdancer-plugin-dbic-perl' 'gcompris-sound-nn' 'libgo0-dbg-powerpc-cross' 'edubuntu-desktop' 'ruby-kakasi' 'python-gnome2' 'xz-lzma' 'libcxsparse2.2.3' 'language-pack-kde-kn-base' 'allegro-demo' 'xen-hypervisor-4.1-amd64' 'broadcom-sta-dkms' 'writer2latex-manual' 'v4l-utils' 'tenmado' 'tryton-modules-calendar-scheduling' 'midgard2-bin' 'libmagics++-data' 'libjthread-doc' 'libjs-jquery-history' 'libibus-qt-dev' 'libghc-ncurses-doc' 'libghc-bindings-gpgme-doc' 'libestraier-ruby-doc' 'ii-esu' 'gnuchess-book' 'gnome-nettool' 'python-stevedore' 'pylint' 'libxcb-render-util0' 'libdconf-doc' 'libsigc++-2.0-dev' 'language-pack-gnome-wa-base' 'language-pack-gnome-uk-base' 'libflite1' 'python-support' 'libpt-1.10.10-dbg' 'libghc6-sdl-gfx-dev' 'linux-backports-modules-cw-3.3-3.2.0-37-virtual' 'octave-audio' 'nordugrid-arc-client' 'wine1.4-i386' 'libmcs-doc' 'libexif-ruby1.9.1' 'libmodule-refresh-perl' 'libclass-dbi-plugin-retrieveall-perl' 'knode' 'kblocks' 'fizmo-console' 'falconpl-dbg' 'debian-faq-zh-cn' 'courier-authlib-ldap' 'ceilometer-collector' 'arp-scan' 'rhythmbox-dev' 'libqt4-declarative' 'libasound2-python' 'python3-tempita' 'python-webpy' 'python-jabberbot' 'passwdqc' 'palbart' 'plplot-doc' 'libpam-cgroup' 'libocamlnet-ssl-ocaml-dev' 'l7-filter-userspace' 'libjhdf4-java' 'fp-units-multimedia' 'fp-units-i386-2.6.0' 'bicyclerepair' 'libjs-scriptaculous' 'libwebkit-cil-dev' 'libxaw7-dev' 'libmono-i18n2.0-cil' 'libopencryptoki-dev' 'libcglib-java-doc' 'uim-applet-kde' 'qttools5-dev' 'php-text-wiki' 'miro' 'loadlin' 'libroot-graf3d-gl-dev' 'librelative-perl' 'libecore-fb1' 'libbiojava3.0-java' 'kdesvn' 'gputils-doc' 'geximon' 'garmin-forerunner-tools' 'fonts-cwtex-yen' 'aoeui' 'fonts-stix' 'python3-all' 'python-logilab-common' 'libyaml-shell-perl' 'libegl1-mesa-drivers' 'fakeroot' 'base-files' 'python-sugar-0.84' 'typo3-dummy' 'tesseract-ocr-mkd' 'tboot' 'task-spooler' 'sidplayfp' 'ruby-rack-protection' 'python-gtk2-tutorial' 'penguintv' 'libxpa-dev' 'libsword-utils' 'libnet-dpap-client-perl' 'libmath-basecnv-perl' 'libboost1.49-all-dev' 'libqt4pas-dev' 'katomic' 'gridengine-qmon' 'gbrowse-data' 'udpcast' 'famfamfam-silk' 'bochsbios' 'libgphoto2-port0' 'libopenipmi0' 'python-sugar-0.90' 'libosip2-4' 'libgfcui-2.0-0c2a' 'fp-compiler-2.4.4' 'uim-el' 'ssh-askpass-fullscreen' 'postgres-xc-dbg' 'ndiswrapper-common' 'mysqltcl' 'libtulip-ogl-3.7' 'libmono-reflection-cil' 'libmerb-param-protection-ruby1.8' 'liblua5.1-soap-dev' 'libbdd-dev' 'lib64objc4-dbg-powerpc-cross' 'dynalogin-server' 'libnetcdfc7' 'buzztard-data' 'add-apt-key' 'libxpp3-java' 'libcppunit-doc' 'libaprutil1-dbd-odbc' 'linux-backports-modules-cw-3.4-3.2.0-40-generic' 'linux-backports-modules-cw-3.4-3.2.0-35-generic' 'zhcon' 'python-sugar-0.86' 'smuxi-frontend-gnome' 'science-dataacquisition-dev' 'radiance-sse3' 'php5-vtkgdcm' 'pgagent' 'opendrim-lmp-dns' 'libvibrant6a-dbg' 'libtimbl3-dev' 'libirclib-java-doc' 'libghc-yaml-light-dev' 'libghc-glut-prof' 'libghc-byteorder-prof' 'suphp-common' 'gambc' 'libwx-perl' 'libgearman-dev' 'python-pyinotify' 'libxpm4-dbg' 'python-sugar-0.92' 'k9copy' 'inform' 'scim-modules-table' 'repmgr-dbg' 'refdb-server' 'python3-bs4' 'libucimf-dev' 'libnjb-tools' 'libgoocanvasmm-2.0-dev' 'libgio-cil' 'libghc-puremd5-doc' 'libecore-dbg' 'hol88' 'frama-c' 'conservation-code' 'amule-adunanza-utils-gui' 'ubuntu-sso-client-qt' 'libqpdf10' 'openjdk-7-jre-headless' 'xserver-xorg-video-ivtv-dbg' 'libjai-core-java' 'xfce4-messenger-plugin' 'tcputils' 'tclex' 'synfig-examples' 'python-sugar-0.88' 'node-contextify' 'libzip-ruby1.9.1' 'libtheora-bin' 'libtemplate-plugin-json-escape-perl' 'libjs-jquery-ui-theme-dark-hive' 'libghc-base16-bytestring-prof' 'libosip2-7' 'libdbd-odbc-ruby1.8' 'libopencv-ml-dev' 'libgraphics-color-perl' 'python-pyside.qtsvg' 'libevent-1.4-2' 'auto-multiple-choice-common' 'advi-examples' 'openjade1.3' 'python-twisted-calendarserver' 'wader-core' 'trac-wikitablemacro' 'spectrwm' 'remuco-quodlibet' 'ratproxy' 'python-z3c.form' 'python-pypsignifit' 'python-cluster' 'pd-purepd' 'nikwi-data' 'mx44' 'libmsgpack-dev' 'libmplex2-2.0-0' 'libmason-perl' 'libgrib-api-data' 'libghc-hsql-doc' 'libbeecrypt-dev' 'jzip' 'gsimplecal' 'ttf-rufscript' 'elinks-data' 'edos-rpmcheck' 'd-itg' 'cdbackup' 'librabbitmq0' 'python-lzma-dbg' 'python-netaddr' 'libspice-client-glib-2.0-1' 'libgnutlsxx27' 'libqtgui4-perl' 'libhdf5-mpich-1.8.4' 'k3dsurf' 'libydpdict2-dev' 'r-cran-lattice' 'libsolr-java' 'librime-data-quick5' 'libpam-nufw' 'libgnutlsxx28' 'libghc-terminfo-prof' 'github-backup' 'ttf-mona' 'epigrass' 'dpsyco' 'abraca' 'latexmk' 'liblog4net1.2-cil' 'elks-libc' 'libghc6-hint-prof' 'yorick-mpeg' 'virtuoso-opensource' 'verbiste-gnome' 'srtp-docs' 'python-gnatpython' 'python-sugar-0.96' 'picolisp' 'libupnp6-doc' 'libsvn-svnlook-perl' 'libsdl-mixer-gst' 'libnb-platform13-java-doc' 'libtemplate-plugin-javascript-perl' 'libmaven-antrun-extended-plugin-java-doc' 'libdb1-compat' 'libcipux-passwd-perl' 'libboost1.53-dbg' 'liballegro-dialog5-dev' 'latexml' 'kdemultimedia-dev' 'kleopatra' 'gnome-media' 'ember' 'xfonts-intl-asian' 'db4otool' 'blobandconquer' 'mono-xsp2' 'libnet-ident-perl' 'libfftw3-bin' 'libboost1.48-dbg' 'authbind' 'libghc6-ifelse-dev' 'libghc6-ftphs-doc' 'lib64expat1' 'stardict-common' 'pari-elldata' 'ruby-twitter4r' 'libluabridge-ruby1.8' 'libjs-jquery-geo-doc' 'libhtml-embedded-turtle-perl' 'libglobus-xio-gsi-driver-doc' 'libghc-nats-dev' 'nas-bin' 'gtk-redshift' 'fonts-lohit-gujr' 'coinor-libclp-doc' 'claws-mail-dbg' 'lightdm-remote-session-freerdp' 'x11proto-xext-dev' 'etckeeper' 'obm-ui' 'libghc6-haddock-doc' 'jampal' 'starplot' 'python-transaction' 'php5-svn' 'php-html-template-it' 'pax-britannica' 'open-axiom' 'nethack-x11' 'mono-xsp4' 'libmoneta-ruby1.8' 'libglib2.0-0-refdbg' 'libcommoncpp2-dev' 'libclass-base-perl' 'kdesdk-kio-plugins' 'plasma-scriptengines' 'infernal-dbg' 'gfortran-aarch64-linux-gnu' 'libgeotiff2' 'fishpolld' 'graphicsmagick' 'debian-ports-archive-keyring' 'debian-installer-launcher' 'ckeditor' 'libpacklib-lesstif1-dev' 'python-webkit-dev' 'lsb-languages' 'libucil2-dev' 'virtualbox-dbg' 'sflphone-data' 'root-plugin-graf2d-x11' 'python-django-celery-doc' 'mumble-server' 'libnet-ssh2-ruby' 'libmumps-ptscotch-dev' 'libmaven-javadoc-plugin-java' 'libhttp-access2-ruby1.8' 'ruby-httpclient' 'lilypond-doc' 'krecipes' 'cryptcat' 'collatinus' 'quantum-plugin-openvswitch-agent' 'language-pack-ha-base' 'libv4l-0' 'libghc6-smtpclient-dev' 'libghc6-ghc-mtl-doc' 'libghc6-cgi-prof' 'libcolt-java-doc' 'xnec2c' 's3270' 'pybik' 'cim-schema' 'ngraph-gtk' 'mcron' 'libvomsjapi-java' 'libsys-statistics-linux-perl' 'libproc-invokeeditor-perl' 'libkal-dev' 'libjackrabbit-java' 'libghc-quickcheck2-prof' 'libghc-categories-doc' 'ruby-fusefs' 'libfacets-ruby1.8' 'libapache-htgroup-perl' 'kdegames-card-data' 'gozer' 'gcompris-sound-pt' 'yaws-doc' 'lastfmsubmitd' 'sasl2-bin' 'libice-doc' 'libcunit1-dev' 'liblcms1' 'xserver-xorg-video-s3virge' 'libghc6-magic-doc' 'libghc-happstack-util-prof' 'linux-backports-modules-net-3.2.0-40-generic-pae' 'linux-backports-modules-net-3.2.0-35-generic-pae' 'linux-backports-modules-cw-3.3-3.2.0-34-generic' 'linux-backports-modules-cw-3.3-3.2.0-29-generic' 'libutouch-grail1' 'alien-arena-data' 'sa-exim' 'python-pysolr' 'libstfl0' 'libshout-idjc3' 'mythtv' 'libgpeschedule-dev' 'kadu-themes' 'kscreensaver' 'gnome-games-extra-data' 'libspice-client-glib-2.0-8' 'gem-plugin-jpeg' 'rox-filer' 'cube2font' 'libtheora-dbg' 'libtest-fatal-perl' 'libneon27' 'metacity' 'libxrandr-ltsq2' 'r-cran-multcomp' 'python3-pandas-lib' 'mysql-source-5.5' 'liquidsoap-plugin-jack' 'libiptables-chainmgr-perl' 'libgtkmm-utils-dev' 'kruler' 'sdic-edict' 'charm-tools' 'kde-l10n-ca' 'libytnef0-dev' 'libxcb-dpms0' 'libhdate-dev' 'language-pack-sa-base' 'libtao-doc' 'gradle-doc' 'tads2-dev' 'ruby-archive-tar-minitar' 'python-zope.dublincore' 'opendnssec-dbg-sqlite3' 'openafs-modules-dkms' 'nordugrid-arc-datadelivery-service' 'nget' 'libvalhalla-bin' 'libmupen64plus-dev' 'kde-l10n-bg' 'grub-emu-dbg' 'flegita-gimp' 'libnetcdff5' 'erlang-jiffy' 'dibbler-relay' 'abntex' 'libxcb-glx0-dbg' 'libsaamf3-dev' 'otf-ipafont-gothic' 'mysql-client' 'linux-backports-modules-cw-3.4-precise-generic' 'pptview' 'uwsgi-plugin-echo' 'ucblogo' 'python-execnet' 'projectl' 'phpsysinfo' 'libxml-quote-perl' 'libtex-encode-perl' 'libqglviewer-dev-common' 'libpqxx3-dev' 'libmodule-starter-plugin-simplestore-perl' 'libimage-seek-perl' 'libghc-profunctor-extras-doc' 'iwidgets4-doc' 'librenaissance0' 'libepc-1.0-3' 'geekcode' 'etsf-io' 'libmediainfo0' 'epiphany-browser' 'openssh-blacklist-extra' 'libfftw3-dbg' 'tads2-mode' 'sysnews' 'osgearth-data' 'munge' 'libsamba-policy0' 'libpolybori-0.8-3-dbg' 'libncurses-ruby1.8' 'libghc-free-dev' 'libdune-geometry-dev' 'libapogee-dev' 'kronolith2' 'hfsprogs' 'dwdiff' 'python-cclib' 'libdb5.1-java' 'gnome-desktop-data' 'language-pack-zu-base' 'libfence4' 'libghc6-monoid-transformer-doc' 'libghc6-filestore-dev' 'libgl1-mesa-swx11-dbg' 'r8168-dkms' 'r-cran-vegan' 'python-pycryptopp' 'lincity-ng-data' 'libwt-doc' 'libnet-nis-perl' 'libncurses-ruby1.9' 'libghc-http-conduit-dev' 'libghc-hledger-dev' 'gnats-user' 'bzr-rewrite' 'texi2html' 'libgrantlee-dev' 'nautilus-wallpaper' 'smuxi-server' 'node-zipfile' 'melting-gui' 'libyojson-ocaml-dev' 'plplot11-driver-gd' 'libgrss-dev' 'libghc-comonad-transformers-prof' 'libtemplates-parser11.6-dev' 'i965-va-driver' 'gramadoir' 'gcompris-sound-sl' 'gambas3-gb-eval-highlight' 'fatattr' 'cl-sql-aodbc' 'kde-l10n-da' 'aolserver4-nssha1' '3270-common' 'fglrx-updates' 'libraptor2-0' 'libgtk-vnc-1.0-0' 'fp-docs-2.4.4' 'ratbox-services-common' 'mono-complete' 'libverbiste-dev' 'libtext-qrcode-perl' 'libsystemu-ruby-doc' 'libmock-quick-perl' 'libassa3.5-5-dev' 'libsearch-xapian-perl' 'gcompris-sound-th' 'cutter' 'convert-pgn' 'python3-dbg' 'libmount1' 'sigit' 'awn-applet-cpufreq' 'uncrustify' 'ulogd-pcap' 'python-yapgvb' 'python-simpleparse-mxtexttools' 'octave-nan' 'moblin-cursor-theme' 'libghc-monoid-transformer-prof' 'libdbix-contextualfetch-perl' 'libdaemons-ruby1.8' 'ttf-oxygen-font-family' 'kdevelop-dbg' 'kde-l10n-ar' 'libmutter-dev' 'libcaribou0' 'fte-xwindow' 'libclang-dev' 'cliofetion' 'svn2cl' 'qemu-system-sparc' 'munin-plugins-core' 'libburn-dbg' 'libatk1.0-dbg' 'python-pexpect' 'aspell-doc' 'mp3fs' 'websvn' 'unity-2d-panel' 'tesseract-ocr-mlt' 'sgrep' 'propaganda-debian' 'libtest-xpath-perl' 'libpdl-linearalgebra-perl' 'libodbc-ruby1.9.1' 'libhtml-wikiconverter-dokuwiki-perl' 'libgmlib1-dbg' 'libghc-yesod-routes-dev' 'libghc-hamlet-prof' 'libastro-fits-cfitsio-perl' 'krusader' 'jabref-plugin-oo' 'ngspice' 'glue-sprite' 'gcompris-sound-so' 'coinor-libipopt-doc' 'python3-lazr.uri' 'nautilus' 'links' 'libunity9' 'libghc6-explicit-exception-prof' 'libmariadbclient-dev' 'qmail-uids-gids' 'pythoncad' 'python-django-djapian' 'miwm' 'libtiles-java-doc' 'muroard' 'libmowgli2-dbg' 'libhpricot-ruby1.8' 'libghc-failure-dev' 'libextutils-autoinstall-perl' 'gxineplugin' 'goban-ss' 'libgivaro-doc' 'gcompris-sound-ru' 'conglomerate-common' 'kde-l10n-de' 'libtasn1-3-dev' 'libfile-listing-perl' 'exim4-config' 'erlang-erl-docgen' 'tntdb-postgresql2' 'screenlets-doc' 'ruby-ttfunk' 'wx2.8-examples' 'popa3d' 'olpc-kbdshim-common' 'libquicktime-dev' 'libpam-systemd' 'libosptk3-dev' 'libhpricot-ruby1.9' 'libgit2-dbg' 'libghc-attoparsec-doc' 'libelektra-cpp-dev' 'libapq-postgresql3.2.0-dev' 'jenkins-executable-war-doc' 'tesseract-ocr' 'freedink-dfarc-dbg' 'cpp-arm-linux-gnueabihf' 'node-xml2js' 'ophcrack' 'libserf-dev' 'libclutter-gtk-1.0-dbg' 'torus-trooper-data' 'scilab-scimysql' 'python-ldns' 'python-circuits-doc' 'plasma-widget-tictactoe' 'plasma-runner-installer' 'libxml-parser-ruby1.9.1' 'tntdb-postgresql3' 'libqtscript4-webkit' 'libopenraw1' 'libmaven2-core-java-doc' 'liblinux-inotify2-perl' 'globus-rls-client-dbg' 'gcompris-sound-sr' 'gccgo-4.7-multilib' 'bzr-fastimport' 'libbluedevil1' 'libiksemel3' 'ifenslave-2.6' 'myspell-fr-gut' 'aisleriot' 'libghc6-glib-doc' 'midisport-firmware' 'ttf-motoya-l-maruberi' 'tryton-modules-ldap-authentication' 'sepol-utils' 'python-medusa-doc' 'python-shapely' 'nautilus-open-terminal' 'libswiften2' 'libprawn-ruby1.8' 'liblensfun-data' 'libjutils-java' 'libghc-split-doc' 'libdevel-leak-perl' 'libclass-loader-perl' 'nordugrid-arc-chelonia' 'kamailio-cpl-modules' 'gmerlin-data' 'flydraw' 'connect-proxy' 'cl-lml' 'acl2-books' 'libmalaga7' 'libarmadillo2' 'gir1.2-gjsdbus-1.0' 'gambas2-gb-web' 'scim-mozc' 'xen-hypervisor-4.1-i386' 'ogmrip-ac3' 'node-which' 'nfdump' 'mediatomb' 'mrtrix' 'medcon' 'libroot-math-quadp-dev' 'libdns-ruby1.8' 'libopencv-flann-dev' 'gosa-plugin-rolemanagement' 'ecatools' 'debichem-cheminformatics' 'darkplaces-server' 'commit-patch' 'kde-l10n-bs' 'librspec-ruby1.8' 'libffi-ruby1.8' 'libirman-dev' 'libpadwalker-perl' 'gir1.2-javascriptcoregtk-1.0' 'libpt-1.10.10-dev' 'tdfsb' 'libplexus-maven-plugin-java' 'libjs-dojo-core' 'libghc-uulib-prof' 'libarmadillo3' 'janino' 'libgnome2-wnck-perl' 'falconpl-dev' 'libsigc++-2.0-doc' 'gir1.2-gtk-2.0' 'python3-apt' 'libghc6-sdl-gfx-doc' 'scilab-ann' 'radsecproxy' 'libmysql-ruby' 'libghc-void-prof' 'libghc-mime-types-prof' 'libdumbster-java' 'libdcerpc-server-dev' 'libcatalyst-plugin-smarturi-perl' 'kde-l10n-fa' 'irssi-plugin-otr' 'gmlive' 'gcompris-sound-sv' 'fonts-ipaexfont-gothic' 'kolourpaint4' 'rhythmbox-doc' 'libgnome2-0' 'libgoogle-perftools0-dbg' 'xtables-addons-dkms' 'sqliteman-doc' 'slbackup' 'python-joblib' 'nemo-keyboard' 'libtest-needsdisplay-perl' 'siscone-doc-html' 'libparanoid-perl' 'libntrack-glib-dev' 'libjana-examples' 'libhdf5-openmpi-7-dbg' 'libghc-hslogger-prof' 'libghc-ekg-prof' 'gem-dev' 'gcompris-sound-tr' 'clang-3.2' 'archivemount' 'gir1.2-ecalendar-1.2' 'gimp-help-de' 'sdic-eijiro' 'tesseract-ocr-nld' 'sumo-tools' 'putty' 'libzeroc-ice3.4-cil' 'libzemberek-tr-java' 'libqtgconf1' 'libnetsds-kannel-perl' 'libhmac-ruby1.8' 'libfssm-ruby1.8' 'libio-async-perl' 'jmeter-java' 'guile-gnome2-gtk' 'gosa-plugin-nagios-schema' 'libgnome-media-profiles-3.0-0' 'geographiclib-tools' 'kde-config-fcitx' 'audacity-dbg' 'cdparanoia' 'mdbtools-dbg' 'libhangul-dev' 'fonts-takao-mincho' 'gcc-4.5-arm-linux-gnueabi-base' 'xball' 'socks4-server' 'olsrd-plugins' 'libroot-graf2d-graf-dev' 'libmoosex-types-datetime-morecoercions-perl' 'libhtmlentities-ruby1.8' 'kde-l10n-cs' 'libkeduvocdocument4' 'gssdp-tools' 'nvidia-current' 'python-bson-ext' 'libnfsidmap2' 'libiw-dev' 'tclxml-dev' 'scorched3d-dbg' 'python-levenshtein' 'pyjamas-ui' 'liquidsoap-plugin-icecast' 'libuima-vinci-java' 'libserp-java' 'libobject-multitype-perl' 'libkaya-ncursesw-dev' 'libiptcdata-doc' 'libghc-uniplate-prof' 'libghc-semigroupoids-prof' 'libghc-hs-bibutils-prof' 'libdevel-declare-perl' 'libdap-dev' 'libcgi-application-plugin-session-perl' 'jruby' 'elfrc' 'dict-freedict-lat-deu' 'dcap-tunnel-telnet' 'verilog' 'coinor-libcgl0' 'bibclean' 'auto-multiple-choice-doc-pdf' 'atitvout' 'unrar' 'g++-4.6-multilib-arm-linux-gnueabihf' 'libfm1-dbg' 'uae-dbg' 'xcompmgr' 'roundcube-core' 'python-leveldb' 'python-django-pagination' 'pycode-browser' 'libudns-dev' 'libnetsvcs-dev' 'libhtml-wikiconverter-kwiki-perl' 'libguestfs-ocaml' 'libghc-yaml-light-doc' 'libghc-non-negative-dev' 'libgearman-doc' 'libclass-container-perl' 'kde-l10n-ga' 'grive' 'gamgi' 'libecore-dev' 'language-pack-kde-kl-base' 'libibumad1' 'gnuboy-svga' 'xotcl-dev' 'wotsap' 'love' 'libsmokekde-dev' 'libmm-ocaml' 'libindicator-tools' 'libgoocanvasmm-2.0-doc' 'libmeta-builder-perl' 'libdatetime-format-flexible-perl' 'libbluray-dev' 'iftop' 'gcompris-sound-ur' 'colrconv' 'kde-l10n-el' 'calligrawords' '0ad-data-common' 'libpackagekit-glib2-14' 'ttf-farsiweb' 'auctex' 'xchain' 'nova-api-os-volume' 'node-sax' 'r-bioc-qvalue' 'librtaudio4' 'libmunge-dev' 'libghc-ranged-sets-prof' 'libautovivification-perl' 'kdiff3' 'libkpimtextedit4' 'ircd-irc2' 'svgpart' 'gniall' 'evolver' 'elida' 'abacas' 'php-radius-legacy' 'munin' 'libcupsmime1-dev' 'libaudiofile-dbg' 'libnettle4' 'libdmraid1.0.0.rc16' 'fonts-freefont-ttf' 'sofa-doc' 'fp-units-gtk-2.4.4' 'lgrind' 'python-midiutil' 'myspell-tools' 'mercurial-nested' 'lua-dbi-common' 'libtest-email-perl' 'libghc-statevar-dev' 'libclucy-clojure' 'libibumad3' 'freealchemist' 'kde-l10n-fi' 'python-cherrypy3' 'python-polib-doc' 'libdc1394-22' 'libghc6-quickcheck2-dev' 'kde-l10n-eo' 'tryton-modules-stock-supply' 'tesseract-ocr-msa' 'pd-ggee' 'libpoe-component-client-dns-perl' 'libnews-article-perl' 'libkohana3.1-mod-codebench-php' 'libhtml-highlight-perl' 'libgpp4f-0' 'libgl2ps0-dbg' 'libcryptokit-ocaml-dev' 'libboost1.53-dev' 'libnetx-java' 'hama-slide-mouse-control' 'gtali' 'ecasound-doc' 'd-feet' 'asterisk-core-sounds-es-g722' 'libboost1.48-dev' 'fonts-nafees' 'bind9-host' 'ruby-capistrano-colors' 'python-van.pydeb' 'python-taurus-doc' 'mpeg3-utils' 'libtogl1' 'socks4-clients' 'libsbml5' 'libneedle-extras-ruby1.8' 'libbunny-ruby' 'kdeplasma-addons-dbg' 'gccgo-multilib' 'fso-gsmd-dbg' 'ttf-inconsolata' 'florence' 'libconcurrentlinkedhashmap-java' 'libtimbl3' 'python-libxslt1' 'pidgin-facebookchat' 'libdb5.1-sql-dev' 'libasm3-java' 'html2ps' 'libghc6-type-level-dev' 'libghc6-ifelse-doc' 'libgenrunner0.6' 'xfce4-time-out-plugin' 'weka-doc' 'libpam-python-doc' 'liblua5.1-filesystem-dev' 'libghc-utility-ht-prof' 'libghc-nats-doc' 'gnat-gps-dbg' 'lib64go0' 'gccgo' 'fatsort' 'cthumb' 'aspell-pt-br' 'polipo' 'libnatpmp-dev' 'libboost-thread-dev' 'datafreedom-perl' 'weston' 'python3-cffi-dbg' 'libswarmcache-java' 'libghc-shakespeare-text-prof' 'libghc-http-types-dev' 'libghc-explicit-exception-dev' 'libdancer-session-cookie-perl' 'libcommoncpp2-doc' 'gnustep-make-doc' 'flickrfs' 'libapache2-mod-dacs' 'aolserver4-daemon' 'libkpathsea-dev' 'python-notify' 'libgstreamer1.0-dev' 'germinate' 'libghc6-filestore-prof' 'libghc6-filemanip-dev' 'wide-dhcpv6-server' 'tuxonice-userui' 'speedometer' 'qtmultimedia5-examples' 'mummy' 'lsdb' 'libsyntax-highlight-engine-simple-languages-perl' 'libnotify-cil-dev' 'libghc-monad-par-prof' 'libfile-scan-perl' 'kde-telepathy-auth-handler-dbg' 'jclic' 'infon-viewer' 'geoclue-gypsy' 'libg15render1' 'libfile-ncopy-perl' 'libdspam7-drv-hash' 'drizzle-plugin-regex-policy' 'kde-l10n-es' 'python3-pyqt4.qtsql-dbg' 'numlockx' 'libmono-cscompmgd8.0-cil' 'emacs24-el' 'diffstat' 'bluez-gstreamer' 'linux-image-extra-3.8.0-15-generic' 'libghc6-smtpclient-doc' 'linux-backports-modules-net-3.2.0-38-virtual' 'turnin-ng' 'python-squaremap' 'r-recommended' 'motion' 'lilypond-data' 'libocsync-dev' 'libmgl-qt5' 'libjmagick6-java' 'libsyslog-ng-dev' 'ruby-hyperestraier' 'libdvbcsa-dev' 'libdata-section-simple-perl' 'kde-l10n-he' 'grhino-data' 'gnome-hwp-support-dbg' 'kde-l10n-et' 'loggerhead' 'xfonts-scalable' 'libcunit1-doc' 'libtheora-dev' 'irqbalance' 'libblkid1' 'ubuntu-orchestra-modules-common' 'scim-python-englishwriter' 'libdrizzle0' 'libconfig++8' 'skksearch' 'python-vipscc' 'php-horde-elasticsearch' 'paje.app' 'mcollective-client' 'libs3decoder0' 'librcsb-core-wrapper0-dbg' 'libwxbase2.8-dbg' 'libbpp-phyl-dev' 'libvomsapi1' 'kde-l10n-ia' 'kde-l10n-eu' 'libganglia1' 'fuse-zip' 'ttf-lg-aboriginal' 'emerillon' 'libdb4o8.0-cil' 'cdd-dev' 'amarok-help-pt-br' 'adanaxisgpl-data' 'zsh-dbg' 'libzeitgeist-dev' 'libgksu2-dev' 'libcunit1-ncurses' 'iamerican-small' 'gstreamer0.10-plugins-base-doc' 'gimp-help-en' 'sendmail-bin' 'turqstat' 'libdrizzle1' 'linux-headers-lbm-3.2.0-39-virtual' 'openoffice.org-impress' 'manpages-posix-dev' 'r-cran-multicore' 'desktopcouch' 'lsat' 'lout' 'libreoffice-dmaths' 'libphone-ui-dev' 'libmail-verp-perl' 'libghc-libzip-prof' 'libghc-curl-dev' 'libghc-bindings-sane-prof' 'libchronic-ruby' 'libapache2-mod-qos' 'kwave-dbg' 'httest' 'gbonds-data' 'kde-l10n-gl' 'bpython' 'binkd' 'arduino-core' 'aspcud' 'libxcb-glx0-dev' 'libconfig++9' 'xfonts-thai-manop' 'tinyscheme' 'ri-li' 'lzip-dbg' 'ludevit' 'libwiki-toolkit-plugin-json-perl' 'libstdc++6-powerpc-cross' 'slv2-jack' 'libnetfilter-queue1-dbg' 'libghc-hjscript-prof' 'libdose2-ocaml' 'libdbix-fulltextsearch-perl' 'libntl0' 'dia-libs' 'dangen' 'kde-l10n-fr' 'libfftw3-dev' 'libbluetooth-dev' 'libpalm-perl' 'libglade2.0-cil' 'openoffice.org-style-hicontrast' 'libwayland-ltsq0-dbg' 'vnc-java' 'totem-plugins-dvb-daemon' 'libpqxx3-doc' 'libphotos202-1-gfortran' 'libsmokekparts3' 'libghc-gtksourceview2-dev' 'libb-hooks-op-check-entersubforcv-perl' 'libapache2-mod-rpaf' 'libacsccid1' 'kde-l10n-id' 'kde-l10n-hi' 'fonts-sil-doulos' 'doc-linux-fr-html' 'debram-data' 'cultivation' 'apf-firewall' 'libxcb-xprint0' 'libreoffice-help-pt-br' 'libmono-rabbitmq4.0-cil' 'libjs-yui3-doc' 'python-aptdaemon.gtk3widgets' 'pinentry-gtk2' 'mime-support' 'umview-mod-umfuseext2' 'mecab-naist-jdic' 'libgv-ruby' 'libghc-random-prof' 'libghc-profunctors-dev' 'libghc-haskore-dev' 'libghc-free-doc' 'libdune-geometry-doc' 'libdrizzle4' 'libplexus-velocity-java' 'libcuba3-dbg' 'fp-compiler-2.6.0' 'libgl1-mesa-swx11-dev' 'libipmidetect-dev' 'sipsak' 'mksh' 'procps' 'libghc6-filestore-doc' 'wesnoth-1.10-utbs' 'php-xml-rpc' 'netcdf-ruby1.8-dbg' 'libosm-gary68-perl' 'liblogback-java-doc' 'libjoptsimple-java-doc' 'libtest-www-selenium-perl' 'libtest-mockmodule-perl' 'libghc-hledger-doc' 'libghc-doctest-dev' 'libghc-http-conduit-doc' 'libchromaprint-tools' 'libapache2-mod-ruwsgi-dbg' 'ktux' 'kde-l10n-ja' 'ibus-xkbc' 'i965-va-driver-dbg' 'fonts-beteckna' 'python-renderpm' 'pidgin-libnotify' 'gamin' 'libfolks-dbg' 'gimp-help-es' 'language-pack-gd-base' 'language-pack-fi-base' 'language-pack-en-base' 'libmarkaby-ruby' 'gobjc-4.6-multilib-arm-linux-gnueabihf' 'unity-webapps-vkcom' 'smuxi-engine' 'python-zope.app.exception' 'python-validictory' 'libspatialindex-dev' 'libpoe-component-client-mpd-perl' 'libnetfilter-acct1' 'libsub-delete-perl' 'libgtg-dev' 'libghc-date-cache-dev' 'libcsound64-dev' 'libapache2-mod-proxy-html' 'gfortran-4.7-multilib-powerpc-linux-gnu' 'gally' 'libunity-misc-dev' 'librecode-dev' 'liblog4net-cil-dev' 'python3-dev' 'steadyflow' 'srptools' 'sflphone-gnome' 'python-zope.container' 'libqt5svg5' 'libparse-http-useragent-perl' 'libpam-poldi' 'libmono-cecil-cil' 'libguestfs0-dbg' 'libfaifa-dev' 'libcodemodel-java' 'libprison0' 'kdevelop-dev' 'libsvgsalamander-java' 'tomcat6' 'gir1.2-gupnpdlna-2.0' 'libscalapack-mpi1' 'audacious' 'asterisk-core-sounds-fr-gsm' 'python-egenix-mxuid-doc' 'network-manager-pptp-gnome' 'libmono-system-data2.0-cil' 'libburn-dev' 'libatk1.0-dev' 'gvfs-fuse' 'cli-common-dev' 'libghc6-non-negative-prof' 'tryton-modules-stock-forecast' 'teleport' 'python-neuroshare' 'phpbb3' 'mppenc' 'mothur' 'python-ldtp' 'libxfce4ui-1-dbg' 'librhash-java-doc' 'libmpeg2-4-dev' 'libmoosex-role-timer-perl' 'libghc-unix-compat-dev' 'libclaw-net1' 'libcache-simple-timedexpiry-perl' 'mffm-fftw1' 'kdegraphics-strigi-analyzer' 'libbio-graphics-perl' 'gadmin-samba-dbg' 'fonts-lohit-guru' 'python-imaging-sane' 'tomcat7' 'libjpeg8-dbg' 'language-pack-os-base' 'baobab' 'ltp-network-test' 'kde-l10n-fy' 'linux-image-extra-3.2.0-40-virtual' 'linux-image-extra-3.2.0-35-virtual' 'linux-image-3.2.0-31-generic-pae' 'linux-image-3.2.0-26-generic-pae' 'python-lepl' 'mupdf' 'libvalhalla-dev' 'librsl-dev' 'nfqueue-bindings-perl' 'libghc-yesod-routes-doc' 'libcrypto++-utils' 'libbio-ruby' 'libchipcard-libgwenhywfar60-plugins' 'libsort-naturally-perl' 'enblend' 'cowbuilder' 'gir1.2-clinica-0.2' 'libcurses-perl' 'archipel-agent-virtualmachine-oomkiller' 'libaddressview0' 'ltspfs' 'gimp-help-fr' 'libidn11' 'gir1.2-gtk-3.0' 'libghc6-diff-prof' 'kde-l10n-gu' 'xfonts-cronyx-100dpi' 'unscd' 'ubuntustudio-screensaver' 'ubuntu-packaging-guide-epub-ru' 'ruby-kgio' 'qmidiarp-dbg' 'octopussy' 'mercurial-git' 'nip2' 'libsys-utmp-perl' 'libsqlite3-ocaml-dev' 'liblingua-ispell-perl' 'libjboss-reflect-java' 'libgit2-dev' 'libghc-url-prof' 'libghc-bytestring-mmap-dev' 'libghc-failure-doc' 'libeval-closure-perl' 'gnome-translate' 'ftp-ssl' 'python-aptdaemon.pkcompat' 'libyaml-libyaml-perl' 'libgtop2-common' 'libclutter-gtk-1.0-dev' 'octave3.2' 'ubuntu-docs' 'erlang-inets' 'libgstreamer0.10-0' 'libstdc++6-4.4-dev-armhf-cross' 'node-tar' 'mumble-django' 'mcollective-doc' 'libquicktime-doc' 'libghc-dyre-dev' 'klettres' 'libedbus-dev' 'libportaudio0' 'libxml++2.6-dbg' 'libtelepathy-glib0' 'libghc6-llvm-dev' 'libghc6-hjavascript-dev' 'plasma-widget-wifi' 'loadwatch' 'libtree-perl' 'libocpf-dev' 'libghc-regexpr-dev' 'libclang1-dbg' 'kde-l10n-hr' 'db4.8-util' 'nagios-plugins-basic' 'linux-headers-generic' 'ttf-punjabi-fonts' 'libobjc-4.7-dev' 'giflib-tools' 'debhelper' 'python-mako' 'python-pyphantomjs' 'visualboyadvance' 'the-doc' 'tcl8.5-kwwidgets' 'ruby-guestfs' 'robocode-doc' 'python-tcpwrap' 'octave-communications' 'monodoc-gdata-manual' 'libxine2-plugins' 'libtinyxml2.6.2-dbg' 'libperl4caml-ocaml' 'liblo-tools' 'liblingua-en-nameparse-perl' 'libio-epoll-perl' 'libemail-sender-transport-smtp-tls-perl' 'libboost-serialization1.53-dev' 'libkscreensaver5' 'slang-sqlite' 'irssi-plugin-xmpp' 'gap-small-groups-extra' 'rekonq' 'libgnatvsn4.6' 'unity-chromium-extension' 'libportaudio2' 'libept-dev' 'libboost-serialization1.48-dev' 'libgtksourceview-3.0-0' 'e2fslibs-dbg' 'librbd1' 'linux-backports-modules-net-3.2.0-40-generic' 'linux-backports-modules-net-3.2.0-35-generic' 'w3af-console' 'update-manager-text' 'swac-play' 'python3-stemmer-dbg' 'pure-ftpd-common' 'protobuf-c-compiler' 'octave-nurbs' 'lp-solve-doc' 'libghc-hashed-storage-dev' 'libflute-java-doc' 'libauthen-simple-kerberos-perl' 'kajongg' 'gtans' 'graphmonkey' 'freedink-dfarc' 'asterisk-dahdi' 'python-cloudfiles' 'erlang-asn1' 'aspell' 'libpt-1.10.10-doc' 'libghc6-maybet-dev' 'libghc6-haxml-prof' 'fusionforge-plugin-blocks' 'xmlbeans' 'radiance-materials' 'r-cran-car' 'python-sphere' 'pyecm' 'libyaml-appconfig-perl' 'libjsyntaxpane-java-doc' 'libghc-mtlparse-prof' 'ioquake3-server' 'gstreamer0.10-packagekit' 'fwbuilder-dbg' 'checkstyle-doc' 'kde-l10n-hu' 'backintime-gnome' 'wirish' 'open-iscsi' 'libgtkspell-3-0' 'libb-keywords-perl' 'dhcp3-client' 'mcp-account-manager-goa' 'docutils-doc' 'docbook-to-man' 'libnss3' 'linux-headers-lbm-3.2.0-36-generic' 'libtet1.4-dev' 'zita-at1' 'tesseract-ocr-nor' 'pdumpfs-rsync' 'libcatalyst-view-component-subinclude-perl' 'libbio-ruby1.8' 'nuvola-icon-theme' 'python-kiwi' 'dput-ng' 'wvdial' 'libprobe-perl-perl' 'gtk-sharp2-examples' 'libggimisc2' 'wine1.4-common' 'gwibber-service-qaiku' 'xaralx' 'mytharchive' 'sawfish-merlin-ugliness' 'r-cran-rglpk' 'pd-pan' 'octave-ocs' 'lynkeos.app' 'lxterminal' 'ruby-zoom' 'libmmpong0.9' 'libirrlicht-dev' 'libhdf5-7-dbg' 'libghc-missingh-dev' 'libcanlock2-dev' 'webkit-image-qt' 'libtracker-miner-0.14-0' 'gem-doc' 'ttf-wqy-zenhei' 'mdbtools-dev' 'gnu-fdisk' 'likewise-open5-lsass' 'libxcb-icccm4-dev' 'libsensors4' 'usbmuxd' 'python-at-spi' 'libtoolbar-java' 'gambas2-dev' 'fossology-scheduler' 'scrollz' 'octave-psychtoolbox-3' 'node-semver' 'mcollective-plugins-filemgr' 'libsqlite-tcl' 'python-openturns' 'libghc-haxr-dev' 'libdbix-easy-perl' 'libcatalyst-model-cdbi-perl' 'libanyevent-redis-perl' 'kde-l10n-is' 'libgtk2-ex-simple-list-perl' 'libgnustep-base-dev' 'gnucash' 'hmmer' 'binclock' 'radosgw-dbg' 'python-qscintilla2' 'libstax-java-doc' 'libsdl1.2-dbg' 'libwrap0' 'appmenu-gtk' 'tao-trading' 'python-sword' 'postgres-xc-doc' 'njam' 'munin-async' 'norsp' 'libtk-splashscreen-perl' 'libst-dev' 'xmltooling-schemas' 'libxml-opml-simplegen-perl' 'libmono-uia3.0-cil' 'libio-lockedfile-perl' 'libsisu-ioc-java' 'kvpm' 'libpacklib1-gfortran' 'libomnithread3c2' 'dico-module-wordnet' 'dbacl' 'kde-l10n-it' 'bluemon' 'xserver-xorg-video-all' 'gstreamer0.10-plugins-ugly' 'libreoffice-base' 'liborc-0.4-dev' 'erlang-webtool' 'stardict-english-czech' 'ebox-ca' 'scilab-cli' 'qliss3d' 'python3-debtagshw' 'pmw-doc' 'pnscan' 'megaglest-dbg' 'libghc-haskell-lexer-dev' 'libfontchooser-java-doc' 'libfam-dev' 'libdap-doc' 'handlersocket-mysql-5.5' 'xsane' 'gcj-4.6-jdk' 'eurephia' 'kde-l10n-kk' 'btanks' 'bird6' 'isdnutils-base' 'libtest-object-perl' 'libgrantlee-core0' 'otf-pecita' 'dmedia' 'avidemux-cli' 'tulip-help' 'scsh-doc' 'r-cran-fbonds' 'libsphinx-ruby' 'libghc-haddock-dev' 'libghc-non-negative-doc' 'libfstrcmp0-dbg' 'libecore-doc' 'wcslib-dev' 'libfastjet-dev' 'ethstats' 'basenji' 'tracker' 'quantum-plugin-ryu-agent' 'ruby-ldap' 'linux-image-virtual' 'libsoup2.4-dbg' 'libindicator-dev' 'libcanberra-gtk3-0' 'xotcl-doc' 'wmmixer' 'sugar-write-activity-0.86' 'pd-csound' 'moap' 'referencer' 'libqrupdate-dev' 'libqzion0a' 'liblua5.1-logging' 'libghc-event-list-dev' 'libbluray-doc' 'libcyrus-imap-perl22' 'kde-l10n-km' 'icecream' 'guayadeque-dbg' 'gnome-u2ps' 'glchess' 'freefoam' 'fp-docs-2.6.0' 'libemboss-acd-perl' 'swh-plugins' 'vala-0.16-doc' 'python-beaker' 'libwebkit-dev' 'libaudiofile-dev' 'libaudio-dev' 'libebook-1.2-12' 'libgdcm2.0' 'gobjc++-4.6-arm-linux-gnueabi' 'kde-l10n-kn' 'libkdegames5a' 'crafty-books-medium' 'xfonts-bolkhov-75dpi' 'tayga' 'plasma-widget-makestatus' 'picocom' 'petit' 'openchangeproxy' 'libqxt-core0' 'libqtgtl0.1' 'libghc-zlib-bindings-prof' 'libghc-ghc-mtl-dev' 'libcolor-tools-ruby1.8' 'libterm-filter-perl' 'hsqldb-server' 'scdaemon' 'gmic-zart' 'desklaunch' 'cfi-en' 'busybox-syslogd' 'boxshade' 'auto-multiple-choice' 'python-all-dbg' 'libxrandr2-dbg' 'libhashkit0' 'tclgeoip' 'python-setproctitle-dbg' 'python-dockmanager' 'openvswitch-test' 'ltsp-cluster-accountmanager' 'libtntdb-dev' 'libghc-ixset-prof' 'libghc-statevar-doc' 'libaspect-perl' 'kde-l10n-ko' 'libkcalutils4' 'frama-c-base' 'libcyrus-imap-perl24' 'libpam-modules' 'libebook-1.2-14' 'libghc6-quickcheck2-doc' 'libgda-4.0-common' 'php5-lasso' 'passwordmaker-cli' 'ncview' 'rheolef-doc' 'libhtml-htmltokenizer-ruby' 'libhfobjc4-armel-cross' 'libgdcm2.2' 'libboost1.53-doc' 'libapp-cmd-plugin-prompt-perl' 'libstring-crc32-perl' 'ifuse' 'haskell-devscripts' 'libglobus-gass-copy2' 'cpan-listchanges' 'libsmbclient-dev' 'libboost1.48-doc' 'ibus-anthy' 'lib64gcc-4.7-dev' 'mrwtoppm-data' 'makedumpfile-static' 'unity-webapps-reddit' 'ufiformat' 'spl-webspl' 'quakespasm-dbg' 'python-sphinxcontrib.actdiag' 'pyfai' 'uim-qt' 'pgadmin3-dbg' 'minetest' 'liquidsoap-plugin-graphics' 'liboop4' 'libghc-yaml-prof' 'libghc-harp-prof' 'libwcstools-dev' 'gnuift-perl' 'gnubiff' 'globus-scheduler-event-generator-dbg' 'gisomount' 'libgwrap-runtime-dev' 'claws-mail-doc' 'kde-l10n-nb' 'aa3d' 'python3-aptdaemon.test' 'libqt4-webkit-dbg' 'libhashkit2' 'language-pack-gnome-gv-base' 'gimp-help-it' 'pkg-config' 'libghc6-type-level-doc' 'open-vm-toolbox' 'tokyotyrant-utils' 'pcp-doc' 'libstaxutils-java-doc' 'libole-ruby' 'libnet-imap-client-perl' 'libjboss-naming-java' 'ruby-inline' 'libhugs-stm-bundled' 'libbox2d0' 'libamu-dev' 'infernal-doc' 'libfbclient2-dbg' 'fonts-dustin' 'bve-route-cross-city-south' 'bluefish' 'blobby-server' 'quantum-plugin-openvswitch' 'libidl-common' 'libatk-bridge2.0-0' 'libapparmor1' 'libkimproxy4' 'kcemu-common' 'xserver-xfbdev' 'scilab-scimax-doc' 'tumbler' 'purity-ng' 'ocaml-native-compilers' 'pynast' 'lightspark-dbg' 'libsyncml-utils' 'libqwt5-doc' 'libqtruby4shared2' 'pgpool2' 'openmpi1.6-common' 'libghc-readargs-dev' 'libghc-explicit-exception-doc' 'libghc-cabal-file-th-dev' 'libghc-http-types-doc' 'libmoosex-methodattributes-perl' 'ttf-kanjistrokeorders' 'figlet' 'embassy-phylip' 'wcatalan' 'libx32z1' 'libgsl0-dbg' 'libglib2.0-bin' 'language-pack-kde-it-base' 'language-pack-kde-hy-base' 'libghc6-filemanip-doc' 'libbabl-0.0-0' 'w9wm' 'valknut-translations' 'python-toscawidgets' 'proguard' 'nova-cells' 'libgeo-googleearth-pluggable-perl' 'libcddb-perl' 'libboost-graph1.53-dev' 'libboost-graph1.48-dev' 'libnet-tclink-perl' 'kwalletcli' 'kdenetwork-dbg' 'hexalate' 'desktop-webmail' 'ctsim' 'cdcd-dbg' 'librdmacm1' 'libcephfs-dev' 'language-pack-gnome-ug-base' 'language-pack-gnome-tl-base' 'language-pack-gnome-sq-base' 'kde-l10n-mk' 'wmmatrix' 'libwxbase2.8-dev' 'librefdb-sru-perl' 'librcsb-core-wrapper0-dev' 'libpresage-data' 'libntrack-gobject-dev' 'libdb4o-cil-dev' 'gnome-core-devel' 'gmime-bin' 'gjiten' 'gir1.2-socialweb-client' 'fonts-ubuntu-title' 'cwebx' 'cableswig' 'bzr-dbus' 'blueproximity' 'module-assistant' 'zsh-dev' 'python-dirspec' 'openstack-dashboard' 'libtheora-doc' 'libreoffice-dev-doc' 'libmono-system-ldap2.0-cil' 'libgmime2.6-cil-dev' 'libcppunit-subunit0' 'texlive-base' 'gir1.2-gtkclutter-1.0' 'libx32mudflap0' 'libgcj-bc' 'libhupnp0' 'kde-l10n-ml' 'cherokee' 'shoes' 'remuco-banshee' 'mahara' 'libsampleicc2' 'libnet-handlersocket-perl' 'libmgl-fltk5' 'libghc-data-default-dev' 'libcrypt-ciphersaber-perl' 'libmoosex-strictconstructor-perl' 'genometools-common' 'faketime' 'dumphd' 'libcpan-meta-requirements-perl' 'cdd-doc' '2vcard' 'libzeitgeist-doc' 'libwww-robotrules-perl' 'libqt5test5' 'language-pack-kde-tt-base' 'gimp-help-ko' 'gnuserv' 'linux-headers-3.2.0-23-lowlatency-pae' 'xfce4-mpc-plugin' 'speakup-tools' 'python-pyface' 'python-meminfo-total' 'libnetfilter-log-dev' 'libmath-mpfr-perl' 'libhupnp1' 'libghc-curl-doc' 'libdhash-dev' 'tasks-mobile' 'gnuplot-qt' 'gammu' 'dumpet' 'adzapper' 'sl-modem-daemon' 'python-libvirt' 'librcc0' 'liblapack-dev' 'libggi-target-vcsa' 'rttool' 'libqedje-dev' 'libzzip-dev' 'libhugs-alut-bundled' 'libghc-diagrams-core-dev' 'libbuilder-ruby1.8' 'python-qrencode' 'kiki-the-nano-bot-data' 'fcitx-bin' 'klavaro' 'linux' 'libfftw3-doc' 'libxz-java' 'gir1.2-javascriptcoregtk-3.0' 'telnet' 'qtdeclarative5-qtsensors-plugin' 'qpid-specs' 'postmark' 'pd-pdp' 'libkonqsidebarplugin-dev' 'libgraph-readwrite-perl' 'libghc-gtksourceview2-doc' 'libcuba3-dev' 'kde-telepathy-call-ui' 'kde-l10n-lt' 'jquery-jplayer-pinkflag' 'fso-datad-dbg' 'autofs5-ldap' 'texlive-lang-latin' 'recode-doc' 'quantum-common' 'nas-doc' 'ttf-indic-fonts' 'libnl-route-3-dev' 'libdaemon0-dbg' 'mythtv-transcode-utils' 'alsa-firmware-loaders' 'qwbfsmanager' 'python-aspects' 'ocamlwc' 'odin' 'libxmlsec1-gcrypt' 'libxapian-ruby1.9.1' 'libqgpsmm20' 'libinline-files-perl' 'libghc-openpgp-asciiarmor-prof' 'libghc-profunctors-doc' 'libghc-idna-prof' 'libghc-haskore-doc' 'kde-l10n-pa' 'gnumail.app-dbg' 'fonts-navilu' 'pvrg-jpeg' 'deejayd-client' 'cyrus-murder' 'claws-mail-feeds-reader' 'python3.3-examples' 'libx32stdc++6' 'libfolks-dev' 'python-debian' 'visualboyadvance-gtk' 'tableau-parm' 'r-cran-dbi' 'python3-enchant' 'python3-pycparser' 'python-landslide' 'python-cvxopt' 'php-xml-rss' 'octave-msh' 'libtrilead-putty-extension-java-doc' 'libtracker-miner-0.14-dev' 'libtenjin-perl' 'libsofthsm' 'libperl6-export-perl' 'libopendbx1-mysql' 'libghc-murmur-hash-prof' 'libghc-doctest-doc' 'libdbd-pg-ruby1.9.1' 'kgoldrunner' 'kde-l10n-lv' 'libzltext0.12' 'debichem-view-edit-2d' 'kde-l10n-nl' 'axiom-hypertex-data' 'hunspell' 'libpload4' 'awn-applet-thinkhdaps' 'sabnzbdplus-theme-iphone' 'wallpaper' 'razorqt-policykit-agent' 'python-sunlight-doc' 'pgstaging' 'miredo' 'libreoffice-zemberek' 'libpococrypto9-dbg' 'libmail-bulkmail-perl' 'libhtml-html5-sanity-perl' 'libgruff-ruby' 'libghc-safecopy-prof' 'libghc-date-cache-doc' 'libcsound64-doc' 'kde-l10n-mr' 'ttf-sil-andika' 'pdf2svg' 'libmath-vec-perl' 'archipel-agent-iphone-notification' 'python3-doc' 'libxcb-xinerama0-dbg' 'libunity-misc-doc' 'librcd0' 'libutouch-geis-dev' 'hevea-doc' 'libghc6-src-exts-prof' 'linux-backports-modules-cw-3.3-precise-generic-pae' 'tea-data' 'python3-cracklib' 'python-inotifyx' 'pdns-backend-lua' 'opendnssec-enforcer-sqlite3' 'octave-pfstools' 'netperfmeter' 'libtaoframework-ftgl2.1-cil' 'libsource-highlight-dev' 'libsnmp-extension-passpersist-perl' 'libnet-idn-encode-perl' 'libghc-debian-prof' 'libcudf-dev' 'libboost-graph-dev' 'libapache2-mod-log-slow' 'kde-l10n-nn' 'gpiv-mpi' 'libxfce4ui-1-dev' 'gir1.2-skk-1.0' 'eclipse-mylyn-tasks-trac' 'doxypy' 'libxine1-x' 'coinor-libsymphony-dev' 'libshoulda-ruby1.8' 'libsystemd-id128-dev' 'x11proto-fonts-dev' 'libjpeg8-dev' 'libburn-doc' 'libatk1.0-doc' 'wordpress-shibboleth' 'python3-scipy' 'python-flufl.enum-doc' 'oprofile-gui' 'ocaml-source' 'libyaml-cpp-dev' 'libxml-light-ocaml' 'libqwt5-qt4-dev' 'libjava-jdbc-clojure' 'libivykis0' 'libghc-unix-compat-doc' 'libghc-ieee754-prof' 'libmetainf-services-java-doc' 'lhs2tex' 'fp-units-gtk-2.6.0' 'exaile-plugin-contextinfo' 'epic5-script-lice' 'easymp3gain-gtk-dbg' 'cvs-autoreleasedeb' 'clojure-contrib' 'nagios-plugins-standard' 'libgsf-1-114-dbg' 'dovecot-postfix' 'libcupscgi1' 'lshw' 'xserver-xorg-video-apm' 'libjim0debian1' 'qtdmm' 'qtsensors5-private-dev' 'python-mvpa-lib' 'profphd-net' 'libyazpp4' 'libvalhalla-doc' 'libtiger-types-java' 'librsl-doc' 'librime-data-stenotype' 'libghc-sdl-gfx-dev' 'libedac1-dbg' 'deluge-webui' 'autodocktools' 'asterisk-mp3' 'arduino-mk' 'am-utils-doc' 'mobile-broadband-provider-info' 'lsb-qt4' 'libcaca0' 'gir1.2-lightdm-1' 'liby2-14' 'libopenconnect1' 'libgfccore-dev' 'torque-server' 'python-zope.app.publisher' 'wikipediafs' 'pokerth-data' 'perdition-ldap' 'ndpmon' 'libservice-wrapper-jni' 'plplot11-driver-qt' 'liblinux-distribution-packages-perl' 'lv2-dev' 'libghc-bytestring-mmap-doc' 'libjim0debian2' 'gnome-dbg' 'libginspx0' 'fcitx-dbg' 'code-saturne-bin' 'calibre-bin' 'binutils-aarch64-linux-gnu' 'ubiquity-frontend-gtk' 'python-zope.interface' 'libxml++2.6-dev' 'libclutter-gtk-1.0-doc' 'gstreamer1.0-plugins-base' 'apache2-mpm-itk' 'awn-applet-cairo-clock' 'apiextractor-doc' 'system-config-samba' 'med-bio' 'loggerhead-doc' 'libtrace3-dev' 'samizdat' 'libqt4-sql-tds' 'libopenconnect2' 'libnifti-dev' 'libghc-hsql-mysql-dev' 'libghc-dyre-doc' 'ldm-xubuntu-theme' 'kolab-webadmin' 'isakmpd' 'qjackctl' 'firebird2.5-classic-dbg' 'disktype' 'cdlabelgen' 'balsa-dbg' 'libqtscript4-perl' 'libphonon-perl' 'language-pack-gnome-zh-hans-base' 'gnome-settings-daemon-dev' 'libghc6-llvm-doc' 'libghc6-hjavascript-doc' 'libgegl-0.0-0' 'mythbrowser' 'mgltools-utpackages' 'python3-matplotlib' 'pysycache-sounds' 'php-horde-imp' 'lush-library' 'libzorpll3.9-1' 'libghc-regexpr-doc' 'libghc-hxt-unicode-prof' 'libflake-dev' 'git-all' 'kdevelop' 'python3-pyicu-dbg' 'camlidl' 'nut-snmp' 'libavahi-compat-libdnssd1' 'language-pack-cv-base' 'gimp-help-nl' 'libfontforge1' 'language-pack-el-base' 'e2fslibs-dev' 'openoffice.org-filter-mobiledev' 'etoys-doc' 'xserver-xorg-input-acecad' 'xdmx-tools' 'unity-webapps-facebookapps' 'ratpoison' 'mpich-bin' 'libkate1-dbg' 'libini4j-java-doc' 'libmoosex-relatedclassroles-perl' 'jgit-cli' 'libxcb-keysyms1' 'libusbmuxd-dev' 'gphoto2' 'language-pack-kde-hsb-base' 'epydoc-doc' 'umview-mod-umfuseiso9660' 'trac-authopenid' 'python-nova-adminclient' 'python-django-floppyforms' 'libqdjango-http0' 'libshell-posix-select-perl' 'libpdl-netcdf-perl' 'libopenscap-perl' 'libgoffice-0.8-8-common' 'libghc-hashed-storage-doc' 'libmuparser2' 'libboost-chrono-dev' 'jargoninformatique-data' 'libglobus-gssapi-error2' 'gftp-gtk' 'gaupol' 'freepops-updater-fltk' 'dict-freedict-lat-eng' 'cl-swank' 'aesfix' 'libfcgi-dev' 'libhx509-5-heimdal' 'gimp-help-nn' 'libghc6-maybet-doc' 'gir1.2-grilo-0.1' 'libmyth-dev' 'ttf-kochi-gothic-naga10' 'terminatorx' 'python-pyside.qtxml' 'python-http-parser' 'pysieved' 'perlprimer-doc' 'libnode-vows' 'libeventmachine-ruby' 'libalsa-ocaml-dev' 'kde-telepathy-approver' 'print-manager' 'innfeed' 'hedgewars-data' 'gstreamer0.10-ffmpeg-dbg' 'libargs4j-java' 'fbterm-ucimf' 'libemail-find-perl' 'kde-l10n-pl' 'bash-builtins' 'autocutsel' 'apt-zip' 'ruby1.8-examples' 'intltool-debian' 'elilo' 'language-pack-pl-base' 'libghc6-transformers-dev' 'cpp-4.5-doc' 'mgltools-volume' 'unworkable' 'tesseract-ocr-osd' 'sympa' 'skyeye' 'python-zope.annotation' 'libqsastime0' 'libjs-jquery-ui-docs' 'libjs-dojo-dojox' 'libjss-java' 'libacme-damn-perl' 'libtext-markdown-discount-perl' 'gir1.2-grilo-0.2' 'gimp-gluas' 'gap-trans-groups' 'cwiid-dbg' 'bluetooth' 'python3-oneconf' 'libtest-inter-perl' 'python-jppy' 'cups-browsed' 'xserver-xorg-video-ark' 'xfonts-jisx0213' 'v-sim-doc' 'ruby-fast-stemmer' 'python3-dns' 'python-jpype' 'pd-sigpack' 'olive' 'libups-nut-perl' 'libsprng2' 'libmaliit-dev' 'libirrlicht-doc' 'libghc-missingh-doc' 'libevent-execflow-perl' 'ibus-table-latex' 'graphdefang' 'gmt-doc' 'gadmin-openvpn-server' 'elbcli' 'dirmngr' 'dancer-xml' 'courier-authlib-dev' 'cook-doc' 'memcached' 'libsdl1.2-dev' 'mdbtools-doc' 'libcupsimage2-dev' 'libcurl4-gnutls-dev' 'libgd-barcode-perl' 'libindicator7' 'gambas2-doc' 'saidar' 'postfix-cluebringer-pgsql' 'libxmmsclient++-glib-dev' 'libsvnclientadapter-java-doc' 'libjs-jquery-ui-theme-smoothness' 'libhugs-haxml-bundled' 'libghc-haxr-doc' 'libavahi-ui-cil-dev' 'libapache2-mod-evasive' 'kvpnc-dbg' 'libqtgstreamerutils-0.10-0' 'hgview-curses' 'harden-surveillance' 'gtypist' 'libdiodon0' 'devicetype-detect' 'copyfs' 'libmono-debugger-soft2.0-cil' 'libcamd2.2.0' 'libacl1' 'libghc6-haskelldb-hdbc-postgresql-dev' 'ebox-network' 'qttools5-examples-dbg' 'node-colors' 'sigma-align' 'libtext-greeking-perl' 'libpirl-java' 'liblua5.1-rex-posix0' 'libllvm-2.9-ocaml-dev' 'libxmltooling5' 'libactionmailer-ruby1.8' 'kdenlive-data' 'hol88-help' 'hodie' 'gfal2-plugin-rfio' 'ekg2-scripting-perl' 'dpt-i2o-raidutils' 'witalian' 'liborc-0.4-doc' 'libmono-system-web-extensions4.0-cil' 'enchant' 'libcomerr2' 'linux-headers-3.2.0-37-virtual' 'libtest-mock-lwp-perl' 'pamusb-common' 'libghc-haskell-lexer-doc' 'libdatetime-format-epoch-perl' 'libjosql-java-doc' 'fcitx-table-bingchan' 'libsoup2.4-dev' 'libglib2.0-cil' 'wcslib-doc' 'python-pycryptopp-dbg' 'lierolibre-dbg' 'libtest-log-dispatch-perl' 'libopsin-java' 'libgio2.0-cil-dev' 'libghc-haddock-doc' 'gtk-sharp2' 'libgfortran3-dbg-powerpc-cross' 'dia2code' 'tk-lib' 'x11proto-xf86dga-dev' 'libiec61883-0' 'libsnmp15' 'libplymouth2' 'yforth' 'python-parallel' 'librbl1' 'libgnuift0-dev' 'libghc-persistent-template-dev' 'libghc-gsasl-prof' 'libghc-event-list-doc' 'libfann-dbg' 'moreutils' 'python-all-dev' 'gir1.2-brasero-3.0' 'gimp-help-pl' 'language-pack-mai-base' 'genisoimage' 'scilab-doc' 'ruby1.9.1-full' 'mrd6' 'lsyncd' 'logfs-tools' 'libnet-ssh2-ruby1.9.1' 'libmdc2-dev' 'liblocale-hebrew-perl' 'libghc-ghc-mtl-doc' 'libgdcm-java' 'libclass-perl' 'libk3b6' 'jed-common' 'heroes-sound-effects' 'gunroar-data' 'xgnokii' 'globus-gram-job-manager-fork-setup-poll' 'kde-l10n-pt' 'texlive-humanities' 'python3-yaml' 'python-qt4-dbus-dbg' 'libxxf86vm1-dbg' 'm17n-contrib' 'libgpod4-nogtk' 'libbabl-0.1-0' 'ubiquity-frontend-kde' 'ulogd-mysql' 'lua-penlight-dev' 'liquidwar' 'libsdl-console' 'libguice-java-doc' 'libbisho-common-dev' 'ext3grep' 'libflickcurl0' 'libhdf5-dev' 'stompserver' 'libminiupnpc-dev' 'libjwordsplitter-java' 'zekr-quran-translations-en' 'r-cran-fbasics' 'oss4-source' 'libqt5script5' 'libmumps-seq-dev' 'liblua5.1-wsapi1' 'libghc-mwc-random-dev' 'libgdal-perl' 'libdevil-dev' 'hwloc-nox' 'libwaei2' 'paco' 'gcj-4.6-jre-lib' 'libkernlib1-gfortran' 'gnustep-base-runtime' 'xserver-xorg-video-ati' 'ubiquity-slideshow-ubuntu' 'libatspi2.0-0-dbg' 'xturqstat' 'vera++' 'mplayer-dbg' 'mailfront' 'python-meliae' 'libtggraphlayout-java-doc' 'libsoprano-ruby' 'libpassword-ruby1.8' 'python-html5lib' 'gnat-gps-doc' 'gmusicbrowser' 'ttf-opendin' 'five-or-more' 'dvdstyler-data' 'dicelab' 'darktable-plugins-experimental' 'blktap-utils' 'amule' 'powertop' 'libconvert-asn1-perl' 'lsof' 'liblrm2-dev' 'brasero-cdrkit' 'libgksu-polkit-dev' 'libace-xtreactor-6.0.1' 'gambas2-gb-xml' 'tryton-modules-ldap-connection' 'qchat' 'python-sunlight' 'r-bioc-limma' 'librime-data-stroke5' 'libmp3info-ruby1.8' 'libgtksourceview2.0-dev' 'libdbix-xml-rdb-perl' 'python-ldaptor' 'kde-l10n-si' 'libcache-fastmmap-perl' 'easypg' 'libgsl0-dev' 'libfriends-gtk0' 'libwmf0.2-7' 'libdjvulibre21' 'retext-wpgen' 'python-psphere' 'psychtoolbox-3-lib' 'lmarbles' 'libuser-perl' 'libsgml-dtdparse-perl' 'libnss-extrausers' 'libnini-cil-dev' 'libnetpacket-perl' 'librole-tiny-perl' 'libmath-convexhull-perl' 'libigraph0' 'libghc-cabal-file-th-doc' 'libghc-readargs-doc' 'libfile-chdir-perl' 'kdenlive' 'kde-l10n-ro' 'jabber-querybot' 'ircd-ircu' 'flow-tools' 'libarray-unique-perl' 'banshee-extension-alarm' 'maas-cluster-controller' 'libboost-test1.46.1' 'xserver-xorg-input-synaptics-lts-quantal' 'lubuntu-restricted-addons' 'tesseract-ocr-pol' 'pythia8-doc-worksheet' 'plasma-widget-quickaccess' 'libplexus-interpolation-java-doc' 'libplasma-ruby1.8' 'libemos0d' 'libdwarf-dev' 'libace-xtreactor-6.0.3' 'identicurse' 'libeegdev0' 'colorhug-client' 'kde-l10n-sk' 'gregoriotex' 'noweb' 'libmono-peapi4.0-cil' 'gcc-4.7-base' 'weboob-qt' 'tor-geoipdb' 'tomboy-blogposter' 'python-pushy' 'peace-look' 'netwox-doc' 'logaricheck' 'libsfobjc4-armhf-cross' 'libroot-io-dev' 'libkmlframework-java' 'python-koan' 'libkmahjongglib4' 'kde-l10n-tg' 'feisty-wallpapers' 'ttf-ancient-fonts' 'kde-l10n-sl' 'c++-annotations-dvi' 'amule-utils-gui' 'zsh-doc' 'xorg-dev' 'libtest-harness-perl' 'oneconf' 'x11proto-kb-dev' 'groff' 'linux-backports-modules-hv-3.2.0-37-generic-pae' 'science-meteorology-dev' 'libsidl-1.4.0' 'libpmi0' 'libocamlviz-ocaml-dev' 'libnb-platform-devel-java' 'mpich-mpd-bin' 'libmp3tag-ruby1.8' 'libmemphis-doc' 'libglobus-common-dev' 'libghc-data-default-doc' 'libdbix-class-inflatecolumn-ip-perl' 'libconfig-autoconf-perl' 'libmicroblog4' 'kde-l10n-th' 'ruby-rmagick' 'isc-dhcp-relay' 'curlftpfs' 'cfget' 'aspectj-doc' 'alex4-data' 'vblade-persist' 'postfix-pgsql' 'libqdox-java-doc' 'obex-data-server' 'gnome-settings-daemon' 'byacc-j' 'libboost-regex1.46.1' 'xserver-xorg-video-vmware-lts-quantal' 'selinux-basics' 'python-pysearch' 'pasaffe' 'nova-api-ec2' 'libxine2-x' 'libghc-csv-dev' 'libfsobasics-dbg' 'libperl6-export-attrs-perl' 'guile-gnome2-gnome' 'gnome-packagekit-data' 'erlang-test-server' 'libvalhalla2' 'liblapack-doc' 'djvulibre-desktop' 'indicator-application' 'kpackagekit' 'xserver-xorg-input-mutouch' 'uwsgi-plugin-rack-ruby1.8' 'tangerine-icon-theme' 'starpu-top' 'sugar-tools-0.84' 'printconf' 'logstalgia' 'libtest-file-contents-perl' 'libqaccessibilityclient-dev' 'libmp3lame-ocaml' 'libmimetic-dev' 'libghc-diagrams-core-doc' 'libgfal2-dev' 'libxerces-c2-dev' 'libsmbclient-raw0' 'libgd-svg-perl' 'libbarcode-zbar-perl' 'libxml-simpleobject-libxml-perl' 'xapian-omega' 'sjeng' 'gambas3-gb-signal' 'otf-yozvox-yozfont-antique' 'otf-ipaexfont-gothic' 'vorbis-tools' 'language-pack-gnome-fy-base' 'chasen-cannadic' 'yersinia' 'wormux-dbg' 'tpclient-pywx' 'untex' 'sugar-tools-0.90' 'pads' 'libproc-reliable-perl' 'libxml-xpathengine-perl' 'libghc-regex-pcre-prof' 'libconfig-model-openssh-perl' 'libamazon-ruby' 'jedit' 'hildon-control-panel-l10n-english' 'globus-simple-ca' 'ffrenzy' 'ffado-mixer-qt4' 'kde-l10n-ru' 'hunspell-de-med' 'libselinux1' 'linux-headers-3.2.0-34-generic' 'linux-headers-3.2.0-29-generic' 'mgltools-pmv' 'tesseract-ocr-por' 'sugar-tools-0.86' 'liece-dcc' 'libghc-xml-types-dev' 'libfile-modified-perl' 'kde-l10n-ug' 'lusernet.app' 'python-webunit' 'libimage-exiftool-perl' 'fonts-tlwg-typewriter' 'libyaml-syck-perl' 'libglib2.0-dev' 'bacula-fd-dbg' 'libnux-3.0-common' 'xcp-xapi-debug' 'qgis-api-doc' 'oar-server-pgsql' 'nvramtool' 'libjs-jquery-treetable' 'libinotify-ocaml-dev' 'libb-hooks-op-ppaddr-perl' 'kde-l10n-sr' 'gdc-v1' 'otf-stix' 'elisa' 'libdesktop-agnostic0' 'cantor-backend-maxima' 'libxcb-xinerama0-dev' 'librest-0.7-0-dbg' 'language-pack-gnome-so-base' 'bzip2-doc' 'gambas2-gb-db-sqlite2' 'hl4040cnlpr' 'upnp-router-control' 'tk8.6-dev' 'sugar-tools-0.88' 'postgresql-9.1-debversion' 'notmuch-vim' 'netsniff-ng' 'librapi2-dbg' 'libqxrunnerd1' 'libportmidi-dev' 'libjs-jquery-countdown' 'libghc-pool-conduit-dev' 'libenet1a-dbg' 'libkqueue0' 'libbio-chado-schema-perl' 'ttf-aoyagi-kouzan-t' 'diffmon' 'cmigemo-common' 'aspell-pt-pt' 'gcc-avr' 'angband' 'cdebootstrap-static' 'libutouch-geis-doc' 'freeipmi-tools' 'evolution-indicator' 'gambas2-gb-db-sqlite3' 'fp-units-db-2.4.4' 'virtualbox-ose-guest-x11' 'linux-backports-modules-cw-3.4-3.2.0-30-generic-pae' 'squeak-image3.9' 'zeroc-ice34' 'qtractor' 'php-horde-autoloader' 'liblingua-stem-snowball-perl' 'libghc-hcard-dev' 'libcommons-jci-groovy-java' 'libicestorm34' 'guacd' 'libgeocode-glib0' 'coinor-libsymphony-doc' 'airstrike-common' 'texlive-fonts-extra-doc' 'qemu-user' 'sendmail-doc' 'language-pack-kde-tr-base' 'language-pack-kde-sw-base' 'wireless-tools' 'rdscli' 'python-selenium' 'python-pyevolve' 'libwebservice-validator-html-w3c-perl' 'libtest-fixme-perl' 'librfilter-ruby1.8' 'libjspeex-java' 'libinnate-ruby' 'libghc-download-curl-prof' 'libchasen-dev' 'kde-l10n-wa' 'libmatrixssl1.8' 'gui-apt-key' 'qgis-plugin-grass' 'explain' 'fonts-oflb-euterpe' 'ttf-sil-gentium' 'centerim-fribidi' 'kde-l10n-uk' 'libstatgrab6' 'awesome' 'atanks-data' 'libwsdl4j-java-doc' 'libevent-extra-2.0-5' 'gir1.2-unity-5.0' 'texlive' 'lvm2' 'par2' 'xserver-xorg-video-glide' 'libdesktopcouch-glib-dev' 'dmedia-service' 'tightvnc-java' 'sugar-tools-0.96' 'plasma-widget-simplemonitor' 'pd-osc' 'odot' 'lua-iconv-dev' 'libxml-ruby1.8' 'libxml-sax-machines-perl' 'libroot-math-genvector5.34' 'libomxil-bellagio0-components-mad' 'libghc-sdl-gfx-doc' 'libevent-core-1.4-2' 'libcitadel3-dbg' 'libaunit-dbg' 'php-mdb2-driver-sqlite' 'gtkterm' 'dreamchess-data' 'django-filter' 'kde-l10n-sv' 'dahdi' 'foomatic-db-gutenprint' 'ncompress' 'ceph-common' 'linux-headers-3.8.0-16-generic' 'libgfccore-doc' 'quake' 'salt-syndic' 'r-cran-eco' 'node-srs' 'mona' 'libvistaio14' 'libghc-show-prof' 'plymouth-theme-kubuntu-logo' 'gpsshogi-data' 'libxvidcore4' 'gambas3-gb-dbus' 'fiaif' 'unrtf' 'djvulibre-plugin' 'cfengine2-dbg' 'kde-l10n-tr' 'biblatex-dw' 'libany-moose-perl' 'fossology-common' 'libxml++2.6-doc' 'librdf0' 'libdatrie1-bin' 'gimp-help-ru' 'apport-symptoms' 'scim-bridge-client-qt' 'simba' 'shorewall-doc' 'ruby-parser' 'qtemu' 'qdbm-cgi' 'lubuntu-elementary-icon-theme' 'libstomp-ruby1.9.1' 'libnifti-doc' 'ruby-narray' 'libghc-hsql-mysql-doc' 'libestraier-ruby1.9.1' 'libopencv-legacy-dev' 'libcgsi-gsoap-dev' 'libargs4j-java-doc' 'kde-l10n-vi' 'asclock' 'python3-imaging-tk-dbg' 'nbd-client' 'libhfsp0' 'tv-fonts' 'pdns-backend-sqlite' 'opendrim-lmp-ethernetport' 'octave-odepkg' 'lustre-source' 'libvorbis-ocaml' 'libtree-multinode-perl' 'libroot-net-ldap-dev' 'libreoffice-lightproof-en' 'libi18n-ruby1.9.1' 'libgdata-cil-dev' 'ipkungfu' 'gfxboot-themes-kde' 'libhttpclient-java' 'python-turbogears' 'php5-xsl' 'libutempter0' 'libgpod-nogtk-dev' 'libkeyutils-dev' 'xchat-common' 'tsdecrypt' 'openvswitch-datapath-dkms' 'nfs4-acl-tools' 'libwww-nicovideo-download-perl' 'libnet-whois-ripe-perl' 'libmaven-filtering-java' 'liblogservicecomponentbase2' 'libjhdf-doc' 'libio-file-withpath-perl' 'libhdf5-mpich2-7' 'libgwyddion20-dev' 'libfile-util-perl' 'libdevel-hide-perl' 'libbiococoa-dev' 'imgsizer' 'haskell98-tutorial' 'hannah' 'libgretl1' 'gir1.2-entangle-0.1' 'haskell-mode' 'geany-common' 'freespacenotifier' 'pidgin-festival' 'erlang-typer' 'context-doc-nonfree' 'libcipux-storage-perl' 'bppphyview' 'avogadro-data' 'libmodule-runtime-perl' 'libghc6-mmap-prof' 'openoffice.org-draw' 'veusz-helpers-dbg' 't1-oldslavic' 'python-plastex-doc' 'libode1sp' 'libmodule-pluggable-ordered-perl' 'libplexus-build-api-java' 'libgstbuzztard-dev' 'printer-applet' 'kayali' 'fwbuilder-doc' 'ttf-staypuft' 'chromium-browser-dbg' 'libdb-ruby1.8' 'gir1.2-messagingmenu-1.0' 'rss2irc' 'libpoco-dev' 'libmemphis-0.2-0' 'libghc-crypto-pubkey-dev' 'libcairo-ruby' 'gobjc++-4.7-multilib' 'maptool' 'fonts-quattrocento' 'eglibc-source' 'debdelta-doc' 'ark-dbg' 'libapt-pkg4.12' 'libghc6-transformers-doc' 'haskell-platform-doc' 'drdsl' 'tangerine' 'smb4k' 'pyliblo-utils' 'libclass-delegator-perl' 'libamazonec2-ruby-doc' 'gdb-msp430' 'claws-mail-pgpinline' 'python3-cxx' 'libclucene-core1' 'isc-dhcp-server-ldap' 'sgml2x' 'gimp-help-sv' 'unagi-dbg' 'tendra' 'qlvnictools' 'python-preludedb' 'openbox-themes' 'm16c-flash' 'libsamplerate-ocaml' 'libhugs-unix-bundled' 'libghc-regex-compat-prof' 'libkiten4' 'libfosfat0' 'didiwiki' 'binutils-msp430' 'libbcmail-java' 'fonts-tlwg-garuda' 'spread' 'libdrm-ltsq-intel1-dbg' 'rovclock' 'rawtherapee-data' 'r-cran-rjags' 'qtdeclarative5-qtmultimedia-plugin' 'python-zope.component-test' 'node-mbtiles' 'licq-plugin-qt' 'libtamuanova-dev' 'libsofthsm-dev' 'libroot-math-minuit5.34' 'razorqt' 'libpng3' 'libinternals-perl' 'libggzmod-dev' 'libbetter-appframework-java-doc' 'kio-mtp-dbg' 'khmerconverter' 'excellent-bifurcation' 'diffpdf' 'bumprace' 'ballz-dbg' 'libbinio1ldbl' 'libcorosync-dev' 'libghc6-highlighting-kate-prof' 'libghc6-haskelldb-hdbc-postgresql-doc' 'unity-webapps-yahoomail' 'trac-subtickets' 'swi-prolog-odbc' 'unhtml' 'papercut' 'ubuntu-packaging-guide' 'novnc' 'libxine2-gnome' 'libterralib' 'libghc-blaze-textual-prof' 'libdata-formvalidator-perl' 'libcrypt-mysql-perl' 'ruby-feedparser' 'libsbsms10' 'powernap-server' 'liblapacke-dev' 'libmpfr-dev' 'libicu48' 'libbeid2' 'wmii-doc' 'wesnoth-1.10-server' 'sgf2dg' 'ruby-hashie' 'rsbac-klogd' 'python3-pykde4-dbg' 'python3-epr' 'sndfile-programs' 'nova-compute-uml' 'librime-data-bopomofo' 'librec0' 'libnet-opensrs-perl' 'liblog-any-adapter-dispatch-perl' 'libgsl-ruby1.9.1-dbg' 'libdatetime-set-perl' 'glee-dev' 'freegish' 'libsoup2.4-doc' 'libkadm5clnt-mit8' 'language-pack-csb-base' 'libghc6-missingh-dev' 'libcplcore12' 'r-revolution-revobase' 'zentyal-network' 'libxsettings0-dbg' 'libtse3-dev' 'libtorch3-dev' 'libmoosex-traits-perl' 'libghc-strptime-prof' 'libghc-cereal-dev' 'libgdk-pixbuf2-ruby1.8-dbg' 'libfann-dev' 'libcache-memcached-fast-perl' 'glabels' 'firebird2.5-superclassic' 'libefreet-dev' 'dtdinst' 'cyrus-dev' 'syrthes' 'libnet-netmask-perl' 'libaccountsservice-dbg' 'libaccounts-glib-dev' 'lib64stdc++6-4.6-dbg' 'lazarus-0.9.30.2' 'openoffice.org-filter-binfilter' 'libx264-120' 'syncevolution-http' 'simgrid' 'remuco-base' 'python-gnome2-extras-dev' 'proftpd-mod-vroot' 'mono-upnp-bin' 'wings3d' 'libghc-persistent-template-doc' 'libghc-convertible-prof' 'libapache2-svn' 'gcj-4.6-jre' 'ensymble' 'eclipse-pde' 'powerwake-common' 'network-manager-pptp' 'libunwind7-dev' 'libscalar-number-perl' 'libbackport-util-concurrent-java' 'language-pack-my-base' 'gceph' 'tlprender' 'libghc6-parsec2-dev' 'touchegg-dbg' 'mopd' 'librose-object-perl' 'libocsigen-ocaml-dev' 'libjug-java' 'libelmer-dev' 'libcgi-formbuilder-source-yaml-perl' 'libaddressable-ruby' 'libmail-pop3client-perl' 'kdegames-card-data-extra' 'globus-gram-job-manager' 'gambas3-gb-xml-rpc' 'doclifter' 'axiom-graphics' 'aegisub-l10n' 'texlive-pictures-doc' 'python-software-properties' 'xalan' 'rdkit-doc' 'python-impacket' 'prism2-usb-firmware-installer' 'php-horde-timeobjects' 'pexec' 'nginx-light' 'libhdf5-doc' 'libghc-maccatcher-prof' 'libghc-fast-logger-dev' 'lazarus-0.9.30.4' 'libcplcore20' 'drgeo' 'doc-linux-ja-text' 'claws-mail-perl-filter' 'libproxy-dev' 'smbclient' 'libpolybori-0.5.0-0' 'libassimp2' 'ebox-dhcp' 'vile-filters' 'netcdf-ruby1.8' 'llvm-gcc-4.6' 'libxmlrpc-epi0-dbg' 'lua-logging' 'libgnadesqlite3-2-dev' 'libghc-mwc-random-doc' 'libdevel-refactor-perl' 'libclipper-dev' 'libactivemq-protobuf-java' 'libestraier8' 'libx264-123' 'ftools-pow' 'cyrus-nntpd-2.2' 'libraw5' 'libilmbase6' 'lib64readline5' 'whiptail' 'xubuntu-restricted-addons' 'tessa-mpi' 'matroxset' 'llvm-gcc-4.7' 'libtracker-extract-0.14-dev' 'libpal-java' 'libghc-xmonad-contrib-prof' 'libghc-sdl-mixer-prof' 'libgeier-dev' 'jenkins-tomcat' 'courier-ldap' 'libassimp3' 'libupsclient1' 'libnet-daemon-perl' 'lib64readline6' 'libstlport5.2' 'libstdc++6-4.5-pic-armhf-cross' 'libclass-dbi-lite-perl' 'libdevhelp-3-0' 'yofrankie' 'udns-utils' 'tegaki-train' 'python-django-contact-form' 'libxmlrpc-epi0' 'scilab-full-bin' 'libroot-math-physics5.34' 'libgtksourceview2.0-doc' 'kdegraphics-thumbnailers' 'icicles' 'eclipse-xsd-sdk' 'cyrus-nntpd-2.4' 'bld-postfix' 'libsrtp0' 'python-protobuf' 'python-oslo.config' 'libgee-dev' 'libgpg-error-dev' 'ldap-auth-client' 'ttf-thai-tlwg' 'texlive-fonts-recommended' 'libghc-wash-prof' 'libgnome-mag2' 'mgltools-sff' 'brother-lpr-drivers-laser' 'brother-cups-wrapper-extra' 'xfreecd' 'ubuntu-virt' 'ruby-fftw3' 'qterm' 'python-libuser' 'python-cogent-dbg' 'librobust-http-client-java-doc' 'libghc-network-protocol-xmpp-dev' 'libghc-lazysmallcheck-dev' 'libtext-unidecode-perl' 'libakonadi-ruby' 'kgeography' 'freetennis-common' 'freesci' 'focuswriter' 'ohai' 'sendmail' 'lightdm-kde-greeter' 'libjpeg8' 'libdevhelp-3-1' 'python-turbomail' 'telepathy-sunshine' 'ubuntustudio-live-settings' 'tesseract-ocr-tam' 'razorqt-data' 'mustang-testdata' 'lout-common' 'libtie-hash-regex-perl' 'libtest-indistdir-perl' 'libspring-expression-java' 'libhpricot-ruby1.9.1' 'libgeo-coordinates-osgb-perl' 'libdigidoc-dev' 'gem-plugin-unicap' 'gcc-snapshot' 'ubiquity-slideshow-kubuntu' 'ttf-essays1743' 'bzflag' 'libgtk2-perl-doc' 'ceph-dbg' 'libspread1' 'xcolorsel' 'ruby-fast-gettext' 'luma' 'open-axiom-hypertex' 'tree-puzzle' 'maptransfer' 'libxmlrpc3-server-java' 'libghc-classy-prelude-prof' 'libdiagnostics-dev' 'libopenbabel-dev' 'gfortran-4.6-doc' 'gerris-mpi' 'libchipmunk0d1' 'autodock-test' 'fglrx-amdcccle-updates' 'opencryptoki' 'ttf-kochi-mincho' 'trac-odtexport' 'sslsniff' 'regionset' 'python3-cairosvg' 'python-mpltoolkits.basemap' 'pcal' 'muse-el' 'mozart-stdlib' 'libxdg-basedir1-dbg' 'libocamlviz-ocaml-doc' 'libhtml-pager-perl' 'libglobus-common-doc' 'libghc-dpkg-prof' 'libfsobasics-dev' 'libemail-thread-perl' 'lib64objc3-dbg' 'xplanet' 'i2c-tools' 'libfreehep-graphicsio-emf-java' 'octave-optim' 'doomsday' 'deluge-common' 'ats-lang-anairiats-examples' 'libupower-glib-dev' 'libgegl-0.2-0' 'gcc-doc' 'brasero-common' 'xserver-xorg-video-displaylink' 'monodevelop-vala' 'fglrx-amdcccle-experimental-9' 'xfce4-terminal-dbg' 'tcptraceroute' 'python-pymetar' 'php-xml-serializer' 'libpocomysql9-dbg' 'libpaperclips-java' 'libogg-vorbis-decoder-perl' 'libghc-csv-doc' 'gnunet-server' 'apt-show-source' 'addressview.framework' 'libfile-path-perl' 'libsctp-dev' 'libsaevt3-dev' 'libmime-types-perl' 'ldm-server' 'gir1.2-accountsservice-1.0' 'gir1.2-gst-plugins-base-0.10' 'libgrinvin-generators-java' 'libownet-2.8-13' 'libcwiimote-dbg' 'wavbreaker' 'tacacs+' 'scotch-dbg' 'python3-kyotocabinet' 'php-net-lmtp' 'mandos-client' 'lives-data' 'libxerces-c2-doc' 'libpdf-table-perl' 'libnet-ldapapi-perl' 'libmimetic-doc' 'libicepatch2-34' 'openmpipython' 'fso-usaged' 'fonts-nanum-gothic-light' 'libghc6-ghc-paths-prof' 'libggi-target-terminfo' 'gtablix' 'xserver-xorg-video-sis-lts-quantal' 'linux-headers-lbm-3.2.0-33-generic-pae' 'php-horde-text-diff' 'pencil' 'opencity' 'migrationtools' 'libxcp-ocaml-dev' 'libroot-math-smatrix-dev' 'libreoffice-lightproof-hu' 'libperlio-via-symlink-perl' 'libpcp-mmv-perl' 'ruby-packet' 'liblttd0' 'liblscp-dbg' 'python-pyfann' 'libcatalyst-engine-psgi-perl' 'libgoocanvas-2.0-9' 'aspell-hsb' 'libjbig-dev' 'libvorbisfile3' 'libcrypt-ssleay-perl' 'tremulous' 'vcheck' 'snimpy' 'python-recoll' 'putty-tools' 'passage' 'python-poster' 'libwiki-toolkit-plugin-diff-perl' 'libtaoframework-ffmpeg-cil-dev' 'libownet-2.8-15' 'libiscsi-bin' 'libghc-xml-types-doc' 'libdancer-plugin-flashmessage-perl' 'libcalendar-simple-perl' 'libhepmc-dev' 'geany-plugin-xmlsnippets' 'gdevilspie' 'crossfire-client' 'thunderbird-locale-ga-ie' 'python-debtagshw' 'libxcb-xevie0-dbg' 'language-pack-gnome-bem' 'libotf0' 'libglib2.0-doc' 'nmap' 'dmedia-webui' 'gcc-4.5-base' 'yorick-mpy-openmpi' 'pymca-data' 'mkgmap' 'manpages-fr-dev' 'lilypond-doc-pdf' 'libvmime0' 'libtest-xml-perl' 'libscotch-dbg' 'librapi2-dev' 'libpugl-0-0' 'libghc-acid-state-dev' 'libdrizzle-dbg' 'libmodule-install-perl' 'tex4ht' 'libglpk0' 'dot-forward' 'djagios' 'deluge-gtk' 'telepathy-mission-control-5-dbg' 'libdatetime-locale-perl' 'libbcprov-java-doc' 'libcephfs1' 'libyajl1-dbg' 'python-pyopencl-headers' 'tracker-dbg' 'tk8.6-doc' 'shelltestrunner' 'sbrshd' 'python-repoze.what' 'python-lilv' 'php-horde-nag' 'libtest-hasversion-perl' 'libstarpu-1.0' 'libspring-web-struts-java' 'librqrcode-ruby' 'librazorqt0-dev' 'libio-async-loop-epoll-perl' 'libghc-test-framework-hunit-dev' 'libghc-pool-conduit-doc' 'libset-infinite-perl' 'libautomaton-java' 'plasma-widget-lancelot' 'fuse-convmvfs' 'cclive' 'python-egenix-mxqueue' 'x11proto-gl-dev' 'libvarconf-1.0-6-dbg' 'libghc6-wash-dev' 'libghc6-recaptcha-dev' 'linux-headers-3.2.0-33-generic-pae' 'sugar-irc-activity' 'schleuder' 'remind' 'python-brian-lib' 'libwsutil-dev' 'libpcp-logsummary-perl' 'libgst-ruby1.8' 'libghc-hcard-doc' 'libenet-dev' 'libcssparser-java-doc' 'libcss-packer-perl' 'libalkimia-dev' 'ksnapshot' 'jvm-7-avian-jre' 'ibverbs-utils' 'gespeaker' 'libarpack2' 'ntlmaps' 'xserver-xorg-video-tdfx' 'libxcb-shm0-dbg' 'libspeechd-dev' 'ov51x-jpeg-source' 'op-panel' 'libmorfologik-stemming-java' 'libjxgrabkey-jni' 'libghc-augeas-prof' 'libxmlsec1-dev' 'libamazon-sqs-simple-perl' 'gerris' 'ttf-beteckna' 'ruby-em-http-request' 'cfi-sv' 'blocks-of-the-undead' 'lwat' 'libxcb-icccm4' 'ocsigen' 'language-pack-kde-aa-base' 'erlang-snmp' 'libpam-fprint' 'hl4040cncupswrapper' 'xbacklight' 'tpm-tools-dbg' 'python3-dnspython' 'python-nipy-lib-dbg' 'phnxdeco' 'palp' 'muon-updater' 'libxml-feedpp-perl' 'libgeo-coordinates-utm-perl' 'ir-keytable' 'heroes-sound-tracks' 'hamexam' 'kde-style-qtcurve' 'shiki-dust-theme' 'pidgin-extprefs' 'fillets-ng' 'fatrat-data' 'node-underscore' 'ubuntu-standard' 'language-pack-gnome-ber' 'libgc-dev' 'gir1.2-timezonemap-1.0' 'libghc6-configfile-dev' 'pipebench' 'node-less' 'mupdf-tools' 'libpococrypto9' 'ruby-ncurses' 'libmodpbase64-dbg' 'liblinebreak2-dev' 'libmatheval1' 'libosl1' 'gambas3-gb-opengl' 'fcitx-table-malayalam-phonetic' 'libcbf-dev' 'paml' 'abootimg' 'python-meliae-dbg' 'dh-migrations' 'language-pack-kde-la-base' 'wmmemload' 'ubuntu-virt-mgmt' 'python3-pyside.qtdeclarative' 'python-pywbem' 'python-sklearn' 'nsis-common' 'mythbuntu-diskless-server' 'mosh' 'mecab-ipadic-utf8' 'libqmfclient1' 'libglbsp-dev' 'libcaptcha-recaptcha-perl' 'libbenchmark-apps-perl' 'libace-rmcast-dev' 'libsl0-heimdal' 'eep24c' 'cxref-doc' 'lswm' 'libpam-ldapd' 'liblog-log4perl-perl' 'libgtkhtml-4.0-dbg' 'language-pack-kde-hu-base' 'freetds-common' 'yabause-common' 'squirrelmail-spam-buttons' 'ruby-activemodel-3.2' 'mathomatic-primes' 'python-swiginac' 'libgsecuredelete0' 'libapp-repl-perl' 'php-htmlpurifier' 'libksieveui4' 'libglobus-xio-pipe-driver0' 'fonts-roboto' 'liblockdev1' 'creepy' 'python-ceilometer' 'ruby-introspection' 'pxljr' 'libsane-common' 'language-pack-gnome-th-base' 'iproute-dev' 'plymouth-x11' 'plasma-active-imageviewer' 'php-horde-kolab-server' 'libxfce4util-bin' 'petsc3.2-doc' 'libnet-tftpd-perl' 'libtophide-ocaml-dev' 'libgwyddion20-doc' 'libcgi-application-plugin-ajaxupload-perl' 'libxmlsec1-openssl' 'xblast-tnt' 'libobjc4-dbg-armhf-cross' 'libfwtsiasl1' 'cmospwd' 'libaddresses-dev' 'valac-0.18-dbg' 'libpg-java' 'libmono-simd4.0-cil' 'libipc-sharelite-perl' 'libgnomeui-common' 'libcommons-logging-java-doc' 'libnet-snmp-perl' 'since' 'ruby-mail' 'openhpi-plugin-ipmidirect' 'libsetup-ruby1.8' 'libopenrawgnome1' 'libmaven-shared-io-java' 'ruby-innate' 'libdumbnet-dev' 'libdigidocpp-dev' 'picmi' 'libclutter-gst-1.0-0' 'libset-scalar-perl' 'libreoffice-calc' 'libdjvulibre-dev' 'language-pack-kde-wa-base' 'language-pack-kde-uk-base' 'ijsgutenprint' 'friends-facebook' 'fonts-manchufont' 'liboce-modeling1' 'python-zope.configuration' 'python-django-countries' 'libpoco-doc' 'liblucene3-contrib-java' 'libkwwidgets1.0.1009' 'libghc-crypto-pubkey-doc' 'libexif-gtk5' 'yafaray-exporter' 'biosig-tools' 'nvidia-173' 'libnetcf-dev' 'qt3-qtconfig' 'libboost-test1.48.0' 'unagi-dev' 'libdata-buffer-perl' 'libboost-test1.53.0' 'volumecontrol.app' 'liboce-modeling2' 'clisp-module-zlib' 'calligra-l10n-ptbr' 'batmon.app' 'xserver-xorg-dev' 'python3-jinja2' 'sqlite3-doc' 'libpam-apparmor' 'python-scim-dbg' 'unburden-home-dir' 'tesseract-ocr-tel' 'switchsh' 'r-cran-gam' 'python-zope.app.component' 'licq-plugin-qt4-common' 'libprocessing-core-java' 'libparse-mediawikidump-perl' 'libopencv-photo2.4' 'ruby-gruff' 'libgpars-groovy-java-doc' 'libfreefem-dev' 'madbomber' 'guake' 'code-saturne-doc' 'maxima' 'python-coverage-dbg' 'debsecan' 'libpixman-1-0-dbg' 'libjunitperf-java' 'postfix' 'libtcmalloc-minimal0' 'libcudart4' 'libtrain1' 'unity-webapps-angrybirds' 'rsbac-doc' 'pike7.8-reference' 'nova-compute-xcp' 'libuim-scm0' 'librime-data-scj6' 'libnet-arp-perl' 'lua-sql-mysql-dev' 'libkrb5-ruby' 'libio-prompt-perl' 'libhbaapi2' 'libdbd-sqlite3-ruby' 'kde-plasma-desktop' 'jazip' 'libgdamm-5.0-13' 'pidgin-themes' 'fonts-cwtex-ming' 'glance' 'iso-codes' 'doc-base' 'libboost-regex1.48.0' 'mgltools-networkeditor' 'tesseract-ocr-ron' 'mova' 'libsqlexpr-ocaml-dev' 'libmpich-shmem1.0gf' 'minpack-dev' 'libois-1.3.0' 'librose-db-object-perl' 'libboost-regex1.53.0' 'libauth-yubikey-decrypter-perl' 'libkdcraw-dev' 'libppd0' 'libcfitsio3' 'freepwing' 'gnome-video-effects' 'libmpfr-doc' 'libkdeclarative5' 'xphoon' 'xgridfit-doc' 'python-meld3' 'python-pycparser' 'micropolis-data' 'lldpd' 'libpam-otpw' 'libobject-id-perl' 'libmath-basecalc-perl' 'libhugs-network-bundled' 'libcsv-ocaml-dev' 'libboost-date-time1.53-dev' 'libalgorithm-munkres-perl' 'gsasl-dbg' '2ping' 'testrepository' 'python-ubuntuone-storageprotocol' 'libboost-date-time1.48-dev' 'libaccountsservice-dev' 'gucharmap' 'brltty-x11' 'bacula-server' 'libghc6-mwc-random-prof' 'libghc6-missingh-doc' 'znc-dbg' 'tesseract-ocr-tha' 'plasma-widget-smooth-tasks' 'pgsnap' 'liblua5.1-cgi-dev' 'libghc-vty-dev' 'libghc-diagrams-cairo-prof' 'libghc-cereal-doc' 'libfann-doc' 'libefreet-doc' 'python-jenkins' 'faumachine' 'elmer' 'ttf-adf-romande' 'eclipse-emf-sdk' 'mpqc' 'cyrus-doc' 'cvs-mailcommit' 'akonadi-kde-resource-googledata' 'python-sphinx' 'libaccounts-glib-doc' 'systemtap-client' 'python-stemmer-dbg' 'python-sigmask' 'libtorrent14' 'libplot-dev' 'libghc-oeis-prof' 'libfuse-perl' 'jigdo-file' 'libgnome-speech-dev' 'fp-units-db-2.6.0' 'esorex' 'libxcb-composite0-dbg' 'libtcmalloc-minimal4' 'libhdf5-lam-1.8.4' 'libghc6-parsec2-doc' 'wildmidi' 'octave-sockets' 'most' 'mbuffer' 'librudecgi5' 'libocsigen-ocaml-doc' 'libjs-jquery-ui-theme-eggplant' 'libghc-stringsearch-dev' 'libghc-cmdargs-dev' 'libfreehep-graphicsio-tests-java' 'libglib-object-introspection-perl' 'libcgi-application-plugin-configauto-perl' 'libbuild-helper-maven-plugin-java' 'libcrypt-eksblowfish-perl' 'happycoders-libsocket' 'gtkpod-dbg' 'grub-firmware-qemu' 'gnome-icon-theme-suede' 'lib64go0-powerpc-cross' 'ttf-unikurdweb' 'fltk1.1-games' 'libecore-x1' 'wamerican-large' 'python-parsedatetime' 'erlang-syntax-tools' 'cherokee-admin' 'tomatoes' 'tetraproc' 'r-cran-rcolorbrewer' 'python-pyamf' 'mpop' 'libomxil-bellagio0' 'libiscwt-java' 'libghc-fast-logger-doc' 'g15stats' 'faumachine-data' 'libclam-qtmonitors1.4' 'python-cssselect' 'abcm2ps' 'libtotem-dev' 'libssl1.0.0-dbg' 'libjasper-dev' 'libghc6-filemanip-prof' 'zentyal-common' 'tsung' 'rt4-extension-assettracker' 'python-gmenu-dbg' 'pidgin-openpgp' 'mplayer-doc' 'makebootfat' 'liblwp-protocol-psgi-perl' 'libdxflib-2.2.0.0-dbg' 'libdbd-sqlite3-ruby1.9.1' 'libclipper-doc' 'libalsaplayer-dev' 'libldns1' 'libxmlada4.1' 'gcc-4.7-arm-linux-gnueabi' 'fvwm1' 'python-viper' 'dpm-server-postgres' 'copyright-update' 'cl-rlc' 'libblas-dev' 'jppy-doc' 'gambas2-gb-compress-zlib' 'zynaddsubfx' 'tesseract-ocr-slk' 'showq' 'python-pyquery' 'php5-mongo' 'php-horde-log' 'python-pychart' 'nova-compute-xen' 'mp3splt-gtk' 'libapache-asp-perl' 'jackmeter' 'input-utils' 'libinklevel5' 'python-freevo' 'fonts-samyak-deva' 'edgy-session-splashes' 'dotur' 'cxref-emacs' 'brp-pacu' 'libcamel-1.2-29' 'zenmap' 'vala-gen-project' 'tesseract-ocr-tgl' 'python-django-app-plugins' 'libxmlrpc-light-ocaml-dev' 'libomxil-bellagio0-components-xvideo' 'libjana-ecal-dev' 'libhibernate-validator-java' 'libghc-maths-prof' 'libghc-attoparsec-enumerator-prof' 'grinder' 'freemind-browser' 'fonts-guru-extra' 'skkdic-cdb' 'encfs' 'python-pyicu-dbg' 'libgl1-mesa-swx11' 'libclass-isa-perl' 'libbcprov-java-gcj' 'gambas2-ide' 'tuxguitar-jsa' 'python-yapsy-doc' 'nagstamon' 'llgal' 'swe-standard-data' 'libqt5xmlpatterns5-private-dev' 'liblockdev1-perl' 'libtrilead-putty-extension-java' 'libghc-network-protocol-xmpp-doc' 'gpe-lights' 'c++-annotations' 'libcamel-1.2-40' 'libopenvg1-mesa-dev-lts-quantal' 'xbmc-eventclients-common' 'virtuoso-vsp-startpage' 'mercurial-buildpackage' 'libmodello-maven-plugin-java-doc' 'libmime-encwords-perl' 'libghc-unordered-containers-prof' 'libghc-text-icu-prof' 'libclass-unload-perl' 'freepops-updater-gnome' 'fonts-ocr-a' 'festvox-czech-krb' 'dict-xdict' 'cobbler' 'bisho' 'smbldap-tools' 'language-pack-om-base' 'libpwl-dev' 'picon-usenix' 'pd-pdogg' 'libopenbabel-doc' 'libmaven-reporting-impl-java-doc' 'libghc-objectname-dev' 'libemail-filter-perl' 'libclass-field-perl' 'klustakwik' 'gpivtools-mpi' 'fonts-migmix' 'fgfs-base' 'cyrus-replication-2.4' 'debmirror' 'ocaml-tools' 'asylum-data' 'libradiusclient-ng2' 'network-manager' 'docbook-xsl-doc-text' 'compiz-dev' 'sabnzbdplus-theme-classic' 'weather-util' 'libupnp3-dbg' 'libjemalloc1' 'libhmsbeagle-dev' 'libatk1-ruby' 'gle-doc' 'glassfish-jmac-api' 'entagged' 'cyrus-common-2.2' 'nvidia-304' 'printer-driver-c2esp' 'libxml-sax-writer-perl' 'iputils-tracepath' 'git-doc' 'python3-magic' 'zenity' 'libcwiimote-dev' 'libkipi8' 'strongswan-starter' 'paps' 'libtest-rdf-doap-version-perl' 'liblouisutdml-data' 'libghc-stringprep-dev' 'libghc-haskelldb-hdbc-sqlite3-prof' 'libghc-gtk-dev' 'mod-musicindex-common' 'fortunes-spam' 'fai-nfsroot' 'dvi2ps-fontdata-rsp' 'wminput' 'clamav-unofficial-sigs' 'ada-reference-manual-pdf' 'nvidia-310' 'texlive-pstricks-doc' 'python-qt3-gl-dbg' 'libghc6-erf-prof' 'rt3.8-db-mysql' 'sabnzbdplus-theme-smpl' 'ubuntu-gnome-desktop' 'python-openturns-dev' 'nlkt' 'workrave' 'lxde' 'lockout' 'libtomcrypt0' 'libopenscap1' 'libmpj-java' 'libmoox-types-mooselike-perl' 'liblscp-dev' 'libloudmouth1-dev' 'libjmagick6-jni' 'libcluttergesture-dev' 'libcatalyst-view-tt-perl' 'libplexus-utils-java' 'xscreensaver-screensaver-webcollage' 'libgfal-transfer2' 'dynare-matlab' 'cyrus-common-2.4' 'libxv-dev' 'libmono-system-web-routing4.0-cil' 'gir1.2-unique-3.0' 'gir1.2-nmgtk-1.0' 'cython' 'bash-completion' 'libcogl11' 'xtail' 'uim-dict-gtk3' 'syncevolution' 'setpwc' 'python-clientform' 'pygmy' 'plasma-active-mobilecomponents' 'librobust-http-client-java' 'libinstpatch-1.0-0' 'tulip' 'libblas-test' 'freqtweak' 'epiphany' 'ttf-adf-baskervald' 'dnssec-tools' 'cvsgraph' 'manpages-de' 'libxcb-xevie0-dev' 'libqtwebkit-dev' 'python3.3-minimal' 'libosp5' 'tripwire' 'avahi-daemon' 'libtulip-pluginsmanager-dev' 'libghc6-cgi-dev' 'libghc-happstack-state-dev' 'liballegro4.2-plugin-jack' 'warzone2100-music' 'postgresql-9.1-pgfincore' 'libspark-java' 'libsoxr-dev' 'libscotch-dev' 'libjgromacs-java-doc' 'libghc-pandoc-dev' 'libghc-base64-bytestring-dev' 'libdune-grid-2.2.0' 'libdrizzle-dev' 'libanyevent-callback-perl' 'jconvolver-config-files' 'shiki-colors' 'python-decoratortools' 'cxxtest' 'libsys-cpu-perl' 'ttf-dejavu-extra' 'libwvstreams4.6-base' 'libdiscid0' 'libcogl12' 'python-ifeffit' 'tesseract-ocr-spa' 'supertux-stable' 'sonic-visualiser' 'python-zope.applicationcontrol' 'pcmanfm-dbg' 'lush' 'libmoosex-meta-typeconstraint-forcecoercion-perl' 'libgwenhywfar-doc' 'libghc-acid-state-doc' 'kraft' 'fretsonfire-songs-muldjord' 'dee-tools' 'citadel-dbg' 'cimg-examples' 'libc-icap-mod-squidclamav' 'libdbus-glib1.0-cil' 'libnet-ssleay-perl' 'fltk1.1-doc' 'liblogsys-dev' 'gnome-games' 'undertaker' 'tesseract-ocr-slv' 'telepathy-ring' 'python-pywapi' 'python-pysnmp4-doc' 'plasma-widget-lastmoid' 'openarena-081-maps' 'libmaven-cobertura-plugin-java' 'libghc-test-framework-hunit-doc' 'libfluidsynth-dev' 'libcss-tiny-perl' 'libmlt++3' 'postgis' 'mbrola' 'fonts-taml-tamu' 'bzflag-data' 'backup-manager-doc' 'wpagui' 'python-reportlab-doc' 'libsmokeqtwebkit4-3' 'libxcb-shm0-dev' 'icedtea6-plugin' 'debiandoc-sgml' 'spellutils' 'libghc6-wash-doc' 'libghc6-recaptcha-doc' 'libmudflap0-4.5-dev-armhf-cross' 'nvidia-96-updates-dev' 'vstream-client-dev' 'tomcat6-extras' 'pbnj' 'r-cran-epi' 'massxpert-data' 'libsymmetrica-2.0' 'libsmokesopranoclient3' 'libjana-test' 'libglrr-widgets-dev' 'libenet-doc' 'hexdiff' 'opendict' 'librplay3' 'bokken' 'libgail-common' 'libcwiimote3' 'syrep' 'sinfo' 'python-argvalidate' 'ptex-buildsupport' 'phpbb3-l10n' 'xml-twig-tools' 'libuptimed-dev' 'libsdpa-dev' 'qdbm-doc' 'libmerb-haml-ruby' 'xserver-xorg-video-trident' 'libtest-exception-perl' 'qdbus' 'libgnome-keyring0' 'docbook-xsl-doc-pdf' 'libqt3-mt-mysql' 'libecal-1.2-10' 'shorewall-lite' 'libmodpbase64-dev' 'ruby-event-loop' 'libtablelayout-java' 'ganglia-monitor' 'liboggz2' 'elfutils' 'python-talloc-dbg' 'memtest86+' 'libsbc1' 'libebook1.2-dev' 'libghc6-configfile-doc' 'libfbembed2.1' 'w-scan' 'mlterm' 'live-image-lxde-desktop' 'libxmmsclient-ruby1.8' 'libsdl-sound1.2-dev' 'liblinebreak2-doc' 'libfreefem0' 'dict-gazetteer2k' 'x11vnc' 'coinor-libclp0' 'libchm-bin' 'aseprite' 'lxdm' 'libopenais3' 'libboost-test1.49.0' 'libgtkhtml-4.0-dev' 'libboost-wave1.46.1' 'language-pack-kde-tlh-base' 'shiki-colors-xfwm-theme' 'r-cran-rgtk2' 'python-magic-dbg' 'pysolfc-cardsets' 'netdiscover' 'libqmmp0' 'libjboss-cache2-java' 'libiscsi-dev' 'libbz2-ocaml-dev' 'gosa-plugin-kolab-schema' 'rubber' 'cpufreqd' 'cgilib' 'librtmp-dev' 'xserver-xorg-video-glint' 'manpages-cs' 'uwsgi-plugin-jwsgi-openjdk-6' 'umview-mod-viewfs' 'ruby-journey' 'lisaac-mode' 'libtest-html-w3c-perl' 'libjvyamlb-java' 'libghc-hakyll-prof' 'libdatetime-format-http-perl' 'libautobox-core-perl' 'jsxgraph' 'liblingua-ga-gramadoir-perl' 'valkyrie' 'ruby-selinux' 'iproute-doc' 'gnome-desktop3-data' 'python-paramiko' 'libcvc3-2-java' 'linux-headers-3.5.0-21-generic' 'substance' 'r-cran-rjava' 'python-pycha' 'postgresql-9.1-pllua' 'php-net-dnsbl' 'nova-xvpvncproxy' 'minisat+' 'libdbix-profile-perl' 'libqtpropertybrowser3' 'libtext-markdown-perl' 'libbpp-phyl9' 'gridengine-client' 'libmouse-perl' 'python3-openssl-dbg' 'jffnms' 'nvidia-settings-updates' 'lightdm-remote-session-uccsconfigure' 'cduce' 'libboost-regex1.49.0' 'x11-utils' 'linux-image-3.2.0-37-virtual' 'libgles1-mesa-lts-quantal' 'xvid4conf' 'libogmrip-dev' 'virtuoso-vad-conductor' 'python-ncap' 'pgfouine' 'pcp-gui' 'libsvg-graph-ruby' 'libregexp-grammars-perl' 'plasma-widget-ktorrent' 'xscreensaver-gl' 'kaccessible' 'gpscorrelate-gui' 'libfbembed2.5' 'cheese' 'autoconf-dickey' 'libboost-date-time-dev' 'hplip-cups' 'libecal-1.2-15' 'echelon' 'phpunit-story' 'libv8-i18n-dev' 'libresid-builder-dev' 'libical-parser-perl' 'libghc-zlib-bindings-dev' 'libghc-snap-core-dev' 'libatk-adaptor-data' 'gross' 'libglbsp3' 'git-dpm' 'libmono-system-serviceprocess4.0-cil' 'libcryptsetup-dev' 'gnome-session-canberra' 'grub2' 'pass' 'mahara-apache2' 'libjs-of-ocaml' 'libhtml-template-dumper-perl' 'libec-dev' 'libcgi-application-plugin-ratelimit-perl' 'gpe-confd' 'gnustep-core-doc' 'gnome-lirc-properties' 'glmemperf' 'gfortran-4.7-arm-linux-gnueabi' 'fcoe-utils' 'liblua5.1-cosmo0' 'eclipse-rcp' 'wordnet' 'acheck-rules' 'python-qt4-sql-dbg' 'gdebi' 'language-pack-gnome-ja-base' 'grub-efi-ia32-bin' 'g++-4.4-multilib' 'liburi-perl' 'python3-aptdaemon' 'xtalk' 'xfonts-mplus' 'tryton-modules-account' 'sip-tester' 'python3-pytools' 'libstdc++6-4.4-dbg-armhf-cross' 'sensors-applet' 'liblash-compat-dev' 'libfreefem-doc' 'indicator-network' 'ciopfs' 'libsmokeqtgui4-3' 'sun-javadb-common' 'xracer' 'xfonts-cronyx-cp1251-75dpi' 'wmrack' 'tesseract-ocr-sqi' 'proftpd-mod-odbc' 'pinball-data' 'php-horde-ingo' 'lxmusic' 'lua-augeas' 'libsombok3' 'librtas-dev' 'kblackbox' 'shiki-brave-theme' 'fonts-pecita' 'distcc-pump' 'bzr-search' 'python3-psycopg2' 'python-subunit' 'isc-dhcp-server-dbg' 'xbmc-eventclients-j2me' 'tk-tile' 'libmpeg2encpp-2.0-0' 'libmercator-0.3-1-dbg' 'libmath-base85-perl' 'libgtkdatabox-0.9.1-1-libglade' 'libghc-dlist-prof' 'hyphen-show' 'fcitx-table-arabic' 'libguichan-sdl-0.8.1-1' 'apertium-dbus' 'libparams-validate-perl' 'language-pack-gnome-sk-base' 'gnome-control-center-dev' 'znc-dev' 'python-workqueue' 'plymouth-theme-sabily' 'oregano' 'minisat2' 'matchbox-keyboard-im' 'libtest-mocktime-datecalc-perl' 'libtclap-dev' 'libshisa-dev' 'libjgrapht0.8-java-doc' 'libh323plus-dev' 'libflowcanvas-dev' 'libxfce4util-dev' 'libclass-accessor-named-perl' 'libclass-accessor-children-perl' 'kism3d' 'python-tegaki-gtk' 'gsql-postgresql-engine' 'gshutdown' 'googlefontdirectory-tools' 'gnome-theme-gilouche' 'dvsource' 'doc-debian-es' 'bibcursed' 'libpixman-1-0' 'science-viewing' 't1-teams' 'r-cran-erm' 'php-horde-prefs' 'octave-vrml' 'libopenid-ruby1.8' 'libnetwork-ipv4addr-perl' 'libltc-dbg' 'libghc-vty-doc' 'libballview1.4-dev' 'libbakery-2.6-dev' 'itagalog' 'libgtextutils0' 'dns-browse' 'libdiscover2' 'rplay-server' 'nvidia-settings-304-updates' 'account-plugin-mxit' 'libxcb-composite0-dev' 'libboost-filesystem1.49-dev' 'language-pack-kde-ss-base' 'language-pack-kde-aa' 'cloud-init' 'libbamf-dev' 'z88-data' 'sphinx3' 'med-epi' 'manpages-es' 'libglw1-mesa' 'libcminpack-dev' 'expeyes-firmware-dev' 'dxsamples' 'drift' 'cobbler-enlist' 'calligra-reports-web-element' 'twolame' 'blubuntu-theme' 'nvidia-settings' 'libftdi1-dbg' 'libfontforge-dev' 'libcap-ng-dev' 'gir1.2-gdkpixbuf-2.0' 'libaugeas0' 'libxt-java' 'ubuntuone-client-gnome-dbg' 'totem-plugin-arte' 'tesseract-ocr-rus' 'screenie' 'ruby-qt4-dbg' 'python-zope.app.tree' 'omins' 'libxml-mini-perl' 'libstring-dirify-perl' 'librrd-ruby' 'libjenkins-json-java-doc' 'libghc-stringsearch-doc' 'libghc-cmdargs-doc' 'python-avogadro' 'libactivesupport-ruby1.9.1' 'gromacs-mpich' 'flashcache-dkms' 'dvdbackup-dbg' 'allegro5-doc' 'python-enable' 'python-testresources' 't1utils' 'libvotequorum-dev' 'autoconf-archive' 'gfortran-4.6-multilib-arm-linux-gnueabihf' 'xgammon' 'wide-dhcpv6-relay' 'python-mokoui' 'python-polybori' 'lives' 'libsipwitch1' 'libobjenesis-java-doc' 'libnacore-dev' 'pcsc-tools' 'libglfw-dev' 'libbluray1' 'libkyototycoon2' 'juman' 'doc-debian-fr' 'dhcpcd5' 'blender-ogrexml-1.8' 'python3-yaml-dbg' 'libapache2-mod-python' 'grub-efi-ia32-dbg' 'libghc6-leksah-server-dev' 'gambas2-gb-info' 'type-handling' 'redeclipse' 'yorick-z' 'naspro-bridges' 'libgtkpod-dev' 'heimdall-flash-frontend' 'python-krbv' 'fcitx-table-cangjie3' 'dma-migrate' 'clojure' 'cadubi' 'anagramarama-data' 'libaddressview-dev' 'wbulgarian' 're2c' 'libblas-doc' 'language-pack-gnome-ast' 'libkjsembed4' 'evince-dbg' 'libsalck3' 'linux-headers-3.8.0-16' 'valac-0.20-vapi' 'rivet-plugins-dev' 'packaging-dev' 'pondus' 'libsvn-ruby' 'libstatistics-test-sequence-perl' 'libpcp3-dev' 'lua-wsapi-fcgi' 'libguava-java-doc' 'libglrr-glib-dev' 'libghc-process-extras-prof' 'libcmpicppimpl0' 'libbiojava-java-doc' 'kdegraphics-strigi-analyzer-dbg' 'kakasi-dic' 'julia' 'jeuclid-cli' 'gromacs-openmpi' 'gnome-update-viewer' 'fonts-breip' 'deluge-torrent' 'geant321' 'manpages-fr' 'libsatmr3-dev' 'language-pack-kde-af' 'git-cvs' 'linux-headers-3.8.0-17' 'simon' 'librampart-dev' 'libocamlgsl-ocaml' 'libmrpt-kinematics1.0' 'libjana-ecal-doc' 'libgvc5-plugins-gtk' 'libghc-psqueue-prof' 'ibus-table-rustrad' 'gtick' 'grsync' 'gosa-plugin-mail' 'libmudflap0-4.7-dev-powerpc-cross' 'fcitx-table-cangjie5' 'edos-distcheck' 'libkvutils10' 'python-pycalendar' 'sqlite' 'node' 'libthreads-shared-perl' 'python-django-south' 'libruby1.8-dbg' 'upower' 'anthy-common' 'linux-headers-3.8.0-18' 'linux-image-3.8.0-8-generic' 'openoffice.org-ogltrans' 'linux-headers-lbm-3.2.0-23-generic' 'mplayer-skins' 'vim-vimoutliner' 'unity-webapps-linkedin' 'r-cran-ggplot2' 'netmask' 'nec2c' 'mediawiki-math' 'ruby-shoulda' 'libcvector2-dev' 'libapache2-mod-ruby' 'dmtx-utils' 'wbritish-insane' 'texlive-formats-extra' 'libmono-system-componentmodel-composition4.0-cil' 'gnome-pkg-tools' 'linux-image-3.2.0-34-generic' 'linux-image-3.2.0-29-generic' 'tuxguitar-fluidsynth' 'swac-scan' 'statgrab' 'openvas-plugins-dfsg' 'manpages-ja' 'libpoppler-glib-ruby1.8-dbg' 'libocsigen-ocaml' 'libgwt-user-java' 'libghemical-data' 'libghc-dpkg-dev' 'squidtaild' 'libacpi-dev' 'leksah' 'oneko' 'jacktrip' 'icewm-experimental' 'rygel-tracker' 'globus-gss-assist-dbg' 'dar-static' 'cclib-data' 'asterisk-moh-opsound-gsm' 'apt-cacher' 'linux-headers-3.8.0-19' 'libgbm1-dbg' 'krb5-locales' 'libavfilter-extra-2' 'pgmfindclip' 'tumbler-common' 'tesseract-ocr-srp' 'tclcurl' 'tachyon-doc' 'plasma-widget-yawp' 'libwsbm1' 'libupnp3-dev' 'libsox-dev' 'libroot-bindings-python-dev' 'libghc-objectname-doc' 'libghc-iteratee-dev' 'spambayes' 'libjffi-java' 'libgnuradio-digital3.6.1' 'geany-plugin-codenav' 'cappuccino' 'libgetopt-java' 'libxcb-dri2-0-dbg' 'language-pack-kde-be' 'yudit-doc' 'octave-secs1d' 'liblua5.1-sec1' 'libgraph-easy-as-svg-perl' 'libghc-xml2html-dev' 'libdbd-mysql-ruby1.8' 'libktorrent-dbg' 'guile-gnome2-glib' 'pommed' 'gkamus-dbg' 'lib64mudflap0-powerpc-cross' 'libdmtx-utils' 'libproj0' '389-ds-base-dbg' 'vim-athena' 'language-pack-kde-ca' 'default-jdk-doc' 'debian-goodies' 'linux-backports-modules-net-3.2.0-30-generic-pae' 'linux-backports-modules-net-3.2.0-25-generic-pae' 'red5-doc' 'r-cran-evd' 'pidgin-encryption' 'librep9' 'libmagplus3' 'libghc-stringprep-doc' 'libghc-gtk-doc' 'libeval0-dev' 'libdelimmatch-perl' 'libdevel-size-perl' 'libccss-dev' 'libjansi-java' 'gobjc++' 'gcc-4.7-arm-linux-gnueabihf' 'chiark-scripts' 'ceilometer-agent-central' 'libgwenhywfar60' 'mlterm-common' 'libsmokeqt3support4-3' 'libident' 'language-pack-kde-bg' 'libgck-1-0' 'bison' 'xfce4-dbg' 'tweak' 'python-repoze.sphinx.autointerface' 'lua-ldap-dev' 'libogre-perl' 'liblscp-doc' 'ruby-lockfile' 'libjalali-dev' 'libmodule-pluggable-fast-perl' 'libjffi-jni' 'iodine' 'fso-gsmd-ezx' 'dict-freedict-fra-nld' 'collectl-utils' 'bochs-term' 'po4a' 'language-pack-az-base' 'language-pack-kde-am' 'language-pack-fa-base' 'anthy' 'python-pycuda' 'sailcut' 'python-ropemacs' 'psi-plus' 'libthunarx-2-0' 'libicedb34' 'ho22bus' 'libgconf2.0-cil' 'language-pack-kde-an' 'ttf-mgopen' 'evolution-exchange' 'linux-image-3.8.0-16-generic' 'libghc6-cgi-doc' 'libghc-happstack-state-doc' 'libdrizzle-doc' 'xburst-tools' 'rss2email' 'python-gdchart2' 'octave-epstk' 'nodm' 'ltsp-cluster-pxeconfig' 'sensord' 'libnet-rawip-perl' 'libgss-dbg' 'libghc-simpleea-prof' 'libghc-pandoc-doc' 'libghc-base64-bytestring-doc' 'libgdome2-ocaml-dev' 'jdresolve' 'quadrapassel' 'libpdf-api2-perl' 'ruby-coderay' 'cain-solvers' 'libotr2' 'python-gobject-2-dbg' 'libp11-2-dbg' 'python-pydds' 'postfwd' 'openscad-testing-data' 'octave-secs2d' 'memstat' 'libwiki-toolkit-plugin-rss-reader-perl' 'libxml-easy-perl' 'libavbin-dev' 'libuuid-tiny-perl' 'libkst2math2' 'krank' 'hexedit' 'fonts-lg-aboriginal' 'fail2ban' 'edisplay' 'dssi-example-plugins' 'bomber' 'alsa-source' 'fglrx' 'libgrantlee-gui0' 'libdb++-dev' 'language-pack-kde-da' 'rdiff-backup-fs' 'openoffice.org-dtd-officedocument1.0' 'ncmpc-lyrics' 'mussh' 'moserial' 'libsys-filesystem-perl' 'libstfl-perl' 'libqmmpui0' 'libgmp-ocaml-dev' 'libghc-pretty-show-dev' 'libitpp-dev' 'libfann2' 'jtreg' 'gedit-latex-plugin' 'autokey-common' 'libx11-data' 'libppl9' 'libsam4' 'openoffice.org-java-common' 'gcc-4.5-locales' 'python-hachoir-wx' 'pyrocket' 'openuniverse-common' 'libotr5' 'libglrr-gtk-dev' 'libdist-zilla-plugin-podspellingtests-perl' 'libmorph' 'r-cran-maps' 'libgambc4-dev' 'libjebl2-java' 'xvnc4viewer' 'coffeescript' 'alqalam' 'libots0' 'libseccomp-dev' 'language-pack-kde-ar' 'libdbusmenu-glib4' 'liballegro4.2-plugin-esd' 'slack' 'psi-plus-skins' 'php-horde-pdf' 'nova-conductor' 'manpages-hu' 'magics++' 'libjhdf5-jni' 'libestraier-dev' 'libdbix-dbschema-perl' 'libhocr-python' 'golang-dbg' 'freemat-help' 'python-talloc-dev' 'language-pack-kde-bn' 'language-pack-kde-as' 'python-twisted-web' 'rrdtool' 'x11proto-xf86misc-dev' 'tesseract-ocr-swa' 'qtlocation5-examples' 'python-quixote1' 'python-zope.intid' 'libsinatra-ruby1.8' 'lua-orbit' 'libsurefire-java' 'libfilehandle-unget-perl' 'libcmpiosbase-common0-dev' 'lib64gcc1-powerpc-cross' 'kawari8' 'desktopnova-tray' 'python-gamin' 'pulseaudio-module-raop-dbg' 'ncurses-base' 'libservlet3.0-java-doc' 'libftdi1' 'language-pack-kde-de' 'language-pack-kde-bo' 'sugar-poll-activity' 'nmon' 'libqgpsmm-dev' 'libpdfbox-java-doc' 'libcue-dev' 'libcommons-el-java' 'g3dviewer' 'fcitx-chewing' 'chm2pdf' 'libsmokebase3' 'libpulse-dev' 'libgnome-desktop-dev' 'libhamcrest-java-doc' 'libghc6-text-dev' 'libcommandline-ruby' 'ogmrip-doc' 'superiotool' 'remuco-mpd' 'synergy' 'php-horde-nls' 'mono-xsp4-base' 'libvtkgdcm-tools' 'libsscm-dev' 'libspring-security-core-2.0-java' 'libmason-plugin-routersimple-perl' 'liblua5.2-0-dbg' 'libjgoodies-uiflite-java' 'libcf-ocaml' 'libattica-perl' 'libjenkins-xstream-java' 'gspiceui' 'cpp-arm-linux-gnueabi' 'webaccounts-chromium-extension' 'ubufox' 'xserver-xorg-video-ati-dbg' 'pep8' 'libjakarta-taglibs-standard-java' 'perltidy' 'gfxboot' 'liblocale-gettext-perl' 'ichthux-live' 'what-utils' 'sword-text-dutsvv' 'python-stdnum' 'libtomcat-maven-plugin-java' 'libmemcache-dev' 'libjs-jquery-ui-theme-sunny' 'libsdl-gfx1.2-4' 'asterisk-voicemail-odbcstorage' 'python3-xkit' 'libxmlunit-java-doc' 'libbrowser-open-perl' 'language-pack-kde-br' 'manpages-it' 'ltp-kernel-test' 'libobjc3-dbg-armel-cross' 'fp-units-gfx-2.4.4' 'gnuvd-gnome' 'tesseract-ocr-swe' 'qtikz' 'python-zope.app.schema' 'pvm-examples' 'ocaml-ulex08' 'morituri' 'libqtxdg0-dev' 'libopenconnect-dev' 'libjson-ruby-doc' 'libghc-strict-dev' 'jtex-base' 'meshs3d' 'libdb5.1-dbg' 'language-pack-kde-bs' 'pulseaudio' 'ruby-railties-3.2' 'php-horde-text-filter' 'live-image-rescue' 'libserializer-java' 'libmgl-wx5' 'libdigest-whirlpool-perl' 'libbridge-method-injector-java' 'isdnlog' 'dtach' 'cl-rss' 'ruby-net-ssh-gateway' 'xmltoman' 'libnfnetlink-dev' 'dovecot-pgsql' 'clamav' 'linux-image-3.2.0-38-lowlatency' 'linux-backports-modules-cw-3.4-3.2.0-38-generic' 'xaralx-svg' 'whyteboard' 'openscenegraph-plugin-citygml-static' 'musiclibrarian' 'libqmi-glib-dev' 'libopenvas2-dev' 'libole-ruby1.8' 'lua-bitop-dev' 'liblinux-kernelsort-perl' 'libghc-zlib-bindings-doc' 'libghc-snap-core-doc' 'libghc-reflection-dev' 'libghc-hstringtemplate-prof' 'libghc-criterion-dev' 'libexif-ruby1.8' 'nepomuk-core' 'lib64stdc++6-4.7-dev-powerpc-cross' 'edtsurf' 'dpsyco-mysql' 'elserv' 'ruby-mixlib-authentication' 'libmysqld-dev' 'language-pack-kde-fa' 'language-pack-kde-az' 'gtk-sharp2-gapi' 'gnome-bluetooth' 'gedit-dev' 'evolution' 'antlr' 'account-plugin-twitter' 'libjmathtex-java-doc' 'g++-4.6-arm-linux-gnueabihf' 'tesseract-ocr-ukr' 'stl-manual' 'python-surfer' 'octave-econometrics' 'netpanzer-data' 'libloki-dev' 'liblo-dev' 'libghc-test-framework-th-prof' 'libghc-parsec2-dev' 'libgettext-rails-ruby1.8' 'libaliased-perl' 'gsoap' 'libmaliit-glib0' 'fortunes-eo-iso3' 'libpango1.0-0-dbg' 'dnsutils' 'tao-naming' 'libghc6-hstringtemplate-prof' 'libpoet-perl' 'libchm-dev' 'libsys-cpuload-perl' 'gromacs-data' 'gosa-plugin-ssh-schema' 'gambas3-gb-crypt' 'libxml-namespacesupport-perl' 'libmercator-0.2-6' 'twidge' 'tesseract-ocr-vie' 'python-pgpdump' 'libqmf1' 'libhash-multivalue-perl' 'libdisasm0' 'libdbix-sequence-perl' 'ldaptor-utils' 'spectools' 'viewpdf.app' 'fcitx-config-gtk' 'desktopnova-module-xfce' 'collectd-core' '0ad-data' 'chkconfig' 'libvncserver-config' 'libqt4-declarative-gestures' 'language-pack-kde-cs' 'icc-profiles' 'aptdaemon-data' 'xmlformat-doc' 'python-zope.app.container' 'netpipe-mpich2' 'sra-toolkit' 'libhomerun0' 'haskell-hsql-postgresql-doc' 'lib3ds-dev' 'groundhog' 'gl-117' 'enigma' 'dvipsk-ja' 'debichem-visualisation' 'buildapp' 'brightside' 'uboot-mkimage' 'tracker-utils' 'routino-www' 'roundcube-plugins' 'libroot-math-mlp5.34' 'libltc-dev' 'libghc-yesod-prof' 'libghc-pastis-prof' 'haskell-hdbc-odbc-doc' 'ruby-sequel-pg' 'ibus-table-easy-big' 'libsane-perl' 'gosa-dev' 'gallery2' 'libx32objc4' 'libnih-dev' 'xbase-clients' 'libspectre1' 'language-pack-kde-ga' 'ibus-doc' 'command-not-found' 'libaprutil1-dbd-sqlite3' 'willowng-config-kde' 'ruby-coffee-rails' 'python-stemmer-doc' 'opendnssec-auditor' 'libmythtv-perl' 'libssh2-1-dbg' 'libsaga' 'ruby-log4r' 'libhtml-wikiconverter-tikiwiki-perl' 'libfile-searchpath-perl' 'libclass-whitehole-perl' 'libbakery-2.6-doc' 'fp-units-gtk2' 'dvdrip-utils' 'python-daemon' 'libmono-c5-1.1-cil' 'language-pack-kde-el' 'python-aptdaemon-gtk' 'pppstatus' 'libnode-eyes' 'libdrm-ltsq-radeon1-dbg' 'libfame-0.9' 'vim-conque' 'tahoe-lafs' 'r-cran-mass' 'qmlscene' 'python-pyds9' 'libraul10' 'libglobus-gridftp-server0' 'libghc-ekg-data' 'haskell-edison-core-doc' 'kwwidgets-doc' 'kde-config-qt-graphicssystem' 'idzebra-2.0-common' 'gobby-0.4-dbg' 'libgrib-api-1.9.16' 'ginac-tools' 'g++-4.7-powerpc-linux-gnu' 'flashybrid' 'darkplaces-dbg' 'codecgraph' 'cl-sql' 'buffycli' 'bitcoind' 'libscalar-list-utils-perl' 'libbamf-doc' 'jfsutils' 'libghc6-parallel-prof' 'telak' 'synaesthesia' 'php-horde-thrift' 'php-horde-imsp' 'partimage-doc' 'wreport-common' 'liblua5.1-logging-dev' 'libghc-criterion-prof' 'httpry-dbg' 'mpich2python' 'gallery-uploader' 'aqemu' 'libsql-statement-perl' 'language-pack-gnome-id-base' 'language-pack-gnome-hi-base' 'language-pack-kde-gd' 'language-pack-kde-fi' 'language-pack-kde-en' 'libnm-gtk0' 'libstdc++6-4.7-dbg' 'cedarview-drm' 'ruby-passenger-doc' 'libtaoframework-ffmpeg0.4-cil' 'libsetools-jni' 'libsbml5-examples' 'libpreludedb-dev' 'libnacore-doc' 'lemonldap-ng' 'fonts-lindenhill' 'extremetuxracer-dbg' 'connectagram' 'python-dnspython' 'puppet' 'mdetect' 'libqt4-dev-bin' 'libxom-java' 'language-pack-kde-eo' 'language-pack-kde-cy' 'dbus-test-runner' 'vcdimager' 'python-django-haystack' 'libghc6-leksah-server-doc' 'libwxgtk2.6-0' 'openoffice.org-gtk' 'linux-backports-modules-cw-3.3-3.2.0-37-generic' 'thunar-vcs-plugin' 'python-weblib-doc' 'odbc-postgresql-dbg' 'librtai-dev' 'librabbitmq-dbg' 'libopencore-amrnb-dev' 'libkwiki-cache-perl' 'libjs-mustache' 'libjs-jquery-event-drag' 'libghc-mtl-dev' 'libclass-methodmaker-perl' 'libaxis2c-bin' 'gnome-network-admin' 'freeplayer' 'camlmix' 'rubygems-integration' 'texlive-games' 'libsignon-qt-dev' 'language-pack-kde-ha' 'language-pack-kde-gv-base' 'xfce4-xkb-plugin' 'tryton-client' 'shinken-scheduler' 'rivet-plugins-doc' 'quicktime-x11utils' 'python3-pyside' 'php-horde-scribe' 'netmaze' 'libuninum5' 'ruby-qt4-uitools' 'libnet-gpsd3-perl' 'gopchop' 'gnome-illustrious-icon-theme' 'viking' 'fuzzyocr' 'fso-gsmd-htc' 'boswars-data' 'libgsasl7' 'amanda-common' 'texlive-lang-armenian' 'nagios-images' 'libxml-perl' 'x11proto-xinerama-dev' 'libboost-program-options1.49-dev' 'language-pack-gnome-si-base' 'language-pack-kde-dv' 'language-pack-gnome-csb' 'libqt5dbus5' 'libechonest1.2' 'linux-image-3.2.0-23-generic-pae' 'zygrib-maps' 'nicovideo-dl' 'netwag-doc' 'monkeystudio-common' 'linklint' 'librampart-doc' 'libocamlnet-ocaml-bin' 'libfm-data' 'gtkpod' 'libglobus-gsi-callback0' 'libsoupcutter-dev' 'libxmmsclient6' 'bcmwl-kernel-source' 'unity-scope-manpages' 'libevince-dev' 'language-pack-gnome-crh' 'wx2.6-headers' 'swfmill' 'rrootage-data' 'libqpidclient2-dev' 'libghc-http-dev' 'libcvm1-dev' 'ilithuanian' 'gnash-ext-mysql' 'libglobus-gridftp-server6' 'geda-xgsch2pcb' 'enfuse' 'librsvg2-2.18-cil' 'aylet-gtk' 'libaudclient2' 'software-center-aptdaemon-plugins' 'mrtg' 'libmono-system-runtime4.0-cil' 'libdatetime-format-builder-perl' 'language-pack-kde-ug-base' 'language-pack-kde-tl-base' 'language-pack-kde-sq-base' 'language-pack-kde-es' 'gir1.2-gstreamer-0.10' 'libboost-wave1.48.0' 'libgpac1' 'zabbix-proxy-pgsql' 'pythontracer' 'python-demjson' 'pari-doc' 'olpc-kbdshim-hal' 'libterm-readline-zoid-perl' 'tango-common' 'libotr5-bin' 'libghc-xml-hamlet-prof' 'libghc-dpkg-doc' 'libcgi-application-plugin-protectcsrf-perl' 'libbpp-qt-dev' 'libboost-wave1.53.0' 'libapp-nopaste-perl' 'lib64gfortran3-powerpc-cross' 'fortunes-min' 'embassy-domsearch' 'drupal6-mod-imagefield-assist' 'aterm-ml' 'texlive-omega' 'libtagcoll2-dev' 'libxcb-dri2-0-dev' 'libdebconfclient0-dev' 'language-pack-kde-he' 'language-pack-kde-fo' 'language-pack-gnome-fil-base' 'language-pack-kde-et' 'gnustep-back0.20-art' 'fossology-db' 'xfonts-bolkhov-isocyr-75dpi' 'uwsgi-plugin-fiber' 'trophy-dbg' 'stackapplet' 'roaraudio-dbg' 'python-w3lib' 'puredata-utils' 'netsurf-fb' 'makepasswd' 'libswami0' 'libssh2-php' 'libsc-data' 'libplayer2-dbg' 'libspreadsheet-read-perl' 'libktorrent-dev' 'ruby-gnuplot' 'libghc-wai-logger-prof' 'libghc-iteratee-doc' 'libbeecrypt7' 'gputils' 'libgpac2' 'libgcc-4.7-dev-arm64-cross' 'python-libavg' 'codfis' 'banshee-extension-coverwallpaper' 'id3v2' '389-ds-base-dev' 'libruby1.9.1' 'libexttextcat-data' 'language-pack-kde-ia' 'language-pack-kde-eu' 'libcusparse4' 'python3-flufl.i18n' 'navit-data' 'libtest-sharedfork-perl' 'libspring-webflow-2.0-java' 'libplplot-lua' 'libghc-xml2html-doc' 'libfilter-perl' 'libestr-dev' 'kde-telepathy' 'hime-chewing' 'gpe-gallery' 'python-pocket-lint' 'libfiredns0.9' 'php-console-table' 'cppcheck' 'openjdk-7-source' 'language-pack-kde-gl' 'dh-ocaml' 'lightning-extension' 'linux-headers-3.2.0-24-virtual' 'libpoe-component-server-simplehttp-perl' 'libploticus0' 'libmixlib-log-ruby' 'libgnuspool-dev' 'libghc-hashable-prof' 'libccss-doc' 'libgnuradio-pager3.6.1' 'gdis-data' 'msp430-libc' 'amavisd-new-postfix' 'libpcre3-dbg' 'language-pack-kde-fr' 'xbill' 'udptunnel' 'ruby-rack-ssl' 'mlterm-im-m17nlib' 'libqt5designer5' 'polybori-doc' 'libmysql++-dev' 'liblua5.1-filesystem0' 'libkohana3.2-core-php' 'libhtmlparser-java-doc' 'libevocosm-4.0-4' 'libdtdparser-java' 'libconfig-file-ocaml-dev' 'kalzium-dbg' 'happycoders-libdbg' 'dcap-tunnel-gsi' 'davical-doc' 'libxnee0' 'gnome-icon-theme-gartoon' 'libaudio-scan-perl' 'python-mysqldb' 'libx32ncursesw5' 'language-pack-kde-id' 'language-pack-kde-hi' 'krb5-doc' 'libghc6-filestore-data' 'python3-ipy' 'libsidutils-dev' 'libgss-dev' 'libboost-all-dev' 'gcc-4.6-source' 'etherwake' 'dict-freedict-por-deu' 'cwirc' 'cudf-tools' 'ttf-gfs-didot' 'xserver-xorg-video-fbdev' 'python-gobject-2-dev' 'libunity-dev' 'libfence-dev' 'comerr-dev' 'dvipng' 'xserver-xorg-core-lts-quantal' 'wicd-curses' 'texmacs-extra-fonts' 'open-jtalk-mecab-naist-jdic' 'node-inherits' 'libsqlite3-ocaml' 'libghc-vte-dev' 'libghc-gd-dev' 'libcgi-application-plugin-config-simple-perl' 'jpilot-backup' 'libeventdb2' 'gmotionlive' 'citadel-doc' 'cantor-backend-qalculate' 'cairo-dock-plug-ins-integration' 'fftw2' 'libsvga1' 'xserver-xorg-input-wacom' 'libswitch-perl' 'libgfortran3' 'libx32quadmath0' 'language-pack-kde-ja' 'update-manager-core' 'gforge-web-apache2-vhosts' 'summain' 'python-ctypeslib' 'monajat' 'libweed-dbg' 'python-tksnack' 'librime-data-terra-pinyin' 'libofapi0' 'libmono-cecil-vb0.9-cil' 'liblua5.1-sql-postgres-dev' 'libclass-ooorno-perl' 'mpc-ace' 'libwnck1.0-cil-dev' 'gnobots2' 'python-gammu' 'drizzle-plugin-performance-dictionary' 'clamfs' 'celestia-common-nonfree' 'bzflag-client' 'libsbuild-perl' 'angband-doc' 'cupsddk' 'ibus-table-cangjie' 'quake-server' 'ufsutils' 'octave-ga' 'libroot-html5.34' 'libitpp-doc' 'libghc-pretty-show-doc' 'haskell-hdbc-sqlite3-doc' 'koules' 'hardinfo' 'gprename' 'festvox-itapc16k' 'fbx-playlist' 'erlang-bitcask-dev' 'python-x2go' 'centerim-utf8' 'audtty' 'archipel-agent-action-scheduler' 'network-manager-openconnect' 'libsqlite3-0-dbg' 'libpango1.0-dev' 'ubuntu-orchestra-modules-mysql' 'libjmathtex-java-gcj' 'libmudflap0-4.4-dev-armel-cross' 'wmclock' 'unison' 'virtualbox' 'tekka' 'structure-synth' 'sludge-compiler' 'tuxpaint-config' 'python3-anyjson' 'monodoc-mono-upnp-manual' 'mgetty-pvftools' 'libtest-xml-simple-perl' 'libqt5webkit5' 'libcarp-clan-share-perl' 'jaminid' 'fwbuilder' 'libmercator-0.3-1' 'coolmail' 'ardentryst' 'amora-server' 'ruby-blankslate' 'libmono-rabbitmq2.0-cil' 'gtkam' 'ldm-ubuntu-themes' 'plzip-dbg' 'opendrim-lmp-pci' 'openoffice.org-kde' 'libpod-coverage-trustpod-perl' 'libghc-sdl-prof' 'libgetargs-long-perl' 'gpomme' 'libanyevent-perl' 'python-kombu' 'libmono-relaxng4.0-cil' 'libevent-openssl-2.0-5' 'libclass-accessor-perl' 'language-pack-kde-fy' 'libunique-3.0-0' 'erlang-edoc' 'manpages-pl' 'libcxxtools7' 'ezgo-accessories' 'zynaddsubfx-dssi' 'tabble' 'python-otr-dbg' 'velvet' 'mc-dbg' 'libloki0.1.7' 'libjs-jquery-ui-theme-swanky-purse' 'libxml-atom-perl' 'python-sqlparse' 'nagios3-common' 'sound-theme-freedesktop' 'libart-2.0-2' 'language-pack-kde-ka' 'language-pack-kde-gu' 'language-pack-bs-base' 'liblastfm-fingerprint0' 'tesseract-ocr-tur' 'pwrkap-gui' 'nginx-light-dbg' 'lxpolkit' 'lua5.1-policy' 'libpaps0' 'libnet-openssh-perl' 'libha-jdbc-java' 'libghc-ftphs-prof' 'libflamingo-java' 'libfile-find-rule-vcs-perl' 'libexporter-cluster-perl' 'libcxxtools8' 'libbpp-popgen-dev' 'gkrellm-leds' 'gcompris-sound-ptbr' 'freetype2-demos' 'libgoogle-perftools0' 'language-pack-kde-gv' 'bind9utils' 'libghc6-text-doc' 'libghc6-regex-compat-dev' 'libghc6-language-c-prof' 'gcc-4.5-doc' 'libcolt-java' 'xmlstarlet' 'wesnoth' 'select-xface' 'python-pyramid-beaker' 'vcftools' 'liblastfm-fingerprint1' 'libcupt2-0-downloadmethod-wget' 'libicexml34' 'geda-gnetlist' 'libtext-vimcolor-perl' 'blobwars' 'libfreeipmi-dev' 'libboost-timer1.49-dev' 'language-pack-kde-hr' 'libsp1c2' 'app-install-data' 'inguma' 'r-cran-mnormt' 'python-turbojson' 'pysycache-click-dinosaurs' 'libuclmmbase1' 'libscscp0-dbg' 'haskell-hsql-odbc-doc' 'libdirectfb-extra-dbg' 'libcommons-jci-java' 'libcgi-application-basic-plugin-bundle-perl' 'libboost-wave1.53-dev' 'libboost-wave1.48-dev' 'libbfb0' 'libalgorithm-lbfgs-perl' 'libglobus-gram-protocol3' 'libibtk0' 'fonts-samyak' 'emacs-window-layout' 'buildbot' 'python-maas-client' 'libdb5.1-dev' 'language-pack-ms-base' 'ibus-gtk3' 'language-pack-nn-base' 'xbmc-eventclients-ps3' 'tryton-neso' 'qtscrob' 'python-biopython-doc' 'prolix' 'pike7.8' 'nuauth-extra' 'neverball-data' 'libwebinject-perl' 'libhfobjc4-dbg-armel-cross' 'libghc-strict-doc' 'libspatialite3' 'libfilesys-statvfs-perl' 'libtemplate-plugin-class-perl' 'jenkins-crypto-util-doc' 'grid-packaging-tools' 'python-wadllib' 'language-pack-kde-ht' 'libapiextractor-dbg' 'linux-backports-modules-hv-3.2.0-36-virtual' 'language-pack-kde-la' 'sqlheavy-utils' 'octave-missing-functions' 'libtaglib-ocaml-dev' 'libscscp0' 'libmapistore0' 'libcupt2-0-downloadmethod-curl' 'libcmpiosbase-common0' 'libbullet2.80' 'fbpager' 'kanyremote' 'speech-dispatcher-festival' 'language-pack-kde-hu' 'libgoogle-perftools4' 'linux-backports-modules-cw-3.3-3.2.0-39-generic-pae' 'xfwm4-dbg' 'r-cran-rsprng' 'python-zope.app.zopeappgenerations' 'python-tegaki' 'nsd3' 'nethack-el' 'mew-beta-bin' 'libsocialweb-dev' 'libqmi-glib-doc' 'openwsman' 'libjson-static-camlp4-dev' 'libghc-yesod-core-prof' 'libghc-reflection-doc' 'libghc-criterion-doc' 'libextutils-xsbuilder-perl' 'libchipcard-data' 'libbs2b-dev' 'nethack-common' 'biomaj-properties' 'acoustid-fingerprinter' 'python3-distutils-extra' 'python3-aptdaemon.pkcompat' 'libhook-lexwrap-perl' 'libdbusmenu-gtk3-dev' 'language-pack-kde-lb' 'libtrilinos-dbg' 'wmaker-dbg' 'monodoc-rhash-manual' 'metar' 'manpages-pt' 'libtntnet10' 'libmaven-verifier-java-doc' 'libloki-doc' 'libhighline-ruby1.8' 'libgsl-ruby1.8-dbg' 'libghc-parsec2-doc' 'libarray-printcols-perl' 'g++-4.5-arm-linux-gnueabihf' 'fcitx-libs' 'buildbot-slave' 'amoebax' 'gnome-codec-install' 'libcrypt-openssl-rsa-perl' 'gdb-minimal' 'lazarus-doc-0.9.30.2' 'r-cran-fmultivar' 'libramaze-ruby' 'libncursesada2' 'libmecab-ruby' 'libgsm0710mux-dbg' 'libevd-0.1-dev' 'libgraphics-primitive-driver-cairo-perl' 'libapache-admin-config-perl' 'kredentials' 'libipset2' 'infon-server' 'ibus-table-translit' 'iisemulator' 'libanalitzaplot4' 'pymca' 'libspice-protocol-dev' 'libnux-4.0-0' 'libnm-glib-vpn-dev' 'liblog4j1.2-java-doc' 'libhdate1' 'language-pack-kde-is' 'libfolks-eds25' 'unity-place-applications' 'avidemux' 'tangerine-dbg' 'sndfile-tools' 'opendkim' 'octave-tsa' 'mssh' 'mono-xsp2-base' 'librapi2-tools' 'libhippocanvas-dev' 'libapache2-mod-log-sql-mysql' 'kiriki' 'kde-config-telepathy-accounts-dbg' 'pdsh' 'libsvm-tools' 'language-pack-kde-it' 'language-pack-kde-hy' 'libcogl-pango0-dbg' 'libgles2-mesa-lts-quantal-dbg' 'spectacle' 'scim-m17n' 'qnapi-gnome' 'wine1.2' 'monodevelop-versioncontrol' 'lua-dbi-sqlite3-dev' 'mediawiki' 'ruby-activeldap' 'lazarus-doc-0.9.30.4' 'ipplan' 'librime0' 'gabedit' 'libechonest2.0' 'bcrypt' 'libfile-fcntllock-perl' 'language-pack-kde-kk' 'hunspell-en-ca' 'libopensync1exp7-dbg' 'libacexml-6.0.1' 'txt2regex' 'totem-plugins-extra' 'qbrew' 'wine1.3' 'paperkey' 'monodoc-mysql-manual' 'libssh2-1-dev' 'libsikuli-script-doc' 'libscalc0' 'libromkan-ruby1.8' 'libltc-doc' 'libghc-happstack-dev' 'libghc-bytestring-lexing-dev' 'libfreecell-solver-dev' 'libdesktop-agnostic-cfg-gconf' 'libamrita2-ruby1.8' 'idl-font-lock-el' 'geogebra-kde' 'devilspie' 'bless' 'python-ballview' 'python-amqplib' 'libglapi-mesa-dbg' 'language-pack-kde-kl' 'libbz2-1.0' 'ltp-tools' 'wine1.4' 'python-pesto' 'pypar2' 'libreoffice-librelogo' 'libplayerinterface3.0' 'libjs-flot' 'libjenkins-commons-jelly-java' 'libcos4-1' 'libkde4-ruby' 'gimp-gmic' 'gcompris-dbg' 'erlang-dialyzer' 'epubcheck' 'python3-pyqt4.qtopengl-dbg' 'python-pygame' 'libjavascriptcoregtk-3.0-0-dbg' 'libgegl-dev' 'language-pack-kde-km' 'bamfdaemon' 'libhighgui2.3' 'allegro-demo-data' 'uim-dict-gtk' 'redmine-sqlite' 'netio230a-gui' 'libjson-simple-doc' 'libghc-hdbc-dev' 'libghc-hastache-dev' 'libgeos-dbg' 'libboost-signals1.53-dev' 'libboost-signals1.48-dev' 'libacexml-6.0.3' 'interchange-ui' 'libjava-gnome-java' 'xfingerd' 'brutefir' 'python-virtualenv' 'account-plugin-sametime' 'libwebkitgtk-dev' 'language-pack-kde-kn' 'gnome-themes-standard' 'libstdc++6-4.7-dev' 'smplayer-themes' 'python-mod-pywebsocket' 'python-utouch-geis' 'pdns-backend-ldap' 'pax-britannica-data' 'mrmpi-doc' 'luadoc' 'longomatch' 'libnet-oauth-perl' 'libhighgui2.4' 'libgupnp-dlna-1.0-2' 'libarray-diff-perl' 'libjnr-x86asm-java' 'helium' 'eclipse-rse' 'libboost-wave1.49.0' 'afterstep-dbg' 'libjs-yui3-min' 'libcommons-lang-java-doc' 'language-pack-kde-ko' 'gnome-power-manager' 'linux-image-extra-3.8.0-18-generic' 'lastfmproxy' 'tagainijisho-dic-de' 'rails-ruby1.8' 'qcad' 'librabbitmq-dev' 'libjifty-plugin-openid-perl' 'libformsgl-dev' 'ruby-facets' 'libapm-dev' 'kbackup' 'hdhomerun-config' 'gfortran-4.7-arm-linux-gnueabihf' 'freetts' 'sphinx-doc' 'libp11-dev' 'libavahi-common-data' 'patchutils' 'libpadre-plugin-nopaste-perl' 'gambas2-gb-net-curl' 'redeclipse-dbg' 'python-django-voting' 'powstatd' 'libsdl-console-dev' 'ruby-multibitnums-dbg' 'libghc-mtl-doc' 'libmoosex-attributehelpers-perl' 'httpie' 'fortunes-off' 'firebird2.1-server-common' 'calligra-data' 'fhist' 'python3-pam-dbg' 'libsignon-qt-doc' 'libcephfs-jni' 'language-pack-kde-nb' 'language-pack-kde-mg' 'tao-costrading' 'koffice-l10n-zhcn' 'fusionforge-full' 'libkggzgames4' 'wolf4sdl' 'munin-plugins-openstack' 'python-hachoir-core' 'libzip-ocaml' 'libobexftp0' 'libihelp-ruby1.8' 'libgdbussyncevo0' 'libaubio-dev' 'libapache2-authcassimple-perl' 'krb5-ftpd' 'kexi-postgresql-driver' 'libqtgstreamer-0.10-0' 'git-ftp' 'paraview' 'python3-crypto' 'telepathy-sofiasip' 'lzip' 'libdbus-1-3' 'vbackup' 'swi-prolog-x' 'mini-buildd-common' 'manpages-ru' 'love-dbg' 'libghc-missingh-prof' 'libapache2-mod-ocamlnet' 'libapache-db-perl' 'libmaven-common-artifact-filters-java' 'iftop-dbg' 'ifpgui' 'ghc-dynamic' 'geoclue-geonames' 'fonts-prociono' 'libgdcm-tools' 'cakephp' 'libresid-builder0c2a' 'libqtmultimediakit1' 'libvte-2.90-dev' 'libpython3.3-stdlib' 'language-pack-kde-mi' 'glib-networking-services' 'msr-tools' 'libghc6-mtl-prof' 'libluminate7' 'php5-memcached' 'qalc' 'libopenscenegraph-dev' 'libtext-flow-perl' 'libghc-http-doc' 'libdianewcanvas2' 'libbash' 'libace-inet-dev' 'libicns1' 'harden-servers' 'konsolekalendar' 'fp-units-gfx-2.6.0' 'libfreehep-graphics2d-java' 'dhis-tools-genkeys' 'boinc-app-milkyway' 'remembrance-agent' 'ubuntu-wallpapers-lucid' 'libgnomevfs2-0-dbg' 'language-pack-kde-ne' 'language-pack-kde-lo' 'libudisks2-0' 'ruby-json' 'libaio1' 'appmenu-qt5' 'libpetsc3.1-dbg' 'mame-tools' 'python-yubico' 'python-pymodbus' 'python-llvm' 'php-net-socket' 'mythtv-database' 'libsamizdat-ruby1.8' 'libapreq2' 'gatos' 'erlang-folsom-dev' 'dpsyco-base' 'pristine-tar' 'primer3' 'language-pack-kde-mk' 'language-pack-kde-ku' 'libsane' 'awn-applet-notification-area' 'gir1.2-launchpad-integration-3.0' 'unity-lens-gwibber' 'python-ldb-dbg' 'libopkele-dev' 'libghc-magic-prof' 'libghc-bytestring-show-prof' 'latex209-bin' 'python-pydot' 'octave-io' 'calligra' 'acpitail' 'pulseaudio-module-zeroconf-dbg' 'ssh-krb5' 'account-plugin-groupwise' 'mozilla-libreoffice' 'language-pack-kde-ml' 'language-pack-gnome-gl-base' 'language-pack-gnome-fil' 'kpartx-boot' 'udisks' 'libccscript4-dbg' 'testdrive-common' 'libregistry-dev' 'libnet-oping-perl' 'libmarc-xml-perl' 'jmeter-http' 'libmetadata-extractor-java' 'cweb-latex' 'fonts-cmu' 'chase' 'python-aptdaemon' 'python-amqplib-doc' 'python3.3-dbg' 'libpcre3-dev' 'language-pack-kde-oc' 'language-pack-kde-kw' 'g++-4.4' 'lzma' 'install-info' 'xbmc-eventclients-wiiremote' 'g++-4.5' 'lua-coxpcall' 'libclass-multimethods-perl' 'libchipmunk0d1-dbg' 'libaxis2c-dev' 'grail-tools' 'xxdiff' 'developers-reference' 'libcrypt-random-source-perl' 'jmol-applet' 'asus-oled-dkms' 'language-pack-kde-mn' 'language-pack-kde-fy-base' 'willowng-config' 'libmercator-0.2-6-dbg' 'virtualbox-source' 'trophy' 'r-cran-lme4' 'qcam' 'python-tastypie' 'python-ming' 'mpqc-openmpi' 'mgen-doc' 'listaller-libuild' 'libtie-cycle-perl' 'libmysql++-doc' 'libmtbl-dev' 'liblinebreak2' 'libjcommander-java' 'libhttp-recorder-perl' 'libdlna0' 'muon-installer' 'kraptor-data' 'fusecram' 'fonts-yozvox-yozfont-cute' 'fixincludes' 'ecaccess' 'docbook-slides' 'inetutils-telnet' 'g++-4.6' 'node-pg' 'libtalloc-dev' 'language-pack-kde-lt' 'language-pack-kde-ky' 'libcamel1.2-dev' 'bdfresize' 'junit' 'libghc6-lazysmallcheck-prof' 'unity-2d-launcher' 'linux-image-extra-3.2.0-38-virtual' 'xskat' 'python3-mdp' 'python-zope.ptresource' 'lxtask' 'yaz-doc' 'libtaoframework-ode-cil-dev' 'python-corepywrap' 'pfqueue' 'libmpdclient-dev' 'libguestfs-gobject-dev' 'libfreefem++' 'libdata-peek-perl' 'libbpp-core-dev' 'libocamlnet-ocaml-dev' 'kde-telepathy-contact-list' 'kamailio-xml-modules' 'graphicsmagick-dbg' 'gsoko' 'cvschangelogbuilder' 'betaradio' 'alpine-dbg' 'nut-cgi' 'manpages-tr' 'libsoprano-dbg' 'language-pack-kde-pa' 'gcc-4.4-multilib' 'g++-4.7' 'lynx' 'archdetect-deb' 'llvm-2.8-examples' 'xbattle' 'tttprobe' 'ruby-taglib2' 'python-django-authority' 'nautilus-script-audio-convert' 'meep-mpi-default' 'mobyle' 'matanza' 'libweed-dev' 'libtorrent-ruby' 'libtext-format-ruby-doc' 'libsbml5-ruby1.8' 'libpigment0.3-dev' 'libghc-vte-doc' 'libghc-gd-doc' 'libapache-session-wrapper-perl' 'oxygen-icon-theme' 'libpion-net-4.0' 'meshlab' 'ruby-hpricot' 'cimg-dev' 'ssh-import-id' 'slapd' 'language-pack-kde-nl' 'language-pack-kde-lv' 'libbeidlib3' 'gcc-4.5-plugin-dev' 'yate-core' 'wordpress-l10n' 'sleepd' 'php-horde-rdo' 'rheolef' 'libqpidmessaging2' 'libotr5-dev' 'libosgearth1' 'libncurses-gst' 'libsezpoz-java' 'libghc-bzlib-dev' 'syncevolution-libs' 'libencode-eucjpms-perl' 'libconcurrent-java' 'xrestop' 'jmeter-ldap' 'gir1.2-ubuntuoneui-3.0' 'libjcommon-java' 'libisofs-dbg' 'language-pack-kde-mr' 'gir1.2-langtag-0.4' 'exim4-daemon-light' 'erlang-ic-java' 'libgui-commands-java' 'xserver-xorg-input-wacom-lts-quantal-dbg' 'ttf-root-installer' 'pyformex' 'node-debug' 'libjs-openlayers-doc' 'libhtml-fromtext-perl' 'libgiftiio-dev' 'libghc-hxt-prof' 'libnemesis3' 'libmoosex-attributeshortcuts-perl' 'jack-capture' 'gresistor' 'galculator' 'figtree' 'sysv-rc-conf' 'libgd2-xpm-dev' 'libcanberra-gtk-common-dev' 'language-pack-kde-nn' 'language-pack-kde-ms' 'gnome-mahjongg' 'emacs23-bin-common' 'libpango1.0-doc' 'libghc6-sdl-image-prof' 'libghc6-debian-dev' 'awn-applet-garbage' 'linux-image-3.5.0-21-generic' 'zathura-dev' 'tagainijisho-dic-en' 'sniffit' 'secvpn' 'pynag' 'nautilus-emblems' 'mistelix' 'libwebrtc-audio-processing-dev' 'libibdm-dev' 'libplexus-utils2-java' 'golang-doc' 'libqof2' 'simplyhtml' 'cagibi' 'boot-info-script' 'quantum-lbaas-agent' 'libxt6-dbg' 'libverto-dev' 'libvala-0.18-dev' 'libconfig-dbg' 'language-pack-kde-mt' 'util-linux' 'tao-time' 'linux-backports-modules-net-3.2.0-38-generic' 'wgaelic' 'therion-doc' 'solarpowerlog' 'serendipity' 'php-horde-compress' 'pfstools-dbg' 'libtest-pod-no404s-perl' 'libpocoxml9-dbg' 'libnss-cache' 'samba4-dev' 'libcastor-codegen-java' 'goaccess' 'faad2-dbg' 'm4-doc' 'wmacpi' 'root-plugin-montecarlo-pythia8' 'python-mvpa2' 'php5-remctl' 'libopentoken3-dev' 'libjsr305-java' 'libstring-camelcase-perl' 'libarpack2-dbg' 'xdemineur' 'libaudio-cd-perl' 'm2300w' 'libnet-jifty-perl' 'libreoffice-gnome' 'libqt4-test' 'libcolumbus0-dev' 'linux-headers-lbm-3.2.0-39-generic' 'linux-backports-modules-cw-3.3-precise-generic' 'xfe-themes' 'vdr-plugin-osdserver' 'python3-flufl.lock' 'python-textile' 'octave3.2-headers' 'libmoosex-undeftolerant-perl' 'libmcrypt-dev' 'libjs-showdown' 'libgdome2-ocaml' 'libcairo-ocaml-dev' 'gtrayicon-dbg' 'gtk3-engines-oxygen' 'gnustep-gui-common' 'wpolish' 'dotclear' 'language-pack-kde-om' 'unzip' 'sucrose-0.84' 'libghc6-regex-compat-doc' 'libconqat-ccsm-commons-java-doc' 'libkdcraw20-dbg' 'oroborus' 'mnemosyne' 'microdc2' 'libscscp0-dev' 'libjfreechart-java-doc' 'libdmtcpaware-dev' 'plasma-active' 'jenkins-task-reactor' 'libdispatch0' 'clinica-dev' 'calligraflow' 'libvamp-hostsdk3' 'safe-rm' 'libxinerama1-dbg' 'perl' 'gnome-cards-data' 'ubuntu-orchestra-modules-distcc' 'sucrose-0.90' 'libwww-delicious-ruby1.8' 'zoomer' 'vdk2-tutorial' 'tryton-modules-sale' 'tagainijisho-dic-es' 'screentest' 'python-kaa-base' 'php-horde-stream' 'mplayer-gui' 'libvo-aacenc-dev' 'pgtap' 'libsefs4' 'libqgis1.7.5' 'libpgpool-dev' 'libpod-wordlist-hanekomu-perl' 'gprbuild-doc' 'fuss-launcher' 'cpp-4.4-arm-linux-gnueabi' 'banshee-extension-ampache' 'anything-el' 'libcrmcommon2-dev' 'language-pack-kde-my' 'sucrose-0.86' 'libapiextractor-dev' 'webservice-office-zoho' 'scons-doc' 'pioneers' 'libwww-opensearch-perl' 'uim-canna' 'libspeex-ocaml' 'libshout-idjc-dev' 'libmethod-signatures-simple-perl' 'libghc-hostname-prof' 'libfltk-cairo1.3' 'libtelepathy-qt4-farstream2' 'ipython-notebook' 'geany-plugin-extrasel' 'fte-docs' 'python-networkx' 'python-sympy' 'libwxgtk2.8-0' 'libappindicator-dev' 'isc-dhcp-client-dbg' 'lmodern' 'alembic' 'libmuparser0debian1' 'wordpress-xrds-simple' 'tryton-modules-sale-opportunity' 'tree-puzzle-doc' 'spl-sqlite' 'python-zope.copypastemove' 'python-django-websocket' 'note' 'populations' 'libtext-rewriterules-perl' 'libtext-asciitable-perl' 'hyantesite' 'enna-theme' 'python-mako-doc' 'libtext-diff-perl' 'libpe-rules2' 'language-pack-kde-pl' 'kernel-wedge' 'sucrose-0.88' 'mess-data' 'wesnoth-1.10-aoi' 'libtrilinos-dev' 'ruby-integration' 'libsocialweb-doc' 'freeciv-client-gtk' 'claws-mail-i18n' 'language-pack-kde-or' 'gir1.2-clutter-1.0' 'autoconf2.13' 'linux-container' 'libmrpt-hwdrivers0.9' 'dvd95' 'xcrysden' 'tagainijisho-dic-fr' 'semanticscuttle' 'rabbit' 'python-uwsgicc' 'php-horde-http' 'mountpy' 'libtie-simple-perl' 'liboif-qml' 'libnet-ldap-server-perl' 'libkohana3.2-mod-database-php' 'libgsm0710mux-dev' 'libgeotranz3-dev' 'gambas3-gb-db-postgresql' 'libjgit-java' 'dicompyler' 'librsync-dbg' 'corosync' 'postler' 'spacearyarya' 'openclipart' 'nepomuk-widgets-dbg' 'libisfreetype-java-doc' 'libhpdf-dev' 'libgdome2-dev' 'libextunix-ocaml' 'libcoyotl-dev' 'libcoderay-ruby' 'kfloppy' 'fonts-hanazono' 'libeb16' 'python-cfflib' 'libbcmail-java-doc' 'ttf-nafees' 'unity-lens-help' 'tesseract-ocr-ita-old' 'sucrose-0.96' 'sunclock' 'promoe' 'libwfut-0.2-1-dbg' 'libsamplerate-ocaml-dev' 'liblunar-1-0-dbg' 'libghc-stm-dev' 'libghc-diagrams-prof' 'libs3dw2' 'gthumb-data' 'fwbuilder-common' 'bluewho' 'python-egenix-mxstack-doc' 'lib64ffi-dev' 'git-gui' 'gir1.2-atspi-2.0' 'ttf-khmeros-core' 'ubuntu-orchestra-server' 'libopensync1exp7-dev' 'libopencv-gpu-dev' 'xrootconsole' 'u3-tool' 'synce-hal-bluetooth' 'sugar-browse-activity' 'python-nipype-doc' 'python-jaxml' 'node-qs' 'lout-doc' 'liferea-data' 'libgsl-ruby1.8' 'libghc-monads-tf-prof' 'libhtml-formhandler-perl' 'libacegi-security-java-doc' 'grub-theme-starfield' 'fonts-maitreya' 'dynare' 'drupal6-mod-imagecache' 'liblockfile-simple-perl' 'circos' 'aprsdigi' 'python-egenix-mxuid' 'gparted' 'glib-networking' 'language-pack-nl-base' 'language-pack-lv-base' 'exim4-daemon-light-dbg' 'libecryptfs-dev' 'libcomplearn-gomp-dev' 'zaz-data' 'torque-scheduler' 'synce-hal' 'mp3report' 'neobio' 'libsofa-c0' 'libjogl2-java' 'libghc-happstack-doc' 'libghc-bytestring-lexing-doc' 'ssdeep' 'inetutils-traceroute' 'libgnuradio-uhd3.6.1' 'libdigest-crc-perl' 'swift-proxy' 'language-pack-kde-sc' 'libnfnetlink0' 'freeradius-common' 'libopts25' 'libtinfo5' 'libqpdf3' 'libttspico0' 'sugar-flipsticks-activity' 'php-horde-ldap' 'pd-bsaylor' 'octave-symbolic' 'parrot-devel' 'python-pyepl' 'liquidsoap-plugin-speex' 'libmoosex-types-set-object-perl' 'libghc-event-list-prof' 'libgeos-dev' 'gkrellm-x86info' 'dict-freedict-slo-eng' 'arename' 'python-openssl-dbg' 'php5' 'livecd-rootfs' 'libkms1-dbg' 'libgegl-doc' 'language-pack-kde-sd' 'language-pack-kde-ps' 'expect-dev' 'iputils-ping' 'revolution-r' 'td2planet' 'quicksynergy' 'ruby-rb-inotify' 'libtext-roman-perl' 'libopencsg-dev' 'liblodo3.0' 'libgoocanvas-ruby1.8' 'libghc-hdbc-doc' 'libghc-hastache-doc' 'libflorist2011' 'libcdk5-dev' 'libglobus-rls-client5' 'gap-core' 'seabios' 'libstdc++6-4.7-doc' 'libtelepathy-glib-dev' 'language-pack-kde-se' 'language-pack-kde-pt' 'grub-efi-amd64' 'libgraphite3' 'python-pycurl' 'linux-backports-modules-cw-3.6-3.2.0-36-virtual' 'wesnoth-1.10-dbg' 'ubumirror' 'shush' 'sdlbrt' 'python-django-markupfield' 'pike7.8-odbc' 'perlbrew' 'python-novnc' 'libmysql-ruby1.9.1' 'libmono-addins-gui-cil-dev' 'libdevel-caller-perl' 'libhttp-dav-perl' 'libapq-postgresql3.2.0' 'muon' 'kamailio-utils-modules' 'webhttrack' 'htcheck-php' 'gambas3-gb-gtk' 'libdssialsacompat-dev' 'cflow' 'libfile-next-perl' 'squid3-common' 'python3-software-properties' 'manpages-zh' 'libhyphen0' 'language-pack-kde-ta' 'dictzip' 'libunity-webapps0' 'libcwidget3-dbg' 'r-cran-proto' 'phppgadmin' 'obfsproxy' 'libstarlink-ast0' 'libghc-safecopy-dev' 'libgadap-dev' 'libfields-camlp4-dev' 'xfce4-notifyd' 'dvi2dvi' 'geany' 'xchat' 'kdebase-runtime' 'unity-lens-applications' 'totem-plugins' 'qt-at-spi' 'ptouch-driver' 'libmail-spf-perl' 'reinteract' 'raincat-data' 'xtell' 'onak' 'nsca' 'misery' 'libvaladoc-dev' 'liboar-perl' 'liblwp-authen-negotiate-perl' 'libghc-punycode-prof' 'libdatetime-format-iso8601-perl' 'lzop' 'libqpdf8' 'python-pygetdata' 'projectm-dbg' 'libuima-adapter-vinci-java' 'libpythonqt2.0' 'libpmap3.0' 'libpfqueue0' 'libogginfo-ruby1.9.1' 'lua-rex-posix-dev' 'libio-tee-perl' 'libglom-1.22-dev' 'libghc-simpleirc-prof' 'libghc-http-prof' 'libtree-simple-perl' 'libaubio-doc' 'libmockobjects-java' 'gambas3-gb-gui' 'fonts-lohit-knda' 'drawxtl' 'csvtool' 'libcbf0' 'dot2tex' 'language-pack-kde-si' 'multiboot-doc' 'check' 'python-zope.app.applicationcontrol' 'libxml-xerces-perl' 'libskinlf-java-demo' 'libparse-win32registry-perl' 'libopenjpeg2-dbg' 'libdvdread-dbg' 'openswan' 'gis-statistics' 'ginkgocadx' 'ekiga-plugin-evolution' 'sbuild' 'perl-debug' 'libvte-2.90-doc' 'libjaxme-java' 'language-pack-kde-te' 'language-pack-kde-ro' 'gtk-im-libthai' 'libpetsc3.1-dev' 'libxml-handler-composer-perl' 'libpolyorb2-dev' 'libpacketdump3' 'libjglobus-gram-java' 'libisrt-java' 'libformvalidator-simple-perl' 'libscalar-util-numeric-perl' 'juffed-dev' 'insighttoolkit4-examples' 'gpe-ownerinfo-dev' 'gkrellmwireless' 'zhone' 'fonts-mathjax' 'dict-freedict-por-eng' 'dante-client' 'cl-lexer' 'libcipux-task-perl' 'baycomepp' 'ahven-dbg' 'x11proto-bigreqs-dev' 'signon-plugin-ssotest' 'libclutter-1.0-dbg' 'nscd' 'language-pack-kde-sk' 'freeradius-ldap' 'cmake-data' 'bsh-doc' 'libdeal.ii-dbg6.3.1' 'nouveau-firmware' 'unity-mail' 'scanbuttond' 'python-ldb-dev' 'proxsmtp' 'libprawn-ruby1.9.1' 'libmatroska-dev' 'libkakasi2-dev' 'libhttp-server-simple-recorder-perl' 'libghc-uuid-dev' 'libexene-smlnj' 'libdc1394-utils' 'libamrita2-ruby1.9.1' 'php-net-sieve' 'fatresize' 'evolution-mapi' 'libnm-util-dev' 'language-pack-kde-tg' 'language-pack-kde-sl' 'junit-doc' 'libecal1.2-dev' 'spellcast-doc' 'pida' 'libticonv-dev' 'libplexus-cipher-java-doc' 'libpcp-gui2-dev' 'libpod-elemental-perl' 'libsamba-util0' 'libapache2-mod-musicindex' 'kball' 'drawtiming' 'auth2db' 'linux-image-generic' 'python3.3-dev' 'gsl-doc-info' 'libgnutls26-dbg' 'language-pack-kde-th' 'rubygems' 'erlang-inviso' 'diffutils' 'libnet-smtp-ssl-perl' 'libopencv-legacy2.3' 'xfce4-volumed' 'ruby-hiera-puppet' 'resilience-theme' 'spring' 'python-webcolors' 'pyjamas-gmap' 'palapeli-data' 'libwtext-dev' 'libsdp1' 'libmodule-install-readmefrompod-perl' 'libmail-field-received-perl' 'liblo-ocaml-dev' 'gecko-mediaplayer' 'gcj-4.6-source' 'fqterm' 'firebird2.1-classic' 'etktab' 'eggdrop-data' 'g++-aarch64-linux-gnu' 'checkbox-urwid' 'belier' 'libsmokeqtdeclarative4-3' 'libcluster-glue' 'nanny' 'xineliboutput-fbfe' 'xfe-i18n' 'python-tweepy-doc' 'linux-wlan-ng-doc' 'libplayerdrivers3.0-dev' 'libmrpt-hwdrivers1.0' 'libeasy-format-ocaml' 'libplexus-utils-java-doc' 'libboost-mpi-python-dev' 'libaxis2c-doc' 'libopencv-legacy2.4' 'sgt-puzzles' 'glade-xfce' 'libgfortran3-dbg-armel-cross' 'g3data' 'eiskaltdcpp-gtk3-dbg' 'sdcc-doc' 'quagga-dbg' 'php-openid' 'ttf-kannada-fonts' 'maas-region-controller' 'librarian-dev' 'libqt4-designer-dbg' 'libncursesw5-dbg' 'ipvsadm' 'linux-backports-modules-cw-3.5-3.2.0-40-virtual' 'linux-backports-modules-cw-3.5-3.2.0-35-virtual' 'libmagickcore4-extra' 'mythtv-theme-mythbuntu' 'xul-ext-calendar-timezones' 'tagainijisho-dic-it' 'r-cran-mgcv' 'uwsgi-plugin-python3' 'node-mustache' 'med-tasks' 'libsigc++-1.2-dev' 'libsratom-dev' 'libjasperreports3.7-java-doc' 'libghc-postgresql-simple-prof' 'libgetdata-dev' 'gretl-doc' 'childsplay' 'thunderbird-locale-zh-cn' 'ko.tex-base' 'libmono-peapi2.0-cil' 'libgconf2.0-cil-dev' 'language-pack-kde-ru' 'libsoprano-dev' 'stgit-contrib' 'libdbus-glib-1-2' 'libapparmor-perl' 'webissues' 'suikyo-elisp' 'ruby-i18n-inflector' 'python-sphinxcontrib.nwdiag' 'python-slip-gtk' 'liquidsoap-plugin-gstreamer' 'libzlcore-dev' 'qtgstreamer-plugins' 'libocamlnet-ocaml-doc' 'libnepomuk-perl' 'libmpdclient-doc' 'libgeronimo-jpa-2.0-spec-java-doc' 'libsamdb0' 'libconfig-merge-perl' 'libarchive-any-perl' 'squeeze' 'kde-config-cron' 'libkleo4' 'libcommons-jexl-java' 'muse' 'gtklp' 'x11-xfs-utils' 'python-openstack-auth' 'language-pack-kde-ug' 'language-pack-kde-tl' 'language-pack-kde-sq' 'cli-common' 'nvidia-96-dev' 'usbip' 'root-plugin-graf2d-asimage' 'python-django-sekizai' 'python-dballe' 'libghc-primitive-prof' 'libghc-classy-prelude-dev' 'libfile-spec-native-perl' 'libdconf-qt0' 'hyperspec' 'libfreeze34' 'gmemusage' 'ttf-sil-dai-banna' 'debichem-molmech' 'smarty3' 'cimg-doc' 'abtransfers' 'python-celery' 'libisofs-dev' 'libcppunit-1.12-1' 'language-pack-kde-sr' 'language-pack-kde-rw' 'cramfsprogs' 'libboost-locale1.48.0' 'python-schooltool.ldap' 'python-nemu' 'libslurmdb-dev' 'libhamlib-dev' 'libghc-shakespeare-js-prof' 'libghc-bzlib-doc' 'libfreefoam-dev' 'libosip2-dev' 'libboost-locale1.53.0' 'inotail' 'csound' 'clamtk' 'hannah-foo2zjs' 'libt1-5-dbg' 'libqt4-sql-mysql' 'libgcrypt11-dbg' 'libalgorithm-diff-xs-perl' 'language-pack-kde-ss' 'libghc6-haskell-lexer-dev' 'usbmount' 'steghide' 'python-zope.error' 'python-libemu' 'osmpbf-bin' 'librheolef1' 'libpgtcl-dev' 'libow-tcl' 'libtbb2' 'libmerb-core-ruby1.8' 'libkde4-ruby1.8' 'libghc-hsemail-prof' 'libghc-hfuse-prof' 'kontact-mobile' 'gunicorn' 'gnome-icon-theme-gperfection2' 'eiskaltdcpp-daemon' 'colormake' 'libconfig-dev' 'libatk-adaptor-dbg' 'language-pack-kde-st' 'language-pack-gnome-he-base' 'language-pack-gnome-fo-base' 'language-pack-gnome-et-base' 'language-pack-gnome-ber-base' 'libghc6-happstack-util-dev' 'libghc6-debian-doc' 'linux-backports-modules-cw-3.6-3.2.0-33-generic' 'libglew1.5' 'mediawiki-extensions-geshi' 'live-config-doc' 'sunflow' 'libplayerc++3.0-dev' 'libopendbx1-sqlite3' 'libmysql++3' 'libjasperreports3.7-java' 'libhugs-hunit-bundled' 'libgmtk1-data' 'libgmetrics-groovy-java-doc' 'libfinance-quotehist-perl' 'jumpnbump-levels' 'libmysql6.4-cil' 'python-demgengeo' 'epiphany-browser-data' 'drizzle-plugin-auth-pam' 'ipadic' 'bleachbit' 'libftgl2' 'language-pack-kde-wa' 'language-pack-kde-uk' 'postgresql-contrib' 'libwfmath-0.3-4-dbg' 'tango-accesscontrol-dbg' 'qtdeclarative5-test-plugin' 'libunshield-dev' 'libopensm2' 'libarpack2-dev' 'gnuplot-mode' 'libglew1.6' 'ggzcore-bin' 'python-gaphas' 'python-turbogears2' 'libmono-zeroconf1.0-cil' 'tdsodbc' 'libbcmail-java-gcj' 'language-pack-kde-sv' 'thunderbird' 'libqt4-dbus' 'libcherokee-mod-ldap' 'switchconf' 'scim-tables-ja' 'rawtherapee' 'mingw32-ocaml' 'libwebapp-ruby1.8' 'libregexp-ipv6-perl' 'libpoconetssl9-dbg' 'liboping-dev' 'libtest-use-ok-perl' 'libghc-cpphs-prof' 'libgeo-metar-perl' 'fcitx-table-cantonese' 'cl-xmls' 'libphp-snoopy' 'acidbase' 'libtcmalloc-minimal4-dbg' 'kde-icons-crystal' 'language-pack-kde-tr' 'language-pack-kde-sw' 'language-pack-gnome-se-base' 'language-pack-gnome-pt-base' 'tagua-data' 'vdr-plugin-weather' 'sendmail-base' 'quassel-data' 'pocketsphinx-lm-zh-hans-gigatdt' 'plasma-scriptengine-ruby' 'libwebservice-validator-css-w3c-perl' 'libsvgsalamander-java-doc' 'ruby-open4' 'libmath-calculus-newtonraphson-perl' 'libghc-text-icu-dev' 'libdata-treedumper-renderer-dhtml-perl' 'fonts-fanwood' 'cryptmount' 'jabber-irc' 'libnet-dns-resolver-programmable-perl' 'libglew1.8' 'language-pack-kde-vi' 'gfxboot-theme-ubuntu' 'autoconf2.64' 'autoconf2.59' 'yorick-mpy-common' 'telepathy-specification' 'pd-ekext' 'libwiki-toolkit-plugin-locator-grid-perl' 'uim-m17nlib' 'libqt4-ruby1.8' 'libjs-jquery-event-drop' 'libopensm5' 'gwibber-service-foursquare' 'libautotrace3' 'swig2.0-examples' 'language-pack-kde-tt' 'language-pack-kde-th-base' 'clamav-freshclam' 'avidemux-plugins-cli' 'testdisk' 'scrotwm' 'ruby-chunky-png' 'liboggplay1' 'liblicense-rdf' 'libibcommon-dev' 'ruby-i18n' 'libhttp-response-encoding-perl' 'libghc-yesod-form-prof' 'libdeclarative-serviceframework' 'libsdl-image1.2-dev' 'gnuspool' 'globus-callout-dbg' 'evtest' 'azureus' 'libllvm-3.2-ocaml-dev' 'libapache2-reload-perl' 'awstats' 'gnome-mag' 'sra-toolkit-libs-dev' 'r-cran-its' 'qastools-common' 'liblatex-encode-perl' 'libghc-chart-prof' 'libcolorchooser-java' 'kstars' 'ibutils' 'grub-disk' 'geary' 'freeipa-client' 'cycle' 'cairo-dock' 'audacity' 'libsaxonb-java-doc' 'mdbtools' 'libraw1394-tools' 'libboost-dbg' 'libappindicator-doc' 'gnome-screensaver' 'libgucharmap-2-90-7' 'tao-costime' 'coq-doc-pdf' 'python3-fudge' 'php-http' 'qstat' 'smlnj-runtime' 'libxmpi4-dev' 'libpacket-ruby1.9.1' 'libjcommander-java-doc' 'libgmpada4-dev' 'libabstract-ruby1.8' 'kstart' 'ion-doc' 'i3-wm' 'gobjc-4.7-arm-linux-gnueabi' 'glusterfs-common' 'edubuntu-live' 'djview-plugin' 'cx-freeze' 'arbtt' 'amule-gnome-support' 'libmono-sharpzip4.84-cil' 'language-pack-kde-ur' 'xchat-gnome-indicator' 'ibus-pinyin-db-open-phrase' 'rhythmbox' 'piwigo-sqlite' 'libghc6-pretty-show-prof' 'trac-tags' 'libtrilinos-doc' 'publib-dev' 'projectm-jack' 'pd-freeverb' 'reconf-inetd' 'llvm-3.1-examples' 'libxml-ruby1.9.1' 'libtaningia-dev' 'synfig-dbg' 'libjcalendar-java' 'libindicate-gtk3-dev' 'libhal-storage-dev' 'libfastjetplugins0' 'libautopilot-qt' 'libapache2-mod-bw' 'fcitx-table-compose' 'claws-mail-smime-plugin' 'c2050' 'librsync-dev' 'libmono-microsoft-build-framework4.0-cil' 'guile-1.8-dev' 'libdc1394-22-dbg' 'libdbus-c++-1-0' 'scim-chewing' 'libburn4' 'libc6-dev-x32' 'libnetserver-generic-perl' 'libmrpt-detectors0.9' 'upse123' 'tuxguitar-oss' 'swapspace' 'python-whoosh' 'pacemaker-mgmt' 'openstereogram' 'opendrim-lmp-powersupply' 'treeviewx' 'lziprecover-dbg' 'liquidsoap-plugin-lame' 'libsysactivity-dev' 'libhibernate3-java' 'kubuntu-settings-desktop' 'kde-thumbnailer-openoffice' 'gfortran-arm-linux-gnueabihf' 'cpqarrayd' 'x11proto-render-dev' 'libxxf86vm1' 'xkbind' 'smartpm' 'python-django-tagging' 'w3c-dtd-xhtml' 'libroot-proof-proofplayer5.34' 'libreplaygain1' 'libgnomeprint2.2-dev' 'libgnadeodbc-dbg' 'libc3p0-java' 'libasa-perl' 'libapache2-mod-uwsgi' 'iscsitarget-source' 'gosa-schema' 'gdigi' 'monodoc-browser' 'python-maas-provisioningserver' 'libsearchclient-dev' 'gir1.2-edataserver-1.2' 'linux-headers-3.2.0-23' 'nvidia-cg-toolkit' 'cytadela-dbg' 'ruby-sass-rails' 'php5-sasl' 'pgbouncer' 'r-cran-surveillance' 'libghc-stm-doc' 'libdist-zilla-plugin-changelogfromgit-perl' 'libbot-training-perl' 'redshift' 'git-stuff' 'linux-headers-3.2.0-24' 'cuneiform-common' 'znc-python' 'python-pypureomapi' 'python-glitch' 'python-wxgtk2.8-dbg' 'paprass' 'profnet-prof' 'ltrsift-dbg' 'libplayercommon3.0' 'liblocale-rails-ruby' 'plasma-desktopthemes-artwork' 'libindimain0b' 'hledger-web' 'gle-graphics' 'facter-customfacts-plugin' 'devrplay3' 'python-gst0.10-dbg' 'libprocps0-dev' 'libtinfo5-dbg' 'libm17n-dev' 'libglade2-dev' 'ttf-dustin' 'language-pack-kde-xh' 'chrpath' 'bsh-gcj' 'dmedia-gtk' 'linux-headers-3.2.0-30' 'linux-headers-3.2.0-25' 'xtide-data-nonfree' 'unmass' 'sieve-connect' 'pegasus-wms-doc' 'lxmusic-dbg' 'libmr-tarantool-perl' 'libcsoundac-dev' 'kscreensaver-xsavers-webcollage' 'pslib1' 'globus-xio-dbg' 'c++-annotations-pdf' 'twiggy' 'aespipe' 'python-epydoc' 'python-bsddb3-dbg' 'librrd-dev' 'libdrm-radeon1-dbg' 'indicator-status-provider-telepathy' 'libobjc4-dbg' 'nethack-qt' 'linux-headers-lbm-3.2.0-30-generic-pae' 'linux-headers-lbm-3.2.0-25-generic-pae' 'linux-headers-3.2.0-31' 'linux-headers-3.2.0-26' 'ubuntuone-couch' 'phlipple-dbg' 'libocsync-plugin-sftp' 'libmodule-build-cipux-perl' 'libjgroups-java' 'libghc-json-dev' 'libgeos-doc' 'fp-units-fcl' 'devmem2' 'caml2html' 'tftpd-hpa' 'python3-cairo' 'libept1.4.12' 'linux-headers-3.2.0-32' 'linux-headers-3.2.0-27' 'amoeba' 'spamprobe' 'slimevolley' 'php-horde-rpc' 'musique' 'libghc-hsh-dev' 'libencode-jis2k-perl' 'libbarby-ruby1.8' 'knocker' 'dtaus' 'ubuntu-sso-client' 'libtelepathy-glib-doc' 'language-pack-kde-uz' 'libcap2' 'linux-headers-3.2.0-33' 'ogmrip-video-copy' 'python-snappy' 'root-system' 'lunzip' 'libwtdbopostgres-dev' 'lua-soap' 'libjs-leaflet' 'libfreemarker-java' 'juju-jitsu' 'ice34-translators' 'tracker-gui' 'eiskaltdcpp-emoticons' 'libboost-iostreams-dev' 'language-pack-bo-base' 'libproxy1' 'language-pack-de-base' 'libpst4' 'mutt' 'libpam-runtime' 'awn-applet-animal-farm' 'libopencv-imgproc2.3' 'linux-headers-3.2.0-34' 'linux-headers-3.2.0-29' 'ubuntuone-client-dbg' 'wesnoth-1.10-did' 'tworld-data' 'thinkfan' 'telepathy-ring-dbg' 'python-stepic' 'python-mlt3' 'libmac-widgets-doc' 'libghc-listlike-dev' 'libghc-ansi-wl-pprint-prof' 'libghc-safecopy-doc' 'libdvb-dev' 'kover' 'libantlr3c-3.2-0' 'csstidy' 'abcmidi-yaps' 'python-oops-wsgi' 'linux-headers-3.2.0-40' 'linux-headers-3.2.0-35' 'linux-headers-3.2.0-30-generic-pae' 'linux-headers-3.2.0-25-generic-pae' 'xaralx-examples' 'xchat-xsys' 'tiger-otheros' 'qcake-data' 'pecomato' 'pdfgrep' 'libtntnet-dev' 'libqt5xmlpatterns5' 'libjakarta-ecs-java' 'libipa-hbac-dev' 'libdata-sorting-perl' 'libblitz0-dev' 'libjgoodies-common-java' 'gtkmorph' 'libplplot11' 'cl-lw-compat' 'libopencv-imgproc2.4' 'xterm' 'libjack0' 'libhwloc-dev' 'dovecot-imapd' 'linux-image-3.2.0-24-virtual' 'linux-headers-3.2.0-36' 'theorur' 'shogun-doc-cn' 'python-libmimic' 'python-mlt5' 'mscgen' 'love-doc' 'libkaya-sdl-dev' 'libghc-zlib-enum-dev' 'libgaiagraphics1-dbg' 'libdvdread-dev' 'libbusiness-creditcard-perl' 'ksame' 'libibnetdisc5' 'friends-foursquare' 'libdiet-client2.8' 'pymol' 'libanyevent-dbi-perl' 'libcdb1' 'language-pack-gnome-zh-hans' 'language-pack-ky-base' 'language-pack-lt-base' 'libnode-ltx' 'libktpcommoninternalsprivate0' 'ezgo-imaging' 'linux-headers-3.2.0-37' 'libunity-core-5.0-dev' 'vdkbuilder2' 'usbprog' 'threadscope' 'xenomai-runtime' 'python3-pyasn1' 'python-easygui' 'libmp3spi-java' 'liblua5.1-oocairo0' 'liblingua-es-numeros-perl' 'libkml-java' 'libgsnmp0-dbg' 'libghc-markov-chain-prof' 'libdr-tarantool-perl' 'speedy-cgi-perl' 'plasma-widgets-workspace' 'libopenshiva0.8' 'mongodb-server' 'ttf-gfs-complutum' 'libconsole' 'konqueror-nsplugins' 'mixmaster' 'mono-xbuild' 'libclutter-1.0-dev' 'language-pack-gnome-zh-hant' 'ttf-takao-mincho' 'libghc6-ltk-dev' 'linux-headers-3.2.0-38' 'compiz-kde' 'mgltools-geomutils' 'tdiary-mode' 'syslinux-themes-debian-wheezy' 'scim-tables-ko' 'python-playerc' 'nginx-doc' 'minbif-dbg' 'libghc-simple-sendfile-dev' 'httpry' 'dcap-tunnel-krb' 'banshee-extension-lyrics' 'aria2' '389-ds-base-libs' 'python-pyxattr' 'libdevel-dprof-perl' 'libupsclient1-dev' 'libcommons-compress-java' 'printer-driver-all' 'liblcms2-2' 'mariadb-server-10.0' 'linux-headers-3.2.0-39' 'linux-headers-3.2.0-37-generic' 'whiff' 'tora-dbg' 'robot-player-dev' 'nomnom' 'maas-commission' 'libxine1-misc-plugins' 'libsvn-notify-perl' 'libsugarext-dbg' 'libqtkeychain0' 'libspiffy-perl' 'libglobus-io-dev' 'libghc-uuid-doc' 'nslcd' 'krb5-pkinit' 'xboard' 'olsrd' 'python3-pam' 'libauparse0' 'libghc6-strict-concurrency-prof' 'libgpcl0' 'ruby-qt4-declarative' 'playitslowly' 'libzlcore-data' 'uim-common' 'liboasis3-dev' 'libmailutils2' 'libjavassist-java-doc' 'libghc-hlint-prof' 'libdockapp-dev' 'libapp-cache-perl' 'python3-tornado' 'empty-expect' 'libboost-locale1.49.0' 'libopenmpi1.3' 'python3.3-doc' 'libpod-readme-perl' 'gnome-screenshot' 'erlang-diameter' 'libhdate-php' 'qantenna' 'mjpegtools-dbg' 'libsipwitch-dev' 'libsidplay1-dev' 'libroot-gui-ged-dev' 'libperlbal-xs-httpheaders-perl' 'libmodule-install-autolicense-perl' 'libfusioninventory-agent-task-esx-perl' 'libfile-wildcard-perl' 'libfile-sharedir-par-perl' 'flow-tools-dev' 'diffuse' 'chromium-codecs-ffmpeg-dbg' 'tmispell-voikko' 'nut-doc' 'libintl-perl' 'libgrail-dev' 'libncursesw5-dev' 'tetex-frogg-doc' 'kmediafactory' 'sisu-sqlite' 'rt4-apache2' 'rapidsvn' 'nted' 'libuima-as-java' 'libroot-misc-table5.34' 'libopen4-ruby1.9.1' 'libmsgpack-ruby1.9.1' 'libmrpt-detectors1.0' 'libmailutils4' 'libimage-math-constrain-perl' 'libebml-dev' 'libktpcommoninternalsprivate5' 'kbruch' 'tegaki-zinnia-japanese' 'libgo0-dbg' 'gammu-smsd' 'g++-4.7-multilib-powerpc-linux-gnu' 'chemeq' 'arpalert' 'libxmltok1' 'gtkmm-documentation' 'emacs24-nox-dbg' 'zangband-data' 'netpipes' 'subnetcalc' 'libsratom-doc' 'libopenmpi1.6' 'libnarray-miss-ruby' 'libmail-verify-perl' 'libcaml2html-ocaml' 'httrack-doc' 'gnome-web-photo' 'gambas3-gb-db-form' 'flegita' 'datapacker' 'binstats' 'python-gdata' 'alpine-doc' 'libaldmb1' 'nagios3' 'libx32tinfo-dev' 'libsoprano-doc' 'iirish' 'python-gdchart2-doc' 'longrun' 'lomoco' 'libwildmidi-config' 'libvisca-dev' 'llvm-2.9-dev' 'libmumps-dev' 'libghc-punycode-dev' 'libmoosex-oneargnew-perl' 'libapp-info-perl' 'kcolorchooser' 'libjabsorb-java' 'gfal2-plugin-dcap' 'fonts-monapo' 'fonts-rufscript' 'cipux-cat-web' 'python3-lxc' 'python-pyicu' 'python-moinmoin' 'language-pack-gnome-fur' 'libwpg-0.2-2' 'alacarte' 'libccaudio2-1.0-0' 'plee-the-bear-data' 'lua50-doc' 'netcdf-bin' 'libghc-classy-prelude-doc' 'kacpimon' 'libapogee2' 'libcdd0' 'cryptkeeper' 'xserver-xorg-video-mga' 'webaccounts-extension-common' 'python3-distupgrade' 'linux-headers-3.8.0-19-generic' 'libisofs-doc' 'libgcrypt11-dev' 'ibus-gtk' 'ocaml-base-nox' 'windowlab' 'warmux-servers' 'xfce4-verve-plugin' 'shogun-doc-en' 'science-mathematics' 'r-cran-gmodels' 'qconf' 'pandorafms-agent' 'node-mime' 'libykpers-1-dev' 'libtemplate-multilingual-perl' 'libportaudio-ocaml-dev' 'libperlmenu-perl' 'libkgapi-dev' 'libhamlib-doc' 'libghc-citeproc-hs-prof' 'libasterisk-agi-perl' 'xfonts-shinonome' 'browser-history' 'antennavis' 'libitpp7' 'unifont' 'lsb-graphics' 'mrwtoppm-utils' 'libghc6-haskell-lexer-doc' 'libfparser-4.3' 'translate-toolkit-dev-doc' 'tagainijisho-dic-pt' 'smplayer-translations' 'postgresql-9.1-prefix' 'libzrtpcpp2' 'librdsclient1' 'libpcscada2-dev' 'libnet-irc-ruby' 'libmapiproxy-dev' 'libhttpclient-ruby1.8' 'libhtmlentities-ruby' 'libghc-cpphs-dev' 'libgmsh2' 'libnanohttp1' 'libcatalyst-view-pdf-reuse-perl' 'kdebase-apps' 'gfal2' 'boolstuff-dev' 'apper' 'libtdb1-dbg' 'libconfig-doc' 'yapps2-runtime' 'system-config-printer-gnome' 'manpages-dev' 'libghc6-happstack-util-doc' 'libgpcl-dev' 'libblimps3-dev' 'trac-bitten' 'thepeg-reference' 'squidview' 'propka' 'openvanilla-imgeneric' 'libroot-core-dev' 'ikiwiki' 'fsarchiver' 'deejayd-webui-extension' 'cyclades-serial-client' 'skkdic' 'ardour' 'extlinux' 'libid3-tools' 'python-libxml2' 'gedit' 'pigz' 'mysql-mmm-agent' 'libtcd0' 'libmathlib2-gfortran' 'libtxw2-java-doc' 'libghc-crypto-pubkey-types-prof' 'gtetrinet' 'indicator-applet-complete' 'ebook-speaker-dbg' 'libecore1' 'dfu-util' 'libnet-inet6glue-perl' 'python-zope.sqlalchemy' 'libzvbi0' 'libjaxme-java-doc' 'libido3-0.1-dev' 'python3-pbs' 'python-mailutils' 'python-lazr.restful' 'openimageio-tools' 'llvm-dev' 'libxfce4ui-utils-dbg' 'libghc-quickcheck2-dev' 'libghc-diff-dev' 'libghc-ansi-wl-pprint-dev' 'libgettext-ruby' 'libgomp1-powerpc-cross' 'libalog0.4.1-base' 'kffmpegthumbnailer' 'python-pyfiglet' 'xfce4-panel' 'libproc-processtable-perl' 'dmg2img' 'libdiet-dagda2.8' 'cl-htmlgen' 'libax25' 'abcde' 'libsmokeqtsvg4-3' 'libjline-java-doc' 'libgeoip-dev' 'libevent-dbg' 'libnm-util2' 'dh-autoreconf' 'libdecoration0' 'awn-applet-awnterm' 'ubuntume-themes' 'python-biosig' 'libpadre-plugin-datawalker-perl' 'libghc-text-icu-doc' 'kde-workspace' 'gwenview' 'erlang-common-test' 'docbook-xsl-saxon-gcj' 'conglomerate' 'blacs-test-common' 'wbritish-large' 'python-egenix-mxurl' 'kde-config-tablet' 'libwfmath-0.3-4' 'xfce4-goodies' 'nsis' 'libtelepathy-farstream2-dbg' 'libghc-tagstream-conduit-prof' 'libhtml-template-pluggable-perl' 'libdbix-class-inflatecolumn-fs-perl' 'libcal3d-doc' 'ruby-merb-helpers' 'python-quantumclient' 'git-man' 'diffutils-doc' 'libregexp-java' 'advancecomp' 'psiconv' 'pike7.8-dev' 'netcdf-dbg' 'mirmon' 'libtaoframework-freetype2.3-cil' 'libghc-crypto-pubkey-types-dev' 'libfsotransport-dbg' 'libdbus-ocaml' 'libaqbanking-doc' 'libapache2-mod-jk' 'lcmaps-plugins-jobrep' 'globus-common-progs' 'libglobus-gsi-sysconfig1' 'bottlerocket' 'libxmlrpc-core-c3' 'pngcrush' 'libhttp-date-perl' 'libboost-dev' 'python-wxglade' 'probcons-extra' 'postnews' 'plasma-widget-toggle-compositing' 'nordugrid-arc-egiis' 'libzoom-ruby' 'libjenkins-dom4j-java' 'vlock' 'fccexam' 'libwfmath-0.3-6' 'plymouth-label' 'krb5-config' 'kdelibs5' 'libkemoticons4' 'gnome-menus' 'quilt' 'tryton-modules-analytic-purchase' 'tagainijisho-dic-th' 'plymouth-theme-text' 'pioneers-console-data' 'lua-cyrussasl-dev' 'libhdfeos-dev' 'libdb-java' 'gkrellm-bfm' 'gir1.2-keybinder-0.0' 'python-fastimport' 'bogofilter-sqlite' 'libraptor2-0-dbg' 'libqttest4-perl' 'liblircclient0' 'libdc1394-22-dev' 'libbarry0-dbg' 'weechat' 'uwsgi-plugin-greenlet-python' 'racc' 'libkohana3.2-mod-auth-php' 'libdatetime-event-sunrise-perl' 'libcss-dom-perl' 'junior-internet' 'icmptx' 'guile-1.8-doc' 'gosa-plugin-openxchange-schema' 'fwts-frontend' 'xdg-user-dirs-gtk' 'trousers-dbg' 'libxmu6-dbg' 'libhtml-template-perl' 'language-pack-kde-ja-base' 'ant-contrib' 'libgexiv2-1' 'shrinksafe' 'xtide' 'syncache' 'pimd' 'libsysactivity-doc' 'libparallel-prefork-perl' 'libosmpbf-dev' 'libnetfilter-queue-dev' 'libnet-finger-perl' 'libghc-parseargs-dev' 'libcpprspserver-dev' 'gtkatlantic' 'gosa-plugin-mit-krb5' 'eekboek-db-postgresql' 'dragonplayer-dbg' 'blends-common' 'python3-dbus.mainloop.qt-dbg' 'python-twisted-runner' 'libtagc0' 'libpython3-dbg' 'libgtkmm-2.4-dbg' 'language-pack-gnome-sc-base' 'iogerman' 'arrayprobe' 'tagainijisho-dic-ru' 'python3-svipc' 'opendnssec-dbg-mysql' 'libsynfig-dev' 'libqt4-ruby' 'libnet-smpp-perl' 'libhtp-dev' 'libgnomeprint2.2-doc' 'libghc-haskelldb-hdbc-odbc-prof' 'libcommons-modeler-java' 'libjosql-java' 'libgeographiclib-dev' 'gambas3-gb-v4l' 'gcc-aarch64-linux-gnu' 'chef-server-webui' 'python-gtksourceview2' 'edfbrowser' 'texlive-music' 'python3-pytest' 'libxcb-xv0' 'libmono-simd2.0-cil' 'libgexiv2-2' 'python-pygpu' 'libcurand4' 'unicon-imc2' 'python-tg.devtools' 'python-pyspatialite' 'postgresql-9.1-preprepare' 'node-showdown' 'libmoe1.5' 'libglpk-java' 'libfontchooser-java' 'gadmin-bind-dbg' 'unshield' 'swish++' 'python-gst0.10-dev' 'cmap-adobe-gb1' 'raptor2-utils' 'libproxy1-plugin-networkmanager' 'libtool-doc' 'libboost-system-dev' 'language-pack-kde-sk-base' 'liblogthread3' 'libopts25-dev' 'libghc6-unix-compat-prof' 'xfce4-cpufreq-plugin' 'rest2web-doc' 'python-liblicense' 'selinux-policy-dev' 'oar-api' 'libsundials-cvode1' 'libresample1-dev' 'libposixlock-ruby1.8' 'libpasswdqc-dev' 'libsnowball-swedish-perl' 'libcgi-simple-perl' 'libkephal4abi1' 'python-setproctitle' 'dico-module-guile' 'gtk2-engines-pixbuf' 'libtonezone2.0' 'libpoppler-cpp0' 'gnome-session-common' 'qprint' 'polybori-gui' 'logkeys' 'llvm-3.0-runtime' 'libzabbix-api-perl' 'librack-ruby1.8' 'ruby-password' 'libnet-hiveminder-perl' 'libmp3splt-dev' 'libapache-gallery-perl' 'libacme-poe-knee-perl' 'kolabadmin' 'ttf-sil-charis' 'streamripper' 'eqonomize-doc' 'libportsmf0' 'python-openssl-doc' 'bluez-cups' 'vim-syntax-gtk' 'python-zope.authentication' 'php-horde-editor' 'libtest-file-sharedir-perl' 'libsinatra-ruby1.9.1' 'libghc-json-doc' 'libaether-java' 'liblept3' 'holdingnuts' 'guile-gnome2-vfs' 'gnome-commander-dbg' 'libunac1' 'dpm-name-server-postgres' 'autodia' 'libxp6-dbg' 'libxml-commons-external-java-doc' 'lampython' 'tntnet-doc' 'libnet-iptrie-perl' 'liblcmaps-without-gsi0' 'libghc-hsh-doc' 'libgdchart-gd2-xpm-dev' 'libatomicparsley-dev' 'libelemental0-dbg' 'asterisk-modules' 'libmono-microsoft-build-tasks-v4.0-4.0-cil' 'xmms2-plugin-musepack' 'xplot-xplot.org' 'opennebula-sunstone' 'libxwiimote-dev' 'swe-basic-data' 'libsearch-estraier-perl' 'ruby-mime-types' 'libarray-iterator-perl' 'gtk2-engines-aurora' 'gpsk31' 'r-cran-mapproj' 'flumotion' 'claws-mail-plugins' 'jtex-bin' 'paprefs' 'liboro-java-doc' 'libmono-windowsbase3.0-cil' 'libkdecore5' 'lightdm' 'python-newt' 'btrfs-tools-dbg' 'libskstream-0.3-4-dbg' 'yaz-icu' 'wmpomme' 'tagainijisho-dic-tr' 'python-zope.app.file' 'python-django-threaded-multihost' 'php-horde-itip' 'php-horde-db' 'libxmmsclient-glib-dev' 'libweb-scraper-perl' 'pangzero' 'libisfreetype-java' 'libics-dev' 'libghc-listlike-doc' 'libghc-hxt-unicode-dev' 'libmikmod2-dev' 'hime-gtk3-immodule' 'dovecot-antispam' 'xserver-xorg-input-vmmouse' 'wportuguese' 'x11proto-video-dev' 'libdebian-installer-extra4' 'libtdb1' 'autopkgtest-xenlvm' 'libdbi-perl' 'libtao-2.0.1' 'nvidia-96' 'linux-image-3.2.0-38-generic-pae' 'uprecords-cgi' 'surfraw-extra' 'python-cwiid' 'olwm' 'mwrap' 'mono-addins-utils' 'libshisa0' 'plplot-tcl' 'libplplot-d' 'liblockfile-ruby' 'libhwloc-doc' 'libnet-https-nb-perl' 'jmeter' 'gwyddion-common' 'libxml-handler-trees-perl' 'dsc-statistics-presenter' 'libcec1' 'libboost-graph-parallel1.49-dev' 'language-pack-kde-crh-base' 'libwxgtk2.6-dbg' 'libconqat-simulink-java-doc' 'ichthux-konqueror-shortcuts' 'ubuntu-policy' 'wxmaxima' 'rusers' 'php-pager' 'libpgsql-ruby1.9.1' 'libmoosex-multiinitarg-perl' 'libmodule-versions-report-perl' 'libmapiproxy0' 'libgsnmp0-dev' 'libghc-zlib-enum-doc' 'libghc-directory-tree-dev' 'harden-environment' 'libzita-resampler1' 'dyndns' 'dvbtune' 'dpm-srm-server-postgres' 'apcupsd' 'libhunspell-1.3-0-dbg' 'libffi6-dbg' 'libatk-wrapper-java' 'linux-tools-common' 'ghostscript-dbg' 'linux-image-extra-3.5.0-17-generic' 'koffice-l10n-zhtw' 'dares-qt' 'linux-backports-modules-cw-3.4-3.2.0-30-generic' 'smc-music' 'python-nids' 'node-topcube' 'libuuidtools-ruby1.8' 'libjcalendar-java-doc' 'libghc-semigroupoid-extras-prof' 'libghc-hjavascript-dev' 'libghc-dual-tree-prof' 'libskinlf-java' 'libdesktop-agnostic-data' 'libcps-perl' 'libsimage-dev' 'lcl-qt4' 'icmpush' 'libfastjettools-dev' 'libeiskaltdcpp2.2' 'python-chaco' 'calligra-reports-map-element' 'bliss' 'bangarang' 'libwhoopsie-dev' 'libreadonly-xs-perl' 'libclutter-1.0-doc' 'libghc6-ltk-doc' 'abby' 'linux-current-generic' 'zeroc-icee' 'tennix' 'remuco-audacious' 'libsugarext-dev' 'libstfl-ruby1.8' 'libplexus-classworlds2-java-doc' 'libhfgcc1-dbg-armel-cross' 'libghc-simple-sendfile-doc' 'libaudio-xmmsclient-perl' 'kde-telepathy-desktop-applets' 'libgtksourceviewmm-3.0-0' 'libtar0' 'braindump' 'libregexp-optimizer-perl' 'libyaml-dev' 'libtagc0-dev' 'phonon' 'libow-2.8-13' 'sitesummary-client' 'scalapack-mpi-test' 'robot-player-doc' 'plasma-runner-telepathy-contact' 'mha4mysql-node' 'med-dental' 'libnlopt-guile0' 'ruby-locale' 'libjs-node-uuid' 'kde-telepathy-integration-module-dbg' 'okular-extra-backends' 'jmeter-mail' 'hyperestraier' 'krb5-kdc' 'plopfolio.app' 'gastman' 'confclerk' 'libcdi0' 'tryton-modules-product' 'rockdodger' 'python-sorl-thumbnail' 'pymetrics' 'mobyle-programs' 'libghc-exception-transformers-dev' 'libgdcm2.0-dbg' 'libdatetime-timezone-systemv-perl' 'libcconv0' 'ttf-prociono' 'thunderbird-gnome-support' 'lsb-desktop' 'librdf-storage-sqlite' 'libregexp-common-perl' 'libdmraid-dev' 'libcommons-codec-java-doc' 'openoffice.org-hyphenation-af' 'language-pack-ar-base' 'libtrash' 'liblua5.1-sql-doc' 'gtodo' 'libkasten1okteta1core1' 'xtux-client' 'r-cran-rsymphony' 'python-zope.i18nmessageid' 'pdlzip-dbg' 'tix-dev' 'libplplot-ada0' 'libow-2.8-15' 'libglobus-rsl-dev' 'libenv-ps1-perl' 'htsengine' 'drupal6-mod-imagecache-actions' 'cue2toc' 'charybdis' 'libpvm3' 'apt-show-versions' 'aajm' 'quagga-doc' 'python-routes' 'pulseaudio-dbg' 'language-pack-gnome-pap-base' 'libnb-platform12-java-doc' 'libipe7.1.1' 'trafficserver-dev' 'librmail-ruby-doc' 'libosgi-foundation-ee-java-doc' 'libmtbl0' 'libgpgme-ruby' 'libduppy-ocaml-dev' 'libapache2-mod-ruwsgi' 'kde-workspace-kgreet-plugins' 'dita-ot' 'bookview' 'acl2' 'asterisk' 'potrace' 'libsctp1' 'proftpd-mod-sqlite' 'med-typesetting' 'libgoffice-0.8-dbg' 'libghc-sdl-mixer-dev' 'libaopalliance-java' 'libkmahjongglib-data' 'libipe7.1.2' 'innoextract' 'massxpert' 'banshee-extension-appindicator' 'python-swiftclient' 'language-pack-oc-base' 'language-pack-kw-base' 'evolution-dbg' 'foomatic-db-compressed-ppds' 'fglrx-experimental-9-dev' 'rsplib-registrar' 'logisim' 'libtsk3-3' 'librheolef-dev' 'libotf-trace-dev' 'libopentoken-dbg' 'llvm-2.9-doc' 'libjs-jquery-jush' 'libghc-yesod-default-dev' 'libghc-punycode-doc' 'libclass-dbi-loader-relationship-perl' 'libcairo-gobject-perl' 'kapptemplate' 'ekg2-ui-ncurses' 'gobby-infinote' 'cyrus-common' 'acl2-source' 'libxcb-screensaver0-dbg' 'libunwind-setjmp0' 'hunspell-en-us' 'x11-xserver-utils' 'icomlib-bin' 'pianobooster' 'php-horde-token' 'libterm-twiddle-perl' 'libapache2-mod-vhost-hash-alias' 'kiten-dbg' 'kdesrc-build' 'gsql-mysql-engine' 'libtranslate0' 'gnome-media-player' 'etl-dev' 'diodon-dev' 'libss2-dbg' 'libgcrypt11-doc' 'libconfig8-dev' 'openoffice.org-hyphenation-ca' 'packagekit-tools' 'nrss' 'livemedia-utils' 'libwildmidi-dev' 'libghc-vault-prof' 'libgettext-rails-ruby-doc' 'libticket-simple-perl' 'libcatalyst-controller-actionrole-perl' 'ibus-libpinyin' 'hockeypuck' 'haskell-haskelldb-doc' 'ganeti-instance-debootstrap' 'gambas3-gb-form-dialog' 'libaiksaurusgtk-1.2-0c2a' 'fgrun' 'bitcoin-qt' 'ascdc' 'python3-jinja2-dbg' 'backupninja' 'fonts-sil-ezra' 'd-shlibs' 'bittornado' 'linux-backports-modules-cw-3.3-3.2.0-24-generic' 'xfonts-cronyx-koi8r-100dpi' 'vdr-plugin-remoteosd' 'python-martian' 'nifti2dicom-data' 'libmaven-jar-plugin-java' 'libjogl2-toolkits' 'libghc-cpphs-doc' 'libfm-gtk-bin' 'libmp4v2-2' 'kdevelop-php' 'kamailio-ldap-modules' 'g15macro' 'libpdflib804-2-dev' 'libgkeyfile1.0-cil' 'scrollkeeper' 'libgupnp-1.0-dbg' 'spectemu-common' 'elmergui-samples' 'autodir' 'xpaint-dev' 'treeline' 'sphinxtrain-dev' 'python-mode' 'numactl' 'nethack-spoilers' 'netatalk' 'libnss-gw-name' 'libjifty-plugin-authentication-bitcard-perl' 'libjifty-plugin-authentication-ldap-perl' 'libcw3-dev' 'libmessagelist4' 'gir1.2-v-sim-1.0' 'fcitx-table-cangjie-big' 'python-django-horizon' 'libnunit2.6-cil' 'grub2-common' 'dblatex' 'whowatch' 'quisk' 'matchbox-desktop' 'librhash-dev' 'libqdbm-ruby1.9.1' 'libstring-truncate-perl' 'libogdf-tulip-3.7.0' 'libmimetic0-dbg' 'libopencv-calib3d-dev' 'gsm-utils' 'libmutter0a' 'ttf-ubuntu-title' 'feedgnuplot' 'dhcpcd-gtk' 'python-mock' 'python-fixtures' 'libevent-dev' 'evince-gtk' 'libavidemux0' 'midge' 'mb2md' 'libmono-uia-atkbridge1.0-cil' 'libghc-quickcheck-instances-dev' 'libghc-diff-doc' 'libghc-ansi-wl-pprint-doc' 'libghc-quickcheck2-doc' 'libclassad-dev' 'laserboy-indep' 'php-mdb2-driver-mysql' 'globus-gram-job-manager-sge-dbg' 'geeqie-common' 'deb-gview' 'camlp4-extra' 'apertium-tolk' 'angband-data' 'qemu-system' 'libaccounts-qt1' 'hpijs' 'dnstracer' 'libghc6-hsemail-prof' 'kthesaurus' 'ssh-contact-client' 'python3-pip' 'plan' 'mp4v2-dbg' 'mcollective-plugins-package' 'libzita-resampler-dev' 'libx52pro0' 'libsource-highlight-common' 'libqt5multimediaquick-p5' 'liblastfm-ocaml-dev' 'libalglib-2.6.0' 'jiipview' 'gnucash-dbg' 'ncftp' 'cvsps' 'libparagui1.1-dev' 'libghc6-hsql-prof' 'libghc6-feed-dev' 'php-horde-cache' 'libsparskit-dev' 'radiusclient1' 'libfsotransport-dev' 'libfaad-ocaml' 'libdataobjects-mysql-ruby1.8' 'libbiojava3-java-doc' 'ipadic-common' 'fp-units-gfx' 'libxcursor1-dbg' 'libjaxp1.3-java-gcj' 'liblwp-mediatypes-perl' 'dvd+rw-tools' 'awn-applet-digital-clock' 'xmlformat-ruby' 'python-mlpy' 'pike7.8-doc' 'pescetti' 'ocamlduce' 'microcom' 'libpgtcl1.5' 'libnet-scp-perl' 'liblualib50-dev' 'libsord-0-0' 'libghc-crypto-pubkey-types-doc' 'iselect' 'libplot2c2' 'texstudio' 'libaqbanking34-plugins' 'protobuf-compiler' 'libipmiconsole-dev' 'libboost-doc' 'libgmtk0' 'crafty-bitmaps' 'transfermii-gui' 'slbackup-php' 'rlinetd' 'python-simplesettings' 'ploticus-doc' 'monodoc-semweb-manual' 'liblog4cplus-dbg' 'libej-dev' 'libdata-munge-perl' 'gecrit' 'libcdk5' 'libnet-rblclient-perl' 'libvformat0' 'openoffice.org-hyphenation-de' 'gfortran-doc' 'apache2.2-bin' 'valac-0.10' 'libtao-tkresource-2.0.1' 'libghc6-statistics-dev' 'language-selector-kde' 'tclspice' 'wmhdplop' 'qjackrcd' 'php-horde-mail' 'opendbx-doc' 'libghc-openpgp-prof' 'libnetcdf-dev' 'lletters' 'libgmtk1' 'givaro-dev-doc' 'fprintd' 'cernlib-base-dev' 'qbzr' 'blubuntu-look' 'libfont-afm-perl' 'libdc1394-22-doc' 'erlang-debugger' 'libopendkim6' 'libghc-happstack-data-prof' 'virtualbox-ose' 'netexpect' 'tophat' 'libscotchparmetis-dev' 'libroot-math-mathcore5.34' 'libonemind-commons-java-java' 'libfile-counterfile-perl' 'libdancer-perl' 'python-scientific' 'gpx2shp' 'fish-dbg' 'libballview1.4' 'libpython3-dev' 'libmodule-implementation-perl' 'libgtkmm-2.4-dev' 'bittornado-gui' 'valac-0.12' 'gambas2' 'libcherokee-client0' 'virtualbox-guest-dkms' 'spampd' 'python-simpy' 'libtomoyotools2' 'ruby-poppler' 'libmath-spline-perl' 'libklatexformula3-dev' 'libghc-parseargs-doc' 'libghc-email-validate-dev' 'dav-text' 'bitpim-lib' 'libtagsoup-java' 'asterisk-core-sounds-fr-wav' 'mysql-client-core-5.5' 'libmono-messaging-rabbitmq4.0-cil' 'darcs' 'gforge' 'crystalhd-dkms' 'wcanadian' 'valac-0.20-dbg' 'libtomoyotools3' 'libgoffice-0.10-dev' 'libavogadro-dev' 'gcin-anthy' 'gambas3' 'liboggkate1' 'abiword-common' 'libautodie-perl' 'libpulse0-dbg' 'gdisk' 'ddrescue' 'libviennacl-dev' 'xineliboutput-sxfe' 'r-cran-mnp' 'python-csoundac' 'pymsnt' 'pisg' 'obconf' 'libright-aws-ruby-doc' 'libopendkim9' 'libmed-tools' 'fonts-mikachan' 'zynjacku' 'valac-0.14' 'freedink-engine' 'crossfire-client-images' 'celestia-glut' 'libxerces-c28' 'python3-pyudev' 'python-tickcount' 'libdigest-perl' 'libkidletime4' 'erlang-mnesia' 'docbook-xml' 'libmailtools-perl' 'gfaim' 'yate-scripts' 'valac-0.20' 'selinux-policy-doc' 'rbbr' 'python-pyhsm' 'python-bottle-doc' 'python-antlr' 'openarena-081-misc' 'nut-monitor' 'nufw' 'nrg2iso' 'libroot-hist-spectrum-dev' 'libguestfs-perl' 'haskell-regex-compat-doc' 'libg20-perl' 'supertux' 'i810switch' 'libgd-graph3d-perl' 'drupal6-mod-xrds-simple' 'madplay' 'blktrace' 'python-bsddb3-doc' 'binutils-multiarch' 'libdbd-mysql-perl' 'eximon4' 'ubuntu-orchestra-modules' 'libfreenect0.0' 'uwsgi-plugin-luajit' 'ubuntustudio-audio-plugins' 'qnifti2dicom' 'proftpd-mod-clamav' 'mailgraph' 'libtest-bdd-cucumber-perl' 'librb-inotify-ruby' 'libopencascade-modeling-6.5.0' 'liblua5.1-cgi0' 'libjboss-xml-binding-java' 'libxml-libxml-lazybuilder-perl' 'libgatos-dev' 'libcql-parser-perl' 'ruby-amrita' 'lcl-utils' 'ttf-ocr-a' 'ttf-hanazono' 'enamdict' 'libswt-cairo-gtk-3-jni' 'valac-0.16' 'signon-ui' 'fonts-linuxlibertine' 'language-pack-gnome-ha-base' 'guilt' 'science-electronics' 'mutextrace' 'libwlocate0' 'libjlibeps-java-doc' 'libindicate-gtk3' 'libqwt5-qt4' 'libcudf-ocaml-dev' 'libclaw-tween-dev' 'libbio-primerdesigner-perl' 'jta-doc' 'ipband' 'libinput-pad1' 'gdpc-examples' 'libfreenect0.1' 'python-pyfits' 'ghemical' 'python-gudev' 'libgmp3-dev' 'libpam-gnome-keyring' 'kompozer-dev' 'libpwl5' 'zipmerge' 'libproxychains-dev' 'libhtmlcxx-dev' 'libghc-unixutils-prof' 'libghc-test-framework-quickcheck2-prof' 'kinput2-canna-wnn' 'honeyd' 'gcin-chewing' 'freedroid-data' 'ttf-ecolier-lignes-court' 'opari' 'libgrafx11-1-dev' 'binutils-h8300-hms' 'autoclass' 'valac-0.18' 'libxz-java-doc' 'libcommons-discovery-java' 'language-pack-kde-id-base' 'language-pack-kde-hi-base' 'dh-linktree' 'acct' 'koffice-l10n-ca' 'biblememorizer' 'mgltools-mglutil' 'xbomb' 'roarplaylistd-codechelper-gst' 'rapid-spring' 'rail' 'python-presage-dbg' 'libweb-simple-perl' 'libsfgfortran3-armhf-cross' 'libsfgcc1-armhf-cross' 'libossp-sa12' 'liblwp-online-perl' 'liblucene3-java-doc' 'liblapack-pic' 'libjson-wheel-ocaml-dev' 'libjboss-security-java' 'libbusiness-onlinepayment-payconnect-perl' 'libann0' 'emboss-data' 'aewm++' 'lib64z1-dev' 'language-pack-gnome-sa-base' 'libklibc' 'libqglviewer-qt3-2' 'qsstv' 'purity' 'librepository-java-doc' 'libmoosex-types-netaddr-ip-perl' 'libics-doc' 'libghc-tensor-dev' 'libghc-hxt-unicode-doc' 'libcorona-perl' 'libaudio-mpd-common-perl' 'libhtsengine1' 'libxneur' 'gwaei' 'garden-of-coloured-lights' 'antigravitaattori' 'libdbd-pg-perl' 'libxcomposite1-dbg' 'libtext-glob-perl' 'libelfg0-dev' 'mini-dinstall' 'libwxgtk2.6-dev' 'cloudfoundry-client' 'brother-lpr-drivers-laser1' 'west-chamber-dkms' 'python-relational' 'navit-gui-internal' 'libtclcl1' 'libqtpublishsubscribe1' 'libclass-trigger-perl' 'php-mdb2' 'gnustep' 'evernote-mode' 'connman-dev' 'aspell-gl-minimos' 'asn1c' 'libccid' 'language-pack-kde-si-base' 'ttf-takao-pgothic' 'qgfe' 'libghc6-hashed-storage-prof' 'blimps-examples' 'vagrant' 'terraintool' 'sbnc-php-dev' 'php-horde-vfs' 'openswan-modules-source' 'oolite-data' 'minetest-common' 'libucto1-dev' 'subtitleeditor' 'librdmawrap2-dev' 'libraul-dev' 'libopenblas-dev' 'mp3splt' 'libghc-directory-tree-doc' 'firestarter' 'dares' 'coinor-libdylp-dev' 'lxde-icon-theme' 'rake' 'ltsp-client' 'libglu1-mesa' 'language-pack-gnome-zu-base' 'gutenprint-doc' 'libccs3' 'smbfs' 'bridge-utils' 'python3-pyopencl' 'zimpl' 'zentyal-ca' 'zabbix-server-pgsql' 'vnstat' 'survex-aven' 'r-cran-effects' 'php-html-common' 'libqpx0' 'libmultibitnums-ruby1.9.1-dbg' 'libghc-hjavascript-doc' 'libqtconnectivity1' 'libapp-termcast-perl' 'ruby-algorithm-diff' 'ioquake3-dbg' 'libgrib2c0d' 'php-mime-type' 'ciderwebmail' 'addressmanager.app' 'qemu' 'mercurial' 'libgstreamer-plugins-base1.0-0' 'koffice-l10n-da' 'vdr-plugin-svdrpservice' 'xfce4-taskmanager' 'python-pychart-doc' 'model-builder' 'mcomix' 'mtpaint' 'liggghts' 'libxcompshad3' 'libhttp-server-simple-mason-perl' 'kx11grab' 'libgpds0' 'pd-zexy' 'ckport-database' 'libreoffice-help-ca' 'libavahi-compat-libdnssd-dev' 'ceph-mds' 'libghc6-monoid-transformer-prof' 'wxbanker' 'recover' 'lio-utils' 'libsqlite3-ruby1.9.1' 'libghc-hxt-dev' 'libghc-highlighting-kate-dev' 'libethos-dev' 'libsyntax-highlight-perl-improved-perl' 'libclass-accessor-chained-perl' 'jbig2dec' 'libkdegames6' 'aolserver4-nsxml' 'wdanish' 'libverto-libevent1' 'libsane-extras' 'libsmokeqimageblitz3' 'libcommons-io-java-doc' 'texlive-lang-all' 'hledger-vty' 'libcherokee-mod-geoip' 'asoundconf-gtk' 'topgit' 'php-event-dispatcher' 'libmlpost-ocaml-dev' 'libmixlib-cli-ruby1.9.1' 'libjinput-jni' 'libghc-exception-transformers-doc' 'libghc-blaze-builder-conduit-dev' 'fonts-sil-galatia' 'libffindex0' 'critterding' 'nvidia-310-updates' 'ocfs2-tools' 'libid3tag0-dev' 'cinder-common' 'sync-ui' 'subtitlecomposer' 'python-mhash' 'lojban-common' 'libqrencode-dev' 'libmodule-install-manifestskip-perl' 'libisfreetype-5.2-java' 'libglobus-rsl-doc' 'libdns-zoneparse-perl' 'gkrellm-thinkbat' 'fonts-sil-andika' 'claws-mail-attach-warner' 'aegis-web' 'fragmaster' 'libxcb-glx0' 'koffice-l10n-de' 'skeinforge' 'redboot-tools' 'python-zope.app.preference' 'python-sphinxcontrib.issuetracker' 'mupen64plus-video-glide64-dbg' 'monsterz-data' 'lua-lgi-dbg' 'libsdl-gst' 'liblingua-stem-perl' 'libjs-lru-cache' 'libgoffice-0.8-dev' 'haskell-edison-api-doc' 'libeasyconf-java-doc' 'libconvert-base32-perl' 'libcommons-digester-java-doc' 'libapache2-mod-auth-memcookie' 'kile-l10n' 'libjs-xmlextras' 'ntop' 'libglee0d1' 'gdmap' 'epigrass-doc' 'dvdstyler' 'cyrus-murder-2.2' 'ruby-fast-xs' 'batmand-dbg' 'libavalon-framework-java-doc' 'evolution-dev' 'gforge-web-apache2' 'velocity-doc' 'python-zc.buildout' 'python-sciscipy' 'mupen64plus-input-all' 'mod-gearman-tools' 'librdf-trine-perl' 'libghc-simpleirc-dev' 'libghc-sdl-mixer-doc' 'reportbug' 'libxcb-screensaver0-dev' 'libreoffice-help-da' 'libghc6-bzlib-prof' 'libace-rmcast-6.0.1' 'gambas2-script' 'mesa-common-dev-lts-quantal' 'wbar-config' 'tomoe-doc' 'scim-tables-zh' 'ruby-pkg-tools' 'python3-ply' 'ninja-ide' 'libqpidtypes1-dev' 'libghc-yesod-default-doc' 'python-mpdclient' 'libhaapi1' 'cyrus-murder-2.4' 'bpython-gtk' 'bcfg2-web' 'xserver-xorg-input-mouse' 'thunderbird-locale-zh-tw' 'cups-client' 'apt-transport-https' 'ubuntu-orchestra-modules-tomcat6' 'redeclipse-server' 'sra-toolkit-libs0' 'setbfree' 'pysycache-move-plants' 'plasma-widget-kdeobservatory' 'php5-midgard2' 'libxml-saxon-xslt2-perl' 'libpoe-component-syndicator-perl' 'libopentoken6' 'libjsoncpp0' 'libmarkdown2' 'audacious-analog-vumeter-plugin-dbg' 'boinc-server-maker' 'evince-common' 'xcite' 'wakeup' 'slptool' 'page-crunch' 'nodejs-dbg' 'myrescue' 'luajit' 'libsmartcardpp1' 'libroot-roofit5.34' 'libmodule-install-authorrequires-perl' 'libmaven-install-plugin-java' 'libmagics++-dev' 'libinklevel-dev' 'libhepmcinterface8' 'libgd-ruby' 'libccaudio2' 'libace-rmcast-6.0.3' 'hugepages' 'fonts-konatu' 'ascii' 'python-sqlalchemy-doc' 'pyppd' 'linux-image-generic-pae' 'libgupnp-1.0-dev' 'libgles2-mesa-dbg' 'inputattach' 'openoffice.org-hyphenation-fr' 'libjack-jackd2-0' 'brltty' 'audispd-plugins' 'tryton-modules-account-invoice' 'tryton-modules-currency' 'sgml-spell-checker' 'pybridge-server' 'mercurial-common' 'libxs-dev' 'libopencv-ts2.4' 'libjemmy2-java' 'quassel' 'libkasten2okteta1gui1' 'glassfish-appserv' 'libsocialweb-client2' 'fsprotect' 'python-libconcord' 'libamu4' 'xserver-xorg-video-r128' 'python-testscenarios' 'mkelfimage' 'libtest-deep-perl' 'libreoffice-help-de' 'libieee1284-3' 'gir1.2-grip' 'fonts-sil-abyssinica' 'language-pack-da-base' 'rarian-compat' 'libcryptsetup4' 'linux-headers-3.5.0-24-generic' 'linux-headers-3.5.0-19-generic' 'sgb-doc' 'opendrim-lmp-ssh' 'chaplin' 'zutils' 'ontv' 'ruby-netcdf' 'python-biopython' 'lmms-common' 'libshairport-dev' 'libopenscap1-dbg' 'libswingx1-java' 'libmp3lame-ocaml-dev' 'libghc-clocked-dev' 'libcminpack1.0.90' 'libaqofxconnect7' 'libshp1' 'freebirth' 'centerim' 'voikko-fi' 'language-pack-gnome-mai' 'libcupsmime1' 'avidemux-plugins-common' 'swift-im' 'python-zope.app.publication' 'monodoc-gmime2.6-manual' 'mailsync' 'libtap-formatter-junit-perl' 'libowfat-dev' 'libmixin-extrafields-perl' 'libimdb-film-perl' 'libghc-mersenne-random-pure64-prof' 'grub-imageboot' 'libgcc1-dbg-armel-cross' 'gambas3-gb-net' 'e3' 'dvisvga' 'drraw' 'daisy-player' 'libssl0.9.8-dbg' 'assogiate' 'abiword' 'libx32gcc1-dbg' 'libc-dev-bin' 'gir1.2-soup-2.4' 'ecryptfs-utils-dbg' 'yabause-gtk' 'rand' 'python3-markups' 'python-kjbuckets' 'piwi' 'pius' 'php-horde-spellchecker' 'octave-java' 'r-cran-msm' 'manpages-pl-dev' 'libroar-compat1' 'libparpack2-dbg' 'libjpedal-jbig2-java' 'libghc-quickcheck-instances-doc' 'libghc-pcre-light-dev' 'libfsoresource-dbg' 'libktoblzcheck-dbg' 'liballegro-dialog5.0' 'libannotation-indexer-java' 'libgtlcore0.8' 'lib64objc-4.7-dev-powerpc-cross' 'gfarm-client' 'gcpegg' 'eclipse-cdt-valgrind' 'latex-cjk-common' 'chromium-browser' 'aplus-fsf' 'libqtscript4-qtbindings' 'ttf-marvosym' 'rsyslog-gnutls' 'language-pack-mk-base' 'language-pack-ku-base' 'logrotate' 'libydpdict2' 'kbedic' 'libzita-resampler-doc' 'libtorrent-rasterbar-dbg' 'libroar-compat2' 'liblua5.1-apr1' 'libokteta1core1' 'libgettext-ant-tasks-java' 'libclass-dbi-fromform-perl' 'harden' 'fonts-tomsontalks' 'emboss-test' 'libproc-pid-file-perl' 'bsdgames' 'libqtwebkit4' 'libqt4-qt3support' 'libghc6-feed-doc' 'xserver-xorg-input-evdev-lts-quantal' 'zita-lrx' 'yorick-dbg' 'trac-customfieldadmin' 'redet-doc' 'mono-fastcgi-server' 'libstlport4.6-dev' 'libqmi-glib0-dbg' 'netcdf-doc' 'libnet-scp-ruby1.8' 'libghc-network-conduit-dev' 'libghc-bindings-libzip-dev' 'php-xml-htmlsax3' 'libkxmlrpcclient4' 'fonts-yozvox-yozfont-new-kana' 'dvi2ps-fontdata-three' 'cheese-common' 'black-box' 'battleball' 'libgeis-dev' 'icon-ipl' 'libcfg4' 'ser-acc-db-module' 'libtulip-3.1' 'xserver-xorg-input-wacom-lts-quantal' 'uchardet' 'scotch' 'python-pefile' 'python-bjsonrpc' 'libqzion-dev' 'libsyntax-highlight-engine-kate-perl' 'liblog4cplus-dev' 'libgnomeada2.24.1' 'libghc-boomerang-dev' 'libghc-bitarray-dev' 'libasync-mergepoint-perl' 'gscan2pdf' 'globus-gatekeeper-dbg' 'dpm-copy-server-mysql' 'digikam-dbg' 'pilot' 'php-mail' 'libdata-dump-perl' 'libdb5.1-java-dev' 'language-pack-uz-base' 'gccgo-4.7-doc' 'pinfo' 'bacula-common-sqlite3' 'koffice-l10n-el' 'libgecode30' 'linux-backports-modules-cw-3.5-3.2.0-38-generic-pae' 'libkggznet4' 'xye-data' 'titanion-data' 'python-statsmodels-doc' 'libnuclient-dev' 'libjenkins-remoting-java-doc' 'libghc-iconv-dev' 'libghc-clientsession-dev' 'libclone-pp-perl' 'kdevelop-data' 'libfreehdl0' 'fookebox' 'ttf-mph-2b-damase' 'cl-sql-postgresql' 'xapian-examples' 'libnl-dev' 'libmono-csharp4.0-cil' 'imagemagick-common' 'libgstreamer1.0-0' 'libghc6-statistics-doc' 'libmumps-scotch-4.9.2' 'libcgns2-dbg' 'uphpmvault' 'opendnssec-enforcer-mysql' 'omhacks' 'libqsastime-dev' 'libmoosex-multimethods-perl' 'libgudev1.0-cil-dev' 'libghc-mime-mail-prof' 'iptstate' 'libeigen3-dev' 'certmonger' 'python-pymad' 'abiword-plugin-mathview' 'libfakefs-ruby' 'linux-image-extra-3.2.0-30-virtual' 'linux-image-extra-3.2.0-25-virtual' 'ucspi-proxy' 'spl-postgres' 'shinken-poller' 'looptools' 'logfs-tools-dbg' 'libspice-client-gtk-2.0-dev' 'libocsigenserver-ocaml-dev' 'libmuroar0-dbg' 'libdevice-usb-pcsensor-hidtemper-perl' 'libgecode32' 'extundelete' 'cyrus-nntpd' 'banshee-extension-lirc' 'system-config-cluster' 'python-django-openstack' 'libreoffice-help-cs' 'libdb5.1++' 'openoffice.org-hyphenation-hr' 'libgtkmm-2.4-doc' 'autofs5' 'qtmobility-dbg' 'qimo-games' 'python-yubico-tools' 'notmuch-emacs' 'libsikuli-script-jni' 'libroot-misc-minicern5.34' 'libopendbx1' 'libsmokekdeui4-3' 'libgpelaunch0-dbg' 'libghc-email-validate-doc' 'ladr4-apps' 'rusersd' 'elvis-tiny' 'libmtcp1' 'buzztard-bsl' 'babiloo' 'slice' 'libpengine3' 'libgnujaf-java-doc' 'libghc6-zlib-dev' 'supercollider-dev' 'pd-mapping' 'libroot-graf2d-gpad5.34' 'libpolybori-groebner-0.8-3-dbg' 'plotmm-examples' 'libmail-rfc822-address-perl' 'librdf-trineshortcuts-perl' 'libghc-csv-conduit-prof' 'gtkwave' 'gnome-mud' 'ttf-oflb-euterpe' 'ttf-breip' 'eclipse-xsd' 'paw-demos' 'acorn-fdisk' 'xserver-common' 'docbook-xsl' 'accountsservice' 'libviennacl-doc' 'glx-alternative-mesa' 'cl-umlisp' 'r-cran-dosnow' 'madison-lite' 'uim-viqr' 'libtulip-3.7' 'libsox-fmt-ao' 'libsnmp-mib-compiler-perl' 'libqglviewer-qt4-2' 'libghc-ansi-terminal-dev' 'libatk1-ruby1.8' 'uvcdynctrl' 'libglyr1' 'openscenegraph' 'ttf-kouzan-mouhitsu' 'ffindex-dbg' 'dtc-xen-firewall' 'libjs-coffeescript' 'asc-data' 'libreoffice-help-el' 'liblua5.1-rrd0' 'libgoocanvas-common' 'openoffice.org-hyphenation-hu' 'gir1.2-gkbd-3.0' 'python-docutils' 'libsocket6-perl' 'libtao-tkresource-dev' 'libghc6-hsx-prof' 'fossology-agents-single' 'raster3d-doc' 'xmille' 'varmon' 'tcpstat' 'ruby-activeresource-2.3' 'r-cran-fcopulae' 'python-pykcs11' 'picosat' 'rubyfilter-doc' 'horae' 'libbjack-ocaml-dev' 'lib64objc4-powerpc-cross' 'gpe-taskmanager' 'globus-gridftp-server-dbg' 'gcc-4.7-multilib-powerpc-linux-gnu' 'debian-reference' 'pyflakes' 'otf2bdf' 'elvis' 'koffice-l10n-es' 'libobjc3-dbg-armhf-cross' 'linux-backports-modules-net-3.2.0-30-generic' 'linux-backports-modules-net-3.2.0-25-generic' 'video-dvdrip-doc' 'ascli' 'x11vnc-data' 'renpy-thequestion' 'python-drmaa' 'libjai-imageio-core-java' 'libpoe-component-pcap-perl' 'liblog4c-dev' 'libjsr311-api-java-doc' 'libhdfeos5-ruby' 'libstring-random-perl' 'libcssparser-java' 'libclass-std-fast-perl' 'libclass-date-perl' 'mozc-data' 'libgfortran-4.7-dev-powerpc-cross' 'fp-utils' 'clementine' 'libreoffice-help-fi' 'libtotem-pg4' 'ubuntu-orchestra-modules-glusterfs' 'qlo10k1' 'libghc6-x11-xft-dev' 'koffice-l10n-et' 'linux-firmware-nexus7' 'utalk' 'ubuntu-ui-toolkit-examples' 'trueprint' 'lyricue' 'libzmq-dbg' 'libqxmpp0' 'oar-doc' 'liblaf-plugin-java' 'ruby-hyperestraier-doc' 'libfile-pid-perl' 'globus-gram-job-manager-fork-setup-seg' 'guile-g-wrap' 'erlang-jinterface' 'dcfldd' 'libbrasero-media3-dev' 'haskell-platform-prof' 'linux-headers-lbm-3.2.0-31-generic' 'linux-headers-lbm-3.2.0-26-generic' 'trac-jsgantt' 'python-zope.app.apidoc' 'pclcomp' 'libpoppler-glib-ruby1.8' 'liblua5.1-wsapi-fcgi-1' 'libfile-copy-link-perl' 'umbrello' 'kcalc' 'xpilot-ng' 'gnome-software-manager' 'globus-xioperf' 'fwlogwatch' 'libplexus-compiler-api-java' 'python-gtkglext1' 'printer-driver-pxljr' 'libtxc-dxtn-s2tc0' 'libstreams-dev' 'mplayer' 'openoffice.org-hyphenation-it' 'ubuntu-artwork' 'signon-keyring-extension' 'koffice-l10n-gl' 'linux-backports-modules-hv-precise-virtual' 'linux-backports-modules-cw-3.4-3.2.0-37-generic-pae' 'linux-image-3.2.0-37-generic' 'sslscan' 'php-horde-url' 'opensaml2-tools' 'mrbayes' 'libunity-2d-private0' 'libnmz7-dev' 'libcolorpicker-java' 'jlatex209-base' 'libgl2ps0' 'libwww-curl-perl' 'texlive-common' 'mysql-server-5.5' 'libcogl-pango12-dbg' 'koffice-l10n-fr' 'gnome-format' 'fglrx-experimental-9' 'xblast-tnt-images' 'set6x86' 'python3-passlib' 'swish-e' 'libstarlink-ast-dev' 'libjson-java' 'libiulib0' 'libghc-tensor-doc' 'kyototycoon-dbg' 'timemon.app' 'qgis' 'furiusisomount' 'courier-doc' 'cb2bib' 'rgmanager' 'python-roman' 'libavfilter-dev' 'mcp-account-manager-uoa' 'libghc6-binary-dev' 'xfce4-mailwatch-plugin' 'triplea' 'rant' 'plt-scheme-doc' 'm17n-lib-bin' 'libvanessa-logger0' 'libuim-data' 'libsbjson2.3' 'libcgi-untaint-date-perl' 'libalsaplayer0' 'lemonpos' 'connman-doc' 'codeblocks-contrib-dbg' 'imapproxy' 'cdfs-src' 'buthead' 'blackbox-themes' 'libreoffice-help-es' 'libboost-filesystem1.46-dev' 'qgit' 'ghostscript-doc' 'libpcap0.8' 'lockfile-progs' 'mcollective-middleware' 'nvidia-173-updates-dev' 'python-liblas' 'primaxscan' 'nautilus-image-converter' 'mueller7-dict' 'liburi-title-perl' 'libraul-doc' 'libjpeg-turbo-progs' 'jmeters' 'gfceu' 'libmapi0' 'org-mode' 'crrcsim-data' 'coinor-libdylp-doc' 'arpwatch' 'python3-gpgme' 'libreoffice-help-et' 'libcdt4' 'koffice-l10n-ja' 'libjasper-java' 'xsnow' 'libsbigudrv2-dev' 'ucarp' 'tryton-modules-country' 'radio' 'python-quickly-core' 'morse-x' 'libghc-hdbc-prof' 'libghc-crypto-prof' 'libfuzzy-dev' 'libdca0' 'gir1.2-keybinder-3.0' 'cipux-object-tools' 'ampache' 'libx86-1' 'libreoffice-help-eu' 'libreoffice-help-dz' 'phonon-backend-null' 'language-pack-gnome-gd-base' 'language-pack-gnome-fi-base' 'language-pack-gnome-en-base' 'libconfdb-dev' 'autogen' 'beast-mcmc-examples' 'predictprotein' 'libxml-libxml-iterator-perl' 'libpcp-pmda3-dev' 'openturns-wrapper' 'libiconv-hook-dev' 'libcsfml-dev' 'i3' 'ftdi-eeprom' 'fbpanel' 'libticcutils1' 'python-nipype' 'libcache-cache-perl' 'libauthen-ntlm-perl' 'libreoffice-help-gl' 'libqca2-plugin-gnupg' 'finch' 'screen' 'pysdm' 'libgradle-maven-java' 'unison-all-gtk' 'tntnet' 'sofia-sip-bin' 'remuco-vlc' 'python-multipartposthandler' 'php-net-nntp' 'octave-pkg-dev' 'libzeromq-perl' 'libqdaccolib-dev' 'libopencv-photo-dev' 'libjenkins-htmlunit-java-doc' 'libgstreamer0.10-cil-dev' 'libghc-hspec-prof' 'libghc-hxt-doc' 'libghc-highlighting-kate-doc' 'libethos-doc' 'lcgdm-dbg' 'ftpcopy' 'fb-music-low' 'python3-chardet' 'linux-image-3.8.0-19-generic' 'libx32tinfo5' 'libreoffice-help-fr' 'libmono-system-web-services4.0-cil' 'libthai-dev' 'language-pack-kde-gl-base' 'libgfccore-2.0-0c2a-dbg' 'lazarus-ide-0.9.30.2' 'libpvcam' 'scim-unikey' 'python-sphinxcontrib.spelling' 'luakit' 'libmlpost-ocaml-doc' 'libmath-algebra-symbols-perl' 'libghc-blaze-builder-conduit-doc' 'libgenome-1.3-0' 'libflute-java' 'libflann-dev' 'kdm-theme-tibanna' 'gobby-0.4' 'libgnuradio-noaa3.6.1' 'navit-graphics-gtk-drawing-area' 'gir1.2-fcitx-1.0' 'ack-grep' 'libtext-aspell-perl' 'python3-newt-dbg' 'libxxf86dga1-dbg' 'libreoffice-help-hi' 'language-pack-gnome-os-base' 'hardening-wrapper' 'libhtml-parser-perl' 'gnome-control-center' 'trac-roadmap' 'pixz' 'syncbbdb' 'python-nipy' 'lua-lgi-dev' 'libroot-net-bonjour-dev' 'libopenvdb-tools' 'libiscsi1' 'libio-handle-util-perl' 'libghc-monadcatchio-transformers-prof' 'libfelix-gogo-shell-java-doc' 'gobby-0.5' 'emacs-calfw' 'python-dbus-dbg' 'libusb++-dev' 'libqt5sql5-psql' 'libart2.0-cil' 'libconfdb4' 'libboost-program-options1.46.1' 'mythplugins' 'manpages-posix' 'systemtap-grapher' 'python-numexpr-dbg' 'pure-ftpd-postgresql' 'mpg123-el' 'libsmokekio3' 'libautounit-dev' 'lazarus-ide-0.9.30.4' 'libkvilib4' 'libjaba-client-java' 'jabber-muc' 'fonts-gfs-theokritos' 'libpocofoundation9' 'libreoffice-help-ja' 'libmono-system-runtime2.0-cil' 'fusionforge-plugin-hudson' 'linux-backports-modules-cw-3.3-3.2.0-36-generic-pae' 'ruby-progressbar' 'libmaven-dependency-plugin-java' 'libghc-simpleirc-doc' 'launchy-skins' 'gpe-icons' 'gnome-pie' 'glaurung' 'gcovr' 'libopenjpeg2' 'bandwidthd' 'aspectc++' 'libexception-class-perl' 'jflex' 'gir1.2-dbusmenu-glib-0.4' 'libgnokii6' 'unace-nonfree' 'lua-sql-doc' 'libterm-query-perl' 'libsrf-dev' 'libsexp-processor-ruby1.9.1' 'libnet-cli-interact-perl' 'libjuman-dev' 'libjs-jsrender' 'libgoogle-gson-java-doc' 'libgoogle-glog0' 'libcommons-csv-java-doc' 'libapache2-mod-rivet-doc' 'indi-bin' 'libgpelaunch0' 'gnubg-data' 'a7xpg-data' 'texpower' 'libsasl2-modules' 'clamav-dbg' 'gir1.2-gda-4.0' 'gambas2-gb-xml-rpc' 'telepathy-gnome' 'nodejs-dev' 'libsimage20' 'libgnokii7' 'font-manager' 'kpresenter' 'libgles2-mesa-dev' 'fonts-lao' 'libvmtk0.9' 'timer-applet' 'libucommon3' 'libobjc2-armel-cross' 'ezgo-network' 'libbeidlibopensc2' 'gtktrain' 'unity-webapps-grooveshark' 'sshuttle' 'pyrit' 'xclip' 'libsetools-tcl' 'libmedimport0' 'libmaven-scm-java-doc' 'libgrib2c-dev' 'gnome-robots' 'geany-plugin-pg' 'xserver-xorg-video-r128-dbg' 'libbonoboui2-common' 'koffice-l10n-hu' 'xvidenc' 'userv' 'polyml' 'openoffice.org-hyphenation-lt' 'python-museek' 'tm-align' 'lurker' 'libgeo-point-perl' 'libeegdev0-dbg' 's3dosm' 'fp-units-gtk' 'fenix-plugins' 'liblua5.1-socket2' 'dssi-utils' 'doodle-dbg' 'texlive-lang-cjk' 'qtbase5-examples' 'language-pack-gnome-nan' 'libspeex1' 'xscreensaver' 'sun-javadb-doc' 'series60-remote' 'doc-rfc-std' 'teseq' 'scim-tables-additional' 'r-base-dev' 'notmuch' 'mono-4.0-service' 'via-bin' 'libvanessa-adt-dev' 'uim-byeoru' 'libtumbler-1-dbg' 'librra-tools' 'libqdjango-db0' 'liblpsolve55-dev' 'libghc-clocked-doc' 'libghc-clock-prof' 'libcmdparse2-ruby1.8' 'libucommon5' 'frescobaldi' 'icecast2' 'docvert-libreoffice' 'libguichan-0.8.1-1' 'libapm1' 'gir1.2-gnomedesktop-3.0' 'gcj-jdk' 'libnotify-bin' 'openoffice.org-mysql-connector' 'libopenspc0' 'zapping-dbg' 'pyxplot-doc' 'lsh-server' 'libparpack2-dev' 'libgruff-ruby1.8' 'libfsoresource-dev' 'libecasound-ruby1.8' 'libgpp4-0' 'libspring-context-java' 'libgda-5.0-postgres' 'gambas3-gb-pdf' 'dico-module-mediawiki' 'cloud-initramfs-dyn-netconf' 'cl-sql-sqlite' 'krita' 'wmaker' 'qt3-linguist' 'mxallowd' 'libtorrent-rasterbar-dev' 'libtaoframework-physfs-cil-dev' 'libsvnkit-java-doc' 'libglobus-ftp-control-dev' 'libghc-pcre-light-doc' 'libdatetime-format-ical-perl' 'libcos4-1-dbg' 'libxml-atom-service-perl' 'kpartsplugin' 'plasma-dataengines-addons' 'hmmer-doc' 'ttf-sawarabi-gothic' 'bb' 'apticron' 'libsearchclient0' 'libav-tools' 'koffice-l10n-it' 'python3.2-examples' 'yorick-dev' 'sks-ecc' 'scheme2c-doc' 'pd-earplug' 'octave-splines' 'libperlx-maybe-perl' 'libkmfl0' 'libdbix-class-cursor-cached-perl' 'kvirc-modules' 'fcitx-table-stroke5' 'asc-music' 'libpisock9' 'bc' 'libtao-orbsvcs-dev' 'libghc6-hdbc-postgresql-dev' 'koffice-l10n-kk' 'icomlib-doc' 'unity-webapps-yahoonews' 'python3-dateutil' 'python-gamera-dbg' 'python-pynag' 'pmtools' 'glest-data' 'libvte-ruby1.8-dbg' 'libunity-tools' 'libhugs-glut-bundled' 'libghc-network-conduit-doc' 'libghc-bindings-libzip-doc' 'libanet0.1' 'indi-dbg' 'lightsoff' 'unicode-data' 'coinor-libcbc-dev' 'libreoffice-help-hu' 'libmono-microsoft-build-utilities-v4.0-4.0-cil' 'libglib2.0-cil-dev' 'libgeis-doc' 'libextutils-pkgconfig-perl' 'printer-driver-postscript-hp' 'r-noncran-lindsey' 'libjmathtex-java' 'libcheese3' 'libktorrent3' 'webcamd' 'scolasync' 'ruby-activeresource-3.2' 'python3-pyside.qttest' 'python-xmlmarshaller' 'php-horde-text-flowed' 'libstatgrab-dev' 'libpthreads-mingw-w64' 'libjs-codemirror' 'libghc-boomerang-doc' 'libghc-bitarray-doc' 'libg3d-dbg' 'libethos-1.0-0' 'libboost-mpi-python1.53-dev' 'libboost-mpi-python1.48-dev' 'libdrmaa1.0' 'libvolk0.0.0' 'ctdb-dbg' 'ipython' 'libmono-relaxng2.0-cil' 'libdbi1' 'friends' 'libgrilo-0.1-dev' 'virtualbox-guest-x11' 'coq-doc-html' 'west-chamber-common' 'vdr-plugin-spider' 'simgear-dev' 'libts-bin' 'ruby-opengl' 'libnl-doc' 'libghc-numtype-prof' 'libghc-iconv-doc' 'libghc-clientsession-doc' 'libgeronimo-jpa-3.0-spec-java' 'libmumps-scotch-4.10.0' 'libavc1394-tools' 'libhtmlparser-java' 'libcodeblocks0' 'bf' 'libmono-http4.0-cil' 'libxi-dev' 'language-pack-an-base' 'libdrm-intel1' 'libilf-java' 'libghc6-uulib-prof' 'libalogg-dev' 'libmudflap0-4.4-dev-armhf-cross' 'dates' 'tapecalc' 'simpleid-ldap' 'olvwm' 'lilv-utils' 'libquantum7' 'libmusicbrainz3-dev' 'liblua5.1-svn-dev' 'libhivex-bin' 'haskell-uulib-doc' 'libghc-hdbc-sqlite3-prof' 'libeigen3-doc' 'libktorrent5' 'libdouble-conversion0' 'libc6-dev-armel-cross' 'libgtk2-notify-perl' 'driconf' 'dialign-tx' 'tdiary-theme' 'xutils' 'acpi' 'libgrip-dev' 'gvfs-libs' 'libjs-jquery' 'hplip' 'fonts-moe-standard-song' 'tntnet-demos' 'qtmobility-dev' 'python-pyisomd5sum' 'mplayer2-dbg' 'libphone-ui-shr' 'libjodreports-java' 'libevemu1' 'ruby-openid' 'bristol-data' 'afflib-dbg' 'libphp-adodb' 'unity-scope-gdrive' 'python-renderpm-dbg' 'libreoffice-help-it' 'libfltk1.1-dbg' 'libavahi-ui-gtk3-0' 'gir1.2-poppler-0.18' 'libglewmx1.5' 'relational' 'python-nmap' 'paredit-el' 'libsundials-serial' 'ruby-odbc' 'libcgi-application-plugin-autorunmode-perl' 'libauthen-passphrase-perl' 'libzeroc-ice34' 'liburfkill-glib0' 'gftp-text' 'gwsetup' 'libcheese7' 'cameleon-doc' 'cabal-debian' 'libgps20' 'an' 'python-ubuntuone-control-panel' 'language-pack-mi-base' 'language-pack-ks-base' 'dh-apparmor' 'libghc6-zlib-doc' 'libghc6-digest-prof' 'koffice-l10n-nb' 'libglewmx1.6' 'supercollider-doc' 'sugar-physics-activity' 'libnetfilter-cttimeout1' 'liblua5.1-event-dev' 'libghc-monoid-transformer-dev' 'libcgi-application-plugin-captcha-perl' 'kdevelop-pg-qt' 'ibus-table-erbi-qs' 'libgdal1-dev' 'colorname' 'charm-helper-sh' 'blosxom' 'balder2d' 'texlive-latex-extra-doc' 'php5-sqlite' 'libsignon-qt1' 'libopenobex1-dev' 'libcvaux2.3' 'libbuoy-java' 'libdns81' 'therion' 'python-zc.catalog' 'nfdump-flow-tools' 'libtext-patch-perl' 'libgtkstylus' 'libghc-ansi-terminal-doc' 'icatalan' 'gifti-bin' 'gcc-opt' 'comixcursors-lefthanded' 'libdate-calc-perl' 'bochs-svga' 'aolserver4-nsopenssl' 'libreoffice-help-km' 'libgoogle-perftools4-dbg' 'pokerth-server' 'libclass-inspector-perl' 'libbcpg-java-doc' 'libgcr-3-1' 'm4' 'python-tgmochikit' 'yauap-dbg' 'socklog' 'servicefw' 'python-translitcodec' 'pysycache-click-sea' 'pysycache-buttons-wolf' 'libtelepathy-logger-qt4-1-dbg' 'libperl6-say-perl' 'libpam-blue' 'libgeronimo-ejb-3.0-spec-java' 'libcvaux2.4' 'libclips-dev' 'inn2-inews' 'dynare-doc' 'doc-debian' 'crossfire-maps' 'aptfs' 'aprsd' 'munin-node' 'libx32readline6' 'libglewmx1.8' 'syslog-ng-mod-mongodb' 'ruby-actionmailer-2.3' 'python-webassets-doc' 'licq-plugin-autoreply' 'libxdelta2' 'libweather-com-perl' 'libuser1-dev' 'maliit-framework' 'liblog4c-doc' 'libzmq-dev' 'libapache2-mod-ldap-userdir-dbg' 'ifmetric' 'clustalo' 'sdcc-ucsim' 'aggregate' 'libtemplate-plugin-gd-perl' 'libreoffice-help-ko' 'libgtop2-dev' 'libbonoboui2-0' 'language-pack-kde-nds-base' 'language-pack-gnome-mhr' 'ibus-pinyin' 'libheimbase1-heimdal' 'dc' 'cdebconf-gtk' 'gconf2' 'libghc6-x11-xft-doc' 'libvmtk1.0' 'xnbd-server' 'ubuntu-packaging-guide-pdf-es' 'seahorse-nautilus' 'libtidy-ruby' 'libghc-shakespeare-text-dev' 'libghc-persistent-template-prof' 'libdbus-ruby' 'libbrahe-1.3-3' 'libkdepimui-mobile' 'gpe-ownerinfo' 'libobby-0.4-1' 'geda-doc' 'cyrus-clients-2.2' 'audacious-plugins-data' 'ppl-dev' 'libx32objc-4.7-dev' 'libwavpack-dev' 'exim4-daemon-heavy-dbg' 'libzerg-dbg' 'libghc6-edison-api-dev' 'tryton-modules-account-invoice-history' 'python-lucene-dbg' 'mediawiki-extensions-base' 'libjemalloc1-dbg' 'libghc-hjscript-dev' 'libogg-ocaml-dev' 'libhtml-tiny-perl' 'libbeansbinding-java-doc' 'libactivemq-activeio-java' 'libjs-jquery-jplayer' 'gource' 'gir1.2-itl-1.0' 'python-ufl-doc' 'dooble' 'rsh-server' 'imanx' 'mt-st' 'at' 'uwsgi-plugin-probeconnect' 'unison2.27.57-gtk' 'ttf-sazanami-mincho' 'safecopy' 'python-zc.table' 'opencity-data' 'obrowser-doc' 'nunit-console' 'nordugrid-arc-plugins-needed' 'mssstest' 'manpages-de-dev' 'libjboss-messaging-java' 'libglib2-ruby' 'libgoocanvasmm-2.0-6' 'gforth' 'geki2' 'g++-4.7-multilib-arm-linux-gnueabihf' 'freemedforms-libs' 'libextractor-plugins' 'cyrus-clients-2.4' 'collectd' 'rats' 'python3-sip' 'openssl-blacklist' 'libminiupnpc8' 'strace' 'libmeep-mpi6' 'sugar-calculate-activity' 'ruby-mkrf' 'roundcube-plugins-extra' 'rbot' 'libstarlink-ast-doc' 'librestclient-ruby' 'libposix-strptime-perl' 'libode-dev' 'libns3-dev' 'libnet-scp-expect-perl' 'libirclib-java' 'libinotify-ruby1.9.1' 'libhtmlentities-ruby1.9.1' 'kbuild' 'tetrinetx' 'gem-plugin-lqt' 'geki3' 'gcalcli' 'libmodplug-dev' 'dvbstreamer' 'epiphany-extensions' 'libregexp-assemble-perl' 'python-imaging-tk' 'rhino-doc' 'dovecot-sqlite' 'bacula-traymonitor-dbg' 'libghc6-binary-doc' 'librra0' 'libqextserialport-dbg' 'libhtml-html5-outline-perl' 'libcoderay-ruby1.8' 'libskk0' 'freewnn-cserver' 'denemo' 'vim-gui-common' 'speex-doc' 'python-pisock' 'libsqlite3-dev' 'java-common' 'dosfstools' 'libghc6-glade-dev' 'linux-headers-3.2.0-32-virtual' 'linux-headers-3.2.0-27-virtual' 'xmms2-plugin-avcodec' 'umview-mod-umlwip' 'qtscript5-dbg' 'python-pyexiv2-doc' 'node-backbone-dirty' 'libnussl1' 'libmono-uia-cil-dev' 'libmimelib1c2a' 'libjena-iri-java' 'libdate-leapyear-perl' 'libdaq0' 'libapache2-mod-passenger' 'gnuradio-dev' 'fcitx-frontend-all' 'djview' 'di' 'dhcping' 'gcc-4.7-arm-linux-gnueabi-base' 'autodock-vina' 'wamerican-huge' 'gnome-osd' 'language-pack-gnome-nds' 'eog-dbg' 'ed' 'cyrus-sasl2-mit-dbg' 'libatspi-dbg' 'koffice-l10n-nl' 'libkggzmod4' 'xwelltris' 'oss-preserve' 'node-mkdirp' 'nautilus-image-manipulator' 'libzoom-ruby1.8' 'libusbip-dev' 'lua-rings-dev' 'libjlatexmath-fop-java' 'libindicate-qt-dev' 'libghc-readline-dev' 'libclass-handle-perl' 'libpostgresql-jdbc-java' 'globus-gram-job-manager-callout-error-dbg' 'cynthiune.app' 'libfile-slurp-unicode-perl' 'shared-desktop-ontologies' 'python3-requests' 'libxaw-doc' 'libcolord-dev' 'libcib1' 'xauth' 'libstdc++6-4.4-dbg' 'libdns95' 'python-sqlalchemy' 'libdeal.ii6.3.1' 'lcl-nogui-0.9.30.2' 'ruby-cassiopee' 'libjmock2-java-doc' 'libnarray-miss-ruby1.8' 'libghc-uuagc-cabal-dev' 'libghc-representable-functors-dev' 'libcsfml-doc' 'libcommons-openpgp-java-doc' 'libbam-dev' 'libpqxx-3.1' 'kalgebra-common' 'trackballs' 'jekyll' 'infon-devel' 'librenaissance0-dev' 'crossfire-doc' 'clustalw' 'libgstreamer1.0-0-dbg' 'libcsparse2.2.3' 'docbook-xsl-ns' 'compizconfig-backend-gconf' 'liblog4j1.2-java' 'libpt-1.10.10-plugins-alsa' 'stymulator' 'silentjack' 'r-cran-nws' 'python-tables-dbg' 'clustalx' 'libraspell-ruby1.9.1' 'libmojolicious-perl' 'libmaven-file-management-java' 'libjana-gtk-dev' 'libglobus-authz-dev' 'libghc-crypto-random-api-dev' 'libsmlnj-smlnj' 'gir1.2-gda-5.0' 'c++-annotations-ps' 'libaiksaurus-1.2-0c2a' 'libwnck-common' 'libthai-doc' 'openoffice.org-hyphenation-sh' 'fcheck' 'linux-tools-3.5.0-23' 'avidemux-plugins-gtk' 'python-pyruntest' 'phy-spread' 'xmms2-plugin-pulse' 'libroot-gui-dev' 'libopencore-amrnb0-dbg' 'libghc-safe-prof' 'libexpect-ocaml' 'libjsr107cache-java' 'libdbix-oo-perl' 'libsub-exporter-progressive-perl' 'lcl-nogui-0.9.30.4' 'liblangscan-ruby' 'python-mapnik2' 'flowscan' 'binutils-mingw-w64-i686' 'libfakefs-ruby1.8' 'python-dbus-dev' 'libxatracker1' 'libvncserver0' 'libboost-program-options1.46-dev' 'ienglish-common' 'libupower-glib1' 'libguytools1' 'libstarpu-contribmpi0' 'linux-tools-3.5.0-24' 'uniconfd' 'ruby-escape-utils' 'pinot' 'python-ltsp' 'libjava3d-java-doc' 'libghc-wai-app-static-dev' 'libghc-stream-dev' 'geany-plugin-vc' 'ept-cache' 'collectl' 'python3-six' 'libxcb-xevie0' 'libcurl4-nss-dev' 'openoffice.org-hyphenation-ro' 'gnome-color-manager' 'dmedia-importer' 'linux-tools-3.5.0-25' 'linux-backports-modules-headers-precise-generic' 'tropic-look' 'openigtlink-doc' 'nasty' 'libxdelta2-dev' 'libx500-dn-perl' 'libtest-weaken-perl' 'libplexus-compiler-java' 'libjs-twitter-bootstrap' 'libsdl-net1.2-dev' 'klipper' 'jenkins-instance-identity' 'installation-report-generator' 'libguytools2' 'libecore-file1' 'audacity-data' 'ubiquity-frontend-debconf' 'libreoffice-help-nl' 'libapr1' 'linux-tools-3.5.0-26' 'librpmio2' 'nautilus-dropbox' 'yagiuda' 'snacc' 'python3-cssutils' 'libpam-dbus' 'libotr2-bin' 'libdpkg-log-perl' 'libcommons-openpgp-java' 'libampsharp2.0-cil' 'ldapvi' 'hime-anthy' 'gnustep-games' 'fsviewer-icons' 'libxcb-xfixes0' 'openoffice.org-hyphenation-sl' 'gimp-data-extras' 'cu' 'gnunet-qt-dbg' 'linux-tools-3.5.0-27' 'linux-generic-lts-quantal' 'transcode-dbg' 'nano-tiny' 'libwtext33' 'libtest-lectrotest-perl' 'libsimplelist0-dev' 'librhash0' 'libogdi3.2' 'haskelldb-doc' 'folks-tools' 'amarok-common' 'xserver-xorg-video-openchrome' 'librpmio3' 'libdb5.3++' 'libdb5.1-java-gcj' 'libappindicator0.1-cil-dev' 'language-pack-gnome-el-base' 'language-pack-gnome-cv-base' 'command-not-found-data' 'libwtext29' 'scilab-full-bin-dbg' 'libsphinxclient-0.0.1' 'libjboss-marshalling-java' 'libmoosex-has-sugar-perl' 'gem-plugin-magick' 'cw' 'slime' 'kdemultimedia-kio-plugins' 'libxmu-headers' 'libplist++1' 'libxslt1.1' 'libmono-cairo4.0-cil' 'update-notifier-common' 'zanshin' 'xcp-vncterm' 'r-cran-colorspace' 'python-initgroups' 'perdition-odbc' 'libglui2c2' 'gvidm' 'denemo-doc' 'bve-train-br-class-323-3dcab' 'bbmail' 'avarice' 'thunderbird-locale-fy-nl' 'python3-libapparmor' 'libclamav-dev' 'libxrender-dev' 'language-pack-kde-he-base' 'language-pack-kde-fo-base' 'language-pack-kde-et-base' 'guile-2.0-dev' 'language-pack-zh-hant-base' 'tao-cosnaming' 'koffice-l10n-pl' 'python-pycuda-doc' 'xtermset' 'python-unipath' 'pinta' 'openstack-resource-agents' 'libtumbler-1-dev' 'libnfqueue-perl' 'libghc-dbus-dev' 'libbulletml-dev' 'gosa-plugin-kolab' 'jhead' 'gbrainy' 'libmoosex-role-withoverloading-perl' 'librpm2' 'python-all' 'libfile-copy-recursive-perl' 'language-pack-gnome-pl-base' 'language-pack-gnome-ast-base' 'fonts-thai-tlwg' 'libpostproc52' 'account-plugin-jabber' 'libgda-4.0-4-dbg' 'libcouchdb-glib-1.0-2' 'termsaver' 'sword-comm-tdavid' 'python-pyasn1-modules' 'nwchem-data' 'neverball-common' 'libsoundtouch0-dbg' 'librygel-server-2.0-1' 'libgsf-bin' 'libgraphite2-dev' 'libghc-comonads-fd-dev' 'libboost-atomic1.53.0' 'ruby-atk-dbg' 'libaac-tactics-ocaml' 'kismet' 'parley' 'ha' 'gnome-rdp' 'genromfs' 'javahelp2' 'cifer' 'squid-deb-proxy' 'librpm3' 'libreoffice-help-om' 'linux-image-3.2.0-23-lowlatency-pae' 'libghc6-cautious-file-prof' 'libgdal1-1.7.0-grass' 'gdecrypt' 'linux-backports-modules-hv-3.2.0-39-virtual' 'trac-diavisview' 'plasmate-data' 'libredcloth-ruby1.9.1' 'libswish-api-common-perl' 'libnet-hotline-perl' 'liblablgtkmathview-ocaml-dev' 'libglobus-gass-server-ez-dev' 'libghc-unix-time-dev' 'libduppy-ocaml' 'gobjc-4.7-multilib-arm-linux-gnueabihf' 'geany-plugin-tableconvert' 'freefem-examples' 'drizzle-plugin-query-log' 'libdoodle-dev' 'darts' 'cbrpager' 'ubuntu-desktop' 'python-cdd' 'metacity-common' 'seahorse' 'language-pack-kde-se-base' 'language-pack-kde-pt-base' 'openoffice.org-hyphenation-sr' 'ttf-sil-ezra' 'libghc6-regex-base-dev' 'tint2-dbg' 'tenshi' 'python3-uwsgidecorators' 'omega-rpg' 'netcdf-ruby' 'witty-dbg' 'libwpg-tools' 'libtorrent-rasterbar-doc' 'libsensors-applet-plugin0' 'libyaml-cpp0.3' 'libquickfix-dev' 'libgopersist-1-1' 'libglobus-ftp-control-doc' 'libghc-hxt-cache-dev' 'gnat-4.6-base' 'fonts-sil-dai-banna' 'sdcc-libraries' 'libimage-info-perl' 'libbcpg-java-gcj' 'iitalian' 'gpppon' 'g++-4.6-arm-linux-gnueabi' 'libqt3-i18n' 'linux-headers-3.2.0-24-generic' 'yorick-doc' 'suricata' 'python-gamera-dev' 'python-bs4' 'nilfs-tools-dbg' 'museeq-locales' 'mpe-source' 'lv2proc' 'libtk-tablematrix-perl' 'libmodern-perl-perl' 'liblua5.1-rex-pcre0' 'libclass-data-accessor-perl' 'libapache2-webauth' 'kdeplasma-addons' 'libnet6-1.3-0' 'fenics' 'dx' 'maildrop' 'libtext-textile-perl' 'account-plugin-zephyr' 'libghc6-hdbc-postgresql-doc' 'libaacs0-dbg' 'libnux-2.0-common' 'yubikey-personalization' 'tcpxtract' 'stumpwm' 'stopwatch' 'sendpage-common' 'r-cran-rgl' 'mactelnet-client' 'libmockobjects-java-doc' 'liblua5.1-markdown0' 'libg3d-dev' 'liblib-abs-perl' 'libalglib-2.6.0-dbg' 'libgfarm1' 'libunicap2' 'mythbuntu-live-autostart' 'digikam-doc' 'dhcpdump' 'deluge-web' 'coinor-libcbc-doc' 'apertium-es-ca' 'rpm-common' 'libreoffice-help-pl' 'dspam' 'vflib3' 'trac-wysiwyg' 'psi-plus-content-download' 'nilfs-tools' 'nam-dbg' 'libtaktuk3' 'libroot-graf2d-postscript-dev' 'libopennebula-java-doc' 'libplexus-bsh-factory-java' 'libtest-www-mechanize-psgi-perl' 'libantlr3c-dev' 'gwave' 'esteid' 'calligraflow-data' 'c++-annotations-html' 'kexec-tools' 'ipsec-tools' 'myspell-de-de-oldspell' 'deja-dup-backend-gvfs' 'gnome-video-arcade' 'scilab-overload' 'ruby-actionmailer-3.2' 'rsh-redone-client' 'ripoff-mp3-plugin' 'python-jsonpipe' 'moblin-sound-theme' 'libnet-jabber-loudmouth-perl' 'libgv-python' 'libgrilo-0.1-doc' 'libghc-patience-prof' 'libfelix-gogo-runtime-java-doc' 'libcoin60-runtime' 'libchild-perl' 'libchamplain-gtk-0.12-dbg' 'libgeotiff-epsg' 'gambas3-gb-opengl-glu' 'flam3' 'libecore-con1' 'qemu-system-misc' 'libmono-microsoft-visualc10.0-cil' 'librrd4' 'libcomerr2-dbg' 'gir1.2-friends-0.1' 'freeradius-krb5' 'libwebauth5' 'koffice-l10n-pt' 'qt3-examples' 'mp3diags' 'thunar-volman' 'snd-doc' 'python-semanage' 'libsocialtext-resting-perl' 'libnet-openssh-compat-perl' 'libmathml-ruby1.8' 'llvm-runtime' 'libghc-test-framework-th-prime-dev' 'libexception-class-trycatch-perl' 'libxml-security-c16' 'libconvert-units-perl' 'libautobox-dump-perl' 'ttf-femkeklaver' 'libglobus-xio0' 'xserver-xorg-video-vesa' 'qemu-system-mips' 'libnotify-dev' 'libfltk1.1-dev' 'libfftw3-quad3' 'python-h5py' 'pd-bassemu' 'libtogl-dev' 'qof-data' 'libopenigtlink1.9-dbg' 'libhtml-formfu-model-dbic-perl' 'libxmlsec1-nss' 'libescpr1' 'libwebauth6' 'hping3' 'gosa-plugin-pptp-schema' 'gbrowse' 'agda' 'openoffice.org-hyphenation-en-us' 'po-debconf' 'openoffice.org-writer2latex' 'beid-common' 'wzdftpd-mod-avahi' 'ubuntu-defaults-nl-nl' 'tropic-gdm-theme' 'ruby-method-source' 'python-mimeparse' 'plum' 'pfstools' 'osdclock' 'multimail' 'libmath-random-oo-perl' 'librepository-java' 'libktexteditor-perl' 'libelemental-dev' 'libboost-test1.53-dev' 'navit' 'fractgen' 'darkplaces' 'booth-pacemaker' 'qt4-doc-html' 'libgtkhtml-4.0-0' 'libboost-test1.48-dev' 'bbdb' 'mirror' 'tryton-modules-stock-location-sequence' 'rest-bench' 'ragel' 'pslist' 'python3-spf' 'pmccabe' 'pacemaker-mgmt-dev' 'profisis' 'maptransfer-server' 'libjruby-joni-java' 'libghc-text-prof' 'libghc-monoid-transformer-doc' 'libghc-glade-prof' 'libafsrpc1' 'hotkeys' 'libgnome2-perl' 'gnome-ppp' 'libggzmod4' 'fonts-unikurdweb' 'fgfs-aircraft-base' 'chipw' 'libafflib-dev' 'python3-markupsafe-dbg' 'python-twisted-bin-dbg' 'libgettextpo-dev' 'fonts-lklug-sinhala' 'perl-base' 'xemacs21-gnome-nomule' 'scim-hangul' 's5' 'redmine' 'tryton-modules-calendar-todo' 'python-pyode' 'libaccess-bridge-java-jni' 'libtext-findindent-perl' 'libghc-mbox-dev' 'libgeo-osm-tiles-perl' 'libg15-dev' 'libanyevent-dbd-pg-perl' 'hal-doc' 'libguestfs-dev' 'ecere-dev' 'gcc-4.7-powerpc-linux-gnu-base' 'liballegro-doc' 'python-keyring' 'ibritish-small' 'librest-0.7-0' 'ncurses-term' 'aptitude' 'libpdf-writer-ruby1.8' 'libboost-program-options1.48.0' 'drizzle-plugin-haildb' 'roundup' 'r-cran-gregmisc' 'python-django-treebeard' 'python-cdo' 'pike7.8-pcre' 'ncmpcpp' 'ruby-sinatra' 'libnabrit-dbg' 'liblualib50' 'libestraier-ruby' 'libdisplaymigration0-dbg' 'libcuba3' 'libboost-program-options1.53.0' 'libgfal-srm-ifce1' 'gcc-m68hc1x' 'libsmf0' 'radvd' 'libreoffice-help-pt' 'libpython3.3-minimal' 'libcairo2-dbg' 'grub-efi-ia32' 'libsignon-glib1' 'libterm-readkey-perl' 'yiff-server' 'xserver-xorg-video-trident-lts-quantal' 'chocolate-doom' 'vtgrab' 'vitables' 'tryton-modules-analytic-sale' 'rcov' 'plait' 'nvtv' 'neard' 'libusbtc08-1' 'libts-dev' 'libsx-dev' 'libntrack-dev' 'libmakefile-dom-perl' 'libpackage-pkg-perl' 'libsuperlu3' 'libdancer-xml0-dev' 'jd' 'ii' 'handlersocket-doc' 'libbml0' 'libafrodite-0.12-2' 'cook-rsh' 'chirp' 'mono-apache-server2' 'alienblaster' 'quantum-plugin-metaplugin' 'libtextwrap-dev' 'libgtop2-doc' 'language-pack-bg-base' 'libcitadel2' 'arcjobtool' 'ttf-mikachan' 'qtmultimedia5-dbg' 'pysol' 'postfix-cluebringer-mysql' 'mrxvt-common' 'libzerg-dev' 'libjcip-annotations-java' 'libhivex-dev' 'libghc-shakespeare-text-doc' 'kmix-dbg' 'libhugetlbfs0' 'gummi' 'gobjc++-4.6-multilib' 'fwsnort' 'python-visual' 'libgstreamer-plugins-base0.10-dev' 'icedtea-plugin' 'ubuntu-system-service' 'libgomp1' 'autoconf' 'qtdeclarative5-qtaudioengine-plugin' 'python-zope.app.testing' 'libopentk1.0-cil' 'libhepmc4' 'libghc-hjscript-doc' 'libghc6-edison-api-doc' 'mono-apache-server4' 'ketchup' 'smstools' 'libcitadel3' 'as31' 'python-libxslt1-dbg' 'linux-backports-modules-hv-3.2.0-36-generic' 'typo3-database' 'python-zope.event' 'micro-proxy' 'libxmmsclient++-dev' 'libxfcegui4-4-dbg' 'liblocale-ruby1.9.1' 'libmimedir-gnome-dev' 'libatd-ocaml-dev' 'libalog0.4.1-full-dbg' 'kyototycoon-doc' 'kde-telepathy-contact-list-dbg' 'kanif' 'honeyd-common' 'edenmath.app' 'libfile-fnmatch-perl' 'gv' 'libxkbcommon0' 'libflac++6' 'language-pack-mg-base' 'language-pack-nb-base' 'indicator-weather' 'sword-comm-scofield' 'stardict' 'nagiosgrapher' 'linux-lowlatency-pae' 'libqextserialport-dev' 'llvm-3.1-dev' 'libjava-gnome-jni' 'libdist-zilla-plugin-prepender-perl' 'libdata-structure-util-perl' 'libactiveldap-ruby1.8' 'xsoldier' 'im' 'garmin-ant-downloader' 'gambas3-gb-db-mysql' 'flexloader' 'check-postgres' 'libicapapi0' 'aes2501-wy' 'libx11-6-dbg' 'libreoffice-script-provider-bsh' 'libqt4-sql-odbc' 'libqt4-core' 'libqt4-opengl-dev' 'koffice-l10n-ru' 'zentyal-dhcp' 'xfonts-cronyx-isocyr-100dpi' 'vdr-genindex' 'torcs-data-tracks' 'science-typesetting' 'qtscript5-dev' 'python-dbf' 'foiltex' 'libtemplate-plugin-yaml-perl' 'libzemberek-java' 'libpgocaml-ocaml' 'libparrot-dev' 'libnet-sftp-foreign-perl' 'libemos-dev' 'libhttp-server-simple-static-perl' 'gambas3-gb-chart' 'clhep-doc' 'bootmail' 'arkose-gui' 'alure-utils' 'libreoffice-help-sk' 'libdbd-freetds' 'libdb5.3-stl-dev' 'language-pack-kde-zh-hans' 'eog-dev' 'libghc6-glade-doc' 'libatspi-dev' 'github-cli' 'libegl1-mesa-lts-quantal-dbg' 'vdr-plugin-streamdev-server' 'tk-table' 's3d-dbg' 'python-pyclamav' 'openhpi-plugin-snmp-bc' 'nagios-plugin-check-multi' 'fusionforge-plugin-mediawiki' 'libtzinfo-ruby' 'smpeg-plaympeg' 'libqmfconsole2-dev' 'libpcp-mmv1-dev' 'libghc-file-location-dev' 'libdjconsole-dev' 'libdevel-beginlift-perl' 'liblfc-perl' 'ht' 'gvncviewer' 'gnuradio-doc' 'gnu-smalltalk' 'glpk-utils' 'drizzle-plugin-auth-http' 'libchm1' 'python-radare2' 'libafterimage0' 'libreoffice-help-sl' 'python-dbg' 'librasqal3-dbg' 'language-pack-kde-zh-hant' 'libstdc++6-4.4-dev' 'libpcre3' 'libaprutil1-dbd-pgsql' 'libggigcp1-dev' 'alien-arena' 'renameutils' 'python-zope.mimetype' 'pike7.8-gtk' 'nutcpc' 'lsmbox' 'libmuroar-dev' 'libghc-tinyurl-prof' 'libghc-readline-doc' 'krb5-telnetd' 'vodovod' 'docbook-website' 'libgtk2-trayicon-perl' 'python-xappy' 'language-pack-gnome-pap' 'qpcr1k' 'smb-nat' 'rotix' 'osmo' 'libvmmlib-dev' 'libubuntuoneui-dev' 'libopencv-dev' 'libqrupdate1' 'libjs-jquery-lazyload' 'libghc-uuagc-cabal-doc' 'libghc-hcwiid-dev' 'libghc-hashable-dev' 'libghc-representable-functors-doc' 'libpoe-component-client-ping-perl' 'libfile-data-perl' 'junior-gnome' 'gkrellm-radio' 'fcitx-table-ziranma' 'dsdp-doc' 'dpsyco-skel' 'btanks-data' 'system-config-printer-udev' 'libgpod-cil-dev' 'libboost-regex1.49-dev' 'printer-driver-gutenprint' 'libinfgtk-0.5-0' 'strongswan-ikev1' 'libnode-node-expat' 'muttprofile' 'libvitacilina-perl' 'libspreadsheet-xlsx-perl' 'libstapler-adjunct-timeline-java' 'libjana-gtk-doc' 'libglobus-authz-doc' 'libghc-crypto-random-api-doc' 'kde-telepathy-debugger' 'afio' 'context-nonfree' 'chemical-structures' 'infernal' 'libcompress-bzip2-perl' 'libtiff-doc' 'libsignon-plugins-common1' 'libpython-dbg' 'libqt5xml5' 'bacula-director-sqlite3' 'apparmor-profiles' 'libghc6-language-c-dev' 'koffice-l10n-wa' 'koffice-l10n-uk' 'libcggl' 'strongswan-ikev2' 'serd-dbg' 'tessa' 'python-zope.contenttype' 'python-simpy-doc' 'python-dap' 'nslint' 'localization-config' 'libtmail-ruby-doc' 'libroot-math-mathmore-dev' 'liboobs-1-dev' 'libmaven-dependency-plugin-java-doc' 'libjboss-test-java' 'libghc-hashmap-dev' 'jconvolver' 'expeyes-doc-common' 'epsilon-bin' 'biosquid-dev' 'remmina-plugin-rdp' 'python-sqlalchemy-ext' 'python-dbus-doc' 'libreoffice-help-ru' 'libsmokeqtxml4-3' 'libmono-system-web-dynamicdata4.0-cil' 'empathy' 'koffice-l10n-sv' 'pyjamas' 'xmltv-gui' 'libqdjango-dbg' 'libghc-wai-app-static-doc' 'libghc-stream-doc' 'libdataobjects-ruby1.9.1' 'libcore-ocaml-dev' 'le' 'hannah-data' 'python-foomatic' 'drizzle-plugin-auth-ldap' 'apwal' 'libreoffice-officebean' 'gir1.2-networkmanager-1.0' 'libghc6-cairo-dev' 'koffice-l10n-tr' 'postgresql-doc-8.4' 'linux-image-3.5.0-24-generic' 'linux-image-3.5.0-19-generic' 'libxatracker1-lts-quantal-dbg' 'xmms2-plugin-mpg123' 'seesat5' 'lxpanel-dbg' 'libxmlm-ocaml-dev' 'libsocialtext-resting-utils-perl' 'libroot-tree-treeplayer-dev' 'libnet-github-perl' 'libghc-word8-prof' 'libactiveresource-ruby' 'kde-window-manager-active' 'libfinance-quote-perl' 'gelemental' 'gambas3-gb-qt4' 'fonts-gfs-complutum' 'libdspam7-drv-sqlite3' 'cl-split-sequence' 'jpilot' 'libgeronimo-jms-1.1-spec-java' 'systemd-services' 'erlang-observer' 'weechat-core' 'python-django-adminaudit' 'libuptimed0' 'libroot-montecarlo-vmc-dev' 'gnunet-tools' 'fortunes-bofh-excuses' 'bioperl-run' 'libghc6-feed-prof' 'linux-backports-modules-net-3.2.0-39-generic-pae' 'uwsgi-infrastructure-plugins' 'spice-client' 'python3-beaker' 'python-geohash-dbg' 'python-ase' 'r-cran-psy' 'libxmlrpc-epi-dev' 'libghc-pretty-show-prof' 'libc6-armhf-armel-cross' 'libball1.4-data' 'saga' 'libgo0-dbg-armel-cross' 'django-ajax-selects' 'mc' 'samba4' 'postfix-mysql' 'libframe6' 'libclass-c3-perl' 'dovecot-gssapi' 'iw' 'python-apt' 'openoffice.org-writer2xhtml' 'libghc6-ldap-prof' 'libboost-timer1.48.0' 'libcherokee-mod-mysql' 'writetype' 'synapse-dbg' 'singularity-music' 'python-virtkey' 'openttd-data' 'python-omniorb' 'mongodb-clients' 'librecad-data' 'libkohana3.2-mod-orm-php' 'libboost-timer1.53.0' 'jargon' 'gtk2-engines-oxygen' 'libgambc4' 'collabtive' 'citadel-mta' 'libmail-imapclient-perl' 'anjuta-common' 'icinga-dbg' 'nih-dbus-tool' 'libtao-flresource-2.0.1' 'nvidia-96-updates' 'smartshine' 'python-pebl' 'python-mtbl' 'plucker' 'ne-doc' 'sofia-sip-doc' 'librdf-prefixes-perl' 'libnet-ssh-gateway-ruby1.9.1' 'libstdc++6-armel-cross' 'libglobus-gridftp-server-control-dev' 'libghc-tls-extra-dev' 'libcontactsdb0-dbg' 'libslice34' 'gkrellm-mldonkey' 'eclipse-cdt-valgrind-remote' 'autodns-dhcp' 'libreoffice-help-sv' 'libftdipp-dev' 'libbctsp-java' 'guile-2.0-doc' 'linux-headers-3.2.0-36-lowlatency-pae' 'sblim-cmpi-common' 'python-objgraph-doc' 'pp-popularity-contest' 'medusa' 'matchbox-panel' 'linux-patch-xenomai' 'libghc-dbus-doc' 'icinga-cgi' 'ibus-array' 'fcitx-table-cns11643' 'cl-trivial-features' 'cipux-task-tools' 'bzr-email' 'python-chm' 'thunderbird-locale-nb-no' 'libreoffice-help-tr' 'libdatetime-format-strptime-perl' 'libantlr-java' 'xcp-storage-managers' 'ruby-net-ldap' 'python-pyxine' 'python-sphinxbase' 'powertop-1.13' 'mg' 'lltag' 'libogre-1.8-dev' 'liblfc-dev' 'libhttp-server-simple-authen-perl' 'libhdf5-mpich2-7-dbg' 'libgraphite2-doc' 'libghc-comonads-fd-doc' 'libcrypt-x509-perl' 'libkasten2controllers2' 'fuse-emulator-gtk' 'iwidgets4' 'ttf-fifthhorseman-dkg-handwriting' 'libxml-twig-perl' 'advi' 'a56' 'debpartial-mirror' 'libreoffice-help-vi' 'apt-xapian-index' 'doc-linux-text' 'libgl1-mesa-glx-lts-quantal' 'unity-2d-shell' 'xbindkeys' 'oar-server-mysql' 'witty-dev' 'libwebp-dev' 'libtachyon-dev' 'libmono-microsoft-visualbasic8.0-cil' 'libmodello-java-doc' 'libgnadecommon-dbg' 'libghc-unix-time-doc' 'libghc-regex-tdfa-dev' 'libjlayer-java' 'libgfortran3-dbg-armhf-cross' 'epic4' 'avr-evtd' 'apgdiff' 'libsemanage1' 'libvisio-0.0-0' 'libghc6-regex-base-doc' 'sauerbraten-dbg' 'xmms2-plugin-karaoke' 'x2' 'sqlitebrowser' 'mirall-i18n' 'libsfobjc4-dbg-armhf-cross' 'libquickfix-doc' 'libotr2-dev' 'liblablgtk2-gnome-ocaml-dev' 'libkdegames-dbg' 'libghc-hxt-cache-doc' 'libghc-contravariant-dev' 'libdivecomputer0' 'libconvert-ber-perl' 'libapache2-mod-auth-pubtkt' 'jcadencii' 'gramofile' 'slirp' 'epic5' 'nd' 'ttf-alee' 'python-dictdlib' 'gcj-jre' 'erlang-parsetools' 'libghc6-regex-tdfa-prof' 'gambas2-gb-form-mdi' 'ruby-gnome2' 'owfs-fuse' 'ne' 'mmorph' 'libscythestat-dev' 'libquickfix-python10' 'libphash0' 'libghc-pango-dev' 'libghc-libxml-sax-dev' 'lcmaps-plugins-basic-dummy' 'plasma-widgets-active' 'liblivetribe-jsr223-java' 'gftp-common' 'gccgo-arm-linux-gnueabihf' 'eiskaltdcpp-daemon-dbg' 'drupal6-mod-lightbox2' 'dpsyco-devel' 'doodle' 'deejayd-webui' 'crashme' 'python-subversion' 'libreoffice-emailmerge' 'libsmokephonon3' 'libexporter-lite-perl' 'hunspell-be' 'gir1.2-gtop-2.0' 'libnspr4-0d' 'xcolmix' 'python-peak.util' 'pybliographer' 'vprerex' 'pbs-drmaa1' 'libvala-0.20-dev' 'libpowerman0' 'libplayerc3.0-dev' 'libmodern-perl' 'liblasso3-dev' 'tomahawk' 'libhash-fieldhash-perl' 'libg3d-doc' 'libqtserviceframework1' 'isdnvboxserver' 'gigtools' 'ipcalc' 'python-elixir' 'bochs-x' 'banshee-extension-lastfmfingerprint' 'libbs2b0' 'aptsh' 'apertium-es-gl' 'kontact' 'xserver-xorg-video-qxl-dbg' 'xserver-xorg-video-siliconmotion' 'xinetd' 'libxcb-sync0-dbg' 'bacula-sd-pgsql' 'libfreeipmi10' 'liblaunchpad-integration-cil-dev' 'xtide-data' 'rnc-mode' 'python-zope.contentprovider' 'python-pybiggles' 'bnetd' 'openmpi-checkpoint' 'libxalan110' 'libsearch-queryparser-perl' 'libfpdf-tpl-php' 'libcgic-dev' 'liblog-agent-perl' 'leafpad' 'namazu2-index-tools' 'libchamplain-gtk-0.12-dev' 'giblib-dev' 'dpm-copy-server-postgres' 'libcpufreq0' 'xdotool' 'libsqlite0' 'libboost-math1.49-dev' 'libcpldrs12' 'v-sim-common' 'scsh-0.6' 'python-concurrent.futures' 'londonlaw' 'libtuxcap4.0' 'staden-io-lib-utils' 'openscenegraph-examples' 'libgtkhtml-editor0' 'libghc-fclabels-prof' 'xfce4' 'cube2font-dbg' 'confluence' 'python-pypdf' 'libcddb2' 'libudf0' 'libneon27-dbg' 'libboost-program-options1.49.0' 'language-pack-gnome-my-base' 'libindicator-messages-status-provider-dev' 'libgraphviz-dev' 'vusb-analyzer' 'wmbiff' 'ubuntustudio-video' 'science-nanoscale-physics-dev' 'r-cran-g.data' 'mpop-gnome' 'mjpegtools-gtk' 'libtidy-ruby1.8' 'libsource-highlight-qt4-dev' 'libserialport-ruby' 'libical-parser-sax-perl' 'libghc-x11-xft-dev' 'libghc-test-framework-th-prime-doc' 'libghc-authenticate-oauth-dev' 'libgfortran3-arm64-cross' 'libdevice-gsm-perl' 'libdbus-ruby1.8' 'herbstluftwm' 'hdf5-helpers' 'libcatalyst-view-petal-perl' 'c3270' 'agda-stdlib-doc' 'python3-urllib3' 'python3-pyqt4.qtsql' 'libslp1' 'libnotify-doc' 'hunspell-an' 'libfreeipmi12' 'e2fsck-static' 'triangle-bin' 'sfront' 'pegsolitaire' 'pegasus-wms' 'llvm-3.1-source' 'libx32go0-dbg' 'libsfstdc++6-armhf-cross' 'libpcp-mmv1' 'libkohana3.1-php' 'libtie-toobject-perl' 'libcollectdclient-dev' 'thailatex' 'gri-pdf-doc' 'fonts-sawarabi-mincho' 'disulfinder-data' 'cpputest' 'libcgroup1' 'xserver-xorg-video-mach64' 'ubuntu-sounds' 'texlive-humanities-doc' 'mysql-common' 'language-pack-kde-sc-base' 'openoffice.org-hyphenation-zu' 'groff-base' 'python-sendfile' 'python-avc' 'mp' 'theseus' 'libmpich-mpd1.0-dev' 'libferret-ruby1.8' 'libelemental-doc' 'libcpldrs20' 'fonts-senamirmir-washra' 'libalure1' 'python-imaging-doc-pdf' 'libfftw3-3' 'hunspell-da' 'python3-debian' 'python3-update-manager' 'linux-backports-modules-cw-3.6-3.2.0-39-virtual' 'firefox-gnome-support-dbg' 'libogmrip1' 'r-cran-rms' 'python-levenshtein-dbg' 'plasma-widget-pgame' 'otcl-shells' 'openbabel-gui' 'lv' 'libxml-tmx-perl' 'libwww-mechanize-autopager-perl' 'libropkg-perl' 'libproc-syncexec-perl' 'libpod-simple-wiki-perl' 'libplack-middleware-expires-perl' 'lua-svn-dev' 'libkosd2-dev' 'libghc-diagrams-lib-dev' 'libfsosystem-dbg' 'libgeronimo-validation-1.0-spec-java' 'libcvc3-5-jni' 'iprint' 'libgmerlin-avdec1' 'libcoin60' 'fcitx-pinyin' 'libbisho-common0' 'libss7-1' 'mime-construct' 'libudf-dev' 'libslp-dev' 'tao-event' 'libguestfs-doc' 'uwsgi-plugin-graylog2' 'python-dialog' 'lxde-common' 'libtulip-ogdf-3.7' 'libnabrit-dev' 'libindicate-gtk0.1-cil' 'libghc-mbox-doc' 'libdisplaymigration0-dev' 'libmath-random-perl' 'libjpgalleg4.4' 'mecab-ipadic' 'git-review' 'giggle-personal-details-plugin' 'mr' 'biblatex' 'basic256' 'libtext-autoformat-perl' 'akonadi-backend-mysql' 'ubuntu-wallpapers' 'jsmath' 'mysql-client-5.5' 'libreoffice-l10n-zh-cn' 'libcairo2-dev' 'hunspell-ar' 'libfusioninventory-agent-task-ocsdeploy-perl' 'fossology-agents' 'libva-cedarview-vaapi-driver' 'r-cran-rsqlite' 'python-nltk' 'pkgme' 'ophcrack-cli' 'nn' 'libucl1' 'libtm-perl' 'librg-exception-perl' 'libpodofo-utils' 'libopenimageio-dev' 'libimage-science-ruby' 'libglyr1-dbg' 'libghc-distributive-prof' 'freeciv-client-sdl' 'e2tools' 'community-themes' 'sbcl' 'libgvnc-1.0-0-dbg' 'mesa-common-dev' 'dwarves' 'python-qt3-dbg' 'libparanamer-java' 'libhfobjc3-dbg-armel-cross' 'libcloog-parma-dev' 'uuagc' 'sweethome3d-textures-editor' 'nauty' 'policyd-weight' 'php-horde-alarm' 'openclipart2-png' 'python-nitime' 'r-cran-qtl' 'libstomp-ruby' 'libripoff0' 'qtmultimedia5-dev' 'libpoe-loop-event-perl' 'libdb4.4-ruby1.8' 'ruby-dataobjects-sqlite3' 'kmix-dev' 'libkalarmcal2' 'mimetex' 'guile-cairo' 'gobjc++-4.7-arm-linux-gnueabihf' 'evolution-ews' 'cl-kmrcl' 'bandwidthd-pgsql' 'libasm1' 'xyscan' 'scidavis' 'octave-zenity' 'node-bones' 'mhwaveedit' 'mailto' 'libtie-array-iterable-perl' 'libsqlheavygtk0.1-0' 'libghc-shakespeare-dev' 'libghc-pcap-dev' 'libghc-hunit-dev' 'libfli-dev' 'libcommons-attributes-java' 'libanyevent-serialize-perl' 'gkrellmapcupsd' 'gif2apng' 'libdts-dev' 'ffproxy' 'mgetty-fax' 'rt-tests' 'gstreamer1.0-plugins-ugly' 'whois' 'php-net-ping' 'q-tools' 'uwsgi-plugin-cgi' 'ploader' 'parrot-doc' 'multex-base' 'mp3burn' 'makehuman' 'ruby-xmmsclient' 'librrdp-perl' 'presage' 'libmonogame-cil' 'liblingua-de-ascii-perl' 'libalog0.4.1-full-dev' 'libafrodite-0.12-dev' 'navit-graphics-qt-qpainter' 'geany-plugin-doc' 'flake' 'trousers' 'quantum-l3-agent' 'libgmp10-doc' 'libopencv-calib3d2.3' 'gnustep-back0.20' 'runsnakerun' 'python-pyglet' 'photon' 'mummy-doc' 'libpion-net-plugins' 'libsmokenepomuk3' 'libmimedir-gnome-doc' 'libktpcommoninternalsprivate-dbg' 'libghc-pem-prof' 'libdee-qt5-dev' 'libktoblzcheck1-dev' 'kdeartwork-theme-icon' 'libslv2-9' 'gorm.app' 'gladish' 'firebird2.5-examples' 'fonts-opendin' 'bluefish-dbg' 'libopenimageio1.1' 'kakasi' 'postgresql-doc-9.1' 'libboost-filesystem-dev' 'esound-common' 'transcode-utils' 'zsh-beta-doc' 'ubuntu-packaging-guide-epub' 'r-cran-amelia' 'libsoil1-dbg' 'ruby-ruby2ruby' 'libots-dev' 'llvm-3.1-doc' 'libghc-xml-types-prof' 'libghc-random-shuffle-dev' 'libopencv-calib3d2.4' 'pi' 'libcal3d12-dev' 'libkonq5-dev' 'comparepdf' 'librrd-ruby1.9.1' 'libnet-xwhois-perl' 'tetex-brev' 'refdb-doc' 'python-django-model-utils' 'opencv-doc' 'mlterm-tiny' 'libskk-dbg' 'librra-dbg' 'libpoppler-cil-dev' 'libmethod-signatures-perl' 'libghc-options-prof' 'libalgorithm-dependency-perl' 'jardiff' 'imspector' 'systempreferences.app' 'python-sqlobject' 'python-txaws' 'gnustep-back0.22' 'ubuntuone-control-panel-qt' 'thunderbird-locale-en-gb' 'librasqal3-dev' 'python-dev' 'python-pyglew' 'libghc6-hjscript-dev' 'xmms2tray' 'xboing' 'ubuntu-packaging-guide-pdf-ru' 'pyscrabble-server' 'php5-interbase' 'otrs2-doc-de' 'mz' 'liblablgtk2-ocaml' 'libhtml-widgets-navmenu-perl' 'libghc-file-location-doc' 'kdocker' 'gpaint' 'gobjc++-arm-linux-gnueabihf' 'gnokii-dbg' 'muffin-common' 'libgraflib1-gfortran' 'printer-driver-foo2zjs' 'libstdc++6-4.4-doc' 'fonts-vlgothic' 'libgiigic1-dev' 'bouml-plugouts-src' 'linux-image-3.2.0-37-lowlatency' 'linux-backports-modules-cw-3.5-3.2.0-38-virtual' 'libghc-alut-dev' 'kile-doc' 'hdapsd' 'gosa-plugin-dhcp-schema' 'gambas3-gb-sdl' 'xserver-xorg-video-sis' 'ubuntuone-client-proxy' 'swift-doc' 'libserf1' 'libappindicator3-dev' 'language-pack-be-base' 'libtvanytimeapi-java' 'libcvc3-2' 'xserver-xorg-video-r128-lts-quantal' 'python-tables-doc' 'python-pocketsphinx-dbg' 'pytagsfs' 'rc' 'ncmpc' 'memdump' 'cluster3' 'libsnmpkit-dev' 'libopenvas2' 'libmatio-dev' 'libjasperreports-java-doc' 'libgstreamer0.9-cil' 'libgoocanvas-2.0-9-common' 'libginac2-dbg' 'libghc-hcwiid-doc' 'libghc-email-validate-prof' 'libghc-hashable-doc' 'libdeclarative-sensors' 'libdbm-deep-perl' 'libcudart5.0' 'libblocksruntime-dev' 'korundum4' 'firmware-tools-common' 'python-pymtp' 'axiom-doc' 'liblttoolbox3-3.1-0' 'thunderbird-dbg' 'libpython-dev' 'language-pack-kde-hne-base' 'cups-filters' 'libcpg-dev' 'countrycodes' 'sa-learn-cyrus' 'libmaliit-glib-dev' 'libjgroups2.6-java' 'libgnokii-dbg' 'libglobalhotkeys-ruby' 'libghc-ranges-prof' 'libpdf-reuse-perl' 'libboost-timer1.49.0' 'iprelay' 'gobjc-mingw-w64' 'gnustep-dl2-postgresql-adaptor' 'fteqcc' 'xawtv' 'libfile-remove-perl' 'libcommons-httpclient-java' 'quota' 'libusb-1.0-0' 'libtotem-plparser17' 'vala-0.10-doc' 'libghc6-testpack-prof' 'libghc6-language-c-doc' 'uwsgi-plugin-rsyslog' 'tryton-modules-dashboard' 'texworks' 're' 'python-pyjavaproperties' 'predict-gsat' 'post-faq' 'makefs' 'libvips15' 'libqdjango-dev' 'libghc-hashmap-doc' 'libqdbm-dev' 'libcpan-changes-perl' 'libcgi-application-plugin-messagestack-perl' 'kmplot' 'wap-wml-tools' 'hol88-contrib-source' 'swift-account' 'python-coverage' 'language-pack-ko-base' 'python-prowlpy' 'python-dhm' 'mpris-remote' 'libzinnia0' 'libsss-sudo' 'libutf8-all-perl' 'libnet-mac-perl' 'libnet-irr-perl' 'libunicode-maputf8-perl' 'libgtkglada-dbg' 'libgluegen2-build-java' 'libcore-ocaml-doc' 'horst' 'gstreamer-dbus-media-service' 'libglobus-xio-popen-driver0' 'g++-mingw-w64-x86-64' 'debomatic' 'libcvc3-5' 'libgwengui-qt4-0' '9base' 'xserver-xorg-video-modesetting' 'python-pyorbit' 'libatlas-base-dev' 'libglewmx1.6-dev' 'libdbusmenu-qt-dev' 'language-pack-fil-base' 'libghc6-cairo-doc' 'python-awn' 'linux-backports-modules-cw-3.6-3.2.0-36-generic' 'pq' 'wuzzah' 'python-markdown-doc' 'python-blist' 'php-cache' 'pd-iemmatrix' 'mricron-data' 'slepc3.2-doc' 'libpigment-dbg' 'libpar2-0' 'libtext-table-perl' 'libcwnn-dev' 'libplexus-container-default-java' 'gfal2-plugin-gridftp' 'gdebi-core' 'libdlrestrictions1' 'ezgo-office' 'transcode-doc' 'sparse' 'sc' 'php-text-password' 'nikola' 'libventrilo-dev' 'libremctl-dev' 'libplayerc++3.0' 'libghc-colour-dev' 'libenv-sanctify-perl' 'libconfig-ini-perl' 'libclass-insideout-perl' 'w3m-el-snapshot' 'preprocess' 'libbabeltrace-ctf0' 'libcapi20-3' 'udisks-doc' 'python-htmlgen' 'libtest-minimumversion-perl' 'libqtxmlpatterns4-perl' 'xfonts-naga10' 'xhtml-relaxng' 'sd' 'python-ooolib' 'pgtune' 'libspring-instrument-java' 'librdmawrap2' 'libdata-entropy-perl' 'coinor-libvol0' 'mcp-plugins' 'ri' 'libxxf86dga-dev' 'libgnome-keyring-dev' 'libdv-bin' 'libcorosync4' 'libmemchan-tcl' 'specimen' 'libpinyin2-dev' 'libgmp-ocaml' 'libclaw-application1' 'libclass-accessor-lite-perl' 'libcollectdclient0' 'nedit' 'python3-uno' 'language-pack-gnome-nso' 'python-lxml' 'python-turbomail-doc' 'wordpress-openid' 'seetxt' 'ppmd' 'mcollective-plugins-puppetd' 'libscalc-dev' 'liblua5.1-iconv0' 'libhighline-ruby-doc' 'libghc-tls-extra-doc' 'libdoxia-sitetools-java-doc' 'libbio-asn1-entrezgene-perl' 'gnome-chess' 'libeina1' 'tomcat7-common' 'gir1.2-gssdp-1.0' 'renrot' 'pv' 'libmysqld-pic' 'libghc-active-dev' 'libalberta2-dbg' 'lcas-lcmaps-gt4-interface' 'apt-dater' 'unity-2d-dbg' 'python-xcbgen' 'python-celery-doc' 'libmx-common' 'ubuntu-orchestra-provisioning-server' 'libpoppler19' 'wbemcli' 'vncsnapshot' 'rdup' 'omniorb-nameserver' 'python-twill' 'libzookeeper-mt2' 'libtext-quoted-perl' 'libgv-guile' 'libexpect-simple-perl' 'libdist-checkconflicts-perl' 'libcpuset-dev' 'kadu-common' 'libgwyddion2-0' 'focalinux-text' 'gdb-avr' 'asterisk-moh-opsound-wav' 'apertium-oc-ca' 'totem-common' 'aide' 'libcairo2' 'freeguide' 'torcs-data-cars' 'rafkill-data' 'witty-doc' 'libsmokesolid3' 'libnet-dbus-glib-perl' 'libkdegames-dev' 'libinline-ruby1.8' 'libicee12' 'libghc-regex-tdfa-doc' 'libghc-gluraw-prof' 'freefoam-user-doc' 'fai-quickstart' 'dpm-server-mysql' 'dnswalk' 'rfkill' 'python-glanceclient' 'eperl' 'libnotify4' 'libghc6-happstack-ixset-dev' 'libccgnu2-1.7-0' 'yaws-chat' 'servefile' 'python-satellites' 'python-pyramid' 'prelude-manager' 'otrs2-doc-en' 'maildir-utils-extra' 'libqtgconf-dev' 'libpath-class-file-stat-perl' 'libghc-contravariant-doc' 'armagetronad' 'argyll-dbg' 'apvlv' 'altree-examples' 'libebackend1.2-dev' 'libfontconfig1' 'openoffice.org-l10n-pa-in' 'wininfo' 'tf' 'r-cran-spc' 'php-text-figlet' 'octave3.2-info' 'necpp' 'libsendmail-pmilter-perl' 'libgnatvsn4.6-dbg' 'libghc-libxml-sax-doc' 'libghc-pango-doc' 'libghc-digest-prof' 'libghc-citeproc-hs-data' 'gstreamer0.10-vaapi-doc' 'talksoup.app' 'geany-plugin-gdb' 'xemacs21-bin' 'fcitx-table-array30' 'dvorak7min' 'aewm' 'libtime-local-perl' 'libxcb-sync0-dev' 'libvte-dev' 'libvala-0.18-0-dbg' 'unity-services' 'bash' 'linux-backports-modules-cw-3.5-3.2.0-40-generic' 'linux-backports-modules-cw-3.5-3.2.0-35-generic' 'sl' 'libsys-gamin-perl' 'libsidplayfp' 'libpolarssl-dev' 'libksane-dbg' 'libgpevtype-dev' 'python-telepathy' 'kdiamond' 'jython-doc' 'sane' 'gobjc-4.7-arm-linux-gnueabihf' 'fonts-sil-zaghawa-beria' 'fonts-century-catalogue' 'ocrfeeder' 'psi3' 'fig2sxd' 'checkbot' 'bochs' 'python-pyparsing-doc' 'python-greenlet-dbg' 'libconfig++8-dev' 'ibus-clutter' 'ghostscript-x' 'libasprintf0c2' 'fonts-arphic-bkai00mp' 'libnetfilter-conntrack3' 'libpoppler28' 'linux-image-3.2.0-40-generic-pae' 'linux-image-3.2.0-35-generic-pae' 'xfce4-notes-plugin' 'tuxpuck' 'sm' 'repsnapper' 'quassel-core' 'pyjamas-doc' 'pork' 'ruby-transaction-simple' 'libsinatra-ruby' 'libgtkglarea0.0-cil' 'libghc-libtagc-dev' 'libghc-lens-prof' 'libaudio-wav-perl' 'gpe-filemanager' 'libnet-patricia-perl' 'filetraq' 'libwfut-0.2-1' 'edubuntu-netboot' 'cxref' 'pppdcapiplugin' 'libneon27-dev' 'libibverbs-dev' 'libx11-xcb1' 'hunspell-fr' 'python-jinja-dbg' 'sn' 'rs' 'rancid-cgi' 'mcollective-common' 'ucommon-doc' 'libstatistics-basic-perl' 'libglrr-glib0' 'libcitadel-dev' 'libacexml-dev' 'joy2key' 'libgraphicsmagick1-dev' 'freeipmi' 'hardlink' 'circuslinux' 'carmetal' 'librsl1' 'libresample1' 'python-greenlet' 'libquvi-scripts' 'libjdom1-java' 'libnss-ldap' 'ibus-qt4' 'obsync' 'microcode.ctl' 'spf-milter-python' 'python-tvdb-api' 'python-cpl' 'posh' 'libsource-highlight-qt4-doc' 'libmono-addins-msbuild0.2-cil' 'libmimedir-dev' 'libindicate-gtk3-3' 'libghc-x11-xft-doc' 'libghc-wai-app-file-cgi-dev' 'libghc-authenticate-oauth-doc' 'libcvaux-dev' 'libbiblio-citation-parser-perl' 'jenkins-test-annotations' 'libstdc++6-4.7-dbg-armel-cross' 'donkey' 'between' 'autokey' 'xserver-xorg-video-qxl' 'unixodbc-bin' 'libnunit-cil-dev' 'libatm1' 'dict-wn' 'tao-ft' 'python-pyrad' 'python-pygooglechart' 'python-djblets' 'openhpi-plugin-ilo2-ribcl' 'node-block-stream' 'msva-perl' 'mcollective-plugins-centralrpclog' 'libtimingframework-java-doc' 'libjas-plotter-java' 'calligraactive' 'light-themes' 'libxcb-util0' 'dmeventd' 'ldap-auth-config' 'tk' 'sp' 'checkbox' 'libaprutil1-ldap' 'gfc-examples' 'verbiste' 'pyntor' 'plymouth-theme-xubuntu-logo' 'openscad-testing' 'xenomai-doc' 'libpango1-ruby' 'libkohana3.1-mod-auth-php' 'libisnativec-java' 'libhttp-link-parser-perl' 'libguichan-opengl-0.8.1-1' 'libfsosystem-dev' 'libsamba-hostconfig0' 'libcsfml-audio1.6' 'libboost-mpi-python1.46.1' 'iaxmodem' 'libgpiv3' 'libcarp-assert-perl' 'compass-fancy-buttons-plugin' 'cairo-dock-plug-ins' 'autofs5-hesiod' 'libmono-i18n-mideast4.0-cil' 'indicator-applet' 'python-gconf' 'lsb-build-base3' 'yokadi' 'vlc-plugin-sdl' 'qca2-utils' 'peg-solitaire' 'libsvm-dev' 'libnacl-dev' 'libghc-diagrams-lib-doc' 'libdate-calc-xs-perl' 'libclthreads-dev' 'libconfig-std-perl' 'gmtkbabel' 'ffdiaporama-data' 'c++-annotations-txt' 'xfonts-mona' 'unity-2d-common' 'tagainijisho' 'speech-tools' 'snarf' 'quickly-widgets' 'python-csa' 'makejail' 'libxmlrpc3-java-doc' 'libmaven-assembly-plugin-java' 'libghc-fclabels-dev' 'x86dis' 'libkyotocabinet16' 'grisbi-common' 'libmicrohttpd10' 'liblua5.2-dev' 'rhn-client-tools' 'afterstep' 'libcairo2-doc' 'indicator-status-provider-pidgin' 'python3-gnupg' 'python-wordpresslib' 'octave-info' 'nanoblogger-extra' 'monotone-extras' 'libtexttools-dbg' 'libmigemo-dbg' 'libgtkhtml3.16-cil' 'libghc-sfml-audio-prof' 'libghc-brainfuck-prof' 'libfile-rsync-perl' 'grhino' 'pilot-qof' 'cronutils' 'bear-factory' 'python-simplejson' 'dh-make-perl' 'language-pack-kde-ha-base' 'heimdal-multidev' 'docbook2x' 'gir1.2-gudev-1.0' 'utouch' 'libjs-khtmlib' 'linux-image-3.2.0-32-virtual' 'linux-image-3.2.0-27-virtual' 'trac-sensitivetickets' 'scim-modules-socket' 'otrs' 'shimmer-themes' 'madwimax' 'libmyproxy5' 'libjlha-java-doc-ja' 'libjellydoc-java' 'libghc-svgcairo-prof' 'libghc-base16-bytestring-dev' 'libflexdock-java-demo' 'libboost-python1.53-dev' 'liblhasa0' 'libcloog-ppl0' 'ttf-isabella' 'psad' 'gnumail.app' 'libboost-python1.48-dev' 'language-pack-gnome-om-base' 'fontconfig-config' 'libxml-sax-expat-perl' 'cups-daemon' 'kcemu' 'xkbset' 'watch-maildirs' 'usepackage' 'ttf-xfree86-nonfree-syriac' 'stk-doc' 'scilab-swt' 'r-cran-vcd' 'plasma-scriptengine-webkit' 'libsyncml-dev' 'libpari-dbg' 'libkrb5-ruby1.9.1' 'libghc-shakespeare-doc' 'libghc-pcap-doc' 'libghc-midi-prof' 'libghc-hunit-doc' 'libcsync-plugin-sftp' 'libaften0' 'late-data' 'ilisp' 'boats' 'python3-xdg' 'python-oops-datedir-repo' 'libsmokeqtdbus4-3' 'libcpan-meta-perl' 'libcloog-ppl1' 'pyqonsole' 'libjflac-java' 'simgear2.4.0' 'kde-config-gtk' 'upx-ucl' 'optgeo' 'libpstreams-dev' 'libktpcommoninternalsprivate-dev' 'libclass-errorhandler-perl' 'libanyevent-i3-perl' 'kfritz' 'libktpchat0' 'gnokii-cli' 'fp-units-net' 'fcitx-table-latex' 'dpm-name-server-mysql' 'dict-freedict-hun-eng' 'blender-dbg' 'aribas' 'libass4' 'python-setuptools-git' 'libmono-oracle4.0-cil' 'gstreamer1.0-plugins-base-dbg' 'libclutter-gtk-1.0-0' 'yubikey-personalization-gui' 'sphinx3-lm-en-an4' 'radare' 'python-bs4-doc' 'libjenkins-trilead-ssh2-java' 'libghc-base-unicode-symbols-dev' 'libgeier0' 'leptonica-progs' 'islamic-menus' 'python-openbabel' 'aces3' 'ecj-gcj' 'libghc6-stm-prof' 'qtsmbstatus-language' 'openarena-081-players' 'libskk-dev' 'libsexplib-camlp4-dev' 'librtfilter1' 'librra-dev' 'libpam-mklocaluser' 'libopus-dbg' 'liblua5.1-xmlrpc-dev' 'libjcommon-java-doc' 'libghc-system-fileio-prof' 'libghc-random-shuffle-doc' 'libconstant-defer-perl' 'libvo-aacenc0' 'r-cran-mapdata' 'libopenvg1-mesa-dbg' 'libevent-2.0-5' 'libreoffice-core' 'gvfs-bin' 'g++-multilib' 'libgnutls26' 'libacovea-5.1-5' 'yacas' 'writer2latex' 's3d-doc' 'libnet-smtpauth-perl' 'libnet-akismet-perl' 'libpod-strip-perl' 'libmeep-mpi-default6' 'libcvc3-2-dev' 'libbpp-popgen6' 'libboost-exception1.53-dev' 'gir1.2-libosinfo-1.0' 'libast2' 'gstreamer0.10-plugins-bad-multiverse' 'vtk-examples' 'python-doc' 'librasqal3-doc' 'libqtassistantclient-dev' 'libpciaccess-dev' 'libkrb5-dbg' 'libdlmcontrol-dev' 'hunspell-hu' 'liberror-perl' 'libghc6-hjscript-doc' 'libfso-glib0' 'swift-im-dbg' 'screenruler' 'python-zope.app.form' 'openafs-dbg' 'libtfbs-perl' 'libsfgfortran3-dbg-armhf-cross' 'libghc-language-c-prof' 'libcgi-psgi-perl' 'flare' 'eiskaltdcpp-gtk3' 'divxcomp' 'dcap-tunnel-ssl' 'libhamlib-utils' 'libgnutls28' 'usbredirserver' 'sampleicc-tools' 'php-horde-kolab-storage' 'pear-phpunit-channel' 'nbibtex-doc' 'libregexp-shellish-perl' 'libghc-utility-ht-dev' 'libghc-alut-doc' 'get-iplayer' 'libfso-glib1' 'fonts-sipa-arundina' 'dspam-dbg' 'acfax' 'lubuntu-default-settings' 'thunderbird-dev' 'libmemcached10' 'libnetaddr-ip-perl' 'dict-vera' 'vm' 'libghc6-glut-dev' 'kubuntu-restricted-extras' 'xd' 'strace64' 'python-django-tinymce' 'project-x' 'pqiv' 'openvpn-auth-radius-dbg' 'libmatio-doc' 'libgraph-easy-perl' 'libgnokii-dev' 'libganymed-ssh2-java' 'monodoc-db4o-manual' 'libccs-perl' 'ksplash-theme-tibanna' 'libqtglib-2.0-0' 'openvas-client' 'freedroid' 'libopengl-perl' 'vinagre' 'ruby-minitest' 'puppetmaster-common' 'libcarp-clan-perl' 'dhcp3-common' 'clamav-base' 'unity-webapps-amazoncloudreader' 'ruby-mustache' 'parsec47' 'mah-jong' 'libraspell-ruby' 'libptscotch-dbg' 'libmaliit-glib-doc' 'ruby-image-science' 'libglademm-2.4-dbg' 'libghc-bifunctors-prof' 'libdist-zilla-plugin-git-perl' 'libdate-pcalc-perl' 'libcommons-beanutils-java-doc' 'kimwitu-doc' 'kalzium' 'gpe-mininet' 'gpsd-clients' 'fairymax' 'libjs-edit-area' 'cvc3-el' 'sdcc' 'archivemail' 'alliance' 'libzephyr-dev' 'sysprof' 'r-doc-info' 'qlix' 'python-pyosd' 'pop3browser' 'libshhmsg1-dev' 'libqdjango-doc' 'libosmgpsmap2-dbg' 'libdessert0.87' 'libmoosex-getopt-perl' 'hotot' 'libgnet2.0-0' 'python-ffc' 'libtokyotyrant3' 'ruby-activerecord-2.3' 'aolserver4-nssqlite3' 'libxml-xql-perl' 'fonts-takao-pgothic' 'hunspell-kk' 'visitors' 'swfdec-gnome' 'python-wxmpl' 'procmail-lib' 'multicat' 'libstaden-read-dev' 'libsmokesoprano3' 'libservlet2.4-java' 'libqtbamf1' 'libppd-dev' 'ruby-pcap' 'libopenvasnasl2' 'libmqdb-perl' 'libm4ri-0.0.20120613' 'ruby-globalhotkeys' 'winbind4' 'libfuzzy2-dbg' 'libdballe-dev' 'libsub-wrappackages-perl' 'libstring-rewriteprefix-perl' 'libsafe-hole-perl' 'wl' 'python-scitools' 'evilvte' 'libgdkcutter-pixbuf-dev' 'chipmunk-dev' 'c2hs-doc' 'aewm++-goodies' 'python-reportlab-accel' 'libdbusmenu-qt-doc' 'libpulse-mainloop-glib0' 'libskstream-0.3-4' 'python-slimmer' 'procinfo' 'ovmf' 'nuauth-log-pgsql' 'lua-cjson' 'libtest-poe-client-tcp-perl' 'libsingular-dev' 'libruby2ruby-ruby' 'libnet-epp-perl' 'libjs-cropper' 'libgnelib0' 'libfonts-java' 'libdjconsole0' 'globus-gsi-proxy-ssl-dbg' 'gelemental-dbg' 'gamera-doc' 'hsetroot' 'xserver-xorg-video-radeon-dbg' 'subversion' 'gvfs-dbg' 'gdb-doc' 'gforge-ftp-proftpd' 'xserver-xorg-video-modesetting-lts-quantal-dbg' 'xournal' 'sarg' 'pkg-components' 'profnet-chop' 'libxml-simpleobject-enhanced-perl' 'libtorque2-dev' 'libqwt6' 'libjana0' 'libghc-colour-doc' 'libghc-attempt-prof' 'libhttp-browserdetect-perl' 'ksysguard' 'fonts-bpg-georgian' 'daemontools' 'code-aster-gui' 'apertium-es-pt' 'wukrainian' 'librrd-ruby1.8' 'kdelibs5-dbg' 'libsqlite3-0' 'module-init-tools' 'libaccess-bridge-java' 'open-vm-dkms' 'worldwind' 'sbnc' 'r-cran-kernsmooth' 'python-rackspace-cloudservers' 'libtaningia0' 'libnetfilter-cttimeout1-dbg' 'libghc-tagged-dev' 'libflint-1.011' 'libskstream-0.3-6' 'icinga-doc' 'harden-development' 'fprobe-ulog' 'drush' 'libccgnu2-1.8-0' 'libtext-unaccent-perl' 'beav' 'autodock' 'pulseaudio-module-gconf-dbg' 'monodoc-manual' 'libmx-bin' 'kdelibs5-experimental-dev' 'hunspell-ko' 'libjai-core-java-doc' 'linux-image-3.2.0-24-generic' 'xfonts-biznet-base' 'togl-demos' 'remuco-xmms2' 'qmidiroute' 'python3-stsci.distutils' 'parole' 'owfs' 'openuniverse' 'liblivemedia-dev' 'libgstreamer-plugins-bad1.0-dev' 'libgetfem++-dbg' 'libbatteries-ocaml-dev' 'libalgorithm-diff-ruby' 'libactionpack-ruby' 'jack-mixer' 'ghc6-doc' 'scid' 'axiom-graphics-data' 'apertium-oc-es' 'libpackagekit-qt2-dev' 'language-pack-kde-fur-base' 'help2man' 'erlang-os-mon' 'libwsutil1' 'libcharva1-java' 'maelstrom' 'smartdoc-doc' 'scratch' 'science-distributedcomputing' 'rutilt' 'prey' 'skytools' 'libview2' 'libtree-redblack-perl' 'libsha-ocaml-dev' 'libpgraphutil-smlnj' 'libghc-rsa-prof' 'libclass-autouse-perl' 'libcgikit-ruby1.8' 'libalberta2-dev' 'gnumeric-common' 'libfreehep-util-java' 'freemedforms-i18n' 'create-resources' 'bdii' 'python-dns' 'linux-backports-modules-cw-3.4-3.2.0-36-virtual' 'pybik-bin' 'lxrandr-dbg' 'libwsutil2' 'libmono-addins-cil-dev' 'libpixie-java' 'libghc-tensor-prof' 'libghc-active-doc' 'libdancer-logger-psgi-perl' 'imms-audacious' 'blobby-data' 'language-pack-km-base' 'linux-backports-modules-cw-3.6-3.2.0-38-generic-pae' 'cbedic' 'tumgreyspf' 'syncmaildir-applet' 'libqdbm-java' 'libpodofo-dev' 'libsendmail-milter-perl' 'libghc-wai-logger-prefork-dev' 'libfile-path-tiny-perl' 'ijsgutenprint-ppds' 'ifuse-dbg' 'globus-gram-job-manager-sge-setup-poll' 'gem-plugin-mpeg3' 'python-ptrace' 'empire' 'libecc0' 'cantor-backend-kalgebra' 'beef' 'apertium-es-ro' 'ncpfs' 'libmono-system-configuration4.0-cil' 'libconvert-uulib-perl' 'stardict-plugin-spell' 'ppsh' 'ofono-dbg' 'libodbc-ruby1.9.1-dbg' 'flasm' 'css-mode' 'sash' 'klibc-utils' 'hunspell-ne' 'libghc6-happstack-ixset-doc' 'libggi-samples' 'ooohg' 'spring-javaai' 'pysycache-images' 'python-setools' 'plasma-widget-tvprogramme' 'libmsoffice-word-html-writer-perl' 'libguichan-0.8.1-1-dbg' 'libghc-file-embed-prof' 'libgnatvsn4.6-dev' 'libauthen-cas-client-perl' 'python-dpm' 'kismet-plugins' 'ksirk' 'libplasma-geolocation-interface4' 'gtk2-engines-moblin' 'gxmessage' 'libapache2-mod-auth-radius' 'fonts-lyx' 'linux-image-server' 'libtag1-dev' 'language-pack-ur-base' 'libtotem0' 'linux-image-3.8.0-11-generic' 'ubuntu-mobile-icons' 'libwww-mechanize-treebuilder-perl' 'libtext-trim-perl' 'libstyx2' 'liblocale-rails-ruby1.8' 'libjam-java-doc' 'configfile-doc' 'libksane-dev' 'wv' 'ftplib-dev' 'fso-gsmd-openmoko' 'display-dhammapada' 'libmunge2' 'aqsis' 'python-greenlet-dev' 'opencryptoki-dbg' 'libvte-doc' 'language-pack-kde-mhr-base' 'hunspell-ml' 'libraw1394-11' 'libfl-dev' 'jadetex' 'xfonts-ayu' 'ubiquity-slideshow-ubuntu-gnome' 'python-libtorrent-dbg' 'php-horde-kolab-session' 'libsocialweb0-dbg' 'libsmbios2' 'libroot-misc-memstat5.34' 'libredcloth-ruby1.8' 'liblatex-driver-perl' 'libqtsolutions-soap-2.7-1' 'libcsnd-java' 'libopenal-dev' 'hybrid-dev' 'deluge' 'billard-gl' 'python-dictclient' 'transfig' 'policykit-1' 'libace-htbp-6.0.1' 'salt-doc' 'python-poker-network' 'plasma-widget-flickr' 'libosgi-foundation-ee-java' 'libhaml-ruby1.8' 'libghc-libtagc-doc' 'libdieharder-dev' 'gpsbabel-doc' 'ubuntu-edu-secondary' 'python-lzma' 'computer-janitor' 'alsa-oss' 'libhdf5-mpich-dev' 'awn-applet-dialect' 'python-socksipy' 'python-pyside.qttest' 'openxenmanager' 'libstdc++6-4.7-pic' 'libquazip-doc' 'libinstpatch-1.0-0-dbg' 'libfelix-utils-java' 'ttf-aoyagi-soseki' 'dict-gazetteer2k-counties' 'dh-kpatches' 'fonts-gfs-didot' 'bandwidthcalc' 'agtl' 'python-libapparmor' 'fortune-mod' 'libtelepathy-logger2-dbg' 'scim' 'gnome-control-center-unity' 'update-notifier' 'tickr' 'remuco-totem' 'python-fudge-doc' 'python-bottle' 'python-bitarray' 'pidgin-sipe' 'oping' 'plasmidomics' 'libtango7-dbg' 'libopendmarc1' 'libmathml-ruby' 'libghc-wai-app-file-cgi-doc' 'libace-htbp-6.0.3' 'js2-mode' 'gwenrename' 'gridengine-drmaa1.0' 'glpk-doc' 'gimp-dimage-color' 'gem-plugin-sgi' 'games-thumbnails' 'djmount' 'choosewm' 'python-bsddb3' 'libgxps-dev' 'lua5.2-doc' 'libquickfix14-dbg' 'libois-perl' 'libicc-utils2' 'libghc-blaze-html-prof' 'libgcal-dev' 'libctpl-dev' 'puredata' 'brltty-flite' 'libogg-dbg' 'blt-dev' 'qtstalker' 'libghc6-hsp-prof' 'gforge-dns-bind9' 'linux-backports-modules-cw-3.3-3.2.0-40-virtual' 'linux-backports-modules-cw-3.3-3.2.0-35-virtual' 'roundcube-pgsql' 'python-zope.securitypolicy' 'pd-arraysize' 'mcollective' 'matchbox-panel-manager' 'libqtexengine-dev' 'libqt5location5' 'libpomp-dev' 'libsmokeplasma3' 'libmp3splt-mp3' 'libjboss-aspects-java' 'ksquares' 'perlpanel' 'infiniband-diags' 'ifplugd' 'libgenometools0' 'four-in-a-row' 'fonts-evertype-conakry' 'eiciel' 'd52' 'cpp-4.7-arm-linux-gnueabi' 'python-id3' 'python-mechanize' 'c-repl' 'libbibutils2' 'arc-gui-clients' 'rails' 'pinentry-curses' 'libslepc3.1' 'fp-ide-2.4.4' 'sauerbraten-server' 'visual-regexp' 'sdcv' 'rdtool' 'rawstudio-dbg' 'quotatool' 'mit-scheme' 'libvdeplug2-dev' 'libperl5i-perl' 'libghc-crypto-pubkey-prof' 'kdevplatform6-libs' 'ipython3-notebook' 'gsalliere' 'courier-imap-ssl' 'beep' 'libreoffice-evolution' 'zorp-dbg' 'xtrkcad' 'source-highlight-ide' 'python-circuits' 'pdfchain' 'libmigemo-dev' 'libinput-pad-dev' 'libghc-fclabels-doc' 'libextlib-ruby-doc' 'libbg1-dev' 'libatlas-cpp-0.6-1-dbg' 'kscreen-dbg' 'klinkstatus' 'libslepc3.2' 'fonts-mph-2b-damase' 'editmoin' 'ruby-net-http-persistent' 'bgoffice-computer-terms' 'libpam-mount' 'texlive-math-extra' 'python-qt3-doc' 'libstarpufft0' 'zp' 'vamp-plugin-sdk-doc' 'unity-webapps-wordpress-com' 'ratfor' 'python-gearman' 'nagios-plugins-contrib' 'libxine1-bin' 'libplotmm-dbg' 'libimobiledevice-utils' 'libghc-publicsuffixlist-prof' 'librole-identifiable-perl' 'libmemcache0' 'gmt-doc-pdf' 'libgomp1-dbg-armel-cross' 'schroot' 'darcs-monitor' 'activemq' 'linux-wlan-ng-source' 'libpt-1.10.10' 'libwebp2' 'videocut' 'sary' 'python-pymc-doc' 'python-pyxnat' 'libpari-dev' 'libpaps-dev' 'libopencascade-ocaf-dev' 'libgxps-utils' 'libghc-base16-bytestring-doc' 'libc6-dbg-armel-cross' 'kunststoff' 'gedit-valatoys-plugin-dbg' 'libjbzip2-java' 'espctag' 'dtc-xen' 'cl-flexichain' 'postfix-ldap' 'libxdmcp-dev' 'libmono-messaging-rabbitmq2.0-cil' 'lcl-units-0.9.30.2' 'libmudflap0-4.5-dev' 'linux-backports-modules-cw-3.4-3.2.0-33-generic' 'xfce4-timer-plugin' 'python3-pyside.qtscript' 'python3-drizzle-dbg' 'python-zope.schema' 'python-peak.util.decorators' 'picprog' 'mailutils-comsatd' 'libudt0' 'libsyncml-doc' 'libmixlib-cli-ruby' 'liblinux-dvb-perl' 'libkmahjongglib-dev' 'libgsecuredelete-dev' 'klickety' 'gaim-extendedprefs' 'bundler' 'libappstream0' 'python-nose' 'unixodbc-dev' 'gvfs-common' 'libgnome2.24-cil' 'libggi-target-aa' 'generatorrunner' 'cicero' 'xstow' 'qtlocation5-dbg' 'puppet-testsuite' 'php-horde-lock' 'mancala' 'linphone-nogtk' 'libusbprog0' 'libtelnet-utils' 'liblua5.1-apr-dev' 'libwebp4' 'libgtkglextmm-x11-1.2-0' 'kdm-gdmcompat' 'globus-gass-cache-program' 'libeda0' 'dell-recovery-bootloader' 'cpmtools' 'bcpp' 'xkb-data-i18n' 'munin-plugins-java' 'libdata-optlist-perl' 'initramfs-tools-bin' 'shunit2' 'gambas2-gb-crypt' 'telepathy-core' 'ruby-activerecord-3.2' 'pngquant' 'libspectrum-dev' 'libredis-perl' 'libopus-dev' 'libghc-boolean-dev' 'libghc-base-unicode-symbols-doc' 'libgdf0-dbg' 'libcurl-ocaml-dev' 'libarc-php' 'lcl-units-0.9.30.4' 'gnat-4.6-doc' 'gdeskcal' 'fonts-sil-sophia-nubian' 'python-pyaudio' 'bcov' 'u-boot' 'python-librdf' 'libopenvg1-mesa-dev' 'libgail-dbg' 'libfcgi0ldbl' 'irda-utils' 'gfortran-multilib' 'libghc6-happstack-prof' 'jaranalyzer' 'xnetcardconfig' 'synce-serial' 'scli' 'savi' 'samba4-testsuite' 'python-dtest' 'pynagram' 'malbolge' 'libjboss-profiler-java' 'libflaim4.1' 'libdirectfb-extra' 'kanadic' 'otf-yozvox-yozfont' 'cstream' 'crack-md5' 'chirashi' 'python-pyrex' 'overlay-scrollbar' 'libsysfs-dev' 'libtemplate-perl' 'language-pack-gnome-fa-base' 'language-pack-gnome-az-base' 'libkrb5-dev' 'libpt2.4.5-dbg' 'libace-tkreactor-6.0.1' 'gir1.2-couchdb-1.0' 'wesnoth-1.10-low' 'sugar-record-activity' 'libcompass-ruby' 'r-cran-xtable' 'postfix-cluebringer' 'openarena-081-textures' 'libnlopt-dev' 'libmrss0' 'libmaven-dependency-analyzer-java' 'libcaribou-gtk-module-dbg' 'icedtea-6-jre-cacao' 'fsmark' 'dstat' 'comprez' 'printer-driver-c2050' 'libmaloc1' 'libbabl-0.0-0-dev' 'ibritish-huge' 'liblogsys4' 'sabnzbdplus-theme-mobile' 'sabnzbdplus-theme-plush' 'mythnetvision' 'xtux-levels' 'vnstati' 'twpsk' 'soundkonverter' 'metapixel' 'lubuntu-icon-theme' 'libtangram-perl' 'libmime-explode-perl' 'libxmlezout2-dev' 'libhdf5-serial-1.8.4' 'libghc-cereal-conduit-prof' 'ttf-monapo' 'e17' 'libmodglue1' 'banshee-extension-openvp' 'backintime-common' 'angrydd' 'language-pack-kde-gd-base' 'language-pack-kde-fi-base' 'language-pack-kde-en-base' 'dupload' 'ruby-commandline' 'qt3-dev-tools' 'tkdesk' 'sagcad-doc' 'python-statsmodels-lib' 'python-gvgen' 'orage' 'libxine1-dbg' 'ocamlmakefile' 'libpng++-dev' 'libghc-utility-ht-doc' 'libemail-messageid-perl' 'libace-tkreactor-6.0.3' 'erlang-esdl' 'python-moovida' 'lookup' 'dh-consoledata' 'botan1.10-dbg' 'apt-dpkg-ref' 'libvoikko-dev' 'odbcinst' 'libmodule-build-perl' 'apport' 'ser-pa-module' 'libghc6-glut-doc' 'spellcast' 'sdic' 'znc-tcl' 'openchangeclient' 'r-cran-diagnosismed' 'lxsession-data' 'libzbarqt-dev' 'libmaven-exec-plugin-java' 'liblingua-en-numbers-ordinate-perl' 'libinifiles-ocaml' 'libptscotch-dev' 'libcreal-ocaml-dev' 'libbjack-ocaml' 'libglademm-2.4-dev' 'libavl1' 'python-pyvorbis-dbg' 'pilot-link' 'libgmp-dev' 'gstreamer0.10-gconf' 'tdom-dev' 'snd-gtk' 'libtelepathy-farstream-0.4-dev' 'libnlopt0' 'libglobus-gsi-proxy-core-dev' 'libextutils-modulemaker-perl' 'libboost-graph-parallel1.46-dev' 'jetty' 'festvox-czech-dita' 'liblucene2-java' 'cowbell' 'afpfs-ng-utils' 'texlive-lang-tibetan' 'python-imaging-doc-html' 'mozilla-devscripts' 'libsasl2-dev' 'libvorbisenc2' 'libavdevice-extra-53' 'gambas2-gb-form-dialog' 'libconfig8' 'spl-core' 'smokeping' 'slmon' 'python3-secretstorage' 'mupen64plus-video-rice-dbg' 'liblognorm-dev' 'libjboss-managed-java' 'libdirectory-scratch-perl' 'libb-hooks-op-check-perl' 'kst-data' 'icegrid-gui' 'gnumeric-doc' 'fastjet-examples' 'kde-l10n-engb' 'banshee-extensions-common' 'account-plugin-sina' 'monodoc-gtk2.0-manual' 'fetchmail' 'linux-backports-modules-cw-3.5-3.2.0-40-generic-pae' 'linux-backports-modules-cw-3.5-3.2.0-35-generic-pae' 'linux-backports-modules-cw-3.3-3.2.0-32-generic' 'linux-backports-modules-cw-3.3-3.2.0-27-generic' 'winff' 'libplayer-bin' 'libndesk-dbus-glib1.0-cil-dev' 'libmaven-ear-plugin-java' 'libmaven-antrun-plugin-java' 'libghc-hxt-tagsoup-prof' 'libdballe-doc' 'libxml-dumper-perl' 'libclass-load-xs-perl' 'libcatalyst-engine-apache-perl' 'libcrypt-cast5-perl' 'libglobus-scheduler-event-generator0' 'libshp-dev' 'ruby-debian' 'libconfig9' 'fonts-takao-gothic' 'dovecot-lmtpd' 'libnet-tftp-ruby1.8' 'libgnustep-gui0.20' 'uima-doc' 'tryton-modules-stock-product-location' 'qimo-session' 'python-fiu' 'tsocks' 'libmthca1-dbg' 'libmodule-starter-smart-perl' 'libmini18n-dev' 'libmerb-helpers-ruby1.8' 'libmapiadmin-dev' 'libcal-dav-perl' 'libndesk-dbus1.0-cil' 'dcmtk' 'xserver-xorg-video-s3' 'python-nova' 'libssh-dbg' 'qt4-designer' 'libjbig0' 'libapt-pkg-perl' 'kdelibs5-dev' 'psmisc' 'account-plugin-salut' 'ttysnoop' 'rinputd-dbg' 'pbuilder-scripts' 'openhpi-plugin-sysfs' 'mlterm-im-ibus' 'shapelib' 'libxml-filter-saxt-perl' 'libweed0' 'libpoe-component-server-http-perl' 'liblasso3' 'libhtml-encoding-perl' 'icon-slicer' 'gtester2xunit' 'freemedforms-emr' 'filepp' 'darnwdl' 'python-dsv' 'libvamp-sdk2' 'smart-notifier' 'python3-sphinx' 'php5-tidy' 'ubiquity' 'libreoffice-pdfimport' 'libmysqlclient-dev' 'gir1.2-atk-1.0' 'hunspell-se' 'libghc6-pandoc-dev' 'videogen' 'seed' 'science-machine-learning' 'network-manager-strongswan' 'mscore' 'libmojolicious-plugin-basicauth-perl' 'libmapscript-ruby' 'libmoosex-aliases-perl' 'libghc-tagged-doc' 'libgetfem++-dev' 'libboost-mpi-python1.53.0' 'libboost-mpi-python1.48.0' 'gccintro' 'fonts-taml-tscu' 'python-ecasound' 'ruby-compass' 'libgnustep-gui0.22' 'mencoder' 'libnewt-dev' 'libapr1-dbg' 'dh-buildinfo' 'g++' 'python-hl7' 'libmaven-archiver-java' 'libbatteries-ocaml-doc' 'kde-config-grub2' 'gpe-shield' 'fso-deviced-player-canberra' 'eatmydata' 'crossbuild-essential-arm64' 'blacs1-pvm' 'python-cxx' 'fusioninventory-agent' 'libgdk-pixbuf2.0-common' 'postgresql-client-8.4' 'vlc-dbg' 'ruby-jquery-rails' 'python3-regex-dbg' 'python-omniorb-dbg' 'qmmp' 'libhttp-access2-ruby' 'libjava-gmsh2' 'libghc-blaze-builder-conduit-prof' 'libewf-dbg' 'kterm' 'kitsune' 'jenkins-cli' 'evolution-mapi-dbg' 'libxmlrpc3-client-java' 'eclipse-mercurialeclipse' 'djtools' 'check-mk-config-nagios3' 'brltty-espeak' 'libswt-gtk-3-java' 'libkcddb4' 'anytun' 'hunspell-sh' 'linux-libc-dev' 'xml-core' 'linux-image-extra-3.8.0-8-generic' 'ngspice-doc' 'zlibc' 'telepathy-inspector' 'r-cran-nlme' 'postgresql-9.1-plproxy' 'nordugrid-arc-ca-utils' 'nautilus-pastebin' 'libwerken.xpath-java-doc' 'libprotobuf-c0' 'libtamuanova-0.2' 'libghc-crypto-random-api-prof' 'libsocialweb-client-dev' 'gnash-ext-fileio' 'geeqie' 'ucimf' 'libradiusclient-ng-dev' 'libgoa-1.0-common' 'libclass-c3-xs-perl' 'libbsd0' 'xen-utils-4.1' 'libttspico-dev' 'ofono-dev' 'blimps-utils' 'librsskit0-dbg' 'libghc-wai-logger-prefork-doc' 'libdata-objectdriver-perl' 'libdbix-class-perl' 'libaiksaurus-1.2-dev' 'kexi-mysql-driver' 'fp-units-db' 'libfosgra0' 'eleeye' 'libopenr2-3' 'libvisio-dev' 'librhino-java-doc' 'libstonithd1' 'hunspell-ro' 'xen-utils-4.2' 'xcolors' 'python-numexpr' 'python-epr' 'pamusb-tools' 'octave-data-smoothing' 'libtemplate-plugin-clickable-perl' 'libkohana3.1-core-php' 'libjs-modestmaps' 'libntrack-qt4-1' 'cvsweb' 'phyml' 'anerd-client' 'aeskulap' 'packagekit-docs' 'libdb5.1-java-jni' 'libcommons-discovery-java-doc' 'language-pack-ber-base' 'libavcodec-extra-53' 'kplayer-data' 'r-cran-zelig' 'python-radix' 'python-ktoblzcheck' 'python-aafigure' 'mod-gearman-worker' 'maliit-inputcontext-gtk2' 'libencode-imaputf7-perl' 'libcluttergesture-0.0.2-0-dbg' 'proj' 'gendarme' 'disc-cover' 'csound-doc' 'autolog' 'mp3gain' 'libxcb-keysyms1-dev' 'libtag1-doc' 'iamerican-huge' 'linamc' 'linux-backports-modules-cw-3.4-3.2.0-34-generic-pae' 'linux-backports-modules-cw-3.4-3.2.0-29-generic-pae' 'wzdftpd-mod-perl' 'quassel-dbg' 'pyside-tools' 'php-horde-mime' 'origami' 'maliit-inputcontext-gtk3' 'libstarpu-contrib-dev' 'libqd-dev' 'libmoosex-types-perl-perl' 'libaugeas-ruby' 'jwhois' 'globus-common-dbg' 'simgear2.6.0' 'fadecut' 'ebnetd-common' 'ceilometer-api' 'autogrid-test' 'vorbisgain' 'python-greenlet-doc' 'libmx-dev' 'libcrmcommon2' 'libavahi-client-dev' 'language-pack-af-base' 'cron-apt' 'dynamips' 'simutrans-pak64' 'qttools5-dev-tools' 'mythtv-backend' 'libxine2-console' 'libsdl-image-gst' 'librdf-endpoint-perl' 'libminidjvu0' 'liblicense3' 'libjana-dev' 'libghc-ncurses-prof' 'libghc-bindings-gpgme-prof' 'libkyototycoon-dev' 'ibus-tegaki' 'ibus-skk' 'imagej' 'genius-common' 'mailcrypt' 'libmedc1' 'celestia-gnome' 'affiche.app' 'openstack-pkg-tools' 'login' 'python-jinja-doc' 'mountmanager' 'brother-lpr-drivers-ac' 'libtransaction-simple-ruby1.8' 'libstemmer-tools' 'libsope-dev' 'libmoosex-types-varianttable-perl' 'libgtk2-sourceview2-perl' 'libghc-hscurses-prof' 'libdevice-modem-perl' 'libtype-conv-camlp4-dev' 'python-trml2pdf' 'jmagick6-docs' 'indi-sbig' 'dcmtk-doc' 'libcln6' 'libfile-basedir-perl' 'librpc-xml-perl' 'libghc6-texmath-dev' 'linux-headers-3.2.0-39-lowlatency' 'ttylog' 'uim-baidu-olime-jp' 'libtango7-dev' 'libsqlite3-gst' 'libspice-client-glib-2.0-dev' 'libminpack1' 'libghc-monads-tf-dev' 'python3-psycopg2-dbg' 'libparted0' 'libpod-coverage-perl' 'hunspell-ru' 'language-pack-kk-base' 'debconf-utils' 'voms-mysql-plugin' 'libsword-common' 'libroot-graf3d-g3d5.34' 'libkohana3.2-mod-userguide-php' 'libgrits-dev' 'libghc-bindings-dsl-dev' 'libghc-adjunctions-dev' 'libqpol1' 'kde-runtime-data' 'libkdegamesprivate1' 'libdbusmenu-tools' 'icee-translators' 'gambas3-gb-image' 'libdtdinst-java' 'libcrypt-simple-perl' 'libqtwebkit4-dbg' 'libqt4-qt3support-dbg' 'libnss3-dbg' 'libgxps-doc' 'libogg-dev' 'nautilus-data' 'zentyal-core' 'uvcdynctrl-data' 'python-simplemediawiki' 'python-libvoikko' 'proofgeneral-misc' 'libsqlite3-mod-impexp' 'libmaliit0-dbg' 'libctpl-doc' 'libgcc1-dbg-armhf-cross' 'ftpmirror' 'libgpod4' 'hunspell-sr' 'ruby1.9.1-dev' 'doxygen-doc' 'libclamav6' 'fp-units-gtk2-2.4.4' 'tunneldigger-utils' 'r-base-core-dbg' 'sfcb' 'mit-scheme-dbg' 'login-duo' 'liboasis3-0d' 'libnet-write-perl' 'liblustre' 'libghc-cpu-dev' 'libadolc-dev' 'hgview' 'gnome-photo-printer' 'ggcov' 'eventstat' 'btyacc' 'nvidia-experimental-304' 'python-xattr' 'mtools' 'librasqal3' 'language-pack-gnome-shs' 'pmake' 'dconf' 'bluez' 'spamassassin' 'similarity-tester' 'python-simpy-gui' 'perl-depends' 'openchangeserver-dev' 'lua-nginx-redis' 'libsitemesh-java-doc' 'libpoe-component-ikc-perl' 'itk3-dev' 'inetutils-tools' 'dynamite' 'nvidia-experimental-310' 'gsmartcontrol' 'phpreports' 'libxmuu1' 'dovecot-mysql' 'libtext-charwidth-perl' 'xinv3d' 'xdeview' 'rrdweather' 'qutim' 'python-imobiledevice' 'msmtp-gnome' 'libv8-i18n0.0.0-dbg' 'libtexttools-doc' 'libsnmp-python' 'libplotmm-dev' 'libicns-dev' 'libglui-dev' 'libbg1-doc' 'kopete-message-indicator' 'gretl-common' 'fp-docs' 'libwacom-common' 'libnl-route-3-200' 'libaio-dev' 'git-svn' 'libgradle-announce-java' 'robocode' 'lincredits' 'libmodule-extract-perl' 'libgnome-menu2' 'libghemical-dev' 'kdevplatform-dbg' 'apturl-kde' 'thunderbird-locale-en-us' 'libspice-client-gtk-2.0-1' 'libreoffice-l10n-zh-tw' 'libcwidget3' 'libdbusmenu-gtk3-4' 'metis-edf' 'wmtemp' 'rolldice' 'python-rtfcomp' 'prewikka' 'newt-tcl' 'libocamlgsl-ocaml-dev' 'libmono-cecil-cil-dev' 'libhttp-lite-perl' 'libcommons-configuration-java-doc' 'xsettings-kde' 'ttf-adf-irianis' 'polygen' 'libhttp-request-params-perl' 'gvfs-daemons' 'pidgin-data' 'distro-info' 'valac-0.12-dbg' 'libmrpt-graphs0.9' 'wesnoth-1.10-sotbe' 'wallch' 'qtlocation5-dev' 'python-mvpa' 'live-config' 'libofetion-dev' 'libkxml2-java-doc' 'libdrumstick-dbg' 'libboost-chrono1.53-dev' 'libboost-chrono1.48-dev' 'kde-icons-mono' 'gnus-bonus-el' 'dsyslog-module-mysql' 'frei0r-plugins' 'libmono-system-servicemodel-web4.0-cil' 'hunspell-vi' 'gstreamer1.0-plugins-base-doc' 'python-melange' 'ubuntu-online-tour' 'tunneldigger' 'python-zope.site' 'mysqltuner' 'libwww-finger-perl' 'libtwitter-ruby1.8' 'libtest-mockclass-perl' 'libcob1' 'libaldmb1-dev' 'gpe-watch' 'libnetclasses-dev' 'libspice-client-gtk-2.0-4' 'mono-tools-devel' 'freebsd-sendpr' 'fonts-lobstertwo' 'doctrine' 'colord-kde' 'axiom-source' 'aegisub' 'ubuntuone-client-gnome' 'libperl-apireference-perl' 'libgail-dev' 'libnode-cradle' 'linux-headers-lbm-3.2.0-39-generic-pae' 'rbenv' 'mriconvert' 'libscim8c2a' 'libopus-doc' 'libgnadecommon2-dev' 'libghc-cgi-dev' 'libghc-boolean-doc' 'libbiojava3-java' 'jikespg' 'gkrellm-mailwatch' 'libfreecell-solver0' 'fp-units-math' 'audacious-plugins' 'libabiword-2.9' 'virt-manager' 'libruby' 'libdebian-installer4' 'python2.7' 'libarchive-zip-perl' 'sputnik-storage-sqlite3' 'libpt2.4.5-dev' 'pidgin-skype-dbg' 'yabause' 'xviewg-dev' 'rtai-source' 'rephrase' 'planner-el' 'midish' 'libxdo-dev' 'libsimple-xml-java' 'libmason-plugin-cache-perl' 'libhamcrest1.2-java' 'globus-gram-job-manager-sge-setup-seg' 'nvidia-313-updates' 'libunwind-setjmp0-dbg' 'libtalloc2-dbg' 'libgnumail-java-doc' 'libcurl3-gnutls' 'ttf-lao' 'tack' 'r-doc-html' 'python-pyshp' 'opengl-4.2-html-doc' 'munin-libvirt-plugins' 'libvorbisspi-java' 'libscalapack-pvm1' 'openafs-doc' 'libkhtml-perl' 'libgtlimageio0.8' 'libghc-haskelldb-hdbc-odbc-dev' 'libconfig-pit-perl' 'libcodenarc-groovy-java-doc' 'libclaw-dynamic-library1' 'python-git' 'kalgebra-dbg' 'k3b-extrathemes' 'dbus-java-bin' 'c-cpp-reference' 'qpdf' 'libmtdev-dev' 'irssi-scripts' 'gir1.2-gtk-vnc-2.0' 'fusionforge-plugin-scmdarcs' 'kplayer' 'tupi-dbg' 'neverputt-data' 'libopendbx1-firebird' 'latex-cjk-korean' 'krb5-gss-samples' 'libecm0' 'dspam-doc' 'fonts-gfs-solomos' 'libjfreechart-java' 'squashfs-tools' 'libsystemd-journal-dev' 'emacs23-nox' 'libghc6-opengl-prof' 'linux-headers-3.2.0-39-generic-pae' 'scsh' 'ruby-pdf-reader' 'repmgr' 'python-pyside.qtscript' 'munin-java-plugins' 'libpam-chroot' 'libjs-jquery-ui-theme-pepper-grinder' 'kluppe' 'kde-l10n-ca-valencia' 'ruby-mysql' 'gobjc++-4.7-multilib-powerpc-linux-gnu' 'mplayerthumbs' 'caspar-doc' 'postgresql-client-9.1' 'libfreeradius-dev' 'tracker-miner-evolution' 'openmpi1.5-bin' 'mythgallery' 'yacpi' 'sineshaper' 'selinux-policy-mls' 'salt-common' 'python-ws4py' 'python-nwsclient' 'psi-plus-plugins-dbg' 'nwall' 'lighttpd-mod-magnet' 'libtransaction-simple-ruby-doc' 'libglademm-2.4-doc' 'libghc-cprng-aes-prof' 'libeasyconf-java' 'libboost-mpi-python1.49.0' 'lcmaps-plugins-basic-poolaccount' 'japi-compliance-checker' 'gnome-hearts' 'fstrcmp-doc' 'dpsyco-cfengine' 'console-log' 'python-gi-cairo' 'librados2' 'libtrilinos' 'vimhelp-de' 'squirrelmail-decode' 'mlterm-tools' 'lifelines' 'libtelepathy-farstream-0.4-doc' 'libpod-sax-perl' 'libmixlib-cli-ruby1.8' 'libglobus-gsi-proxy-core-doc' 'libformsgl2' 'libcurses-ui-perl' 'ldap-account-manager' 'keepnote' 'jack-keyboard' 'indicator-application-gtk2' 'xymon-client' 'libchipcard-tools' 'gambas3-gb-web' 'libedasqlite0' 'libchef-ruby1.8' 'cain' 'libgstbuzztard0' 'bitlbee-libpurple' 'agda-mode' 'spice-client-gtk' 'liblinear1' 'ttf-vlgothic' 'linux-backports-modules-net-3.2.0-36-virtual' 'sdpa' 'python-isodate' 'libphp-jpgraph-examples' 'libnet-z3950-simpleserver-perl' 'liblist-maker-perl' 'libjs-jquery-jfeed' 'epoptes' 'lookup-el' 'covered' 'aldo' 'installation-guide-i386' 'automoc' 'vdr-plugin-dvbhddevice' 'sbmltoolbox' 'r-cran-nnet' 'python-django-auth-openid' 'php5-xdebug' 'libvbr-dev' 'libsyntax-highlight-engine-simple-perl' 'libghc-uuid-prof' 'libghc-fast-logger-prof' 'libchemistry-elements-perl' 'libclass-dbi-pg-perl' 'kscope' 'gpsmanshp' 'gambas3-gb-image-io' 'gadmin-openvpn-server-dbg' 'ttf-atarismall' 'banshee-community-extensions' 'arora' 'libmpdclient2' 'libssh-dev' 'libmono-2.0-dev' 'language-pack-gnome-bs-base' 'gnome-font-viewer' 'gir1.2-gtksource-3.0' 'hunspell-de-ch' 'fpc-source-2.4.4' 'firebird2.1-common' 'libcairo5c-0' 'libawn1' 'linux-headers-lbm-3.2.0-37-virtual' 'linux-headers-3.5.0-27-generic' 'zabbix-proxy-mysql' 'trac-spamfilter' 'simon-l10n' 'signon-plugin-oauth2-tests' 'sffview' 'ruby-rdiscount' 'rinetd' 'python-zope.formlib' 'num-utils' 'mairix' 'libwww-indexparser-perl' 'libkcompactdisc-dbg' 'libghc-filesystem-conduit-dev' 'gltron' 'glade-gtk2' 'fp-ide-2.6.0' 'rasmol' 'xdelta' 'coinor-libcoinutils0-dbg' 'python3-pylibacl' 'libyaml-perl' 'libmono-messaging4.0-cil' 'libtasn1-3' 'libassuan-dev' 'gstreamer0.10-plugins-good' 'bacula-common-sqlite3-dbg' 'liblinbox0' 'vtprint' 'qtdeclarative5-qt3d-plugin' 'python-simpleparse-doc' 'python-lazr.batchnavigator' 'ng-utils' 'lowpan-tools' 'libtcl-chiark-1' 'libluajit-5.1-common' 'libsdo-api-java' 'libbusiness-onlinepayment-transactioncentral-perl' 'libatlas-cpp-doc' 'fonts-lohit-mlym' 'ttf-evertype-conakry' 'claws-mail-multi-notifier' 'latex-fonts-thai-tlwg' 'modemmanager-dbg' 'libapr1-dev' 'libapache2-mod-macro' 'language-pack-kde-el-base' 'hunspell-uz' 'hunspell-de-de' 'hunspell-de-at' 'libghc6-pandoc-doc' 'linux-backports-modules-cw-3.3-3.2.0-31-generic-pae' 'linux-backports-modules-cw-3.3-3.2.0-26-generic-pae' 'avidemux-plugins-qt' 'r-cran-scatterplot3d' 'python-zope.app.wsgi' 'pkg-mozilla-archive-keyring' 'libfile-keepass-perl' 'kup-server' 'libglobus-authz-callout-error0' 'bible-kjv-text' 'libnamespace-clean-perl' 'libmono-i18n-west4.0-cil' 'language-pack-gnome-nn-base' 'language-pack-gnome-ms-base' 'cdparanoia-dbg' 'remuco-rhythmbox' 'tcl8.4-dev' 'smbind' 'monodoc-banshee-manual' 'lua-dbi-mysql-dev' 'libtasn1-6' 'libmaven-resources-plugin-java' 'libhighline-ruby1.9.1' 'libewf-dev' 'uthash-dev' 'plasma-widget-telepathy-contact' 'ideviceinstaller-dbg' 'gpodder' 'editra' 'claws-mail-python-plugin' 'python-pyxmpp' 'texlive-pstricks' 'libreoffice-help-zh-cn' 'libboost-mpi1.49-dev' 'apache2-mpm-prefork' 'xvier' 'libxml-light-ocaml-dev' 'libvarconf-dev' 'libdrawtk0-dbg' 'whysynth' 'libfreehep-io-java' 'racket' 'eric-api-files' 'syslinux-themes-ubuntu-precise' 'qt4-demos' 'language-pack-kde-pl-base' 'banshee' 'wysihtml-el' 'whitedune-docs' 'fonts-larabie-deco' 'scim-thai' 'r-cran-fextremes' 'libsocialweb-client-doc' 'libseed-gtk3-0' 'librostlab-blast0-dbg' 'libcrypt-openssl-dsa-perl' 'libgravatar-url-perl' 'haserl' 'gosa-plugin-scalix' 'libglee0d1-dbg' 'fp-units-fv' 'extremetuxracer-data' 'dradio' 'libsox2' 'ccal' 'python-dulwich' 'librspec-ruby' 'libxcb-xvmc0' 'librdf0-dev' 'libjaxen-java-doc' 'libgettextpo0' 'libparted0debian1' 'gir1.2-nautilus-3.0' 'libgeoclue0' 'lazarus-ide-qt4-0.9.30.2' 'libgexiv2-1-dbg' 'libgbm-dev-lts-quantal' 'ttytter' 'uniconf-tools' 'showq-dbg' 'remuco-gmusicbrowser' 'recorditnow' 'python-pyrrd' 'python-buzhug' 'psensor-common' 'ng-cjk-canna' 'libsss-idmap0' 'libplayer-dev' 'liblua5.1-coxpcall0' 'libgnadeodbc2' 'libghc-hxt-relaxng-dev' 'ruby-gettext-activerecord' 'libfile-read-perl' 'libcatalyst-plugin-scheduler-perl' 'libbiosig-dev' 'libossp-uuid-perl' 'lib4store0' 'knowledgeroot' 'zivot' 'ipwatchd' 'gpe-announce' 'frogdata' 'cccc' 'php5-snmp' 'libvisio-doc' 'libpilotobjects-dev' 'libfplll0' 'libmemcachedutil1' 'wav2cdr' 'r-cran-bayesm' 'logol' 'libvanessa-logger-dev' 'libspctag-dev' 'libglibmm-utils-dev' 'libghc-iospec-dev' 'gnome-speech-swift' 'gfire' 'genpo' 'libib-util' 'debnest' 'cvs-syncmail' 'cccd' 'bubblefishymon' 'boinc-app-examples' 'php5-gd' 'libpipeline-dev' 'libxcb-render0' 'empathy-call' 'cups-driver-gutenprint' 'linux-image-extra-3.2.0-33-virtual' 'wmdate' 'wesnoth-1.10-httt' 'ttf-summersby' 'tracker-miner-fs' 'sdop' 'python-unbound' 'nyancat' 'monotone-doc' 'monodoc-taglib-manual' 'luckybackup' 'libvde0' 'libswtcalendar-java' 'libpath-utils-dev' 'libadminutil-dev' 'lazarus-ide-qt4-0.9.30.4' 'libsdl-sge' 'gtkhash' 'gmerlin-avdecoder-dbg' 'bgoffice-dict-downloader' 'freevo-data' 'ecere-samples' 'calcurse' 'vlc-plugin-svg' 'texlive-doc-bg' 'libxrender1-dbg' 'libmemcachedutil2' 'linux-headers-3.2.0-37-generic-pae' 'opendrim-lmp-powermanagement' 'libzita-alsa-pcmi-dev' 'libxmlbeans-maven-plugin-java-doc' 'libghc-show-dev' 'libauthen-simple-net-perl' 'drupal6-trans-ru' 'bibledit' 'libxp-dev' 'libmx-doc' 'inorwegian' 'gir1.2-ido3-0.1' 'ser-mysql-module' 'libghc6-glfw-prof' 'libmyth-0.25-0' 'brother-lpr-drivers-mfc9420cn' 'spring-mods-kernelpanic' 'openclipart2-svg' 'lifelines-doc-sv' 'libqtscript4-phonon' 'libppi-xs-perl' 'libmp3splt-ogg' 'libjana-doc' 'libhttrack-dev' 'ruby-color-tools' 'libcgi-application-dispatch-perl' 'libkolab0' 'python-aalib' 'fcitx-table-dianbaoma' 'drupal6-mod-addtoany' 'libdmx-dev' 'libffi-dev' 'libkmod2' 'libsoup2.4-1' 'libobjc2-armhf-cross' 'python3.2' 'vdpau-va-driver' 'sanduhr' 'qpid-doc' 'mozart' 'loadmeter' 'libstk0-dev' 'libramaze-ruby1.8' 'libmaven-embedder-java-doc' 'leiningen' 'libjaula1' 'python-smbus' 'globus-gram-job-manager-fork-dbg' 'ttf-motoya-l-cedar' 'dcraw' 'aterm' 'remmina-plugin-vnc' 'libpam-radius-auth' 'libgcr-3-common' 'libghc6-texmath-doc' 'libwayland-dev-lts-quantal' 'ogmrip' 'unity-scope-asklibreoffice' 'm-tx' 'llvm-2.9-runtime' 'libtango7-doc' 'libghc-monads-tf-doc' 'libdbd-mysql-ruby1.9.1' 'libcurl-ocaml' 'libphp-serialization-perl' 'libopkele3' 'gnibbles' 'firefox-testsuite' 'libkonq5abi1' 'alex' 'tftpd' 'librdf-storage-postgresql' 'libnss3-dev' 'python3.3' 'gambas2-gb-db-form' 'linux-backports-modules-net-3.2.0-33-generic' 'sobby' 'pidgin-openfetion' 'nullidentd' 'libopencsg1' 'libjoda-time-java-doc' 'libgrits-doc' 'libghc-clocked-prof' 'libghc-adjunctions-doc' 'libeventdb-dev' 'kdegraphics-mobipocket' 'libkatepartinterfaces4' 'ipython-notebook-common' 'globus-gass-transfer-dbg' 'flowscan-cugrapher' 'extsmail' 'pspp' 'asterisk-prompt-de' 'aolserver4-dev' 'quantum-server' 'librbd-dev' 'libgadu3' 'libutouch-frame-dev' 'libcommons-cli-java' 'gnome-terminal' 'libgd2-noxpm' 'vdr-plugin-dvbsddevice' 'tiemu' 'rivet-plugins-data' 'php-horde-groupware' 'openttd-dbg' 'ocamldsort' 'librhash-java' 'libnepomukquery-perl' 'libjinput-java' 'libghc-puremd5-prof' 'libgd-ruby1.8' 'libcommons-math-java-doc' 'libcgi-application-plugin-authentication-perl' 'libdata-integer-perl' 'lesstif-bin' 'libhfstdc++6-4.7-dbg-armel-cross' 'asciio' 'wgalician-minimos' 'texlive-doc-ar' 'python-pika' 'libnetcf1' 'obm-conf' 'libopencv-video2.3' 'linux-headers-lbm-3.2.0-34-generic' 'linux-headers-lbm-3.2.0-29-generic' 'avidemux-qt' 'python-qwt3d-doc' 'librdkit-dev' 'libodbc-ruby-doc' 'libgnuplot-ocaml-dev' 'libghc-non-negative-prof' 'libghc-cpu-doc' 'libperl-version-perl' 'libapache-singleton-perl' 'libeditline0' 'decibel-audio-player' 'archipel-agent-virtualmachine-vnc' 'libxft2-dbg' 'libplist++-dev' 'libclass-factory-util-perl' 'libgphoto2-2' 'gimp-help-common' 'libslepc3.1-dbg' 'xresprobe' 'structure-synth-dbg' 'libtaoframework-openal-cil-dev' 'libresiprocate-turn-client-1.8' 'libmoosex-types-datetime-perl' 'libghc-monadcatchio-mtl-dev' 'libdivecomputer-dev' 'libopencv-video2.4' 'libkwinactivenvidiahack4' 'itk3-doc' 'semi' 'crossfire-common' 'texlive-doc-de' 'librspec-ruby1.9.1' 'xdg-user-dirs' 'libmspub-0.0-0' 'ccbuild' 'libapache2-mod-perl2-dev' 'tremulous-data' 'xserver-xorg-video-siliconmotion-lts-quantal' 'xfractint' 'doc-rfc-misc' 'yorick-ml4' 'twittering-mode' 'libplotmm-doc' 'libopenr2-bin' 'ruby-mp3tag' 'libskstream-0.3-dev' 'kdevplatform-dev' 'liblvm2app2.2' 'libcolorhug1' 'unrar-free' 'libghc6-monadcatchio-mtl-dev' 'awn-applet-quit-applet' 'language-pack-gnome-tlh' 'fsl-doc-4.1' 'vboot-utils' 'udftools' 'softflowd' 'profnet-dbg' 'nanoweb-contrib' 'maint-guide' 'libnet-ssh-multi-ruby' 'libmaven-antrun-extended-plugin-java' 'libauthen-simple-http-perl' 'kmouth' 'telepathy-gabble-dbg' 'libexempi3-dbg' 'printer-driver-hpijs' 'foomatic-db-engine' 'libqt3-compat-headers' 'sketch-doc' 'python-pyclamd' 'perftest' 'libxray-spacegroup-perl' 'libghc-vector-dev' 'libghc-unordered-containers-dev' 'libghc-css-text-dev' 'libdrumstick-dev' 'libdb5.1-tcl' 'kdevelop-php-docs' 'ibus-table-translit-ua' 'ctioga2' 'language-pack-is-base' 'libghc6-arrows-prof' 'python-okasha' 'mythtv-backend-master' 'vdr-plugin-prefermenu' 'python-zope.size' 'pssh' 'mumble' 'libspring-oxm-java' 'libodbc-ruby' 'libmnl-dev' 'libfusioninventory-agent-task-snmpquery-perl' 'libjpf-java' 'gofigure2' 'libktoblzcheck1c2a' 'gmsh-doc' 'libc6-dev-armhf-cross' 'g3dviewer-dbg' 'fetchyahoo' 'erlang-yaws' 'mklibs-copy' 'python-minimal' 'youtranslate' 'phamm-ldap-amavis' 'libnode-node-stringprep' 'libxfce4util6-dbg' 'libwww-mechanize-ruby1.9.1' 'libtest-yaml-meta-perl' 'libpcp-import1' 'libmediainfo-dev' 'libcatalyst-plugin-redirect-perl' 'libauthen-smb-perl' 'impressive' 'ppdfilt' 'bbpager' 'luatex' 'xmlrpc-api-utils' 'libgail-doc' 'libflac++-dev' 'tiger' 'mrwtoppm-gimp' 'libsphinxclient-dev' 'libsopranoserver-perl' 'libglobus-gridmap-callout-error-dev' 'libghc-warp-tls-prof' 'libghc-sendfile-dev' 'libghc-cgi-doc' 'libclass-dbi-abstractsearch-perl' 'libauthen-tacacsplus-perl' 'kde-style-bespin' 'kalarm' 'fcitx-mozc' 'fcitx-frontend-fbterm' 'dvi2ps-fontdesc-morisawa5' 'drizzle-plugin-logging-gearman' 'libcipux-object-perl' 'arpon' 'libunwind-setjmp0-dev' 'libreoffice-style-hicontrast' 'language-pack-ts-base' 'language-pack-vi-base' 'ubuntu-orchestra-management-server' 'libpt2.4.5-doc' 'libghc6-fgl-prof' 'wrapsrv' 'qonk' 'python3-stdnum' 'pyneighborhood' 'libpwquality-tools' 'libplexus-containers1.5-java-doc' 'libmodule-cpants-analyse-perl' 'libgda-5.0-bin' 'libbusiness-onlinepayment-tclink-perl' 'kbruch-dbg' 'gworkspace.app' 'coccinella' 'libfilesys-df-perl' 'libfont-ttf-perl' 'libdb-dev' 'humanity-icon-theme' 'vacation' 'vmware-manager' 'smp-utils' 'slurm-llnl' 'request-tracker4' 'python-sphinxbase-dbg' 'netcdf-ruby1.9.1' 'lifelines-doc' 'root-plugin-geom-gdml' 'libroot-geom5.34' 'lua-apr-dev' 'libghc-haskelldb-hdbc-odbc-doc' 'libidzebra-2.0-0' 'libglide2' 'epub-utils' 'libqtwebkit4-perl' 'libftdi-dev' 'python3-oauthlib' 'libstartup-notification0-dev' 'libghc6-hscolour-prof' 'zipcmp' 'xvkbd' 'xtron' 'tetrinet-client' 'pd-chaos' 'libxine1-doc' 'libvbr2' 'libunrar0' 'libqxcppunit-dev' 'libgtksourceviewmm-3.0-dbg' 'libcache-mmap-perl' 'libany-template-processdir-perl' 'gobjc-4.7-multilib-powerpc-linux-gnu' 'gigolo-dbg' 'libcsound64-5.2' 'account-plugin-foursquare' 'libglide3' 'libbogl-dev' 'libavformat53' 'openoffice.org-l10n-be-by' 'xvile' 'ptpd' 'png-definitive-guide' 'nova-console' 'mboxcheck' 'maitreya' 'libscsynth1' 'libnetclasses0' 'libdumb1-dev' 'libkolab-perl' 'python3-pyside.qtcore' 'gnome-xcf-thumbnailer' 'fslint' 'courier-mlm' 'bsdcpio' 'rhythmbox-data' 'python3-cairo-dev' 'grinvin' 'pybackpack' 'rlfe' 'pdns-recursor-dbg' 'libvtkgdcm2-dev' 'hatari' 'python-gps' 'ttf-konatu' 'libslf4j-java' 'deets' 'libckyapplet1' 'coccinelle' 'caribou' 'libtelepathy-farstream-dev' 'librack-ruby1.9.1' 'libmuonprivate1' 'libsamba-credentials0' 'libnet-server-coro-perl' 'libcgi-application-plugin-dbh-perl' 'libaudiomask1' 'libapr-memcache-dev' 'hexxagon' 'python-mapscript' 'gambas3-gb-image-imlib' 'dwarfdump' 'libtime-period-perl' 'chewmail' 'node-millstone' 'haskell-debian-utils' 'socat' 'libqscintilla2-8' 'approx' 'xserver-xorg-core' 'libghc6-hstringtemplate-dev' 'psi-plus-dbg' 'pcf2bdf' 'ncurses-hexedit' 'moodle-debian-edu-theme' 'mimms' 'libsaga-dev' 'libtrue-perl' 'libogre-1.7.4-dbg' 'libtree-simple-visitorfactory-perl' 'libfsoresource0' 'camping' 'discover' 'libqscintilla2-9' 'e2fsprogs' 'libqt5gui5' 'xfce4-appfinder' 'piuparts-slave' 'performous-dbg' 'ohcount' 'node-nopt' 'mahara-mediaplayer' 'lostirc' 'libtut-dev' 'libtaoframework-opengl-cil-dev' 'libkcompactdisc-dev' 'libjifty-plugin-sitenews-perl' 'libihelp-ruby' 'libdrmaa-dev' 'fp-units-gtk2-2.6.0' 'libboulder-perl' 'texlive-doc-fi' 'texlive-doc-en' 'libssh-doc' 'libboost1.49-dbg' 'stress' 'parted' 'zeitgeist' 'libbackgroundrb-ruby1.8' 'linux-backports-modules-hv-precise-generic' 'python-getfem++' 'php-horde-crypt-blowfish' 'nulog' 'ministat' 'linkchecker-gui' 'libtext-micromason-perl' 'liboptions-java-doc' 'libnss-lwres' 'liblua5.1-rings0' 'libghc-filesystem-conduit-doc' 'kubuntu-desktop' 'imposm' 'gmerlin-plugins-base' 'gir1.2-appstream' 'gearhead' 'firebird2.5-common-doc' 'libfelix-bundlerepository-java' 'ptex-base' 'cbmc' 'avrprog' 'python-egenix-mxtools-doc' 'libustr-1.0-1-dbg' 'libwavpack1' 'libkokyu-6.0.1' 'liboce-visualization1' 'openoffice.org-sdbc-postgresql' 'pyrex-mode' 'mailutils-mh' 'ltsp-cluster-agent' 'jumpapplet' 'python3-zmq' 'python3-html2text' 'fonts-f500' 'eiskaltdcpp-common' 'ttf-radisnoir' 'eclipse-platform-data' 'cdcd' 'asterisk-prompt-es' 'tuareg-mode' 'libldap2-dev' 'language-pack-pap-base' 'gem2deb' 'telepathy-indicator' 'dvd+rw-tools-dbg' 'libsox-fmt-ffmpeg' 'lazarus-ide-gtk2-0.9.30.2' 'supercollider-common' 'ptop' 'mysql-utilities' 'tree-ppuzzle' 'mcpp-doc' 'libmapiadmin0' 'liblttd-dev' 'liblo10k1-dev' 'libdssi-ocaml' 'libconvert-nls-date-format-perl' 'libpoe-component-server-soap-perl' 'insighttoolkit3-examples' 'grdesktop' 'gmerlin-plugins-avdecoder' 'liboce-visualization2' 'diveintopython3' 'archipel-agent-hypervisor-network' 'amap-align' 'libpng12-dev' 'preview-latex-style' 'obm-core' 'mythgame' 'systemtap-common' 'python-omniorb-doc' 'python-biopython-sql' 'node-chrono' 'libusbtc08-dev' 'libtasn1-bin' 'libstomp-ruby-doc' 'libocamlnet-gtk2-ocaml-dev' 'libkokyu-6.0.3' 'libical-parser-html-perl' 'libghc-numeric-quest-dev' 'jenkins-executable-war' 'fonts-pagul' 'cyrus-pop3d-2.2' 'gwenhywfar-tools' 'tcl8.4-doc' 'sni-qt' 'libgusb-dev' 'makedumpfile' 'tofrodos' 'grub-pc' 'activity-log-manager' 'libghc6-quickcheck2-prof' 'libghc-http-enumerator-prof' 'transgui' 'r-cran-xml' 'minit' 'libsimple-xml-java-doc' 'librostlab-blast0-dev' 'libqdjango-script0' 'libmyth-0.26-0' 'lazarus-ide-gtk2-0.9.30.4' 'hdfview' 'gpac-dbg' 'gmpc-dbg' 'gettext-lint' 'geda-examples' 'fstransform' 'ax25mail-utils' 'audacious-analog-vumeter-plugin-data' '4store' 'texlive-doc-es' 'libpaper-utils' 'language-pack-gnome-wae' 'libnode-node-xmpp' 'xfce4-radio-plugin' 'rman' 'python-sphinxcontrib.seqdiag' 'websockify' 'libwsman-clientpp1' 'libsigrokdecode0-dev' 'libopencore-amrwb0-dbg' 'libopencascade-ocaf-lite-dev' 'libnet-remctl-perl' 'libmodule-install-automanifest-perl' 'libjs-swfupload' 'libghc-shellac-prof' 'libghc-lifted-base-prof' 'libghc-blaze-html-dev' 'libdvbpsi7' 'libcolor-calc-perl' 'kimwitu' 'tali' 'cyrus-pop3d-2.4' 'libjgoodies-forms-java' 'libdbd-sqlite2-perl' 'amideco' 'libxml-parser-perl' 'gitalist-fastcgi' 'tads3-dev' 'unity-webapps-tumblr' 'root-tail' 'python-django-celery' 'maildirsync' 'libquazip0-dbg' 'libplayer-doc' 'liblog-dispatch-configurator-any-perl' 'libiec16022-dev' 'libglobus-gram-job-manager-callout-error-dev' 'libghc-hxt-relaxng-doc' 'libkqueue-dev' 'libdbd-excel-perl' 'libcwiid-dev' 'zlib-bin' 'horgand' 'gurlchecker' 'globus-gass-cache-program-dbg' 'f2c' 'caps' 'xastir' 'acpitool' 'libapache2-mod-auth-pgsql' 'libpilotobjects-doc' 'sylpheed-dbg' 'pubtal' 'neard-tools' 'libsphinx-search-perl' 'libnet-sftp2-ruby1.8' 'libghc-iospec-doc' 'kdegames-mahjongg-data' 'tuxfootball' 'talk' 'hepmc-reference-manual' 'mplayer2' 'di-netboot-assistant' 'cdde' 'seaview' 'blogilo' 'apcalc' 'libmono-cairo2.0-cil' 'libroman-perl' 'xmms2-plugin-sndfile' 'xfonts-cronyx-koi8u-75dpi' 'sparkleshare' 'libwsdl2c-java' 'libtaoframework-freeglut2.4-cil' 'libmapnik2-dev' 'libauthen-captcha-perl' 'lua-curl' 'emu8051' 'automysqlbackup' 'asterisk-mysql' 'cdck' 'texlive-doc-fr' 'libperlio-gzip-perl' 'libxerces2-java-doc' 'libmx-1.0-2-dbg' 'libmime-tools-perl' 'libkms-ltsq1-dbg' 'vdr-plugin-epgsync' 'tryton-modules-analytic-invoice' 'python-py++' 'pgadmin3-data' 'lubuntu-artwork' 'live-image-gnome-desktop' 'libsigrok0' 'librsbac-dev' 'libnet-ldap-filterbuilder-perl' 'libgnuspool0' 'libghc-show-doc' 'libghc-hxt-xslt-prof' 'libmath-base36-perl' 'libopencv-video-dev' 'fonts-smc' 'unity-webapps-common' 'rabbitmq-server' 'libevent-core-2.0-5' 'language-pack-gnome-nl-base' 'language-pack-gnome-lv-base' 'postgresql-server-dev-8.4' 'libtreil0' 'libterm-encoding-perl' 'libggz-dev' 'libconfig-find-perl' 'ibus-table-compose' 'gbatnav' 'charmap.app' 'libpoppler-qt4-dev' 'libgtk-vnc-2.0-0' 'ccache' 'urg-utils' 'unity-webapps-mail-ru' 'scuttle' 'ntop-data' 'libsword-dbg' 'libsmi2-common' 'libqtdee2' 'libghc-syb-dev' 'libdkim-dev' 'planetpenguin-racer-extras' 'dh-make-php' 'cl-sql-tests' 'libcrypt-util-perl' 'texlive-doc-ja' 'python3-sip-dbg' 'libhttp-tiny-perl' 'account-plugin-gadugadu' 'language-pack-kde-my-base' 'cdbs' 'libgl1-mesa-dev-lts-quantal' 'ruby-glib2-dbg' 'rdeliver' 'python-zbarpygtk' 'python-wtforms' 'libxcrypt-dev' 'libqtdee3' 'libpmi0-dev' 'libphone-ui-shr-data' 'libpadre-plugin-perlcritic-perl' 'libkface-dev' 'libghc-iconv-prof' 'libdevel-simpletrace-perl' 'libcommons-javaflow-java' 'libgo-perl' 'libgtkpod1' 'dbndns' 'animals' 'python-utidylib' 'indicator-status-provider-emesene' 'libcpg4' 'liblua50-socket2' 'ingo1' 'f2j' 'ubuntu-packaging-guide-common' 'science-dataacquisition' 'piuparts-common' 'liblocale-msgfmt-perl' 'libmoosex-yaml-perl' 'libtext-vfile-asdata-perl' 'ruby-uconv' 'gerbv' 'fonts-sil-charis' 'aolserver4-doc' 'libgnomekbd-dev' 'john-data' 'hicolor-icon-theme' 'gnome-user-share' 'libghc6-type-level-prof' 'libstdc++6-4.6-dev-armel-cross' 'soundmodem' 'prefixsuffix' 'mit-scheme-doc' 'libzbarqt0' 'uim-tcode' 'libpsiconv6' 'liblwt-ocaml-dev' 'libmoosex-daemonize-perl' 'lam-runtime' 'libgtk2-ex-podviewer-perl' 'ttf-adf-tribun' 'dracut' 'denemo-data' 'debian-zh-faq-s' 'debarchiver' 'cedar-backup2-doc' 'libboo2.0.9-cil' 'archipel-agent-hypervisor-health' 'libcolord1' 'ichthux-desktop' 'gtk-smooth-themes' 'vim-vimerl-syntax' 'shed' 'python-sunpinyin' 'php-horde-date-parser' 'python-webdav' 'nsis-doc' 'util-vserver' 'parrot' 'libghc-cairo-prof' 'libslepc3.1-dev' 'libgeronimo-javamail-1.4-spec-java' 'fpc-source-2.6.0' 'fcitx-table-quick3' 'qdigidoc' 'debian-zh-faq-t' 'bibus-doc-en' 'wmcpuload' 'texlive-lang-portuguese' 'pyzor' 'libreoffice-writer' 'libsmbclient' 'xfce4-panel-dbg' 'python-indigo' 'libwpeditor0' 'libuu-dev' 'libghc-smtpclient-dev' 'libghc-monadcatchio-mtl-doc' 'aqsis-examples' 'libapache2-mod-perl2-doc' 'exuberant-ctags' 'libpam-cracklib' 'linux-headers-3.2.0-39-lowlatency-pae' 'liblaunchpad-integration-common' 'vidalia' 'specto' 'python-zope.app.security' 'python-numpydoc' 'libssm0' 'libspork-perl' 'lua-markdown' 'fcitx-table-quick5' 'dmtcp-dbg' 'libclinica0' 'cgoban' 'dolphin' 'pump' 'bacula-common-pgsql' 'plasma-widget-telepathy-contact-dbg' 'libghc6-monadcatchio-mtl-doc' 'virtualbox-ose-guest-utils' 'ygraph' 'wmauda' 'tor-dbg' 'rds-tools' 'libsyfi1.0-dbg' 'omnievents-doc' 'libmoosex-insideout-perl' 'libmojolicious-plugin-mailexception-perl' 'libmenhir-ocaml-dev' 'libhdfeos5-ruby1.8' 'junior-toys' 'python-txzookeeper' 'hashcash' 'gamera-gui' 'fonts-uralic' 'libeurodec1-dev' 'biff' 'atftp' 'libtango-ldc-dev' 'linux-headers-3.2.0-40-virtual' 'linux-headers-3.2.0-35-virtual' 'xsddiagram' 'ruby-warden' 'python-regex-dbg' 'python-pyscript-doc' 'libsimple-validation-java' 'liblua5.1-curl0' 'libkdtree++-dev' 'libghc-css-text-doc' 'libghc-vector-doc' 'libghc-unordered-containers-doc' 'kalzium-data' 'libnet-dns-sec-perl' 'cl-mcclim-doc' 'syslinux-themes-ubuntu-oneiric' 'gstreamer1.0-doc' 'libfribidi0' 'myspell-pt-br' 'libsyslog-ng-3.3.4' 'libpadre-plugin-css-perl' 'linux-backports-modules-net-3.2.0-36-generic-pae' 'libebox' 'turpial' 'llvm-3.0-examples' 'libnet-libdnet-perl' 'libghc-authenticate-dev' 'libgctp0d' 'libosgi-core-java-doc' 'ktikz' 'kdewebdev' 'friends-app' 'discount' 'g++-arm-linux-gnueabihf' 'cpp-aarch64-linux-gnu' 'libsnack2' 'xul-ext-unity' 'user-setup' 'bacula-sd-mysql-dbg' 'ruby-amq-client' 'root-plugin-io-sql' 'r-cran-cairodevice' 'python-zope.preference' 'python-hamcrest' 'thin1.8' 'python-django-registration' 'libparse-dia-sql-perl' 'libognl-java' 'libmediainfo-doc' 'libesd-java' 'kmenuedit' 'ivtools-bin' 'libimage-imlib2-perl' 'libaudio-flac-header-perl' 'thuban' 'gdesklets' 'coq-doc' 'kwrite' 'asmix' 'babeld' '7kaa-dbg' 'libexpat1' 'xblast-tnt-mini' 'libsyslog-ng-3.3.6' 'libruli4-dev' 'libroot-proof-clarens-dev' 'ncbi-data' 'libmongo-client0' 'libglobus-gridmap-callout-error-doc' 'libghc-sendfile-doc' 'liboauth-signpost-java' 'hobbit-plugins' 'libpari-gmp3' 'digitemp' 'cpp-4.5-arm-linux-gnueabihf' 'check-mk-server' 'asterisk-prompt-it' 'assimp-utils' 'libreoffice-style-oxygen' 'zoneminder' 'libcap2-bin' 'giflib-dbg' 'linux-headers-3.2.0-36-lowlatency' 'xserver-xorg-input-void' 'wifite' 'python-pysnmp2' 'python-pisa' 'lua-zlib-dev' 'libmongodbx-class-perl' 'libhugs-parsec-bundled' 'libghc-test-framework-th-prime-prof' 'libghc-netwire-dev' 'libggzcore-dev' 'libnet-nbname-perl' 'libdmtcpaware1' 'kate-syntax-go' 'libglobus-authz0' 'giggle-terminal-view-plugin' 'gedit-source-code-browser-plugin' 'ptex2tex' 'dctrl2xml' 'libbliss-dev' 'libdate-simple-perl' 'libgrits4' 'run-one' 'wswiss' 'courier-mta' 'nautilus-sendto-empathy' 'libnet-ldap-perl' 'nttcp' 'scsh-install-lib' 'python-whois' 'libuim7' 'libpopplerkit0' 'libpam-alreadyloggedin' 'libopenr2-dev' 'libgtksourceviewmm-3.0-dev' 'libdata-validate-email-perl' 'libdaq-dev' 'libben-ocaml' 'kamailio-dbg' 'hdf5-tools' 'libgoo-canvas-perl' 'golang-src' 'dict-freedict-ita-deu' 'ruby-merb-assets' 'barnowl' 'altree' 'mkcue' 'tomcat7-admin' 'pptp-linux' 'llvm-2.8-source' 'smitools' 'python-pysnmp4' 'obexpushd' 'pure-ftpd-mysql' 'libuim8' 'libtinyxml2-dev' 'libspring-security-taglibs-2.0-java' 'libspring-web-servlet-java' 'libpoe-component-dbiagent-perl' 'libsub-override-perl' 'libcolor-palette-perl' 'jailtool' 'gridengine-common' 'ffmpegthumbnailer-dbg' 'coinor-libflopc++0-dbg' 'texlive-doc-it' 'libstax-java' 'libmission-control-plugins0' 'libcman-dev' 'libpadre-plugin-javascript-perl' 'libmerb-slices-ruby1.8' 'libbarry0' 'ruby-gnome2-dev' 'python-webflash' 'multiget' 'libtest-spec-perl' 'ruby-nora' 'libplexus-sec-dispatcher-java' 'libcommons-lang3-java-doc' 'kildclient' 'gpe-screenshot' 'fingerd' 'bristol' 'audex' 'animals-dbg' 'libsdl-net1.2' 'python3-cairo-doc' 'language-pack-lb-base' 'pidgin-skype' 'netperf' 'libsezpoz-java-doc' 'librime-data-zyenpheng' 'libloadpng4-dev' 'liblingua-en-words2nums-perl' 'libcrypt-gpg-perl' 'libcorelinux-examples' 'smlnj' 'libcatalyst-view-gd-perl' 'ipheth-utils' 'guvcview' 'libglobus-gsi-cert-utils0' 'compiz-fusion-bcop' 'cacti-spine' 'alot' 'tdb-tools' 'libtelepathy-farstream-doc' 'libcommons-net2-java' 'libcanberra-gstreamer' 'language-pack-gnome-nso-base' 'gcc-4.4' 'inetutils-ping' 'libghc6-magic-prof' 'web2ldap' 'python-drizzle-dbg' 'node-connect' 'libmono-fuse-cil' 'liblogservicetoolbase2' 'libjiu-java-doc' 'libhtml-formattext-withlinks-perl' 'libghc-socks-dev' 'libgcgi-dev' 'libcrimson-java' 'jargoninformatique' 'keyjnote' 'glide2-bin' 'flickrbackup' 'courier-pcp' 'libsqlite0-dev' 'bluefish-plugins' 'cyrus-imapd-2.2' 'libxplc0.3.13-dev' 'm17n-docs' 'gcc-4.5' 'leveldb-doc' 'libghc6-hstringtemplate-doc' 'libegl1-mesa-dev-lts-quantal' 'python-othman' 'wcanadian-large' 'tor-arm' 'science-neuroscience-modeling' 'rygel-gst-renderer' 'perlbal' 'openteacher' 'mrpt-doc' 'librime0-dbg' 'ruby-qt4-script' 'libghc-cond-prof' 'kwin-style-qtcurve' 'itools' 'wfinnish' 'icedtea-6-plugin' 'gpsbabel-gui' 'ghextris' 'freemind-plugins-svg' 'espeakup' 'ebview' 'archipel-core' 'xfonts-unifont' 'python-warlock' 'libxfont-dev' 'libhunspell-dev' 'libboost1.49-dev' 'language-pack-sv-base' 'gcc-4.6' 'libggi-target-x' 'searchandrescue-data' 'music123' 'libwulf2' 'libtaktuk-perl' 'liblouisxml-data' 'libghc-unixutils-dev' 'libghc-syb-with-class-instances-text-dev' 'libgda-5.0-dev' 'libdvbpsi-dev' 'xtables-addons-common' 'libdspam7' 'cyrus-imapd-2.4' 'libqrencode3' 'texlive-doc-ko' 'libxerces2-java-gcj' 'gcc-4.7' 'avahi-utils' 'gcc-4.6-arm-linux-gnueabi' 'libisccc80' 'xserver-xorg-input-multitouch' 'sphinx3-hmm-en-hub4' 'packit' 'mudita24-dbg' 'mcabber' 'plymouth-theme-lubuntu-text' 'libregina3' 'libnes1-dbg' 'libghc-xdg-basedir-prof' 'libtrident-java' 'libapache2-authenntlm-perl' 'gupnp-tools' 'gosa-plugin-mit-krb5-schema' 'apt-cudf' '389-ds-base' 'pulseaudio-module-jack' 'gobject-introspection' 'gedit-plugins' 'gsettings-desktop-schemas' 'libghc6-zlib-prof' 'libghc6-hsql-postgresql-dev' 'zentyal-dns' 'me-tv' 'libzookeeper-st2' 'librxp0' 'libreoffice-filter-mobiledev' 'libladspa-ocaml' 'ldap-haskell-doc' 'xcwcp' 'kopete-cryptography' 'k3d-data' 'ppthtml' 'libpod-wsdl-perl' 'libgfs-1.3-2' 'sim4' 'unity-scope-gdocs' 'postgresql-server-dev-9.1' 'libreoffice-draw' 'libvigraimpex3' 'scim-prime' 'psi-plus-plugin-psimedia' 'pdns-backend-pgsql' 'swatch' 'nunit' 'sofa-apps' 'libvideo-capture-v4l-perl' 'libred5-java' 'libpcap-ruby' 'libghc-test-framework-hunit-prof' 'libghc-html-conduit-dev' 'libbarby-ruby' 'blobby' 'libopencryptoki0' 'libdb5.1-sql' 'openmpi1.5-doc' 'libopensync1exp7' 'linux-headers-3.2.0-32-generic' 'linux-headers-3.2.0-27-generic' 'glx-alternative-fglrx' 'fonts-ipafont-nonfree-jisx0208' 'profnet-con' 'libpiccolo-java' 'libvtk5-qt4-dev' 'libhtml-wikiconverter-usemod-perl' 'libghc-numeric-quest-doc' 'libghc-gitit-dev' 'gmpc-dev' 'electric' 'libjsoup-java' 'dropbear' 'ddclient' 'mapserver-bin' 'auth2db-frontend' 'amora-applet' 'aeskeyfind' 'libvisio-tools' 'libvigraimpex4' 'libgusb-doc' 'autopoint' 'fusionforge-plugin-gravatar' 'python-desktopcouch-application' 'workrave-data' 'sofa-data' 'qtsmbstatus-light' 'pyxplot' 'pacman' 'libplexus-active-collections-java' 'libmath-nocarry-perl' 'liblua5.1-doc0' 'libdigidoc-common' 'libassimp-dev' 'ladder' 'gwibber-service-statusnet' 'hashalot' 'tryton-modules-sale-price-list' 'syslog-ng-core' 'php5-ps' 'nuauth' 'mythtvfs' 'libright-http-connection-ruby-doc' 'libquazip0-dev' 'libpulse-ocaml-dev' 'libmodule-manifest-skip-perl' 'libhtml-popuptreeselect-perl' 'libghc-texmath-dev' 'libghc-blaze-html-doc' 'libghc-ami-dev' 'kdegames' 'gambas3-gb-form' 'libdifflcs-ruby' 'libmythes-dev' 'gfxboot-dev' 'libdpkg-perl' 'libisccc90' 'tads3-doc' 'wpg2odg' 'tryton-modules-purchase' 'rcs-blame' 'lua-wsapi-doc' 'libxstrp4-camlp4-dev' 'librime-data-cangjie5' 'libmule-java-2.0' 'libkgeomap-data' 'libglobus-gram-job-manager-callout-error-doc' 'libghc-unix-bytestring-prof' 'libghc-ansi-terminal-prof' 'libactionmailer-ruby' 'kde-plasma-netbook' 'argus-server' 'python3-logilab-common' 'm17n-db' 'toshset' 'gsfonts-other' 'triplane' 'slashem-common' 'python-geographiclib' 'man2html-base' 'libghc-monadcatchio-transformers-dev' 'gnome-api-docs' 'dvifb' 'markdown' 'cpushare' 'coco-java' 'cantor-backend-octave' 'libfam0' 'libdevmapper1.02.1' 'yorick-data' 'xpilot-ng-utils' 'python-openopt' 'mono-runtime-sgen' 'libperl6-caller-perl' 'libmime-base32-perl' 'libchise1' 'ruby-activesupport' 'libkmbox4' 'unity-lens-video' 'texlive-doc-mn' 'libmono-system-messaging4.0-cil' 'python-bzrlib' 'libgrilo-0.1-0' 'python-pywcs' 'postgresql-9.1-pljava-gcj' 'xgridfit' 'libtecla1' 'liboce-visualization-dev' 'libnflog-perl' 'libghc-dimensional-dev' 'libfuntools-dev' 'libextlib-ruby1.8' 'mmm-mode' 'libclass-dbi-pager-perl' 'liballegro4.4-plugin-alsa' 'python-irc' 'libgo0-dbg-armhf-cross' 'libxmmsclient++4' 'cinnamon-dbg' 'cantor-backend-sage' 'network-manager-gnome' 'friendly-recovery' 'bacula-director-pgsql' 'storymaps' 'socnetv' 'python-zope.ucol' 'ust-bin' 'libvideo-fourcc-info-perl' 'libsword-dev' 'libethos-ui-1.0-0' 'libtk-dirselect-perl' 'lbreakout2-data' 'libgcj12' 'gambas3-gb-xml' 'freeplane' 'zsh-static' 'libdime' 'libphp-pclzip' 'asmon' 'unity-scope-musicstores' 'texlive-lang-hebrew' 'python3-sip-dev' 'python-pygresql' 'mklibs' 'libsolid4' 'cpu-checker' 'zeitgeist-core' 'task' 'lxrandr' 'liquidsoap-plugin-portaudio' 'libxml-security-java-doc' 'libstdc++6-armhf-cross' 'libpolybori-groebner-0.8-3' 'libghc-setenv-dev' 'libghc-syb-doc' 'libevent-loop-ruby' 'libccss-1-5' 'libsmokeattica3' 'kaffeine-dbg' 'hoz-gui' 'gnu-smalltalk-doc' 'fityk' 'festvox-ru' 'drupal6-mod-views-groupby' 'ubiquity-casper' 'texlive-doc-nl' 'python-cairo-dbg' 'libxml-libxslt-perl' 'libfontconfig1-dbg' 'gir1.2-gnomekeyring-1.0' 'libgcj13' 'bugs-everywhere' 'ttf-kochi-gothic' 'numptyphysics' 'libpowerman0-dev' 'libopendmarc-dev' 'libmono-zeroconf-cil-dev' 'libmeep6' 'shishi' 'ttf-bpg-georgian-fonts' 'nypatchy' 'bobot++' 'batctl-dbg' 'artha' 'libgoocanvas-dev' 'libplrpc-perl' 'cracklib-runtime' 'obexftp' 'libgconf-2-4' 'libghc6-gconf-dev' 'yum-utils' 'python-z3c.pt' 'python-necpp' 'python-ldb' 'libwerken.xpath-java' 'libtest-tempdir-perl' 'libnss-rsbac2' 'liblablgtk-extras-ocaml-dev' 'libgraphite2-3' 'libghc-safe-dev' 'libao-ruby1.8' 'iroffer' 'invada-studio-plugins-ladspa' 'imagetooth' 'fishpoke' 'libxdffileio0' 'cernlib-core-dev' 'node-async' 'asterisk-prompt-fr-armelle' 'libsamplerate0-dev' 'language-pack-gnome-de-base' 'language-pack-gnome-bo-base' 'libcgraph5' 'dvdauthor' 'xfce4-battery-plugin' 'tunapie' 'python-scriptutil' 'packagekit-dbg' 'libmodule-build-withxspp-perl' 'liblwt-ocaml-doc' 'liblua5.1-svn1' 'liblhapdf-dev' 'libgle3-dev' 'gpstrans' 'bygfoot' 'bsh-src' 'libwnck-dev' 'libkrb53' 'fonts-sil-nuosusil' 'usb-imagewriter' 'dtd-ead' 'libboost-thread1.46.1' 'matlab-gdf' 'xfce4-panel-dev' 'wmtime' 'varnish' 'tart' 'ttyrec' 'python-drizzle' 'python-kid' 'libqpid-ruby1.8' 'libpentaho-reporting-flow-engine-java-doc' 'libopenwsman-dev' 'libnanohttp-dev' 'libtest-base-perl' 'libguice-java' 'libghc-yesod-auth-oauth-dev' 'libghc-filestore-prof' 'libnet-https-any-perl' 'kde-telepathy-approver-dbg' 'hercules' 'system-tools-backends' 'gnat-4.6-sjlj' 'gambas3-gb-compress-zlib' 'lib64stdc++6-4.7-dbg-powerpc-cross' 'ttf-comfortaa' 'e2undel' 'dict-freedict-eng-ara' 'dh-lua' 'binutils-static' 'apper-data' 'anki' 'libppl0.11-dev' 'libmono-posix4.0-cil' 'linux-backports-modules-hv-3.2.0-39-generic' 'ubiquity-slideshow-edubuntu' 'osmo-dbg' 'mupen64plus-audio-all' 'libsundials-idas0' 'libparmetis-dev' 'libghc-smtpclient-doc' 'wrapperfactory.app' 'libbindex-java' 'language-pack-gnome-lt-base' 'language-pack-gnome-ky-base' 'ttf-arphic-gkai00mp' 'libkasten1okteta1gui1' 'user-he' 'stardict-plugin-festival' 'pdfshuffler' 'libwiki-toolkit-formatter-usemod-perl' 'libripoff-dev' 'libqt5v8-5' 'libqt4pas5' 'libpacket-ruby1.8' 'libghc-polyparse-dev' 'libcoyotl-3.1-4' 'libanydata-perl' 'opencubicplayer' 'geany-plugin-updatechecker' 'festlex-cmu' 'libsyfi1.0-dev' 'nagios-plugins-extra' 'libdb5.1-stl' 'libboost-serialization1.49-dev' 'iodbc' 'libgif-dev' 'xserver-xorg-video-tseng' 'selinux-utils' 'ruby-rubyzip2' 'pike7.8-bzip2' 'plink' 'logitech-applet' 'libtolua++5.1-dev' 'librdf-query-perl' 'libghc-math-functions-prof' 'libgdal-ruby' 'libapache-mime4j-java-doc' 'guestfish' 'libpantomime1.2-dev' 'xmltv-util' 'libeet1' 'drumkv1' 'debichem-polymer' 'aubio-tools' 'xul-ext-webaccounts' 'python-pyorbit-dbg' 'language-pack-kde-om-base' 'pvcam-dkms' 'thunderbird-mozsymbols' 'python3-lepl' 'mecab-naist-jdic-eucjp' 'libtheora-ocaml' 'libghc-opengl-prof' 'libevocosm-dev' 'libcommons-fileupload-java-doc' 'libcatalyst-modules-extra-perl' 'lib64gomp1-dbg-powerpc-cross' 'isomaster' 'gir1.2-goffice-0.10' 'libiptables-parse-perl' 'fusioninventory-for-glpi' 'egoboo' 'libdynalogin-1-0' 'boinc' 'amor' 'python-gflags' 'lib64gfortran3' 'jigit' 'sfst' 'python-networkx-doc' 'python-libsvm' 'mididings' 'lua-dbi-sqlite3' 'libtaoframework-devil1.6-cil' 'libsearch-gin-perl' 'libghc-x11-prof' 'libghc-irc-prof' 'libghc-authenticate-doc' 'libdirectfb-bin' 'keylaunch' 'jbibtex-base' 'libowfat0' 'plotutils' 'python-oops' 'libverto1' 'libtest-synopsis-perl' 'libaudit-common' 'heimdal-servers-x' 'tao-rtevent' 'smuxi-engine-twitter' 'pyca' 'python-ipy' 'meterec' 'libzookeeper2' 'libtest-mocktime-perl' 'libtaoframework-lua-cil-dev' 'libole-ruby1.9.1' 'libodbc-ruby1.8' 'libgii1-dev' 'libomniorb4-dev' 'lesstif-doc' 'kmahjongg-data' 'python-colorama' 'hol88-library' 'gnustep-core-devel' 'libparse-yapp-perl' 'python-gtkspell' 'dar-docs' 'clc-intercal' 'texmaker' 'texlive-doc-pl' 'libmaven2-core-java' 'libtext-csv-xs-perl' 'libpciaccess0' 'git-email' 'gfortran-4.6-arm-linux-gnueabi' 'qweborf' 'nted-doc' 'mrxvt-cjk' 'magicmaze' 'lua-sql-mysql' 'libbytelist-java' 'grml2usb' 'gpsman' 'gambas3-dev' 'ekg-gtk' 'cpp-4.4-arm-linux-gnueabihf' 'courier-authlib-pipe' 'chuck' 'python3-mako' 'jackd1' 'heimdal-docs' 'kpartx' 'geoip-database' 'compiz-plugins-extra' 'libswirl-java' 'tasque' 'python-mzml' 'php-horde-icalendar' 'logtools' 'librsbac1' 'libio-lcdproc-perl' 'zfs-fuse' 'libghc-netwire-doc' 'libgeos-ruby1.8' 'ruby-ferret' 'gir1.2-cheese-3.0' 'gfxboot-themes-opensuse' 'asterisk-flite' 'kdesudo' 'tomcat7-examples' 'libstrigiqtdbusclient-dev' 'jackd2' 'libk5crypto3' 'fp-units-math-2.4.4' 'strigi-utils' 'python-numm' 'python-webhelpers' 'nootka' 'root-system-bin' 'liblog-any-adapter-perl' 'libkaya-mysql-dev' 'libjcifs-java-doc' 'libhaml-ruby' 'libgtksourceviewmm-3.0-doc' 'libdxflib-dev' 'libaws-bin' 'letodms' 'python-lfc' 'latexila' 'jobservice' 'slang-expat' 'librlog5' 'clam-chordata' 'fonts-circos-symbols' 'wmitime' 'libcanberra-gtk-dev' 'netspeed' 'gcj-4.7-jdk' 'libfuse2' 'linux-image-3.5.0-27-generic' 'xpilot-extra' 'xpuzzles' 'uim-dbg' 'squidguard' 'libtime-y2038-perl' 'libnet-appliance-session-perl' 'libjackson-json-java-doc' 'libghc-temporary-prof' 'libspring-context-support-java' 'gadmin-openvpn-client-dbg' 'fp-units-i386' 'emacs-mozc-bin' 'baycomusb' 'liblqr-1-0' 'libfolks25' 'libdistro-info-perl' 'libghc6-sendfile-dev' 'mess-desktop-entries' 'xmms2-plugin-vocoder' 'rpm2html' 'rdmacm-utils' 'python-gst0.10-rtsp' 'python-catwalk' 'lubuntu-desktop' 'libvelocity-tools-java-doc' 'libtracker-extract-doc' 'libplexus-build-api-java-doc' 'libgit2-0' 'libgda-5.0-mysql' 'libcore-renderer-java-doc' 'lgeneral' 'libgo0-armel-cross' 'firewalld' 'csound-gui' 'asterisk-prompt-se' 'aqualung' 'libcanberra-gtk3-module' 'wiggle' 'share-like-connect-data' 'scantv' 'pennmush-i18n' 'libzerg0' 'libwill-paginate-ruby1.8' 'libogginfo-ruby' 'libgmpada2' 'haskell-hsql-mysql-doc' 'libccfits0' 'lib3ds-1-3' 'ibus-table-scj6' 'pydb' 'ruby-qdbm' 'libgtk-sharp-beans-cil' 'util-linux-locales' 'virtuoso-minimal' 'gupnp-vala' 'libgcr-3-dev' 'libpcsclite1' 'heirloom-mailx' 'cups-ppdc' 'isc-dhcp-client' 'xbindkeys-config' 'snappea-dev' 'python-subnettree' 'openssn-dbg' 'profnet-norsnet' 'profnet-bval' 'libwtdbofirebird33' 'librep-dbg' 'libgnupg-perl' 'libghc-lens-dev' 'libghc-socks-doc' 'libghc-gtkglext-dev' 'libgarcon-1-0' 'libdbi-ruby1.8' 'ivtools-dev' 'gpe-appmgr' 'db5.3-sql-util' 'bing' 'latex-cjk-chinese-arphic-bkai00mp' 'abook' 'gobjc-multilib' 'gir1.2-gdata-0.0' 'rlpr' 'cinder-api' 'checkbox-cli' 'libgui-commands-java-doc' 'libghc6-agda-dev' 'libghc-csv-enumerator-prof' 'linux-image-3.2.0-32-generic-pae' 'linux-image-3.2.0-27-generic-pae' 'vmware-view-open-client' 'rhinote' 'python-uncertainties' 'polygen-data' 'pnp4nagios-bin' 'libxalan110-dev' 'libmodule-manifest-perl' 'liblouis-bin' 'libhugs-cabal-bundled' 'ifcico' 'cec-utils' 'aspell-eo-cx7' 'texlive-doc-pt' 'libparent-perl' 'libboost1.49-doc' 'c2html' 'linux-headers-3.2.0-40-lowlatency-pae' 'linux-headers-3.2.0-35-lowlatency-pae' 'gir1.2-gwibber-gtk-0.2' 'python-secretstorage' 'pike7.8-sdl' 'xen-system-amd64' 'monodoc-clutter-manual' 'sift' 'libradare2-0.9-dbg' 'monodoc-monogame-manual' 'libminc-dev' 'libmasonx-request-withapachesession-perl' 'libghc-unixutils-doc' 'libghc-syb-with-class-instances-text-doc' 'libgda-5.0-doc' 'libclass-dbi-sweet-perl' 'gnome-themes-standard-data' 'filler' 'envstore' 'encadre-image' 'debian-faq-de' 'appstream-index' 'apbs' 'python-aptdaemon.test' 'gobjc-4.7-multilib' 'tesseract-ocr-deu-frak' 'python-django-picklefield' 'pydf' 'mythnettv' 'mspdebug' 'lttng-modules-dkms' 'libwebservice-solr-perl' 'libwebauth-perl' 'libtpl0' 'libplexus-i18n-java-doc' 'libmockito-java-doc' 'libmcpp0' 'libkfbapi1-dbg' 'ruby-feedtools-doc' 'libfile-changenotify-perl' 'python-pivy' 'docbook-html-forms' 'banshee-extension-soundmenu' 'libsnack2-alsa' 'libcunit1-ncurses-dev' 'libboost-regex1.46-dev' 'erlang-eunit' 'libcfg-dev' 'libghc6-hsql-postgresql-doc' 'iucode-tool' 'wmbubble' 'vpx-tools' 'tcng' 'qt-sdk' 'python-twisted-libravatar' 'libzend-framework-php' 'libxflaim-dev' 'libshibsp-dev' 'libghc-libzip-dev' 'ushare' 'libderiving-ocaml-dev' 'libaws-dbg' 'libdanga-socket-perl' 'foremancli' 'fact++' 'dssi-host-jack' 'cp2k' 'clang-3.2-doc' 'yelp-tools' 'network-manager-openvpn-gnome' 'doxygen-gui' 'lsb-pkgchk3' 'libghc6-utility-ht-dev' 'libgeos-3.2.2' 'pxfw' 'perdition-mysql' 'libtokyocabinet-ruby1.8' 'libpgm-5.1-0' 'libref-array1' 'libgyoto0-dev' 'libghc-html-conduit-doc' 'libghc-date-cache-prof' 'ruby-plasma' 'libcaribou-gtk3-module' 'gimp-lensfun' 'fp-units-rtl' 'libhtml-scrubber-perl' 'chaosreader' 'alienblaster-data' 'texlive-doc-si' 'itrans' 'python3-pycurl' 'nova-objectstore' 'sgmls-doc' 'pavucontrol' 'libboost-graph1.49-dev' 'language-pack-ht-base' 'libgssrpc4' 'libtulip-pluginsmanager-3.1' 'postgresql-9.1-pgmp' 'mupen64plus-input-sdl-dbg' 'libqt5declarative5' 'libpod-tests-perl' 'libopagent1' 'libghc-haskelldb-hdbc-dev' 'libghc-gitit-doc' 'gridsite-clients' 'fuseext2' 'foobillard' 'libcalendarsupport4' 'pppconfig' 'libsamsg4' 'fonts-tlwg-purisa' 'libghc6-hsp-dev' 'libtokyocabinet8' 'xsmc-calc' 'rygel-1.0-dev' 'python-qgis' 'python-pyside.qtuitools' 'libx52pro-dev' 'libsyncml2' 'libsynce-dbg' 'libqxt-zeroconf0' 'libjgoodies-animation-java' 'libhash-asobject-perl' 'libboost-system1.53-dev' 'libassimp-doc' 'gnotime' 'libgrilo-0.2-1' 'datapm' 'dasher' 'dacs' 'hwinfo' 'amsn' 'libreoffice-help-zh-tw' 'libboost-system1.48-dev' 'libdlm3' 'apt-utils' 'libgnome-bluetooth8' 'xine-plugin' 'r-cran-zoo' 'qbankmanager' 'python-rbtools' 'pepper' 'minidlna' 'mediainfo' 'libtest-www-mechanize-mojo-perl' 'libprelude-perl' 'libplexus-classworlds-java-doc' 'libghc-texmath-doc' 'libghc-enumerator-prof' 'libghc-ami-doc' 'shiki-wine-theme' 'getdp' 'pdebuild-cross' 'dictionaryreader.app' 'libjs-simile-timeline' 'dact' 'bino' 'autofs-ldap' 'thunderbird-locale-bn-bd' 'libtokyocabinet9' 'libmysql-java' 'libp11-2' 'liblinear-dbg' 'language-pack-ve-base' 'language-pack-st-base' 'ttf-khmeros' 'python-configobj' 'libaqbanking33' 'trac-bitten-slave' 'terminator' 'soundconverter' 'root-macro-fastjet' 'sylpheed-doc' 'libxml-csv-perl' 'librygel-renderer-2.0-1' 'libmpg123-dev' 'libmail-deliverystatus-bounceparser-perl' 'libconst-fast-perl' 'libben-ocaml-dev' 'calgebra' 'bluefish-data' 'bioperl' 'texlive-doc-th' 'horde3' 'libwpg-dev' 'datefudge' 'libghc6-cpphs-prof' 'tryton-modules-project' 'tpconfig' 'pwman3' 'oar-user-pgsql' 'libtelepathy-logger-qt4-dev' 'libsp-gxmlcpp-dev' 'libglide2-dev' 'libghc-monadcatchio-transformers-doc' 'imediff2' 'libhd16' 'gnome-human-icon-theme' 'daptup' 'apel' 'libaqbanking34' 'texlive-doc-rs' 'ruby-builder' 'python-egenix-mxproxy-doc' 'libmtp-common' 'xserver-xorg-video-modesetting-lts-quantal' 'conserver-client' 'ruby-minimization' 'qgis-providers' 'python-zope.viewlet' 'python-zope.app.principalannotation' 'pngcheck' 'plymouth-theme-ubuntu-gnome-logo' 'pconsole' 'osspd-dbg' 'nova-compute-qemu' 'libxfce4util4' 'libtest-notabs-perl' 'libtime-clock-perl' 'libode-sp-dev' 'ntrack-module-rtnetlink-0' 'liblocale-po-perl' 'libstring-bufferstack-perl' 'libcgi-application-plugin-devpopup-perl' 'liballegro-ttf5.0' 'rocs' 'k3b-data' 'gcu-plugin' 'cronolog' 'cairo-dock-data' 'libxosd2' 'texlive-lang-french' 'tcpd' 'language-pack-gnome-tlh-base' 'rt4-fcgi' 'python-django-pipeline-doc' 'python-actdiag' 'nordugrid-arc-java' 'libmumps-ptscotch-4.10.0' 'libmsv-java' 'libjlayer-java-doc' 'libghc-dimensional-doc' 'libgomp1-armel-cross' 'libev-libevent-dev' 'libeasy-format-ocaml-dev' 'libdata-dump-streamer-perl' 'libconfuse-common' 'freegish-data' 'libcgns3.1' 'bins' 'axiom-hypertex' 'aosd-cat' 'alsaplayer-alsa' 'texlive-doc-ru' 'python-flask' 'nova-scheduler' 'libreoffice-l10n-en-gb' 'librccgtk2-0' 'u-boot-tools' 'libavutil-extra-51' 'liblzma5' 'libghc6-binary-prof' 'libnetsvcs-6.0.1' 'xfonts-jmk' 'rsplib-services' 'r-cran-stringr' 'python-schooltool' 'node-chainsaw' 'libnet-telnet-cisco-perl' 'libjira-client-perl' 'isdnvbox' 'fuse-emulator-sdl' 'libxfce4util6' 'libvhd0' 'bibledit-gtk-data' 'tcpdump' 'python-cairo-dev' 'libreoffice-filter-binfilter' 'libfontconfig1-dev' 'adept' 'nova-vncproxy' 'yate-dahdi' 'tryton-modules-account-statement' 'tetradraw' 'libview-dev' 'libopencascade-ocaf-lite-6.5.0' 'libhtml-auto-perl' 'libghc-setenv-doc' 'libcmlutil-smlnj' 'deluge-console' 'gir1.2-gupnp-1.0' 'awn-applet-pandora' 'shinken-reactionner' 'ruby-net-http-digest-auth' 'qt3d5-dbg' 'python-kml' 'pd-beatpipe' 'nagios-snmp-plugins' 'mysql-mmm-monitor' 'libpathfinder-openssl-1' 'libmail-sendeasy-perl' 'libhtmlunit-core-js-java' 'ladish-dbg' 'ezstream' 'elmer-common' 'binutils-powerpc-linux-gnu' 'libnetsvcs-6.0.3' 'rsyslog-gssapi' 'libnss-winbind' 'libgamin0' 'libmetacity-dev' 'libmessaging-menu-dev' 'libghc6-gconf-doc' 'root-plugin-math-minuit2' 'python-mathgl' 'nginx-full' 'libucommon5-dbg' 'libmina2-java-doc' 'liblablgtk-extras-ocaml-doc' 'libghc-safe-doc' 'libghc-arrows-prof' 'lib64mudflap0-dbg' 'libinventor0' 'libcrypt-smbhash-perl' 'fonts-sil-gentium-basic' 'dfu-programmer' 'blam' 'aspic' 'rastertosag-gdi' 'mtr-tiny' 'libvala-0.16-0-dbg' 'libmono-microsoft-web-infrastructure1.0-cil' 'libmhash-dev' 'gsl-doc-pdf' 'gconf-defaults-service' 'openoffice.org-presenter-console' 'tryton-modules-project-revenue' 'procenv' 'libshevek0' 'libqofexpensesobjects1-dbg' 'libpyside-dev' 'libobus-ocaml' 'libmoosex-configfromfile-perl' 'libmoosex-chainedaccessors-perl' 'libsieve2-dev' 'libloader-java' 'libdevel-checklib-perl' 'libcastor-java-doc' 'libboost-geometry-utils-perl' 'kamailio-postgres-modules' 'ircd-ratbox-dbg' 'libi2c-dev' 'globus-gridftp-server-progs' 'fractalnow' 'dict-freedict-eng-deu' 'bird' 'guile-1.8-libs' 'account-plugin-sohu' 'texlive-doc-uk' 'libvala-0.12-dev' 'libtimezonemap1-dev' 'glib-networking-common' 'libccscript4' 'openoffice.org-l10n-hi-in' 'wiki2beamer' 'ukolovnik' 'python-mpmath' 'pingus' 'mysql-workbench' 'mricron' 'libswe0' 'libsingular-3-0-4-3' 'libpostgresql-gst' 'libnini1.1-cil' 'libmoosex-blessed-reconstruct-perl' 'libhtml-tableparser-perl' 'libgnomemm-2.6-dev' 'libghc-yesod-auth-oauth-doc' 'libeigenbase-resgen-java' 'libdoxia-sitetools-java' 'libclassworlds-java-doc' 'libboost-math1.46-dev' 'ipython-doc' 'glhack' 'libgoffice-0.8-8' 'elastix' 'dns2tcp' 'minidjvu' 'aoetools' 'libloudmouth1-0' 'python-pybabel' 'linuxdoc-tools-text' 'libnetcf1-dbg' 'aircrack-ng' 'libghc6-mmap-dev' 'sciteproj' 'scim-qt-immodule' 'passepartout' 'nova-xcp-plugins' 'libtulip-qt4-dev' 'libganglia1-dev' 'kde-zeroconf' 'python-html2text' 'gstreamer0.10-buzztard-doc' 'gnome-colors-common' 'drupal6-mod-site-verify' 'pstotext' 'wdiff-doc' 'texlive-doc-tr' 'libkde3support4' 'bash-static' 'cryptsetup' 'stormbaancoureur' 'sawfish-lisp-source' 'pyaimt' 'rrdcached' 'pidgin-microblog-dbg' 'nepomuk-core-data' 'libghc-polyparse-doc' 'libghc-blaze-textual-dev' 'libgee-0.8-2-dbg' 'libbusiness-us-usps-webtools-perl' 'python-objgraph' 'herwig++' 'glassfish-mail' 'gir1.2-epiphany-3.4' 'libgfs-mpi-1.3-2' 'fonts-cabin' 'fonts-aoyagi-soseki' 'exo-utils-dbg' 'cgdb' 'texlive-doc-vi' 'python-pycurl-dbg' 'python-pyorbit-dev' 'libpcrecpp0' 'libdatrie-dev' 'libghc6-syb-with-class-instances-text-prof' 'libghc6-fgl-dev' 'yagtd' 'user-mode-linux-doc' 'urjtag' 'tcos' 'splint-data' 'qtkeychain-dev' 'python-pyxid' 'libdtools-ocaml-dev' 'junior-games-net' 'libglobus-usage0' 'fprint-demo' 'febootstrap' 'dict-freedict-ita-eng' 'dict-devil' 'dbar' 'wwwconfig-common' 'cdpr' 'barry-util-dbg' 'barman' 'asterisk-core-sounds-en-gsm' 'libemail-sender-perl' 'qtbase5-private-dev' 'libmono-sharpzip2.6-cil' 'libghc6-vector-algorithms-prof' 'libghc6-curl-prof' 'libgda-4.0-postgres' 'spl-mysql' 'libwirble-ruby1.9.1' 'libmsgcat-perl' 'gfxboot-themes-upstream' 'esekeyd' 'gir1.2-epiphany-3.6' 'darktable' 'libemail-date-perl' 'octave' 'libapache2-mod-fcgid' 'libicu48-dbg' 'shotwell' 'fontforge' 'openjade' 'libnss-mdns' 'libvia0' 'libgui-commands-java-gcj' 'gforge-mta-postfix' 'mythbuntu-desktop' 'smistrip' 'ruby-distribution' 'libtext-aligner-perl' 'libswf-perl' 'libopencascade-ocaf-6.5.0' 'liblayout-java-doc' 'ruby-heckle' 'libghc-geniplate-dev' 'libcvc3-2-jni' 'libstdc++6-4.7-dbg-armhf-cross' 'suckless-tools' 'ruby-tioga' 'libtre5' 'cpp-4.6-doc' 'anjuta-extras' 'libnokogiri-ruby1.8' 'libmodule-load-conditional-perl' 'language-pack-gnome-ar-base' 'dnsmasq-base' 'duplicity' 'initramfs-tools' 'uec-provisioning-tftpd' 'python-mdp' 'libonig2-dbg' 'libnetfilter-acct-dev' 'libghc-json-prof' 'libghc-augeas-dev' 'libdhash1' 'liblwp-protocol-http-socketunix-perl' 'coinor-libcgl-dev' 'coco-cpp' 'pawserv' 'bzr-tweet' 'bashdb' 'ace-netsvcs' 'abuse-lib' 'libnokogiri-ruby1.9' 'libmono-security4.0-cil' 'icu-doc' 'wx2.6-examples' 'simh' 'rlvm' 'mytop' 'libvisca0' 'libvia2' 'libsource-highlight4' 'libelmersolver-dbg' 'kubuntu-konqueror-shortcuts' 'tp-smapi-source' 'gsm0710muxd' 'debian-faq-fr' 'pyew' 'autopsy' 'vim-tiny' 'libcpan-meta-yaml-perl' 'libqca2-plugin-cyrus-sasl' 'libmono-system-windows-forms4.0-cil' 'language-pack-kde-fa-base' 'language-pack-kde-az-base' 'libelfg0' 'libck-connector0' 'libopencv-objdetect2.3' 'volti' 'txt2pdbdoc' 'rofs' 'python-sclapp' 'pixelize' 'msn-pecan' 'pcmanfm' 'libjcip-annotations-java-doc' 'libhtml-rewriteattributes-perl' 'libhippocanvas-1-0' 'libntlm0-dev' 'latex209-src' 'ktouch' 'jifty' 'jacksum' 'dose-distcheck' 'libtrollop-ruby' 'ruby-eventmachine' 'afflib-tools' 'mozilla-plugin-vlc' 'libheimntlm0-heimdal' 'libcogl-common' 'language-pack-gnome-oc-base' 'language-pack-gnome-kw-base' 'keystone' 'freeipmi-bmc-watchdog' 'xbmc-live' 'libghc6-tar-prof' 'chillispot' 'libgdu-dev' 'linux-backports-modules-cw-3.6-3.2.0-40-generic-pae' 'linux-backports-modules-cw-3.6-3.2.0-35-generic-pae' 'yate-dev' 'plasma-widget-mail' 'libxqdbm-dev' 'ruby-poppler-dbg' 'libmetadata-extractor-java-doc' 'libsmokekdecore4-3' 'libjs-openlayers' 'libfiu-dev' 'librt-ruby1.8' 'gnome-mastermind' 'libopencv-objdetect2.4' 'ttf-adf-mekanus' 'amavisd-milter' 'quantum-dhcp-agent' 'libgoogle-perftools-dev' 'lib64readline6-dev' 'celt' 'linux-backports-modules-cw-3.6-3.2.0-39-generic' 'sigscheme' 'packup' 'libresiprocate-1.8' 'libmime-types-ruby' 'htdig' 'gvrng' 'grepcidr' 'gebabbel' 'libgcj12-dbg' 'docbook2odf' 'clzip-dbg' 'libgupnp-av-1.0-2' 'barrage' 'libxsltc-java' 'libmono-oracle2.0-cil' 'libmail-sendmail-perl' 'apache2' 'libghc6-sendfile-doc' 'lombard' 'python-sesame' 'pp-popularity-contest-dbg' 'psignifit' 'med-bio-dev' 'libmxml-dev' 'libopentk-cil-dev' 'link-grammar-dictionaries-en' 'libasedrive-usb' 'galaxd' 'courier-pop' 'python-django-maas' 'libmono-system-data-services4.0-cil' 'libegl1-mesa-drivers-lts-quantal' 'frogatto' 'wesnoth-1.10-sof' 'libpiano-dev' 'libotf-bin' 'libdirectfb-dev' 'libcmdliner-ocaml-dev' 'libapache-sessionx-perl' 'libsql-translator-perl' 'dpsyco-sudo' 'couchdb-bin' 'libwxsmithlib0' 'tcsh' 'libantlr3-gunit-java' 'xaw3dg-dev' 'python-pastewebkit' 'libvformat-dev' 'libunwind8-dbg' 'librep-dev' 'libgcr-3-doc' 'libgeo-ipfree-perl' 'libghc6-xmonad-prof' 'contacts' 'stalin' 'sortmail' 'php-horde-timezone' 'liburi-find-delimited-perl' 'libtwofish-dev' 'libtie-persistent-perl' 'libocsigenserver-ocaml' 'liblucene2-java-doc' 'liblablgtk2-ocaml-dev' 'libio-bufferedselect-perl' 'libghc-hakyll-dev' 'libghc-gtkglext-doc' 'libghc-lens-doc' 'libgeos-3.3.3' 'libdeclarative-connectivity' 'libasync-interrupt-perl' 'kamailio-presence-modules' 'git-annex' 'eclipse-cdt-pkg-config' 'dvilx' 'libapache2-mod-auth-openid' 'coco-doc' 'cain-examples' '0ad-dbg' 'python-netaddr-docs' 'libparted0-dev' 'libjarjar-java-doc' 'xlockmore-gl' 'pyqt-tools' 'libghc6-agda-doc' 'sysprofile' 'xfce-keyboard-shortcuts' 'libxalan110-doc' 'libtesseract3' 'libremctl-ruby1.9.1' 'libmaven-parent-java' 'liblua5.1-event0' 'libghc-hs3-dev' 'libclutter-imcontext-0.1-bin' 'fonts-mathjax-extras' 'ttf-lyx' 'python3-pyqt4.phonon' 'iptables-dev' 'unixodbc' 'myspell-pt-pt' 'science-bci' 'python-pyvtk' 'open-jtalk' 'mrbayes-dbg' 'libykpers-1-1' 'libgopersist-1-1-dbg' 'libanyevent-memcached-perl' 'gif2png' 'hylafax-client' 'fcitx-table-array30-big' 'cutter-testing-framework' 'ccze' 'libghc6-glib-prof' 'libgdu-gtk-dev' 'nspluginviewer' 'unison-all' 'tilda' 'spl-curl' 'scribus-doc' 'php-symfony-yaml' 'openthesaurus-de-text' 'uim-ipa-x-sampa' 'libtest-cpan-meta-yaml-perl' 'libwww-mechanize-shell-perl' 'libghc-split-prof' 'libghc-psqueue-dev' 'libghc-crypto-conduit-prof' 'ruby-dnsruby' 'iripdb' 'cl-sql-sqlite3' 'python3-pyatspi2' 'libfrontier-rpc-perl' 'libtest-cpan-meta-perl' 'libnl-3-200-dbg' 'libgtk2.0-cil-dev' 'cytadela' 'vdr-plugin-mplayer' 'supercollider-emacs' 'squirrelmail-logger' 'quakespasm' 'python-zope.app.zcmlfiles' 'proxytrack' 'libsystemu-ruby1.9.1' 'libshibsp-doc' 'libmaven-file-management-java-doc' 'libghc-libzip-doc' 'libdbd-pg-ruby1.8' 'geany-plugin-lua' 'drizzle-dev-doc' 'dpsyco-samba' 'cl-sql-uffi' 'procmail' 'fonts-ukij-uyghur' 'libghc6-utility-ht-doc' 'libboost-thread1.48.0' 'libpt2.10.2' 'basilisk2' 'qucs' 'libzeitgeist-cil-dev' 'libvtkgdcm-cil' 'libsvm3' 'libboost-thread1.53.0' 'ktnef' 'krecipes-dbg' 'kgeography-data' 'debconf-kde-dbg' 'classmate-artwork' 'libpawlib-lesstif3-dev' 'libcapture-tiny-perl' 'libqjson-dbg' 'ceph' 'trackballs-dbg' 'rhythmbox-ampache' 'ray-extra' 'libplayerwkb3.0-dev' 'libmsn-dev' 'libmpikmeans1' 'libmina2-java' 'libghc-haskelldb-hdbc-doc' 'python-commando' 'gridsite-dbg' 'freetuxtv' 'freemedforms-common-resources' 'libeztrace0' 'libtrove3-java' 'libopal-dbg' 'dcbd' 'python-pyvorbis' 'libghc6-hsp-doc' 'linux-backports-modules-cw-3.5-3.2.0-38-generic' 'xmpuzzles' 'snmptt' 'science-numericalcomputation' 'python-kinterbasdb-dbg' 'perdition' 'ninvaders' 'libtwatch-perl' 'libroot-tmva5.34' 'libghc-simple-reflect-dev' 'kicad-common' 'gwrite' 'bist' 'python-pytyrant' 'printer-driver-sag-gdi' 'x11proto-record-dev' 'liblinear-dev' 'libqt4-dbg' 'libnepomuk4' 'insserv' 'xorriso' 'libgnome-desktop-3-2' 'snd-nox' 'plasma-widget-googlecalendar' 'plasma-active-dev' 'pdfposter' 'lxsession-edit' 'libpolylib64-8-dbg' 'libsmbclient-raw-dev' 'libghc-shakespeare-i18n-dev' 'libapache-ruby1.8' 'libxbae4' 'freefem++-doc' 'emboss-explorer' 'cstocs' 'console-cyrillic' 'texlive-doc-zh' 'pulseaudio-module-bluetooth-dbg' 'libsvn1' 'libproxy1-plugin-gsettings' 'libossp-uuid16' 'liblouis-dev' 'zookeeperd' 'xscreensaver-screensaver-bsod' 'python-guppy' 'libpadre-plugin-git-perl' 'libnewlib-dev' 'libitext5-java-doc' 'libdata-uuid-libuuid-perl' 'kremotecontrol' 'kdeaccessibility' 'kdeedu-kvtml-data' 'freemedforms-freedata' 'ttf-adf-universalis' 'tdom' 'libcobertura-java-doc' 'calligra-l10n-engb' 'ruby-rspec' 'phonon-dbg' 'libwpg-doc' 'libfs-dev' 'libsignon-glib-dev' 'libevolution' 'openssh-client' 'libwww-delicious-ruby' 'linux-backports-modules-cw-3.6-3.2.0-33-generic-pae' 'tomboy-latex' 'tango-icon-theme-common' 'pdebuild' 'libtecla1-dev' 'libsylfilter0' 'libmemoize-memcached-perl' 'libhtml-mason-psgihandler-perl' 'libghc-openglraw-dev' 'ibus-el' 'dpkg-ruby' 'blhc' 'libfolks-telepathy-dbg' 'libdatrie1' 'language-pack-ast-base' 'libgnome-desktop-3-4' 'mrpt-libs' 'checkmp3' 'tiled' 'scrounge-ntfs' 'radare-doc' 'psi-plus-webkit-dbg' 'libtrove-java' 'libtest-refcount-perl' 'libofapi-dev' 'libmultibitnums-ruby1.8' 'libjs-strophe' 'libgtk2-ex-volumebutton-perl' 'libglobus-scheduler-event-generator-dev' 'libhepmcfio-dev' 'gnustep-base-examples' 'gir1.2-clutter-gst-1.0' 'gbemol' 'fp-units-math-2.6.0' 'debian-faq-it' 'ants' 'x11proto-composite-dev' 'apmd' 'cget' 'sitplus-data' 'qemu-launcher' 'python-qwt5-doc' 'prayer-templates-dev' 'pocketsphinx-hmm-zh-tdt' 'libsfst1-1.2-0' 'libright-aws-ruby1.8' 'libperlio-eol-perl' 'libjglobus-parent-java' 'libghc-ftphs-dev' 'libgetdata-tools' 'jockey-common' 'libidzebra-2.0-modules' 'geda-gattrib' 'aplus-fsf-el' 'apertium-eu-es' 'tango-icon-theme' 'language-pack-hr-base' 'tijmp' 'zynaddsubfx-dbg' 'stealth-doc' 'scsh-common-0.6' 'mboxgrep' 'libnsgif0-dbg' 'libcourriel-perl' 'libxml-xslt-perl' 'kbreakout' 'kazam' 'kamailio-python-modules' 'fatattr-dbg' 'extremetuxracer' 'libapache2-mod-auth-kerb' 'dcap' 'cl-modlisp' 'mapserver-doc' 'xtrans-dev' 'libgles1-mesa-dbg' 'libnet-domain-tld-perl' 'doc-central' 'xkb-data' 'xserver-xorg-video-all-lts-quantal' 'utf8-migration-tool' 'simple-image-reducer' 'qt3d5-dev' 'sylpheed-plugins' 'librtaudio-dbg' 'libsynce0' 'libghc-hashed-storage-prof' 'modsecurity-crs' 'libprocessui4a' 'esperanza' 'clang' 'libbio-perl-perl' 'python-defer' 'fontconfig' 'intltool' 'vala-dbus-binding-tool' 'root-plugin-sql-odbc' 'qmtest' 'python-pyodbc-dbg' 'libxaw3dxft6' 'libcpptest0' 'icnsutils' 'chiark-rwbuffer' 'ubuntu-wallpapers-maverick' 'oneconf-common' 'libdmapsharing-3.0-2' 'libadns1-dev' 'language-pack-rw-base' 'language-pack-sr-base' 'bison-doc' 'libace-ssl-6.0.1' 'linux-image-3.2.0-40-virtual' 'linux-image-3.2.0-35-virtual' 'typo3' 'sisu-markup-samples' 'scantool' 'rdfind' 'mscore-common' 'libpostgis-java' 'libghc-magic-dev' 'libghc-haskelldb-hdbc-postgresql-dev' 'libghc-bytestring-show-dev' 'libsratom-0-0' 'tilp2' 'easyh10' 'vim-puppet' 'ifrench' 'awn-applet-calendar' 'awn-applet-cairo-main-menu' 'trac-privateticketsplugin' 'squeak-plugins-scratch-dbg' 'skrooge-common' 'qutecom-dbg' 'r-cran-randomforest' 'matchbox-common' 'libmrmpi-dev' 'libmason-plugin-htmlfilters-perl' 'libinnate-ruby1.9.1' 'libkmflcomp0' 'libace-dev' 'gwyddion-plugins' 'libgruel3.6.1' 'opalmod' 'python-ttystatus' 'cfengine3-dbg' 'bley' 'midori' 'libghc6-xmonad-contrib-dev' 'siggen' 'shelldap' 'polylib-utils' 'octave-openmpi-ext' 'libpotrace0' 'libgnomemm-2.6-doc' 'libghc-ltk-dev' 'libghc-hint-dev' 'libdspam7-dbg' 'libxml-security-c-dev' 'libclass-c3-adopt-next-perl' 'libace-ssl-6.0.3' 'kaffeine' 'libgauche-0.9-0' 'ruby1.8' 'libgrip0' 'libghc6-mmap-doc' 'desktopcouch-ubuntuone' 'rabbitmq-stomp' 'libgwibber-gtk2' 'sisc' 'lilypond-doc-html-de' 'strongswan' 'libwww-facebook-api-perl' 'kdesvn-kio-plugins' 'libuniversal-require-perl' 'bumprace-data' 'gringo' 'libgcal0' 'python-qt4-gl-dbg' 'libpcre-ocaml' 'libparams-util-perl' 'deja-dup' 'libwnck22' 'libgwibber-gtk3' 'libgivaro0' 'libdrm-ltsq2-dbg' 'xfonts-bolkhov-koi8u-75dpi' 'plplot-tcl-dev' 'muttprint' 'libzookeeper-st-dev' 'libsoundtouch-dev' 'libpoldiff-dev' 'libghc-blaze-textual-doc' 'libdistorm64-dev' 'libcipux-dog-perl' 'gxine' 'geany-plugin-spellcheck' 'konsole' 'dict-freedict-eng-cro' 'libglobus-io3' 'blcr-dkms' 'libxerces-c3.1' 'cmap-adobe-cns1' 'python-serial' 'libdatrie-doc' 'libboost-test-dev' 'friends-twitter' 'libecryptfs0' 'polymer' 'libghc6-fgl-doc' 'plasma-active-keyboardcontainer' 'libgeographiclib5' 'r-cran-amore' 'python-pycountry' 'mysql-mmm-common' 'maildir-utils' 'libsqlheavy-dev' 'libregexp-common-time-perl' 'libphat0' 'libjreen1' 'libglobus-authz-callout-error-dev' 'libgivaro1' 'letterize' 'gobjc-mingw-w64-i686' 'flite' 'libctpl2' 'ruby-rack' 'xfonts-75dpi' 'libgl1-mesa-dri-lts-quantal' 'svgtoipe' 'python-neo' 'python-liblcms' 'libtorrent-dev' 'libstrongswan' 'librudeconfig-dev' 'libopencascade-modeling-dev' 'libjpgalleg4-dev' 'libhdf5-mpi-dev' 'libclaws-mail-dev' 'jodconverter' 'gnokii-smsd-pgsql' 'libcgsi-gsoap1' 'python-bluez' 'python-adns' 'folks-common' 'firefox-dbg' 'libtool' 'linux-backports-modules-hv-3.2.0-38-generic-pae' 'scim-gtk2-immodule' 'opendrim-lmp-physicalasset' 'mysqmail-pure-ftpd-logger' 'libtre-dev' 'libswe-dev' 'libopengl-ruby1.8' 'libghc-geniplate-doc' 'libbuild-helper-maven-plugin-java-doc' 'libbpp-raa-dev' 'libboost-wave-dev' 'libbakery-2.6-common' 'libavahi-ui0.0-cil' 'knockd' 'gtkam-dbg' 'libgfal2-2' 'libgnomescan0' 'chef' 'arduino' 'ipython3' 'pdfjam' 'reiserfsprogs' 'gitpkg' 'awn-applet-indicator' 'notion-dev' 'tcpflow' 'sumo-doc' 'guile-1.6-libs' 'pike7.8-dnssd' 'libobject-insideout-perl' 'libjellydoc-java-doc' 'libpdfrenderer-java' 'libghc-augeas-doc' 'libcheese-gtk-dev' 'libcgi-formalware-perl' 'libbliss1d-dbg' 'libautopilot-gtk' 'libjlibeps-java' 'kbounce' 'dvi2ps-fontdata-ptexfake' 'librcs-perl' 'coinor-libcgl-doc' 'cobertura' 'python-beautifulsoup' 'xfonts-kaname' 'podracer' 'plasma-widget-amule' 'linuxinfo' 'libradare2-dev' 'libghc-chart-dev' 'libcsnd5.2' 'libcgi-xmlform-perl' 'ho22bus-data' 'gfarm-doc' 'libgeographiclib9' 'dvdisaster-doc' 'libscotch-5.1' 'clamav-testfiles' 'spamc' 'qt4-demos-dbg' 'libtspi1' 'libgnomekbd-common' 'libxml-commons-external-java' 'language-pack-kde-zh-hant-base' 'appmenu-qt' 'libbcel-java' 'slay' 'python-repoze.what-plugins' 'python-rainbow' 'pathfinderd' 'libmath-random-isaac-xs-perl' 'libindicator3-tools' 'libguestfs-ocaml-dev' 'libcgi-application-plugin-linkintegrity-perl' 'utouch-evemu-tools' 'blacs-mpi-test' 'libcompfaceg1' 'apt-forktracer' 'libmono-npgsql4.0-cil' 'gir1.2-gst-plugins-base-1.0' 'eagle' 'yate-doc' 'tinyhoneypot' 'ruby-aggregate' 'pcalendar' 'reprof' 'libpoconetssl9' 'libmultibitnums-ruby1.9.1' 'libghc-language-javascript-dev' 'libsoundgen0' 'libgcj12-dev' 'gambas3-gb-form-stock' 'latex-fonts-sipa-arundina' 'racoon' 'libsexy2' 'libmspub-dev' 'libkdewebkit5' 'p7zip' 'libcupsdriver1-dev' 'sauerbraten-wake6' 'qimo-wallpaper' 'python-envisageplugins' 'pythia8-examples' 'mythbuntu-bare-console' 'lilypond-doc-html-cs' 'libxflaim3.2' 'libwiki-toolkit-plugin-categoriser-perl' 'libtest-manifest-perl' 'libpocodata9' 'libhtml-quoted-perl' 'libclippoly0' 'labrea' 'imwheel' 'libgomp1-dbg-armhf-cross' 'clamz' 'castle-combat' 'android-tools-adb' 'libchewing3' 'gedit-common' 'lib64stdc++6-4.7-dbg' 'sdparm' 'nvidia-visual-profiler' 'timbl' 'portslave' 'mailutils-imap4d' 'libtext-csv-encoded-perl' 'libsoundtouch-ocaml' 'libsiloh5-0' 'libghc-wai-extra-prof' 'libc6-dbg-armhf-cross' 'libbind4' 'libapache-poi-java-doc' 'instead' 'grub2-splashimages' 'libmime-base64-urlsafe-perl' 'libunwind8-dev' 'gcj-4.7-jre' 'gnome-utils' 'linux-image-3.8.0-6-generic' 'libnachocalendar-java' 'libghc6-parsec3-dev' 'libghc6-convertible-prof' 'linux-backports-modules-cw-3.4-3.2.0-31-generic-pae' 'libboost-serialization1.46.1' 'python-pynetsnmp' 'pcscada-dbg' 'ndiswrapper-source' 'lua-dbi-mysql' 'librdf-trine-node-literal-xml-perl' 'libkmfl-dev' 'libhtml-stripscripts-parser-perl' 'libghc-binary-communicator-prof' 'libfelix-shell-tui-java-doc' 'libsfml-audio1.6' 'libalut0' 'cscope' 'python-pyside.qtcore' 'python-genshi' 'python-formencode' 'powerwaked' 'libqt4-declarative-particles' 'language-pack-gnome-da-base' 'gnome-themes-extras' 'myspell-sv-se' 'libboost-thread1.49.0' 'awn-applet-places' 'linux-image-3.2.0-32-generic' 'linux-image-3.2.0-27-generic' 'vlogger' 'pype' 'librose-datetime-perl' 'libright-http-connection-ruby' 'liblablgtk2-ocaml-doc' 'libgtkglarea-cil-dev' 'libghc-hakyll-doc' 'kfourinline' 'fcitx-table-cantonhk' 'dunst' 'dict-freedict-swa-eng' 'atomix' 'rhythmbox-mozilla' 'python-talloc' 'libqjson0' 'zabbix-server-mysql' 'wordgrinder' 'src2tex' 'python-ns3' 'phoronix-test-suite' 'percona-toolkit' 'ogre-tools' 'mupen64plus' 'liboasis-ocaml-dev' 'liblua5.1-sql-sqlite3-2' 'libinifiles-ocaml-dev' 'libghc-ranged-sets-dev' 'libghc-hs3-doc' 'libghc-haskelldb-hdbc-postgresql-prof' 'libagrep-ocaml-dev' 'jackeq' 'clinica' 'ceve' 'apoo' 'pmidi' 'vbetool' 'language-pack-kde-bs-base' 'gnome-mines' 'libapache2-mod-apparmor' 'linux-backports-modules-cw-3.4-3.2.0-39-virtual' 'tomcat6-docs' 'spacezero' 'shogun-java-modular' 'ratbox-services-sqlite' 'python-biom-format' 'libsequel-ruby1.8' 'libqpidbroker2' 'industrialtango-theme' 'smarty' 'fcitx-table-quick-classic' 'kipi-plugins' 'abe' 'rdate' 'language-pack-gnome-mk-base' 'language-pack-gnome-ku-base' 'libboost-date-time1.46.1' 'glew-utils1.5' 'travis' 'smbc' 'shiboken-dbg' 'root-system-doc' 'pngphoon' 'mediawiki-extensions-graphviz' 'r-bioc-hilbertvis' 'lingot' 'liburi-escape-xs-perl' 'libqpidmessaging2-dev' 'libqdbm++-dev' 'libnoise-dev' 'libghc-psqueue-doc' 'libfixposix0' 'libaws-doc' 'ldap-git-backup' 'gosa-plugin-phpgw' 'showfoto' 'libcue1' 'lib64gomp1' 'libcairomm-1.0-1' 'firefox-locale-ast' 'rpld' 'libghc6-gtkglext-dev' 'schooltool' 'netplan' 'libmaven-shade-plugin-java-doc' 'libdata-visitor-perl' 'plasma-runners-addons' 'geotranz' 'dict-freedict-hin-eng' 'c++-annotations-contrib' 'nvidia-current-updates' 'libxcb-damage0-dbg' 'ure-dbg' 'libqjson-dev' 'libglew1.5-dev' 'language-pack-kde-nn-base' 'language-pack-kde-ms-base' 'brltty-speechd' 'bacula-director-mysql-dbg' 'wah-plugins' 'php-horde-share' 'mupen64plus-rsp-all' 'root-plugin-io-xml' 'libopal-dev' 'libnarray-ruby' 'libghc-parsec3-prof' 'linux-libc-dev-powerpc-cross' 'libatompub-perl' 'latex-cjk-japanese' 'ttf-sil-zaghawa-beria' 'ascd' 'python-geoip' 'libqt4-xmlpatterns' 'language-pack-gnome-uz-base' 'gir1.2-clutter-gst-2.0' 'ethtool' 'libgrinvin-factories-java' 'libghc6-hsql-dev' 'mariadb-client-10.0' 'vala-mode-el' 'sleepenh' 'sisu' 'scheme48-doc' 'python-django-reversion' 'libdomain-publicsuffix-perl' 'libdbd-mock-perl' 'libcpan-meta-check-perl' 'libktorrent-l10n' 'libido-0.1-0' 'korganizer' 'libmutter0' 'gpsprune' 'libfbclient2' 'libotf-dev' 'gfortran-4.7-doc' 'cdrkit-doc' 'libqt4-dev' 'javacc' 'nomarch' 'python-ecore-dev' 'martian-modem-source' 'webhttrack-common' 'trigger-rally' 'root-plugin-net-krb5' 'python-lua' 'python-input-pad' 'node-wordwrap' 'lilypond-doc-html-es' 'libnet-traceroute-perl' 'libghc-simple-reflect-doc' 'libdeclarative-publishsubscribe' 'kedpm' 'libgomp1-dbg-powerpc-cross' 'fwknop-server' 'eiskaltdcpp-cli' 'libswt-webkit-gtk-3-jni' 'diet-doc' 'samdump2' 'lib64objc4-dbg' 'pornview' 'libfilesystem-ruby1.9.1' 'uwsgi-plugin-ugreen' 'u1db-tools' 'selinux-policy-src' 'qtdeclarative5-private-dev' 'pypibrowser' 'python-pykaraoke' 'rootstrap' 'lxinput-dbg' 'link-grammar-dictionaries-lt' 'libwhisker2-perl' 'libproxychains3' 'libpreludedb-perl' 'libkohana2-modules-php' 'libghc-shakespeare-i18n-doc' 'libgeography-countries-perl' 'libclutter-imcontext-0.1-dev' 'imdb-tools' 'ibus-table-stroke5' 'gwenview-dbg' 'php5-exactimage' 'drupal6' 'conky-all' 'amanda-server' 'python-novaclient' 'gir1.2-webkit-1.0' 'firefox-globalmenu' 'libparse-debianchangelog-perl' 'thawab' 'uim-fep' 'vfdata-morisawa5' 'seahorse-sharing' 'qtlocation5-private-dev' 'python3-stemmer' 'python-plwm' 'pidgin-librvp' 'qtnx' 'libvalidatable-ruby' 'libserp-java-doc' 'libqt5help5' 'libkinosearch1-perl' 'libfile-chmod-perl' 'kmymoney-dbg' 'kimwitu++-doc' 'jigzo' 'happycoders-libsocket-dev' 'greylistd' 'gnumed-doc' 'gdf-tools' 'libgcj12-awt' 'gccgo-4.7-arm-linux-gnueabi' 'libgrafx11-1-gfortran' 'w3-dtd-mathml' 'drupal7' 'cramfsswap' 'nagios-nrpe-plugin' 'libsignon-glib-doc' 'libgssdp-doc' 'libfolks-telepathy-dev' 'libjs-underscore' 'ant-optional-gcj' 'libroar1' 'xmms2-plugin-cdda' 'veromix-common' 'nvi-doc' 'libjenkins-commons-jexl-java-doc' 'libgoffice-dbg' 'libghc-openglraw-doc' 'libbox-dev' 'i3status' 'python-mpd' 'libcln-dev' 'libbsd-dev' 'ttf-liberation' 'tthsum' 'root-plugin-sql-pgsql' 'mysql-workbench-data' 'monkeytail' 'lilypond-doc-html-fr' 'libv-perl' 'libroar2' 'libi18n-ruby1.8' 'libglobus-scheduler-event-generator-doc' 'libghc-hint-prof' 'libcgal-ipelets' 'libbtm-java' 'libcommons-math-java' 'gearman-tools' 'sshfs-dbg' 'bzr-grep' 'libgutenprintui2-1' 'libbsd-resource-perl' 'libphonon-dev' 'fonts-arphic-ukai' 'dict-moby-thesaurus' 'openoffice.org-l10n-pt-br' 'libqt3-mt-odbc' 'linux-headers-lbm-3.2.0-36-generic-pae' 'linux-backports-modules-cw-3.3-3.2.0-38-virtual' 'wmail' 'ruby-ntlm' 'python-zc.i18n' 'libspreadsheet-ruby' 'libxcrypt1' 'libnsgif0-dev' 'libghc-ftphs-doc' 'libwnn6-1' 'gogglesmm' 'slib' 'flickcurl-doc' 'flashbench' 'dvb-tools' 'denef' 'libmcrypt4' 'abi-compliance-checker' '389-dsgw' 'libgles1-mesa-dev' 'libbonoboui2-dev' 'unity-autopilot' 'tryton-modules-product-cost-fifo' 'smuxi-frontend' 'python-apipkg' 'php-net-whois' 'ocaml-libs' 'libtaoframework-physfs1.0-cil' 'librtaudio-dev' 'libgetopt-declare-perl' 'libboost-random1.53-dev' 'libboost-random1.48-dev' 'libjs-jac' 'gir1.2-zpj-0.0' 'gir1.2-mutter-3.0' 'gearman-server' 'libmudflap0-4.7-dev-armel-cross' 'debpear' 'fonts-gfs-olga' 'audacious-plugins-dbg' 'ack' 'python-gnomedesktop' 'libyajl2-dbg' 'libpci-dev' 'libhesiod0' 'compiz-plugins-default' 'libogg-vorbis-header-perl' 'wesnoth-1.10-ttb' 'wesnoth-1.10-tsg' 'sunclock-maps' 'soundstretch-dbg' 'showfsck' 'remmina-plugin-gnome' 'python-zope.datetime' 'python-jsonrpc2' 'python-bzutils' 'postgresql-9.1-pgmemcache' 'lilypond-doc-html-ja' 'libvarconf-1.0-7-dbg' 'libsvn-look-perl' 'libsmbios-dev' 'libgeda-dev' 'libgraphics-colornames-perl' 'fonts-mplus' 'dspam-webfrontend' 'cd5' 'k3b' 'libmilter1.0.1-dbg' 'dash' 'acl' 'python-qmf2' 'python-mpi' 'mono-tools-gui' 'libtioga-ruby1.9.1' 'libpocosqlite9-dbg' 'libmgl-glut5' 'libjglobus-io-java' 'libstapler-java' 'libgetdata4' 'libctl3' 'libcmph-tools' 'geany-plugin-treebrowser' 'fvwm-icons' 'fizmo' 'acm' 'python-imaging-sane-dbg' 'libow-util-ant-tasks-java-doc' 'libboost-serialization-dev' 'libsoprano4' 'software-center' 'libtorrent-rasterbar6' 'mgltools-pmv-test' 'shinken-core' 'python3-pyqt4.qsci' 'pysycache-puzzle-cartoons' 'pike7.8-sane' 'mobyle-utils' 'ncbi-blast+' 'libncursesada-dbg' 'libghc-magic-doc' 'libghc-haskelldb-hdbc-postgresql-doc' 'libghc-bytestring-show-doc' 'tgif' 'lame-doc' 'k3d' 'inetutils-telnetd' 'ttf-gfs-bodoni-classic' 'kalign' 'tasksel-data' 'libprotobuf-lite7' 'installation-guide-amd64' 'linux-backports-modules-cw-3.4-3.2.0-36-generic' 'xfonts-marumoji' 'rkward' 'resiprocate-turn-server' 'python-saga' 'python-couchdb' 'php-horde-memcache' 'libsdl-ocaml' 'liblz-dbg' 'libglobus-gass-cache-dev' 'libdspam7-dev' 'libace-doc' 'kdetoys' 'kde-workspace-data-extras' 'hexcurse' 'fig2ps' 'libtorrent-rasterbar7' 'clasp' 'adun.app' 'libxfont1' 'libghc6-xmonad-contrib-doc' 'ubuntu-mobile-default-settings' 'tribler' 'ruby-activesupport-2.3' 'qtqr' 'phantomjs' 'nut-nutrition' 'luarocks' 'libsynopsis0.12' 'libmime-lite-html-perl' 'libghc-ltk-doc' 'libghc-hint-doc' 'libterm-ttyrec-plus-perl' 'libxml-smart-perl' 'python-ogg' 'redland-utils' 'libhessian-java-doc' 'libghc6-uulib-dev' 'libkwinactiveglutils1' 'trac-privatetickets' 'scsitools-gui' 'singular' 'netscript-2.4' 'natlog' 'minitube' 'librtmidi1' 'libghc-hdbc-sqlite3-dev' 'ifupdown-scripts-zg2' 'gxneur' 'libgmerlin0' 'gkrellweather' 'ghc-haddock' 'libopenscenegraph80' 'docbook-ebnf' 'dict-freedict-eng-cze' 'crypt++el' 'bnfc' 'python-pam' 'libstdc++6-4.4-pic' 'libpython-all-dbg' 'libplymouth-dev' 'language-pack-ka-base' 'language-pack-gu-base' 'libghc6-haskelldb-hdbc-sqlite3-dev' 'kubuntu-restricted-addons' 'scalapack-test-common' 'pypy' 'oggconvert' 'librime-data-stroke-simp' 'liboil0.3-dbg' 'libmaruku-ruby1.8' 'libkate-tools' 'libghc-monadrandom-dev' 'libgeo-distance-perl' 'libemail-foldertype-perl' 'gxmms2' 'glom-doc' 'duply' 'libdnet' 'pyro' 'libsyncdaemon-1.0-1' 'libgrinvin-invariants-java' 'libkasten1okteta1controllers1' 'xarclock' 'mpg123-esd' 'lxde-core' 'libxbae-dev' 'libolap4j-java-doc' 'libsql-reservedwords-perl' 'libglobus-authz-callout-error-doc' 'libghc-wai-prof' 'libclutter-cil' 'libapache2-mod-layout' 'lutefisk' 'autossh' 'ario' 'texlive-lang-greek' 'transmageddon' 'libpwquality-dev' 'libnice10' 'firefox-dev' 'libclutter-gst-2.0-0' 'swauth' 'sphinx3-doc' 'postpone' 'plotdrop' 'ogre-doc' 'libjboss-integration-java' 'libjavascript-rpc-perl' 'libgoocanvas-ruby1.8-dbg' 'libfile-cache-perl' 'libdbus-glib1.0-cil-dev' 'libdata-util-perl' 'libincidenceeditorsng4' 'enemylines3' 'libflickrnet2.2-cil' 'dans-gdal-scripts' 'ambdec' 'xserver-xorg-video-savage' 'libqt4-declarative-shaders' 'libjarjar-java' 'libapache2-mod-auth-plain' 'language-pack-tk-base' 'language-pack-ru-base' 'uuid-runtime' 'linux-backports-modules-cw-3.3-3.2.0-23-generic-pae' 'xlog-data' 'xfonts-cronyx-isocyr-misc' 'xboxdrv' 'muon-dbg' 'libvdkbuilder2-dev' 'libswe-doc' 'libstdc++6-4.6-dbg-armel-cross' 'libncap-dev' 'libghc-zeromq-haskell-dev' 'libghc-ghc-paths-prof' 'libargtable2-docs' 'b5i2iso' 'slim' 'mysql-server-core-5.5' 'libtemplate-plugin-xml-perl' 'librecode0' 'monodoc-nunit-manual' 'libdmx1' 'libschroedinger-1.0-0' 'libevdocument3-4' 'compiz-plugins' 'libxml-dom-perl' 'maas-provision-common' 'libegl1-mesa-lts-quantal' 'nvidia-cg-dev' 'xcp-networkd' 'trimmomatic' 'vgrabbj' 'stardata-common' 'r-cran-fasianoptions' 'python-quantities' 'python-imposm-parser' 'lilypond-doc-html-hu' 'libshiboken1.1' 'libhdf5-mpich2-dev' 'libghc-time-compat-prof' 'plasma-widget-menubar' 'htcheck' 'python-musicbrainzngs' 'python-ball' 'getdata' 'apt-file' 'libjs-raphael' 'octave3.2-common' 'xfonts-efont-unicode-ib' 'qtpfsgui' 'plee-the-bear' 'pike7.8-svg' 'nautilus-ideviceinfo' 'lyx-dbg' 'libtiles-java' 'libghc-chart-doc' 'kdewebdev-dbg' 'kimagemapeditor' 'kwin-style-skulpture' 'glmark2-data' 'festlex-ifd' 'debian-refcard' 'cpuburn' 'python-aubio' 'akonadi-backend-sqlite' 'python-mox' 'libapache2-mod-wsgi' 'libgconf2-4' 'python-openssl' 'rabbitmq-erlang-client' 'linux-headers-lbm-3.2.0-34-generic-pae' 'linux-headers-lbm-3.2.0-29-generic-pae' 'liblaunchpad-integration1.0-cil' 'remmina-plugin-nx' 'r-cran-hmisc' 'python-django-treebeard-doc' 'php-horde-sesha' 'phatch' 'libxml-filter-sort-perl' 'schroot-dbg' 'libroot-math-genvector-dev' 'liblua5.1-expat-dev' 'libgtlfragment0.8' 'kde-baseapps' 'ia32-libs-multiarch' 'gnuplot-doc' 'geotranz-help' 'gnumed-client' 'enemylines7' 'durep' 'debian-faq-ru' 'kuipc' 'adlint' 'mendexk' 'mono-runtime-dbg' 'libschroedinger-dev' 'openoffice.org-l10n-ast' 'linux-backports-modules-cw-3.3-3.2.0-40-generic' 'linux-backports-modules-cw-3.3-3.2.0-35-generic' 'xflr5' 'sugar-memorize-activity' 'spark' 'pyhoca-cli' 'phasex' 'libvtkedge' 'librostlab-doc' 'libqtruby4shared-dev' 'libglrr-gobject-dev' 'libghc-regex-tdfa-prof' 'libghc-language-javascript-doc' 'libipe-dev' 'libcdb-file-perl' 'granatier' 'gmt-tutorial' 'cl-closer-mop' 'blop' 'bbe' 'atom4' 'libx32itm1-dbg' 'libmspub-doc' 'libmono-system-identitymodel4.0-cil' 'libxkbcommon-dev' 'libgd-graph-perl' 'libboost-date-time1.49-dev' 'lib64stdc++6-4.7-dev' 'uwsgi-plugin-lua5.1' 'surfraw' 'smem' 'r-cran-rodbc' 'lilypond-doc-html-it' 'libpoe-component-resolver-perl' 'libmodule-starter-pbp-perl' 'libhtml-diff-perl' 'nordugrid-arc-hopi' 'larswm' 'libinfgtk3-0.5-0' 'galax-extra' 'festvox-te-nsk' 'deal' 'cl-fftw3' 'beancounter' 'aha' 'rhythmbox-plugin-zeitgeist' 'python-lxml-dbg' 'connman' 'libreadline5-dbg' 'libfdt1' 'libffi6' 'monodevelop-java' 'e-uae-dbg' 'slurm' 'qttools5-examples' 'qtsmbstatus-server' 'python-z3c' 'libyate4.1.0' 'libldns1-dbg' 'libknopflerfish-osgi-java-doc' 'libdate-convert-perl' 'libcrypt-rc4-perl' 'renaissance-doc' 'miniupnpc' 'fp-units-misc' 'firedns' 'libsam-java' 'directoryassistant' 'cproto' 'python-twisted-mail' 'ubuntu-sugar-remix-default-settings' 'octave-parallel' 'libghc6-parsec3-doc' 'libghc-pool-dev' 'linux-headers-3.2.0-34-generic-pae' 'linux-headers-3.2.0-29-generic-pae' 'racket-common' 'python-pbs' 'miniupnpd' 'php-wikidiff2' 'root-plugin-tree-treeviewer' 'libmaven-install-plugin-java-doc' 'libimager-perl' 'libghc-hdbc-postgresql-dev' 'libghc-configfile-dev' 'xfireworks' 'libwcs4' 'drizzle-plugin-gearman-udf' 'coinor-libflopc++-dev' 'bam' 'python3-netaddr' 'ruby-rspec-expectations' 'notify-osd' 'bcc' 'xinput' 'libglom-1.20-0' 'xxgdb' 'rrep' 'rarpd' 'python-zope.component-zcml' 'python-smmap' 'lubuntu-nexus7-default-session' 'libvpb-dbg' 'libmath-random-isaac-perl' 'libkaya-gd-dev' 'libfontbox-java-doc' 'kamailio-memcached-modules' 'gambas3-gb-qt4-webkit' 'thrift-compiler' 'bison++' 'sleuthkit' 'libjson0' 'jasper' 'gforge-db-postgresql' 'xtitle' 'ruby-yard-sinatra' 'plymouth-theme-ubuntustudio' 'mrbayes-doc' 'liboasis-ocaml-doc' 'libghc-ranged-sets-doc' 'libcityhash-dbg' 'hledger-interest' 'genbackupdata' 'libantlr3c-antlrdbg-3.2-0' 'dahdi-dkms' 'delta' 'check-mk-config-icinga' 'python-minimock' 'python-cl' 'libfarstream-0.1-dbg' 'libmro-compat-perl' 'sibsim4' 'libxmlplaylist-ocaml-dev' 'libtarantoolnet1' 'libtemplate-plugin-number-format-perl' 'libstfl-ruby' 'datafreedom-doc' 'libparse-exuberantctags-perl' 'libmpfi-dev' 'libactivesupport-ruby' 'inosync' 'happycoders-libdbg-dev' 'qtdeclarative5-accounts-plugin' 'apf-server' 'console-setup-mini' 'libelf1' 'libgmm-dev' 'galera' 'linux-backports-modules-cw-3.6-precise-generic-pae' 'yamdi' 'ussp-push' 'r-cran-sm' 'openmsx-debugger' 'psychtoolbox-3-common' 'libtemplate-plugin-cycle-perl' 'libhwloc4' 'gir1.2-maliit-1.0' 'falselogin' 'dnstop' 'ballview-dbg' 'python-mock-doc' 'libxcb-damage0-dev' 'setserial' 'gstreamer1.0-plugins-bad' 'dict-foldoc' 'libghc6-gtkglext-doc' 'linux-image-generic-lts-quantal' 'rott' 'wims-java-applets' 'root-system-proofd' 'r-cran-sn' 'python3-pyfits' 'python-pcs' 'pyblosxom' 'xmms2-plugin-alsa' 'ruby-xmlparser' 'libroot-math-minuit-dev' 'libmodule-inspector-perl' 'libexo-1-dev' 'libdata-format-html-perl' 'krecipes-doc' 'libhwloc5' 'gambas3-ide' 'bar' 'akonadi-dbg' 'libxcb-res0-dbg' 'python2.7-minimal' 'firefox-locale-csb' 'vile-common' 'trac-graphviz' 'titanion' 'tandem-mass' 'python-extras' 'node-tilelive-mapnik' 'lxlauncher' 'libplayerinterface3.0-dev' 'libopal-doc' 'liblingua-en-findnumber-perl' 'libgeronimo-osgi-support-java-doc' 'junior-tasks' 'gridsite-doc' 'gammu-doc' 'fortunes-ubuntu-server' 'helpviewer.app' 'cgpt' 'bkchem' 'audacious-analog-vumeter-plugin' 'python-recaptcha' 'libpython2.7-dbg' 'coreutils' 'acovea' 'weirdx' 'ser2net' 'popfile' 'pocketsphinx-lm-wsj' 'libwriter2latex-java' 'libplexus-cipher-java' 'libghc6-hsql-doc' 'liblexical-persistence-perl' 'libaddressable-ruby1.8' 'libjswingreader-java' 'r-cran-sp' 'gir1.2-socialweb-client-0.25' 'fonts-lato' 'aft' 'language-pack-gnome-an-base' 'libsvg-perl' 'cython-dbg' 'python-ecore-doc' 'webcit-dbg' 'post-el' 'ltrsift' 'libxmlezout1' 'libupnp4-dbg' 'uim-anthy' 'libfltk1.3-compat-headers' 'libconfig-augeas-perl' 'libcastor-jdo-java' 'libapache2-mod-upload-progress' 'libaac-tactics-coq' 'ksplash-theme-bespin' 'gexec' 'libmaven-ant-tasks-java' 'fizsh' 'gnome-icon-theme-gartoon-redux' 'clearsilver-dev' 'check-mk-multisite' 'xserver-xorg-input-tslib' 'texlive-generic-extra' 'libpolkit-qt-1-1' 'libmono-system-numerics4.0-cil' 'libmono-messaging2.0-cil' 'fop-doc' 'openoffice.org-style-galaxy' 'libgemplugin-ruby1.8' 'fusionforge-plugin-oslc' 'unity-webapps-hulu-player' 'proftpd-mod-case' 'luola-levels' 'libtest-checkmanifest-perl' 'libpoker-eval' 'libghc-hashtables-prof' 'libclutter-imcontext-0.1-doc' 'kmymoney-dev' 'icinga-idoutils' 'vorbis-tools-dbg' 'libgmpxx4ldbl' 'bacula-director-sqlite3-dbg' 'rt3.8-clients' 'veromix' 'spass' 'shinken-broker' 'ruby-bacon' 'rbootd' 'python-tftpy' 'libswt-gtk-3-jni' 'smpeg-gtv' 'libherwig59-2-gfortran' 'libfeedtools-ruby1.9.1' 'libfeedparser-ruby-doc' 'jabref' 'initz' 'hdate' 'happy' 'libdap11' 'shiki-human-theme' 'gnome-color-chooser' 'libdirectfb-1.2-9' 'cfingerd' 'cpanminus' 'oem-config-debconf' 'libmono-i18n-west2.0-cil' 'language-pack-gnome-mi-base' 'language-pack-gnome-ks-base' 'linux-image-3.2.0-36-lowlatency' 'xflip' 'ruby-test-spec' 'php-auth-sasl' 'openclipart2' 'ngraph-gtk-addins-base' 'ngraph-gtk-addins' 'ngetty' 'netstat-nat' 'libmodule-install-doapchangesets-perl' 'libkopenafs1' 'libhdf5-openmpi-dev' 'libgtkimageview-dev' 'dibbler-doc' 'cl-irc-logger' 'ruby-moneta' 'valgrind' 'libgtk-3-common' 'fonts-tlwg-typist' 'ubuntu-orchestra-modules-mpi' 'libghc6-ifelse-prof' 'xfonts-x3270-misc' 'tryton-modules-stock-inventory-location' 'simutrans-makeobj' 'udav' 'ruby-activesupport-3.2' 'pdns-backend-sqlite3' 'pauker' 'mupen64plus-input-sdl' 'lrslib' 'libxml-encoding-perl' 'libwebservice-cia-perl' 'libpostgresql-ocaml-dev' 'libkarma-cil' 'libghc-stringprep-prof' 'libcmor-dev' 'libksane-data' 'kamerka' 'libforms2' 'ilohamail' 'fai-client' 'charactermanaj' 'python-munkres' 'akregator' 'ldb-tools' 'language-pack-kde-nl-base' 'language-pack-kde-lv-base' 'libgssdp-1.0-3' 'libutouch-qml-doc' 'libblimps3' 'rlplot' 'python-zmq-dbg' 'python-kde4-dbg' 'mysql-testsuite' 'lubuntu-artwork-10-04' 'vdr-plugin-xineliboutput' 'libreoffice-lightproof-ru-ru' 'libnglib-4.9.13' 'libjs-jquery-geo' 'libicon-famfamfam-silk-perl' 'libghc-smallcheck-prof' 'libghc-hledger-lib-prof' 'libdeclarative-location' 'libatlas-test' 'libalias-perl' 'libactiveresource-ruby1.8' 'jdelay' 'globus-ftp-client-dbg' 'flexbackup' 'libdpm1' 'attal-themes-medieval' 'all-knowing-dns' 'libgcc1' 'splitvt' 'pkpgcounter' 'mtdev-tools' 'lubuntu-artwork-10-10' 'liburi-todisk-perl' 'libroot-math-physics-dev' 'libpam-ocaml-dev' 'libnet-dhcp-perl' 'libmapipp-dev' 'libjs-jquery-slides' 'libbulletml0d2' 'libbrailleutils-java' 'libanyevent-httpd-perl' 'libaccess-modifier-checker-java' 'info2man' 'flatnuke' 'firebird2.5-common' 'cowsay' 'python-gd' 'python-apt-dbg' 'lua5.1' 'libyaml-0-2' 'libreoffice-l10n-en-za' 'gir1.2-signon-1.0' 'libghc6-haxr-prof' 'pidgin-twitter' 'm17n-lib-mimx' 'lilypond-doc-html-nl' 'tre-agrep' 'libsmbios-doc' 'libranlip1c2' 'libshr-glib0' 'libmongo-client-dev' 'libghc-filemanip-prof' 'lua5.2' 'libdacs1' 'aolserver4-nsmysql' 'libqtscript4-core' 'libkcalcore4' 'virtinst' 'libpython2.7-stdlib' 'libdevel-symdump-perl' 'kdump-tools' 'libwayland-ltsq0' 'mgltools-webservices' 'stardict-plugin-espeak' 'python-lzo' 'libpam-passwdqc' 'libmspub-tools' 'lua-socket-dev' 'libcipux-rbac-simple-perl' 'globus-gram-client-tools-dbg' 'giblib1-dbg' 'gcin-data' 'libfelix-gogo-runtime-java' 'dvi2ps' 'libcdk-java' 'lighttpd' 'libwebkitgtk-3.0-0-dbg' 'xfsprogs' 'libbrlapi0.5' 'libpoex-types-perl' 'linux-backports-modules-cw-3.6-precise-generic' 'lmbench' 'umegaya' 'python-vm-builder-ec2' 'python-pyassimp' 'python-ns3-dbg' 'mstflint' 'lubuntu-core' 'libvirt-ocaml' 'libsnmp-multi-perl' 'libnepomukwidgets-dev' 'libmaven-shared-io-java-doc' 'liblz-dev' 'liblingua-stopwords-perl' 'gnat-mingw-w64-x86-64' 'ddskk' 'libdata-compare-perl' 'signon-plugins-dev' 'libmagickwand-dev' 'liblangtag-dev' 'libao-common' 'libboost-serialization1.48.0' 'brother-lpr-drivers-extra' 'scorched3d' 'rdsutils' 'qgis-mapserver' 'libtheschwartz-perl' 'librestclient-ruby1.8' 'libohai-ruby1.8' 'libtaoframework-sdl-cil-dev' 'libjs-jquery-ui-theme-redmond' 'libjboss-transaction-java' 'libgrapple-dev' 'libgpepimc0-dbg' 'ruby-gdk-pixbuf2' 'libdds-dev' 'libgd-securityimage-perl' 'libmoosex-emulate-class-accessor-fast-perl' 'libboost-serialization1.53.0' 'libass-dev' 'gpsshogi-dbg' 'ttf-sil-sophia-nubian' 'evolution-rss' 'debroster' 'pd-cyclone' 'cmus-plugin-ffmpeg' 'chordii' 'cba' 'libmath-tamuanova-perl' 'libgdu-gtk0' 'imhangul-gtk2' 'libxres1' 'libid3-3.8.3-dev' 'libfribidi-bin' 'libwebkitgtk-3.0-0' 'apache2-threaded-dev' 'xqilla' 'xiphos' 'sciplot1' 'pythoncard-doc' 'python-pgm' 'python-geopy' 'postgres-xc' 'mcollective-plugins-registration-monitor' 'uim-social-ime' 'libhtml-strip-perl' 'libghc-monad-loops-dev' 'libghc-hxt-http-prof' 'libghc-datetime-dev' 'libshishi0' 'iamcli' 'libhyantes0' 'hostapd' 'jpegoptim' 'ddir' 'thin' 'bodr' 'anjuta' 'wmanx' 'imhangul-gtk3' 'slpd' 'libpython-all-dev' 'python-gi' 'libghc6-uulib-doc' 'libghc6-stream-prof' 'mythweb' 'sugar-firefox-activity' 'omake-doc' 'libusb-ruby' 'libspring-security-acl-2.0-java' 'libsofa-c-dev' 'libphat-dev' 'liboil0.3-dev' 'libocamlodbc-ocaml-dev' 'libkdeedu-data' 'libghc-hdbc-sqlite3-doc' 'libalberta2' 'fprobe-ng' 'libpinyin2' 'exfat-fuse' 'sensible-mda' 'drupal6-mod-contemplate' 'dict-freedict-eng-fra' 'bmon' 'xserver-xorg-core-dbg' 'strigi-dbg' 'libxmlrpc-c3-dev' 'libmtdev1' 'libjunitperf-java-doc' 'libghc6-haskelldb-hdbc-sqlite3-doc' 'virtualenvwrapper' 'uim-gtk3' 'nexus-tools' 'w3c-markup-validator' 'libtemplate-plugin-calendar-simple-perl' 'libghc-monadrandom-doc' 'ebsmount' 'pkg-config-arm-linux-gnueabihf' 'libvlc5' 't-coffee' 'ben' 'human-theme' 'gcc-4.7-source' 'acpid' 'libboost-date-time1.48.0' 'libbotan1.8-dev' 'ttf-anonymous-pro' 'smc-data' 'puredata-import' 'polyorb-doc' 'maqview' 'lpc21isp' 'libtclcl1-dev' 'libscalapack-pvm-dev' 'libopengl-xscreensaver-perl' 'libghc-project-template-dev' 'libfontbox-java' 'libdsdp-dev' 'libcamitk3-data' 'libboost-date-time1.53.0' 'libbitstream-dev' 'libaqbanking-plugins-libgwenhywfar60' 'libmotif-dev' 'keynav' 'cenon.app' 'ndtpd' 'batctl' 'ale' 'libcrypt-des-perl' 'zbuildtools' 'yorick-yeti-tiff' 'txtreader' 'sugar-pippy-activity' 'mmake' 'libtext-english-perl' 'libxml-ruby' 'libpocoodbc9-dbg' 'libgtk2-traymanager-perl' 'libghc-primitive-dev' 'libformula-java-doc' 'libclass-forward-perl' 'libhtml-fillinform-perl' 'kubuntu-low-fat-settings' 'prboom' 'cgvg' 'amb-plugins' 'latex-cjk-chinese' 'libxen-ocaml' 'libgail-3-0-dbg' 'libgles2-mesa' 'jhove' 'science-biology' 'rtai' 'python-fs' 'libzen-dev' 'libnxml0-dbg' 'libmaven-stapler-plugin-java-doc' 'libsamba-hostconfig-dev' 'libghc-semigroups-dev' 'libghc-zeromq-haskell-doc' 'libfile-localizenewlines-perl' 'libboost-timer-dev' 'python-psutil' 'ggobi' 'colibri' 'simple-scan' 'libjavascriptcoregtk-1.0-0-dbg' 'nvidia-cg-doc' 'ytalk' 'xfonts-cronyx-koi8r-misc' 'realmd' 'r-cran-timedate' 'python-rapi2' 'live-config-systemd' 'witty' 'libvtkedge-dev' 'libsnack2-dev' 'libio-captureoutput-perl' 'libibtk-dev' 'libjsilver-java' 'libgnadesqlite3-dbg' 'libghc-xmonad-prof' 'libucommon-dev' 'libalog0.4.1-base-dbg' 'italc-client' 'tint2' 'libgtkhtml3.14-cil-dev' 'gnome-btdownload' 'gnome-audio' 'conky-cli' 'numdiff' 'cam' 'openobex-apps' 'awn-applet-hardware-sensors' 'qmf-dbg' 'php-horde-syncml' 'mftrace' 'libxml-rss-libxml-perl' 'libopenjpa-java-doc' 'libghc-language-javascript-prof' 'libgavl-ocaml' 'libexpat-ocaml-dev' 'libdesktop-agnostic-vfs-gio' 'libchamplain-gtk-doc' 'liblexical-sealrequirehints-perl' 'kyotocabinet-utils' 'kwin-style-crystal' 'horgand-data' 'gridengine-exec' 'skktools' 'cvm-pgsql' 'samba-dbg' 'tftp' 'libsoftware-license-perl' 'language-pack-kde-ast' 'cjet' 'libcupsppdc1' 'libaprutil1-dbd-freetds' 'linux-image-extra-3.8.0-16-generic' 'python-qt3-gl' 'libunicapgtk-docs' 'libghc-happstack-state-prof' 'linux-backports-modules-net-3.2.0-39-virtual' 'zathura-ps' 'python3-sleekxmpp' 'nwipe' 'libtest-dependencies-perl' 'libkarma-dev' 'libhtml-wikiconverter-oddmuse-perl' 'libgtkglada2.24.1' 'libghc-diff-prof' 'libghc-base64-bytestring-prof' 'noflushd' 'libgnustep-gui0.22-dbg' 'trayer' 'libelk0' 'libschroedinger-doc' 'links2' 'libace-6.0.1' 'yahtzeesharp' 'teem-apps' 'sugar-turtleart-activity' 'python3-leveldb' 'python-wimpiggy' 'python-sugar3' 'python-impacket-doc' 'libxenomai-dev' 'libjeuclid-fop-java' 'libghc-warp-tls-dev' 'libghc-hdbc-odbc-prof' 'libcolor-library-perl' 'libcconv-dev' 'kollision' 'uw-imapd' 'gnome-nds-thumbnailer' 'gambit' 'fl-cow' 'firebird2.1-dev' 'python-milter' 'courier-ssl' 'cernlib-montecarlo' 'libanalitza4abi1' 'poppler-dbg' 'libxvmc1-dbg' 'libjavascriptcoregtk-3.0-0' 'google-mock' 'gir1.2-webkit-3.0' 'libpdf-writer-ruby-doc' 'libghc6-happstack-state-prof' 'libgsf-gnome-1-114-dbg' 'swftools' 's3ql-dbg' 'portabase' 'liburfkill-glib0-dbg' 'libpoe-component-pubsub-perl' 'libogdi3.2-dev' 'libnexus0-java' 'libsort-versions-perl' 'harden-nids' 'dsyslog' 'quvi' 'calcoo' 'biloba' 'libnepomukwidgets4' 'playmidi' 'libdb5.3++-dev' 'python-bzrlib.tests' 'libghc6-sendfile-prof' 'libghc6-gstreamer-prof' 'gobjc++-4.5-multilib' 'xmms2-plugin-daap' 'science-engineering' 'python-pysnmp4-mibs' 'python-guppy-lib-dbg' 'packagesearch' 'php-crypt-blowfish' 'libsbml5-perl' 'libmime-charset-perl' 'libluabind-examples' 'liblua50-dev' 'libgloox-dbg' 'libghc-haskeline-dev' 'jpnevulator' 'libchicken6' 'cbm' 'basket' 'atfs' 'libace-6.0.3' 'tidy' 'snmpd' 'python-lazr.uri' 'libreoffice-help-en-gb' 'libpackagekit-qt2-2' 'libdbustest1-dev' 'libcdio-paranoia-dev' 'readline-common' 'language-pack-ti-base' 'libvte-2.90-9' 'emacsen-common' 'dbus' 'libghc-pool-doc' 'libsuitesparse-metis-3.1.0' 'xfonts-baekmuk' 'singularity' 'marble-touch' 'libvpb-dev' 'musepack-tools' 'libmodule-install-xsutil-perl' 'libmdsp-dev' 'libghc-hdbc-postgresql-doc' 'libghc-configfile-doc' 'libhdf5-serial-dev' 'libfeedtools-ruby' 'kadu-external-modules' 'gobjc-4.5-arm-linux-gnueabi' 'glassfish-activation' 'navit-gui-gtk' 'gconjugue' 'frown-doc' 'coinor-libflopc++-doc' 'and' 'libtidy-0.99-0' 'libftdipp1' 'libdevel-cover-perl' 'xa65' 'tioga' 'saytime' 'ri-li-data' 'python-txosc' 'python-zope.location' 'python-openscap' 'python-pip' 'qhull-bin' 'libtest-rdf-perl' 'libopencv-stitching2.4' 'libnewlib0' 'libmapscript-ruby1.8' 'libghc-editline-dev' 'libflickcurl0-dbg' 'libclipper2' 'libcityhash-dev' 'libplack-middleware-reverseproxy-perl' 'libaudio-rpld-perl' 'libsdl-pango-dev' 'libmsgpack3' 'jpegpixi' 'libqdbm14' 'emboss-doc' 'cde' 'prosody' 'abgate' 'texlive-science' 'libfarstream-0.1-dev' 'djview3' 'gir1.2-freedesktop' 'udev' 'wmnd-snmp' 'syslinux-themes-debian-squeeze' 'libxml-filter-reindent-perl' 'libtokyocabinet-ruby1.9.1' 'libqt5v8-5-private-dev' 'libopencascade-foundation-6.5.0' 'libghc-ghc-syb-utils-prof' 'fftw-docs' 'python-mmkeys' 'fonts-dkg-handwriting' 'djview4' 'stunnel4' 'libxmlgraphics-commons-java' 'gambas2-gb-chart' 'zentyal-users' 'shiboken-doc' 'maradns' 'libploticus0-dev' 'libmail-imaptalk-perl' 'libhtml-wikiconverter-snipsnap-perl' 'libguestfs-tools' 'check-mk-doc' 'bhl' 'astronomical-almanac' 'akonadi-facebook' 'admesh' 'libavahi-core-dev' 'erlang-megaco' 'libsfstdc++6-4.6-dbg-armhf-cross' 'linux-backports-modules-cw-3.5-precise-generic-pae' 'trash-cli' 'tkcon' 'rtgui' 'python-nss' 'obexfs' 'mmass-modules' 'libmd3-dev' 'libindi-dev' 'libtest-tcp-perl' 'libboost-atomic1.53-dev' 'libasound2-plugins-extra' 'libxcb-res0-dev' 'libcommons-io-java' 'finger' 'dovecot-pop3d' 'dh-modaliases' 'ec2-init' 'libatspi1.0-0' 'openoffice.org-help-hi-in' 'libkms-ltsq1' 'zlib-gst' 'yample' 'stardict-xmlittre' 'stardict-tools' 'openafs-fuse' 'libtermios-ruby1.8' 'libpmount0.0' 'libgps-point-perl' 'libghc-vector-algorithms-dev' 'keyboardcast' 'libsqlite3-tcl' 'gnome-speech-dectalk' 'gkrellxmms2' 'geda-gsymcheck' 'libctdb-dev' 'libmuffin0' 'libfcgi-procmanager-perl' 'binwalk' 'libpython2.7-dev' 'x11proto-core-dev' 'gcj-jre-headless' 'bluez-utils' 'linux-image-extra-3.2.0-36-virtual' 'libcmis-0.2-0' 'ubuntustudio-menu' 'termit' 'tendra-doc' 'pidgin-musictracker' 'libsort-key-perl' 'libmjpegutils-2.0-0' 'ruby-chronic' 'leds-alix-source' 'jokosher' 'gtk-chtheme' 'geany-plugin-prj' 'librestlet-java' 'code-aster-run' 'clisp-module-pcre' 'nut-xml' 'libgnome-control-center-dev' 'libxcb1' 'libpeas-1.0-0' 'libxcursor-dev' 'gettext' 'openvanilla-imgeneric-data-all' 'livemix' 'libvde-dev' 'libupnp4-dev' 'libpion-net-4.0-dbg' 'libfannj-java-doc' 'libembperl-perl' 'slsh' 'dict-freedict-eng-hin' 'libcvm1' 'libemail-simple-perl' 'libkmod-dev' 'libgbm1' 'ebtables' 'passwd' 'libcmis-0.2-2' 'doc-linux-nonfree-html' 'python-zookeeper' 'python-symeig-dbg' 'pyromaths' 'php-config' 'libwww-youtube-download-perl' 'libwtdbo-dev' 'libsensors-applet-plugin-dev' 'liblist-compare-perl' 'libghc-test-framework-quickcheck2-dev' 'libfishsound1' 'libbluedevil-dev' 'kubuntu-settings-netbook' 'freewnn-jserver' 'ecere-sdk' 'cl-hyperobject' 'ruby-instantiator' 'libpoe-perl' 'slrn' 'libcairomm-1.0-dev' 'rebar' 'qtsvg5-dbg' 'node-oauth' 'minbar-data' 'libtarantool1' 'libproxy1-plugin-kconfig' 'liblog4ada1' 'libgst-ruby' 'x11proto-dmx-dev' 'lib64quadmath0-dbg' 'diveintopython' 'ocaml' 'libglibmm-2.4-1c2a' 'libghc6-parsec3-prof' 'libopenvg1-mesa-lts-quantal' 'sword-text-kjv' 'selinux-policy-ubuntu-dev' 'rasterlite-bin' 'qviaggiatreno' 'python-rfoo' 'python-bibtex' 'libosmium-dev' 'libumad2sim0' 'libpopplerkit-dev' 'fcitx-frontend-qt4' 'live-boot' 'libconcord2' 'ams' 'syslinux-legacy' 'libmono-system-web-applicationservices4.0-cil' 'libgemplugin-ruby' 'gambas2-gb-compress-bzlib2' 'linux-backports-modules-net-3.2.0-36-generic' 'linux-backports-modules-net-3.2.0-33-generic-pae' 'wmclockmon' 'python-pandas' 'libofx4-dbg' 'libicc-dev' 'libgsql-dev' 'libghc-diagrams-lib-prof' 'libdbus-ocaml-dev' 'libmoosex-markasmethods-perl' 'libboost-mpi1.46-dev' 'hugin-data' 'libgstreamer-interfaces-perl' 'cdo' 'bindfs' 'ant1.7-gcj' 'libjs-mathjax' 'libqt4-help' 'libbabl-0.0-doc' 'libkdnssd4' 'shaperd' 'tcos-standalone' 'python-kde4-dev' 'pcb2gcode-dbg' 'openarena-081-players-mature' 'libunshield0' 'libaudio-wma-perl' 'metainit' 'gtk2-engines-blueheart' 'glipper' 'v4l2loopback-dkms' 'debian-builder' 'bip' 'libboost-serialization1.49.0' 'evolution-plugins-experimental' 'ser-jabber-module' 'pop-before-smtp' 'linux-headers-lbm-3.2.0-37-generic' 'sbox-dtc' 'python-xdelta3' 'python-msnlib' 'python-editobj' 'python-bitbucket' 'parrot-minimal' 'libsylph1' 'libnb-platform13-java' 'libmath-random-tt800-perl' 'libgtkglext1-dbg' 'libghc-hinotify-dev' 'libghc-fsnotify-dev' 'libclass-accessor-class-perl' 'libcgi-application-plugin-dbiprofile-perl' 'l2tp-ipsec-vpn' 'hoteldruid' 'gnash-cygnal' 'atlc' 'python-apt-dev' 'libs3-2' 'apg' 'tkdnd' 'timps' 'selinux-policy-ubuntu' 'python-osd' 'psi-plus-l10n' 'osdsh' 'mupen64plus-rsp-hle-dbg' 'libzookeeper-java-doc' 'libxfce4util-common' 'libtcc-dev' 'libsnmpkit2c2a' 'libmidgard2-dev' 'libgdk-pixbuf2-ruby' 'libstring-toidentifier-en-perl' 'libaxis2c0' 'jscoverage' 'ossim-core' 'contour-data' 'libmono-addins0.2-cil' 'python-scgi' 'speex' 'language-pack-gnome-bg-base' 'libghc6-vector-algorithms-dev' 'libghc6-curl-dev' 'sandbox-upgrader' 'python-freshen' 'otags' 'python-nut' 'makehuman-data' 'libxine2-xvdr' 'libsdl-sge-dev' 'liboglappth-dev' 'libmongo-client-doc' 'libkohana3.2-mod-codebench-php' 'libqtlocation1' 'prover9-doc' 'libksgrd4' 'gtk3-im-libthai' 'bld' 'adjtimex' 'libtest-simple-perl' 'libbonobo2-bin' 'indicator-messages' 'xtux-common' 'nvclock-gtk' 'monotone-server' 'libwirble-ruby' 'libncursesada-doc' 'libkohana3.2-mod-unittest-php' 'libafsauthent1' 'kcachegrind-converters' 'goban-original-games' 'lirc-x' 'coco-cs' 'cl-lml2' 'samba4-clients' 'plasma-widget-networkmanagement' 'libboost-date-time1.49.0' 'language-pack-kde-de-base' 'language-pack-kde-bo-base' 'libnet-telnet-perl' 'ant' 'edubuntu-desktop-kde' 'ubuntu-sso-client-gtk' 'trovacap' 'python-pyhyphen' 'python-mpikmeans' 'ocamlify' 'libhfstdc++6-armel-cross' 'libghc-snap-server-dev' 'libapache-htpasswd-perl' 'libtracker-extract-0.14-0' 'freenect' 'emacs-intl-fonts' 'bse-alsa' 'libclaw-logger1' 'ara' 'linux-image' 'libsyncdaemon-1.0-dev' 'libreoffice-base-core' 'liblangtag-doc' 'language-pack-gnome-nb-base' 'language-pack-gnome-mg-base' 'libkparts4' 'pstoedit' 'gnome-orca' 'libaccountsservice0' 'fsl-4.1' 'e-uae' 'vbrfix' 'tcos-configurator' 'sphinx-voxforge-lm-en' 'rasterlite-dbg' 'python-pyscript' 'python-cffi-dbg' 'arb' 'python-xklavier' 'libopensm-dev' 'libghc-happstack-server-prof' 'libepsilon-dev' 'guile-gnome2-gconf' 'libnet-dbus-perl' 'gjots2' 'libblocksruntime0' 'sudo-ldap' 'libmono-system-servicemodel-routing4.0-cil' 'libdbusmenu-qt5-dev' 'lib64ncurses5-dev' 'openoffice.org-presentation-minimizer' 'libfaac-dev' 'python-audit' 'transmission' 'libtyxml-ocaml-dev' 'libsocialweb-common' 'libkwiki-perl' 'libghc-monad-loops-doc' 'libghc-datetime-doc' 'idzebra-2.0-examples' 'fonttools-eexecop' 'nautilus-qdigidoc' 'libdebian-packages-compare-perl' 'cdw' 'arc' 'python-markupsafe' 'network-manager-vpnc' 'language-pack-kde-lt-base' 'language-pack-kde-ky-base' 'libgvnc-1.0-0' 'checkbox-gtk' 'sysconftool' 'sakura' 'python-sparqlwrapper' 'pacemaker-mgmt-client' 'node-uglify' 'mango-lassi' 'libsqlite3-ruby' 'liboil0.3-doc' 'libjinput-java-doc' 'libemail-valid-loose-perl' 'libglom-1.22-0' 'claws-mail-vcalendar-plugin' 'bird-dbg' 'python-qt3' 'avahi-dbg' 'juju-core' 'ruby-rchardet' 'sabnzbdplus' 'libtest-cmd-perl' 'libtemplate-tiny-perl' 'libroot-proof5.34' 'libfm-gtk-data' 'libboost-signals-dev' 'konqueror-plugin-gnash' 'libclass-makemethods-perl' 'grisbi' 'getstream' 'libgdf0' 'libf2c2-dev' 'libudp-tcl' 'boinc-amd-opencl' 'python-qt4' 'liboce-ocaf1' 'stx2any' 'snort-doc' 'rubberband-ladspa' 'haskell-zlib-doc' 'libghc-project-template-doc' 'libfile-save-home-perl' 'libdune-geometry-2.2.0' 'libcommons-launcher-java' 'kamera' 'gosa-desktop' 'gcu-bin' 'bmf' 'asql' 'libsdl-sound1.2' 'archipel-agent-vmcasting' 'libflac-dev' 'php-pear' 'gcj-4.6-base' 'erlang-corba' 'libdrm-nouveau1a-dbg' 'subtitleripper' 'python-zope.copy' 'pysycache-puzzle-photos' 'live-image-standard' 'libtarantool1-dbg' 'libposixlock-ruby' 'libpoe-component-client-keepalive-perl' 'oar-user' 'libnxml0-dev' 'libjmdns-java' 'libghc-primitive-doc' 'libima-dbi-perl' 'inetutils-talkd' 'gnome-tetravex' 'liboce-ocaf2' 'ruby-childprocess' 'libunistring-dev' 'lupin-support' 'libp11-kit0' 'dovecot-managesieved' 'libteem1' 'libghc6-url-prof' 'defoma-doc' 'wordnet-base' 'visolate' 'python-flufl.enum' 'mixal' 'libzen-doc' 'libpam-google-authenticator' 'liblinux-usermod-perl' 'libghc-parsec3-dev' 'libghc-gnuidn-prof' 'libghc-semigroups-doc' 'libalog0.4.1-base-dev' 'globus-authz-callout-error-dbg' 'crimson' 'bugsquish' 'dar' 'asc' 'antlr3-doc' 'xserver-xorg-input-wacom-dbg' 'texlive-lang-spanish' 'prosper' 'nut-client' 'time' 'llvm-2.8' 'libucommon-doc' 'liblua5.1-rex-doc' 'libstdc++6-4.6-dev-armhf-cross' 'linux-backports-modules-net-3.2.0-31-generic-pae' 'linux-backports-modules-net-3.2.0-26-generic-pae' 'tina' 'tkgate' 'relational-cli' 'qmf-dev' 'nescc' 'libvalhalla2-dbg' 'libteem2' 'libsnack2-doc' 'libnumber-recordlocator-perl' 'javamorph' 'inspircd' 'gnome-activity-journal' 'exifprobe' 'moovida-plugins-ugly' 'ddpt' 'python-ply' 'ddd' 'claws-mail-newmail-plugin' 'bplay' 'bnd' 'ppp-dev' 'libfribidi-dev' 'lib64ffi6' 'python-numpy' 'webgen0.4-doc' 'uwsgi-plugin-erlang' 'syslogout' 'python-reportlab-accel-dbg' 'python-libcloud' 'python-pyatspi' 'micropolis' 'llvm-2.9' 'libtesseract-dev' 'libqxt-sql0' 'libghc-hledger-prof' 'libapache2-mod-suphp' 'kgmailnotifier' 'gnome-shell-timer' 'flmsg' 'liblua5.1-md5-0' 'cldump' 'briquolo' 'mknbi' 'libxmuu1-dbg' 'libhttp-request-ascgi-perl' 'libcrypt-openssl-bignum-perl' 'hfsutils-tcltk' 'apt' 'arj' 'gambas2-gb-pcre' 'libapache-mod-auth-kerb' 'xmms2-plugin-apefile' 'xfmpc' 'tinc' 'sonic-visualiser-dbg' 'xppaut' 'radare-gtk' 'libxsettings-client0-dbg' 'libroot-math-unuran5.34' 'gunroar' 'gfortran-4.4-arm-linux-gnueabihf' 'gem-plugin-dc1394' 'erlang-proper' 'timelimit' 'boa' 'ark' 'python-urwid' 'quantum-plugin-nicira' 'language-pack-kde-csb' 'deja-dup-backend-cloudfiles' 'python-scim' 'libghc6-happstack-server-prof' 'firebird2.1-doc' 'libxatracker-dev-lts-quantal' 'prelude-correlator' 'ocaml-melt' 'ruby-rsvg2' 'ruby-net-netrc' 'libmath-prime-util-gmp-perl' 'libghc-warp-tls-doc' 'keymon' 'lokalize' 'sweeper' 'glusterfs-server' 'ddtc' 'cl-sql-mysql' 'cfv' 'python-pmw' 'python-lxml-doc' 'gstreamer0.10-ffmpeg' 'libpam-xdg-support' 'language-pack-kde-crh' 'firefox' 'libmetis-edf4.1' 'arb-doc' 'xstarfish' 'sogo' 'renpy-demo' 'python-lazr.delegates' 'xen-system-i386' 'libroot-net-auth5.34' 'libplayertcp3.0' 'libnet-luminis-build-plugin-java' 'libjs-less' 'libhfgomp1-dbg-armel-cross' 'libgloox-dev' 'libextutils-libbuilder-perl' 'libelektratools-dev' 'libcrypt-ecb-perl' 'libcolor-scheme-perl' 'inventor-data' 'mknfonts.tool' 'libcatalyst-perl' 'cbflib-bin' 'backintime-kde' 'ash' 'xbitmaps' 'shogun-python-static' 'laptop-mode-tools' 'x11proto-dri2-dev' 'samba-common-bin' 'libghc6-edison-api-prof' 'tuxcmd' 'python-nxt' 'postgresql-9.1-plsh' 'liburg0' 'libpam-pwdfile' 'libmodbus-dev' 'lua-event' 'libghc-haskeline-doc' 'libdebian-package-html-perl' 'x2vnc' 'gobby-0.5-dbg' 'scheme48' 'aegis' 'python3-pygments' 'python3-all-dbg' 'libtime-piece-perl' 'librest-dev' 'dbs' 'cmake' 'libcgal8' 'mysql-navigator' 'tkabber-plugins' 'razorqt-appswitcher' 'postgresql-9.1-orafce' 'libxdb1' 'libvpb-doc' 'libspring-build-java' 'libbusiness-paypal-api-perl' 'libhdhomerun1' 'gmpc-plugins' 'freemind' 'file-kanji' 'fcitx-m17n' 'nuttcp' 'libosgi-compendium-java' 'migemo' 'signon-plugin-oauth2-dev' 'liblog-dispatch-perl' 'doxygen' 'blt' 'libghc6-haxr-dev' 'shogun-csharp-modular' 'liquidsoap-plugin-pulseaudio' 'libxml-autowriter-perl' 'libghc-yesod-static-dev' 'libghc-editline-doc' 'libtest-assertions-perl' 'libccrtp0' 'lastfm' 'ksplice' 'xplanet-images' 'tinymce2' 'hebcal' 'mpeg2dec' 'fuse-emulator-utils' 'episoder' 'device3dfx-source' 'libcgal9' 'atool' 'libshell-perl' 'libmono-system-componentmodel-dataannotations4.0-cil' 'libfarstream-0.1-doc' 'libexif-dev' 'libaprutil1-dbd-mysql' 'libghc6-stream-dev' 'libghc6-ghc-events-dev' 'awn-settings' 'python-otr' 'nginx-naxsi' 'maliit-inputcontext-qt4' 'libuim-custom2' 'libserver-starter-perl' 'libowl-directsemantics-perl' 'libocrad-dev' 'libghc-pem-dev' 'libghc-data-accessor-prof' 'libdata-hexdumper-perl' 'libopencv-features2d-dev' 'dhcp-probe' 'cil' 'kdegames-data' 'libdrm2' 'ufraw-batch' 'docbookwiki' 'zangband' 'libnauty1d' 'tack-dbg' 'libole-ruby-doc' 'libghc-yesod-auth-prof' 'libghc-xmonad-dev' 'libaac-tactics-ocaml-dev' 'libkpgp4' 'libqgpgme1' 'libnet-jabber-perl' 'libiceutil34' 'libticonv3' 'libgammu7' 'dfc' 'cl-alexandria' 'bve-train-br-class-323' 'libcmis-0.3-3' 'language-pack-ig-base' 'iamerican-large' 'gstreamer1.0-plugins-base-apps' 'libghc6-gstreamer-dev' 'linux-backports-modules-cw-3.4-precise-generic-pae' 'squeak-plugin-image' 'python-pycuda-headers' 'ubuntu-defaults-it' 'thrust' 'python-dumbnet' 'n2n' 'libmono-uia-winforms1.0-cil' 'systemtap-sdt-dev' 'libjenkins-remoting-java' 'ttf-engadget' 'libevas1-engines-x' 'diploma' 'ciso' 'libdata-treedumper-renderer-gtk-perl' 'libxtst6-dbg' 'libtree-dagnode-perl' 'tipa' 'snmp' 'uqm-content' 'xfce4-weather-plugin' 'slurm-llnl-torque' 'python-qmf' 'oggvideotools-dbg' 'netplug' 'mythbuntu-lirc-generator' 'lustre-dev' 'libpixels-java' 'libhyantes-dev' 'libhocr0' 'libglobus-openssl-module-dev' 'libghc-vector-algorithms-doc' 'kde-window-manager-common' 'junior-games-sim' 'flamerobin' 'xprintidle' 'libvdpau-dev' 'asciidoc' 'libguac1' 'ruby-zentest' 'openjdk-6-dbg' 'nacl-tools' 'libsundials-kinsol1' 'libluabind-dbg' 'libg15render-dev' 'libfelix-osgi-obr-java-doc' 'libfax-hylafax-client-perl' 'libexpat-gst' 'libtk-objscanner-perl' 'dff' 'libawl-php' 'brag' 'asp' 'alsaplayer-text' 'python3-dirspec' 'account-plugin-myspace' 'libvirt0' 'libwibble-dev' 'libenca-dbg' 'language-pack-tg-base' 'spell' 'language-pack-sl-base' 'cython-doc' 'python-cinder' 'osmium-doc' 'yorick-soy' 'yafaray' 'rst2pdf' 'pfqueue-dbg' 'multimon' 'mailcheck' 'lxtask-dbg' 'libupnp4-doc' 'libghc-hslogger-dev' 'libbarby-ruby-doc' 'libgconfmm-2.6-dev' 'kamailio-carrierroute-modules' 'hostap-utils' 'ladish' 'geany-plugin-prettyprinter' 'libstdc++6-4.7-dbg-powerpc-cross' 'libxdb-dev' 'solr-jetty' 'phonon-backend-vlc' 'libgtk-vnc-1.0-dev' 'libgphoto2-2-dev' 'libusb-dev' 'libboost1.46-dbg' 'gambas2-gb-db' 'z8530-utils2' 'libswtchart-java' 'libjama-java-doc' 'libghc-test-framework-quickcheck2-doc' 'haskell-hsql-sqlite3-doc' 'libguac3' 'fso-deviced-player-gstreamer' 'freecode-submit' 'dgen' 'libexchangemapi-1.0-0' 'libgnupg-interface-perl' 'python-kaa-metadata' 'libmp3lame0' 'libecpg-compat3' 'libeasymock-java' 'libcairomm-1.0-doc' 'ruby' 'drac-dev' 'xserver-xorg-input-evdev-dev-lts-quantal' 'xserver-xorg-core-lts-quantal-dbg' 'spek' 'python-milter-doc' 'python-pp' 'python-wxtools' 'lilypond-doc-html-zh' 'libtest-aggregate-perl' 'libpdf-reuse-barcode-perl' 'libnet-mac-vendor-perl' 'libmaven-war-plugin-java-doc' 'libghc-gnuidn-dev' 'libdiet-dagda2.8-dev' 'libapol-dev' 'kamailio-mono-modules' 'ibus-table-array30' 'geda-symbols' 'dds' 'boxbackup-client' 'arkose-nautilus' 'activiz.net-examples' 'python-json-pointer' 'libx32quadmath0-dbg' 'lib64gcc1' 'gstreamer1.0-tools' 'docbook-defguide' 'gdb-multiarch' 'libggimisc2-dev' 'fonts-moe-standard-kai' 'xpilot-ng-common' 'tracker-extract' 'sikuli-ide' 'selinux-policy-ubuntu-doc' 'qlix-dbg' 'python-mvpa2-doc' 'libxml-parser-ruby1.8' 'ruby-validatable' 'libparse-errorstring-perl-perl' 'libnini-doc' 'libmaven-clean-plugin-java-doc' 'libghc-bindings-sane-dev' 'libtest-classapi-perl' 'kwordquiz' 'kde-artwork-active' 'icecc-monitor' 'heroes-common' 'gem-plugin-gmerlin' 'drizzle-plugin-slave' 'iwatch' 'boo' 'atop' 'abuse' 'libsensors4-dev' 'libmono-system-web-mvc1.0-cil' 'libtime-modules-perl' 'qmail-src' 'qc-usb-source' 'xserver-xorg-video-sisusb-lts-quantal' 'lib64asound2' 'nvidia-opencl-dev' 'smtm' 'python-ow' 'linux-wlan-ng' 'lightspark' 'libzookeeper-mt-dev' 'liblaf-widget-java-doc' 'libircclient1' 'libgst-dev' 'libgraphics-gnuplotif-perl' 'libfxt-dev' 'libcache-ref-perl' 'kcron' 'java2html' 'ice34-services' 'llvm-3.0' 'libjs-mootools' 'atp' 'apt-dater-host' 'libstringtemplate-java' 'ttf-gujarati-fonts' 'libjsch-java-doc' 'erlang' 'rplay-contrib' 'root-plugin-gui-fitpanel' 'qmail-run' 'python-aiml' 'pybridge' 'mediawiki-math-texvc' 'llvm-3.1' 'libgtkglext1-dev' 'kmldonkey' 'joe-jupp' 'libcamomile-ocaml-data' 'python-kde4-doc' 'ecb' 'bopm' 'libpar-perl' 'zsh-beta' 'ibulgarian' 'ttf-takao-gothic' 'devhelp-common' 'deja-dup-backend-s3' 'sgmlspl' 'libcommons-logging-java' 'libgee2' 'xserver-xorg-dev-lts-quantal' 'transcalc' 'tint' 'python-rhn' 'music-bin' 'tkcvs' 'mediathekview' 'uim-yahoo-jp' 'root-plugin-gui-guibuilder' 'libmaven-shared-jar-java' 'lua50' 'libitsol1' 'libglpk0-dbg' 'libghc-hinotify-doc' 'libghc-fsnotify-doc' 'libepr-api2' 'libpod-eventual-perl' 'libservlet2.5-java-doc' 'php5-auth-pam' 'gobjc++-4.7-arm-linux-gnueabi' 'ucto' 'dsyslog-dbg' 'bauble' 'python-egenix-mxbeebase-doc' 'python-apt-doc' 'llvm-3.2' 'locales' 'cman' 'default-jdk' 'wmcpu' 'licq-plugin-jabber' 'libsidutils0' 'libqxt-dev' 'libudt-dev' 'libacegi-security-java' 'fonts-yozvox-yozfont' 'libcipux-perl' 'libcurses-widgets-perl' 'rrdtool-dbg' 'python3-pyqt4.qtopengl' 'libsane-extras-dbg' 'libsecret-1-0' 'libghc6-vector-algorithms-doc' 'libghc6-curl-doc' 'antlr3-gcj' 'linux-headers-3.2.0-38-lowlatency-pae' 'python-zope.proxy' 'pcb2gcode' 'openssn-data' 'opensm-doc' 'libprophet-perl' 'libghc-cereal-conduit-dev' 'libconfig-mvp-perl' 'libcmpicppimpl0-dev' 'liballeggl4.4' 'xmobar' 'rtmpdump' 'dopewars' 'dfo' 'mmass' 'ant1.7-optional-gcj' 'python-webkit' 'libpostproc-dev' 'gambas2-runtime' 'libglapi-mesa-lts-quantal' 'xfce4-netload-plugin' 'supercollider-vim' 'srm-ifce-dev' 'reptyr' 'r-cran-fexoticoptions' 'python-forgetsql' 'python-django-lint' 'pd-readanysf' 'libwireshark-data' 'librxtx-java-dbg' 'libqt5svg5-dev' 'libopendkim-dev' 'libnet-sftp-ruby1.8' 'libghc-unlambda-dev' 'libghc-hxt-tagsoup-dev' 'libghc-glfw-dev' 'libcgns3.1-dbg' 'libacme-brainfck-perl' 'kwave' 'kphotoalbum' 'dsniff' 'das-watchdog' 'libdar64-5' 'aspectj' 'libmono-system-messaging2.0-cil' 'libenca0' 'dia' 'phpunit-doc' 'awn-applet-awn-system-monitor' 'linux-headers-3.2.0-38-virtual' 'tellico-data' 'linkchecker' 'librpcsecgss3' 'libmaven-bundle-plugin-java-doc' 'libnekohtml-java-doc' 'libtxw2-java' 'libgnome-keyring1.0-cil-dev' 'libghc-snap-server-doc' 'libghc-monadcryptorandom-prof' 'libchise-dev' 'libaudio-flac-decoder-perl' 'libmailtransport4' 'gosa-plugin-openxchange' 'gir1.2-sugarext-1.0' 'libcollections15-java' 'edb' 'ttf-gfs-olga' 'cfortran' 'texlive-latex-recommended-doc' 'liblwp-useragent-determined-perl' 'openhpid' 'libcunit1' 'bacula-sd-mysql' 'sucrack' 'libtemplate-plugin-gravatar-perl' 'libindicate0.1-cil-dev' 'libghc-cautious-file-dev' 'edubuntu-wallpapers' 'clex' 'avfs' 'python-py' 'libgnome-bluetooth-dev' 'libdbusmenu-qt5-doc' 'gcj-4.7-source' 'tuxguitar' 'thunar-archive-plugin' 'ssmping' 'python-parted-dbg' 'pykaraoke-bin' 'node-node-markdown' 'libzerg0-dbg' 'libxmmsclient++-glib1' 'libtyxml-ocaml-doc' 'libpango1-ruby1.8-dbg' 'libsvn-java' 'ruby-inotify' 'ip2host' 'python-gastables' 'gcc-4.6-doc' 'ruby-mixlib-shellout' 'printer-driver-ptouch' 'libqscintilla2-dev' 'libreadonly-perl' 'libjasper-runtime' 'libgnome2-common' 'libavahi-ui-gtk3-dev' 'libatkmm-1.6-1' 'cups-common' 'xserver-xorg-video-openchrome-lts-quantal-dbg' 'linux-image-3.2.0-24-generic-pae' 'qmhandle' 'xfoil' 'ruby-gio2-dbg' 'librg-reprof-bundle-perl' 'libmp3splt0' 'liblistaller-glib-dev' 'libjazzy-java' 'libghc-failure-prof' 'libcpan-uploader-perl' 'lgc-pg' 'jenkins-slave' 'gosa-plugin-opsi' 'gbsplay' 'festival-dev' 'libdiet-sed2.8' 'cyrus-imapd' 'clif' 'backup-manager' 'nvidia-current-updates-dev' 'axe' 'libboost-wave1.49-dev' 'gir1.2-gxps-0.1' 'ecj' 'powermgmt-base' 'ugene-data' 'ubuntu-defaults-nl' 'spew' 'pct-scanner-scripts' 'libsanlock-client1' 'ifstat' 'libgrok1' 'jablicator' 'libsp1-dev' 'libpth-dev' 'language-pack-gnome-be-base' 'fonts-arphic-uming' 'libimobiledevice2-dbg' 'ogmrip-mpeg' 'python-weblib' 'pysycache-dblclick-butterfly' 'netcf' 'mysql-mmm-tools' 'monobristol' 'xmms2-plugin-id3v2' 'libplexus-cli-java' 'libnetty3.1-java' 'libfile-policy-perl' 'liblist-utilsby-perl' 'libclass-dbi-mysql-perl' 'lcmaps-plugins-jobrep-admin' 'flamethrower' 'emelfm2' 'ecl' 'drupal6-mod-i18n' 'dietlibc-dev' 'libgdal1' 'bosh' 'booth' 'arno-iptables-firewall' 'transset' 'python-avahi' 'uno-libs3' 'libmythes-1.2-0' 'libflac-doc' 'libbonobo2-dev' 'gcj-4.7-jre-lib' 'texlive-lang-cyrillic' 'libghc6-datetime-dev' 'yoshimi-data' 'xmms2-client-avahi' 'lv2core' 'libserd-dev' 'libhdhomerun-dev' 'laserboy' 'fonts-kiloji' 'ecm' 'libreoffice-ogltrans' 'libqthelp4-perl' 'libmono-posix2.0-cil' 'language-pack-kde-ar-base' 'bsh' 'libghc6-sdl-ttf-dev' 'libqapt1' 'vilistextum' 'scheme9' 'python-fltk-dbg' 'python-django-extra-views' 'python-django-debug-toolbar' 'provami' 'mp3wrap' 'libxml-dtdparser-perl' 'libwxsmithlib-dev' 'libstapler-adjunct-timeline-java-doc' 'libkxl0-dev' 'libhaapi-dev' 'libghc-readline-prof' 'libghc-parsec3-doc' 'libfelix-shell-tui-java' 'libc6-arm64-cross' 'rygel-preferences' 'libghc-filestore-data' 'gfpoken' 'mingw-w64-x86-64-dev' 'fonts-telu-extra' 'libswt-glx-gtk-3-jni' 'cronometer' 'bootcd-i386' 'away' 'rtkit' 'language-pack-gnome-ko-base' 'python-tk' 'libstartup-notification0' 'libhfstdc++6-4.6-dbg-armel-cross' 'libedataserverui-3.0-1' 'brother-cups-wrapper-mfc9420cn' 'xbmc-skin-confluence' 'stterm' 'scala-doc' 'qmf-doc' 'php-horde-logintasks' 'libdx4-dev' 'libdconf-qt-dev' 'libcamitk3-dev' 'ksplash-theme-aperture' 'katarakt' 'jimsh' 'libqapt2' 'fuseiso9660' 'darcsweb' 'samba-doc' 'libqt4-webkit' 'libmono-winforms2.0-cil' 'libxau6' 'compiz-plugins-main' 'libace-inet-ssl-6.0.1' 'virtualbox-ose-dkms' 'doc-rfc-others' 'rawdog' 'qtgstreamer-declarative' 'qpid-tools' 'qalculate' 'libwthttp33' 'libnet-z3950-simple2zoom-perl' 'libghc-webkit-dev' 'liberubis-ruby' 'libchamplain-0.12-dbg' 'libadolc2' 'juju-0.7' 'gwibber-service-flickr' 'cobbler-web' 'claws-mail-tools' 'rssh' 'libxss1-dbg' 'language-pack-kde-oc-base' 'language-pack-kde-kw-base' 'altermime' 'libwthttp29' 'libgbm1-lts-quantal' 'ziptorrent' 'ti-omap4-software-channel' 'statnews' 'python-nodebox-web' 'powermanga' 'onesixtyone' 'libthunar-vfs-1-common' 'libkrb5-ruby1.8' 'libghc-maccatcher-dev' 'kio-gopher' 'kinput2-wnn' 'libgranite0' 'ettercap-text-only' 'cmigemo' 'vde2' 'libqtxml4-perl' 'language-pack-gnome-crh-base' 'dia-gnome' 'gir1.2-dbusmenu-gtk-0.4' 'libguytools1-dev' 'libghc6-haskelldb-prof' 'linux-headers-3.2.0-38-lowlatency' 'tircd' 'simple-cdd' 'python-poker2d' 'python-ieee1284' 'python-cracklib' 'libstdc++6-4.7-pic-arm64-cross' 'libghc-unlambda-prof' 'libcdaudio-dbg' 'libace-inet-ssl-6.0.3' 'libkwinnvidiahack4' 'graphicsmagick-libmagick-dev-compat' 'fortunes' 'tcllib' 'crossbuild-essential-armhf' 'libnewt-pic' 'libintl-xs-perl' 'libedataserverui-3.0-4' 'libghc6-ghc-paths-dev' 'salt-minion' 'rsrce' 'paraview-dev' 'libxmmsclient-dev' 'vpb-driver-source' 'libtomoe-dev' 'libsbsms-dev' 'libnpth0-dbg' 'libnet-whois-parser-perl' 'libgloox-doc' 'libapache2-mod-auth-cas' 'saods9' 'fp-utils-2.4.4' 'fai-doc' 'libjs-extjs' 'libcamitk3' 'bti' 'libakonadi-kde4' 'mummer' 'rhythmbox-plugin-cdrecorder' 'python3-all-dev' 'python-plist' 'oidentd' 'libsm6-dbg' 'libptexenc1' 'openoffice.org-help-pt-br' 'uwsgi-plugin-http' 'python-zope.security-untrustedpython' 'libtk-img-dev' 'libtie-encryptedhash-perl' 'liblv2dynparamhost1-1' 'libluabind0.9.1' 'libkscreen-dbg' 'libghc-logict-dev' 'libdbix-dbstag-perl' 'libcgi-session-serialize-yaml-perl' 'libappstream-dev' 'gutsy-wallpapers' 'ristretto' 'cl-clx-sbcl' 'r-base-core' 'bootp' 'axiom-tex' 'cmt' 'adabrowse' 'librest-doc' 'libboost-signals1.49-dev' 'libblas3' 'spim' 'r-cran-rcpp' 'libhz-dev' 'libghc-mmap-prof' 'magic-haskell-doc' 'libgcgi0' 'libclaw-graphic-dev' 'libclam-qtmonitors-dev' 'keurocalc' 'icmpinfo' 'node-ain2' 'python-tdb' 'language-pack-kde-fil' 'python-cheetah' 'bluez-audio' 'telepathy-haze' 'libghc6-haxr-doc' 'linux-headers-3.2.0-40-generic' 'linux-headers-3.2.0-35-generic' 'uwsgi-plugin-signal' 'scheme2c' 'qelectrotech-data' 'python-pdftools' 'maxima-test' 'libspoon-perl' 'libghc-yesod-static-doc' 'libechonest-dbg' 'libcitygml0-bin' 'libgupnp-dlna-2.0-3' 'fcitx-table-scj6' 'fbb' 'asunder' 'amule-utils' 'sharutils-doc' 'libdbi-dev' 'libexempi3' 'libghc6-stream-doc' 'libghc6-ghc-events-doc' 'libgradle-core-java' 'xserver-xorg-lts-quantal' 'a2mp3' 'yapet' 'xfonts-bolkhov-isocyr-misc' 'python-pyfribidi-dbg' 'libyazpp4-dev' 'libroot-bindings-ruby5.34' 'libmath-sparsevector-perl' 'libghc-pem-doc' 'libghc-hssyck-dev' 'php-db' 'libgcc-4.7-dev-armel-cross' 'bootcd' 'ncbi-rrna-data' 'acpidump' 'account-plugin-tools' 'gconf-service' 'libopenh323-1.18.0' 'squirrelmail-lockout' 'spip' 'qtdeclarative5-dbg' 'netcdf-ruby1.9.1-dbg' 'libvdk2-dbg' 'libghc-xmonad-doc' 'libgetopt-lucid-perl' 'libdigidocpp0-dbg' 'libcgi-emulate-psgi-perl' 'hatop' 'libqalculate5' 'brandy' 'libkabc4' 'ruby-flexmock' 'libxxf86dga1' 'libmilter-dev' 'libfile-mimeinfo-perl' 'libcdio-cdda1' 'libnode-vargs' 'libghc6-gstreamer-doc' 'ruby-domain-name' 'python-tau' 'picon-domains' 'libvorbis-ocaml-dev' 'libuser-simple-perl' 'libsms-send-perl' 'libomnievents2' 'libnes-dev' 'libmuroar0' 'libjgrapht0.6-java-doc' 'libhyena-cil' 'libghc-regex-posix-prof' 'libderiving-ocsigen-ocaml' 'ifetch-tools' 'icinga-common' 'libibus-qt1' 'geotranz-doc' 'gap-guava' 'firehol' 'logwatch' 'kdebase-workspace-bin' 'libhpmud0' 'gcj-native-helper' 'libghc6-x11-dev' 'libghc6-irc-dev' 'libghc6-hdbc-odbc-dev' 'libghc6-editline-dev' 'vstream-client' 'schooltool-book' 'python-pudb' 'postfixadmin' 'php-html-safe' 'p0f' 'libphp5-embed' 'solr-common' 'libluabind-dev' 'lua-rex-posix' 'libjempbox-java-doc' 'libgnuplot-ruby1.8' 'libglobus-openssl-module-doc' 'libghc-yesod-markdown-prof' 'libghc-unix-bytestring-dev' 'libghc-ifelse-prof' 'libdist-zilla-plugin-podweaver-perl' 'hedgewars' 'pdfmod' 'dma' 'dict-freedict-eng-hun' 'bwa' 'libmessageviewer4' 'libvirt0-dbg' 'libvdpau-doc' 'libmtp-dbg' 'libenca-dev' 'dhcp3-dev' 'libxaw7' 'apache2.2-common' 'python-tcm' 'libgenrunner-dev' 'wmxmms2' 'python-quickly-common' 'python-django-feincms-doc' 'python-yahoo' 'libqxmpp0-dbg' 'libpetsc3.2-dbg' 'libopenafs-dev' 'python-pythoncard' 'libhdfeos5-ruby1.9.1' 'ruby-dataobjects-postgres' 'libauthen-pam-perl' 'gnupod-tools' 'libgo0-armhf-cross' 'egg' 'cpulimit' 'coq' 'check-mk-agent' 'atsar' 'adplug-utils' 'libboost1.46-dev' 'heimdal-clients' 'python-m2crypto' 'attr' 'linux-headers-3.8.0-17-generic' 'php-benchmark' 's3switch' 'openvanilla-imgeneric-data-ja' 'openigtlink-examples' 'netpipe-lam' 'libroot-math-mlp-dev' 'libremctl-ruby1.8' 'libnet-ip-minimal-perl' 'libghc-hslogger-doc' 'libghc-cautious-file-prof' 'libgconfmm-2.6-doc' 'libapache2-authcookie-perl' 'lib64mudflap0-dbg-powerpc-cross' 'libtemplateparser4' 'libpoe-filter-xml-perl' 'libcontactsdb0' 'fcc' 'cpm' 'libbse-0.7-4' 'bum' 'fam' 'gfortran-4.7-multilib' 'libgdata13' 'fp-units-multimedia-2.4.4' 'sun-javadb-demo' 'usbip-source' 'uim-applet-gnome' 'tlsdate' 'ruby-raindrops' 'posterazor' 'minc-tools' 'lightspeed' 'libconvert-ascii-armour-perl' 'liblemonldap-ng-manager-perl' 'lastmp' 'gnome-wise-icon-theme' 'libglpk-dev' 'fbi' 'edubuntu-menueditor' 'dico-module-python' 'xemacs21-gnome-mule-canna-wnn' 'bvi' 'python-tz' 'libmono-cil-dev' 'libcommons-codec-java' 'ibus-table-cangjie3' 'librdf-microturtle-perl' 'libcegui-mk2-0.7.5-dbg' 'libusbmuxd1-dbg' 'mgltools-cadd' 'python3-gtkspellcheck' 'loqui' 'libzend-framework-zendx-php' 'ruby-tmail' 'libmail-mboxparser-perl' 'lua-posix' 'libghc-gnuidn-doc' 'libgmm++-dev' 'kvkbd' 'ktron' 'libikvm-native' 'gtkam-gimp' 'libgcu0' 'gap-table-of-marks' 'libfstrcmp-dev' 'libnfnetlink0-dbg' 'gtk2-engines' 'gitweb' 'vbaexpress' 'r-cran-fregression' 'prayer' 'libthunar-vfs-1-dev' 'libtaoframework-freetype-cil-dev' 'libpuzzle-bin' 'libghc-bindings-sane-doc' 'libghc-attoparsec-conduit-dev' 'libelixirfm-perl' 'libcrypt-saltedhash-perl' 'libbpp-raa1' 'l2tpns' 'libgnomeprint2.2-data' 'gpsdrive-data' 'fabric' 'efp' 'libgoogle-gson-java' 'libdsdp-5.8gf' 'dosage' 'dict-freedict-eng-iri' 'bup' 'texlive-latex-base-doc' 'rdiff' 'libqt4-declarative-folderlistmodel' 'libgtkmm-3.0-dbg' 'ibus-table-cangjie5' 'gir1.2-ibus-1.0' 'gnutls-bin' 'cpp' 'linux-headers-3.2.0-23-lowlatency' 'yubiserver' 'tempest-for-eliza' 'pngnq' 'lv2-examples' 'libzbargtk0' 'libwt33' 'libusbredirparser-dev' 'libitl-dev' 'libgupnp-av-doc' 'libgsm0710-dbg' 'libgladeui-1-dev' 'libghc-enumerator-dev' 'libemu2' 'ldap2dns' 'python-sleekxmpp' 'python-liblarch' 'swell-foop' 'osm2pgsql' 'dict-freedict-eng-lat' 'bwctl-server' 'addresses-goodies-for-gnustep' 'python3-pyicu' 'openvswitch-dbg' 'grub-gfxpayload-lists' 'libpango1.0-0' 'sork-vacation-h3' 'libwxbase2.6-dbg' 'libwt29' 'frogatto-data' 'uget' 'tintii' 'rep-gtk-gnome' 'linphone' 'libxml-atom-microformats-perl' 'libmrmpi1' 'libgtkglext1-doc' 'libghc-utf8-string-dev' 'kdebase-workspace-dbg' 'dict-freedict-eng-ita' 'dhex' 'cl-quicklisp' 'buici-clock' 'mono-fastcgi-server2' 'valgrind-dbg' 'emacs24-dbg' 'desktopcouch-tools' 'sylph-searcher' 'openturns-validation' 'oftc-hybrid-doc' 'numconv' 'libunix-configfile-perl' 'libqofexpensesobjects-dev' 'libotcl1-dev' 'libghc-stream-prof' 'libfile-dircompare-perl' 'snort' 'graphite-carbon' 'libxine1-ffmpeg' 'glpeces-data' 'libubuntuoneui-3.0-1' 'gfortran-4.4' 'ftpgrab' 'dict-elements' 'bovo' 'python-cxx-dev' 'libsane-extras-dev' 'iptraf' 'language-pack-te-base' 'language-pack-ro-base' 'gfortran-4.5' 'libgmp3c2' 'distributed-net' 'python-libravatar' 'pcp-import-mrtg2pcp' 'mono-fastcgi-server4' 'libqxt-doc' 'libparpack2' 'libclass-spiffy-perl' 'libhtml-mason-perl' 'libpanel-applet-4-dev' 'dict-stardic' 'ttf-uralic' 'binutils-mingw-w64' 'aufs-tools-dbg' 'remmina-common' 'python-sip' 'python-vigra-doc' 'libgtkhtml-4.0-common' 'fdupes' 'libertas-firmware' 'xkeycaps' 'sugar-browse-activity-0.86' 'ruby-indentation' 'spooles-doc' 'libsnacc0c2' 'libmudflap0-powerpc-cross' 'libolap4j-java' 'libindicate-dev' 'libghc-cereal-conduit-doc' 'libpod-xhtml-perl' 'libplexus-i18n-java' 'haml-elisp' 'libvo-amrwbenc0' 'gst123' 'gfortran-4.6' 'gameconqueror' 'fcitx-module-x11' 'dhis-server' 'cpu' 'libpawlib2-dev' 'dds2tar' 'xtermcontrol' 'valknut' 'schedtool' 'sbnc-mysql' 'libplayerwkb3.0' 'libimport-into-perl' 'libghc-unlambda-doc' 'libghc-hxt-tagsoup-doc' 'libghc-glfw-doc' 'libghc-github-prof' 'kdepim-runtime-dbg' 'openarena' 'felix-latin' 'cloc' 'apt-mirror' 'gfortran-4.7' 'tomcat6-user' 'python-strongwind' 'pyroom' 'med-rehabilitation' 'libxmlsec1-gnutls' 'liburi-fetch-perl' 'libjboss-cluster-java' 'libgstreamermm-0.10-2' 'libcsfml-window1.6' 'libx32go0' 'fonts-samyak-gujr' 'filter' 'fcitx-table-ipa-x-sampa' 'csh' 'ttf-sjfonts' 'trickle' 'python-memcache' 'libisoburn1' 'language-pack-hsb-base' 'postgresql-pltcl-8.4' 'tetgen' 'xlbiff' 'tkabber' 'parcimonie' 'libzerg0-dev' 'libmailutils-dev' 'libmail-srs-perl' 'libjogl2-jni' 'libhugs-haskell-src-bundled' 'libgtksourceview2.0-common' 'libghc-cautious-file-doc' 'libgeant321-2-gfortran' 'gpe-calendar' 'ttf-larabie-deco' 'ttf-okolaks' 'ekg2-gnupg' 'drizzle-plugin-logging-query' 'drizzle-plugin-http-functions' 'dico' 'cnee' 'python-pyo' 'libvpb0' 'vco-plugins' 'fckeditor' 'librhythmbox-core5' 'libhesiod-dev' 'libcupsfilters-dev' 'python-imaging' 'netcat' 'liblwres80' 'sass-elisp' 'redet' 'python-rra' 'python-pebl-dbg' 'mi2svg' 'xmms2-plugin-ao' 'libswt-gtk-3-java-gcj' 'libm17n-im-config0' 'liblinux-epoll-perl' 'libghc-data-inttrie-dev' 'libcommons-fileupload-java' 'libgpeschedule0' 'biloba-data' 'libqscintilla2-doc' 'librhythmbox-core6' 'locate' 'ser-cpl-module' 'libkpathsea5' 'xiphos-dbg' 'txt2tags' 'spring-build-scripts' 'plasma-widget-teacooker' 'libsnappy-java' 'libgomp1-armhf-cross' 'libextunix-ocaml-dev' 'libcolord-gtk-dev' 'libdigest-md4-perl' 'gnome-colors' 'festival-doc' 'epiphany-data' 'cinnamon-common' 'anjuta-dbg' 'libsemanage1-dev' 'openoffice.org-pdfimport' 'libqglviewer-qt3-dev' 'linux-backports-modules-headers-precise-generic-pae' 'ncbi-seg-dbg' 'mono-basic-dbg' 'med-physics' 'libvala-0.14-0-dbg' 'libtest-kwalitee-perl' 'librtfilter1-dbg' 'libhfgfortran3-dbg-armel-cross' 'libghc-crypto-api-prof' 'libemma-java' 'kelbt' 'hp48cc' 'fcitx-module-quickphrase-editor' 'python-rpm' 'abuse-sfx' 'account-plugin-icons' 'libspeex-dbg' 'libmono-microsoft8.0-cil' 'libkpathsea6' 'compizconfig-settings-manager' 'openoffice.org-math' 'libgles1-mesa-lts-quantal-dbg' 'wmwave' 'randomplay' 'r-cran-plyr' 'xubuntu-default-settings' 'mmpong-caca' 'libtemplate-plugin-dbi-perl' 'libimage-exif-perl' 'libschedule-ratelimiter-perl' 'gambas3-gb-mysql' 'fdm' 'fcitx-googlepinyin' 'ears' 'dietlibc-doc' 'dancer-ircd-doc' 'atris' 'libdumbnet1' 'xserver-xorg-input-all' 'feh' 'python-six' 'librdf-perl' 'qemu-kvm' 'libppl-c4' 'libghc6-datetime-doc' 'libsuitesparse-metis-dbg' 'xmabacus' 'wraplinux-dbg' 'gs-common' 'linaro-boot-utils' 'libvanessa-socket2' 'libserd-doc' 'libmlnlffi-smlnj' 'libevas-dbg' 'libsfml-system1.6' 'jsymphonic' 'gkrellm-xkb' 'ftp-proxy-doc' 'php5-curl' 'fonts-tlwg-umpush' 'dict' 'libijs-0.35' 'libgdbm3' 'libghc6-sdl-ttf-doc' 'python-nwdiag' 'pike7.8-sqlite' 'php5-gdcm' 'libtest-apocalypse-perl' 'libroot-html-dev' 'libqofexpensesobjects-data' 'libodin-dev' 'libkwnn-dev' 'libkaya-ncurses-dev' 'libghc-blaze-markup-dev' 'kolabd' 'ffe' 'tclx8.4' 'cl-mcclim-examples' 'libreoffice-help-en-us' 'libqt4-xmlpatterns-dbg' 'libmono-system-data-services-client4.0-cil' 'libmono-system-data-linq4.0-cil' 'e2fsprogs-dbg' 'diff' 'liblwres90' 'bacula-director-common-dbg' 'libjs-sphinxdoc' 'libstdc++6-4.5-dev-armel-cross' 'xserver-xorg-video-ati-lts-quantal' 'zephyr-server' 'tkremind' 'pcsxr-dbg' 'nvclock-qt' 'mandos' 'libpasswd-unix-perl' 'libcamitk3-doc' 'knot-dbg' 'kde-telepathy-filetransfer-handler' 'ffmpeg2theora' 'libchamplain-0.12-dev' 'rstat-client' 'btag' 'axel' 'attal' 'libqtsysteminfo1' 'libqt4-gui' 'libboost-serialization1.46-dev' 'erlang-xmerl' 'at-spi2-core' 'xemacs21-supportel' 'rsibreak' 'routeplanner' 'pipemeter' 'openvanilla-imgeneric-data-ko' 'liborigin-dev' 'libndesk-dbus1.0-cil-dev' 'libltcsmpte-dev' 'ruby-locale-rails' 'libghc-wai-dev' 'libghc-webkit-doc' 'libpod-pom-perl' 'libaunit3' 'neverball' 'gocr-tk' 'gir1.2-champlain-0.12' 'ekg' 'eiskaltdcpp-gtk' 'argyll' 'language-pack-kde-wae-base' 'installation-report' 'netams' 'wpd2odt' 'python-pyx' 'opencc' 'openam' 'monodevelop-debugger-gdb' 'qemu-kvm-extras-static' 'libwagon2-java' 'libghc-maccatcher-doc' 'libecasoundc-dev' 'libfreeimage-dev' 'libcdaudio-dev' 'ktouchpadenabler' 'kicad-doc-zh-cn' 'kde-full' 'xfishtank' 'libspreadsheet-writeexcel-perl' 'human-netbook-theme' 'libxbase2.0-bin' 'cmip5-cmor-tables' 'aumix' 'libsql-abstract-perl' 'libacl1-dev' 'ifrench-gut' 'libcups2' 'scim-python-common' 'libghc6-hsql-odbc-dev' 'awn-applet-main-menu' 'ubuntustudio-photography' 'trac-batchmodify' 'python3-markdown' 'python-schooltool.gradebook' 'python-omniorb-omg' 'lua-rex-doc' 'libsru-perl' 'libnpth0-dev' 'liblua5.1-posix-dev' 'libghc-sdl-image-prof' 'libcupt2-dev' 'libcneartree5' 'kadu-dev' 'ctn' 'python-tweepy' 'libhangul1-dbg' 'libghc6-ghc-paths-doc' 'xfonts-biznet-100dpi' 'python-notify2' 'paraview-doc' 'python-graphy' 'ruby-svg-graph' 'libmlx4-1' 'libmerb-haml-ruby1.8' 'libmemoize-expirelru-perl' 'libkscreen-dev' 'libkiten-dev' 'libheckle-ruby' 'libdecodeqr-dev' 'libgraphics-primitive-perl' 'jocaml' 'libdata-amf-perl' 'python-gadfly' 'avra' 'texlive-publishers-doc' 'python3-gdbm-dbg' 'libmono-security2.0-cil' 'libt1-5' 'kdelibs5-data' 'libcherokee-mod-rrd' 'xserver-xorg-video-savage-lts-quantal' 'winetricks' 'libtk-img-doc' 'libpar2-0-dbg' 'libgruff-ruby-doc' 'libghc-logict-doc' 'libfolia1-dev' 'libeiskaltdcpp-dev' 'ladvd' 'libgtkimageview0' 'exiftags' 'libomniorb4-1' 'burp-dbg' 'python-speechd' 'vlc-nox' 'libmodule-metadata-perl' 'language-pack-kde-da-base' 'sysstat' 'opensyncutils' 'libghc6-edison-core-dev' 'qmmp-plugin-projectm' 'pcregrep' 'libvc-dev' 'libtorture0' 'libquantlib-1.1' 'libmaven-war-plugin-java' 'libechonest-dev' 'puredata-core' 'gcompris' 'gcb' 'calife' 'banshee-meego' 'aview' 'atlc-examples' 'texlive-lang-swedish' 'language-pack-gnome-km-base' 'libghc6-fastcgi-dev' 'libghc6-datetime-prof' 'xnecview' 'tango-accesscontrol' 'python-qpid' 'libwulf-dev' 'libquantlib-1.2' 'libpath-dispatcher-declarative-perl' 'libsynce0-dev' 'libnpth0' 'libndr-standard-dev' 'libkcddb-dbg' 'libai-fann-perl' 'jpilot-plugins' 'libnet-tftp-perl' 'galternatives' 'libwcstools0' 'emdebian-tdeb' 'drc' 'dpm' 'libwxsqlite3-2.8-0' 'libkresources4' 'libkdepim4' 'libdv4-dev' 'libdbi-doc' 'gcc' 'liberis-1.3-15-dbg' 'squeak-sources3' 'ucimf-sunpinyin' 'qtdeclarative5-dev' 'python-gearman.libgearman' 'opendrim-lmp-ip' 'mttroff' 'mediawiki-extensions-collection' 'libyazpp4-doc' 'libvdk2-dev' 'libokteta1gui1' 'libjavacc-maven-plugin-java' 'libghc-hssyck-doc' 'isatapd' 'icewm-gnome-support' 'fonts-cabinsketch' 'libterm-prompt-perl' 'jarwrapper' 'auto-upgrade-tester' 'libasis2010' 'libadminutil0' 'latex-cjk-thai' 'python-rpy' 'libsemanage-common' 'language-pack-kde-mk-base' 'language-pack-kde-ku-base' 'kdoctools' 'libhunspell-1.3-0' 'netbase' 'bacula-sd-dbg' 'libjai-imageio-core-java-doc' 'libgupnp-dlna-1.0-dbg' 'vala-0.14-doc' 'uim-hangul' 'simulavr' 'qtdeclarative5-localstorage-plugin' 'python-zope.keyreference' 'pyscrabble' 'slony1-2-bin' 'mcollective-plugins-provisioner' 'gnuhtml2latex' 'freedink-data' 'libfiu0' 'fet' 'language-pack-gnome-ur-base' 'libgdu0' 'liblua50-socket-dev' 'libguac1-dev' 'libghc6-colour-dev' 'awn-applet-todo' 't-coffee-doc' 'speakup-doc' 'tellico' 'php-net-checkip' 'librtcom-telepathy-glib0' 'libpgf-dev' 'liborlite-migrate-perl' 'libnet-snpp-perl' 'libmp4v2-dev' 'libjana-gtk0' 'libxdo2' 'gnome-shell-extensions' 'globus-rsl-dbg' 'libzapojit-0.0-0' 'gap' 'elk' 'merb-core' 'listaller' 'libmtp-dev' 'libgl1-mesa-glx-dbg' 'cup' 'libquorum-dev' 'libghc6-x11-doc' 'libghc6-irc-doc' 'libghc6-hdbc-odbc-doc' 'libghc6-editline-doc' 'libopencv-flann2.3' 'libkdecorations4' 'uwsgi-plugin-rpc' 'unity-tweak-tool' 'python-feedvalidator' 'openjdk-6-doc' 'libtwin-dev' 'libluabind-doc' 'libghc-unix-bytestring-doc' 'libpetsc3.2-dev' 'libcontext-preserve-perl' 'linux-libc-dev-arm64-cross' 'python-ufc' 'fort77' 'emacspeak-ss' 'cbflib-doc' 'boolector' 'language-pack-kde-uz-base' 'cvs-buildpackage' 'gdb' 'libstlport5.2-dbg' 'ebox' 'redir' 'qtxmlpatterns5-dbg' 'qtcurve' 'plasma-widget-playwolf' 'opencascade-examples' 'matchbox-themes-extra' 'libxmmsclient-ruby' 'libscamperfile0' 'libocsync-plugin-owncloud' 'libgnomecanvasmm-2.6-dev' 'libfelix-gogo-command-java-doc' 'libopencv-flann2.4' 'libcolor-tools-ruby-doc' 'libapache2-mod-uwsgi-dbg' 'guile-1.8-doc-non-dfsg' 'gdc' 'libequinox-osgi-java' 'cvm' 'g++-powerpc-linux-gnu' 'cl-photo' 'iperf' 'libdbix-safe-perl' 'libloadpng4.4' 'acetoneiso' 'libtext-levenshtein-perl' 'libfile-find-rule-perl-perl' 'libboost1.46-doc' 'landscape-client-ui-install' 'liblightdm-gobject-1-0' 'bzr' 'binutils-dev' 'bacula-console-dbg' 'elasticsearch' 'fusionforge-plugin-globalsearch' 'yate-pgsql' 'unison-gtk' 'registry-tools' 'predict' 'php-horde-imap-client' 'nuauth-log-mysql' 'node-tilejson' 'kvirc' 'fex' 'fcgiwrap' 'brewtarget' 'ardour-i686' 'ubuntu-wallpapers-precise' 'nova-network' 'mailman' 'libsonic0' 'ubuntu-wallpapers-extra' 'xevil' 'vim-vimerl' 'sword-comm-mhcc' 'sludge-devkit' 'python-simplestreams' 'p3scan' 'openhackware' 'vpnc-scripts' 'missidentify' 'lxlauncher-dbg' 'lisaac-doc' 'lua-rex-onig-dev' 'libghc-exception-transformers-prof' 'libemail-abstract-perl' 'libcitygml0-dev' 'libann-dev' 'juffed' 'liboscache-java' 'ghc6-prof' 'fgo' 'doscan' 'python-spf' 'id3' 'libsvn-ruby1.8' 'nginx' 'libxcb-shape0-dbg' 'libccs-dev' 'libkwinglutils1' 'noshell' 'zorp-modules' 'tdiary' 'ruby-systemtimer' 'python-zope.testing' 'python-django-openid-auth' 'postgres-xc-contrib' 'pidgin-guifications' 'minetest-server' 'libparse-fixedlength-perl' 'libghc-dual-tree-dev' 'libdbix-class-resultset-recursiveupdate-perl' 'inform-mode' 'libhal1' 'qthid-fcd-controller' 'xfonts-intl-chinese-big' 'edgy-wallpapers' 'python-convoy' 'postgresql-pltcl-9.1' 'libosmesa6' 'libmono-microsoft-build2.0-cil' 'libgtkmm-3.0-dev' 'qt3-designer' 'libghc6-alut-prof' 'tmfs' 'python-box2d' 'nadoka' 'muttprint-manual' 'libmecab-java' 'liblavplay-2.0-0' 'libgsm0710-dev' 'libghc-attoparsec-conduit-doc' 'libboost-graph1.46-dev' 'unclutter' 'gcl' 'gav' 'fonts-eeyek' 'bitstormlite' 'libglibmm-2.4-dbg' 'ubuntu-orchestra-logging-server' 'libwxbase2.6-dev' 'libghc6-hslogger-dev' 'linux-backports-modules-hv-3.2.0-40-generic-pae' 'linux-backports-modules-hv-3.2.0-35-generic-pae' 'remctl-server' 'libjs-json' 'libghc-yesod-test-prof' 'libghc-enumerator-doc' 'libfilesys-notify-simple-perl' 'kdebase-workspace-dev' 'tcos-core' 'fte-console' 'dsh' 'cscope-el' 'conntrack' 'libverto-glib1' 'libglu1-mesa-dev' 'z88dk-data' 'snappea' 'python3-pyside.qtopengl' 'nvclock' 'libsdl-stretch-dev' 'libopenturns0.1' 'libhtml-template-ruby' 'libghc-utf8-string-doc' 'libfile-pushd-perl' 'grml-btnet' 'gpsd-dbg' 'go2' 'libfreehep-graphicsio-swf-java' 'ecere-extras' 'dirdiff' 'gnuplot-x11' 'python-pylast' 'binutils-avr' 'python-qwt3d-qt4' 'python-mutagen' 'libvirtodbc0' 'libtag1-vanilla' 'gs-cjk-resource' 'cvs' 'libcurl3' 'brother-cups-wrapper-laser1' 'xfce4-session-dbg' 'salt-master' 'qiime' 'librg-blast-parser-perl' 'libqofexpensesobjects-doc' 'libmath-sparsematrix-perl' 'openct' 'gco' 'fp-utils-2.6.0' 'php-compat' 'calamaris' 'avrp' 'ogmrip-oggz' 'wims-help' 'uima-utils' 'rush' 'python-zope.app.http' 'owhttpd' 'lubuntu-artwork-11-04' 'libwnn-dev' 'libpanel-applet-4-doc' 'liblog4r-ruby' 'libgee-0.8-2' 'libend-perl' 'kdenetwork' 'iswiss' 'gcp' 'fretsonfire-game' 'python-ufl' 'cairo-dock-core' 'asymptote' 'libwpd-dev' 'emacs24-common-non-dfsg' 'aptitude-common' 'python-at-spi-dbg' 'libghc6-hashed-storage-dev' 'yorick-yao' 'ssed' 'speakup-source' 'qtquick1-5-dbg' 'lubuntu-artwork-11-10' 'libreact-ocaml-dev' 'libk3b-dev' 'libindicate-doc' 'libghc-entropy-prof' 'inventor-demo' 'hscolour' 'faac' 'globus-xio-popen-driver-dbg' 'frei0r-plugins-dev' 'dragonegg-4.6' 'python-compizconfig' 'libustr-1.0-1' 'libreadline-dev' 'libapt-pkg-dev' 'eog' 'default-jre' 'libparrot3.6.0' 'rwho' 'ruby-opennebula' 'transtermhp' 'libqt5scripttools5' 'libpam-unix2' 'libghc-webkit-prof' 'ical2html' 'gstreamer0.10-plugins-ugly-dbg' 'fim' 'dragonegg-4.7' 'faad' 'open-vm-tools' 'linux-crashdump' 'libfindlib-ocaml-dev' 'gdm' 'gcr' 'icedtea-7-jre-cacao' 'yapra' 'xfonts-biznet-75dpi' 'tnef' 'ngraph-gtk-addin-tex-equation' 'mpg123-nas' 'raccoon' 'libtext-ocaml-dev' 'libsyfi1.0' 'libpuzzle-dev' 'libpcp-pmda-perl' 'libetpan-dbg' 'libbluray1-dbg' 'libapache2-mod-authn-webid' 'freebsd-buildutils' 'mh-book' 'pkgbinarymangler' 'libmeanwhile-dev' 'libdbd-pgsql' 'libchewing3-dbg' 'gstreamer1.0-nice' 'language-pack-fr-base' 'compiz-plugins-main-default' 'xserver-xorg-video-s3-lts-quantal' 'ttf-freefarsi' 'tritium' 'screensaver-default-images' 'pyhoca-gui' 'libvtkgdcm-java' 'libuser' 'libroot-hist5.34' 'ubuntu-release-upgrader-qt' 'libjava3d-jni' 'genometools-dbg' 'fio' 'depqbf' '389-admin' 'xfonts-base' 'libtiff-tools' 'ubuntu-packaging-guide-pdf' 'mupen64plus-rsp-hle' 'libxvidcore-dev' 'libsvm3-java' 'libsnmp-ruby1.8' 'libghc-data-inttrie-doc' 'libgcc1-arm64-cross' 'libfli1' 'libcsnd-dev' 'libgmetrics-groovy-java' 'cltl' 'hugin' 'ttf-adf-ikarius' 'eclipse-egit' 'condor-dbg' 'cgiemail' 'cantor-backend-r' 'bpython3' 'apertium' 'libwebkitgtk-3.0-common' 'qt4-dev-tools' 'libjson0-dbg' 'libjavascriptcoregtk-3.0-dev' 'libcdio-cdda-dev' 'libavc1394-0' 'libtao-xtresource-dev' 'libggi2' 'isight-firmware-tools' 'weechat-plugins' 'slurm-llnl-slurmdbd' 'python-zope.browsermenu' 'php-horde-browser' 'music-doc' 'mono-winforms-a11y' 'mercurial-server' 'raxml' 'liblua5.1-expat0' 'liblouisutdml-java' 'ooo2dbk' 'libghc-generic-deriving-prof' 'libcommons-exec-java' 'libc6-dev-powerpc-cross' 'festival-czech' 'quantum-espresso' 'libkcompactdisc4' 'python-cddb' 'gsutil' 'sonic' 'librdf-storage-mysql' 'libgnutls-dev' 'libspeex-dev' 'libfltk1.1' 'ruby-commandline-doc' 'yaret' 'vsd2odg' 'survex-svxedit' 'r-cran-gdata' 'r-cran-rpart' 'python-cairosvg' 'liquidsoap-plugin-vorbis' 'urfkill' 'libsvn-class-perl' 'libobjc4-powerpc-cross' 'libghc-sdl-image-dev' 'libdbi-ruby' 'libcgi-application-plugin-forward-perl' 'gem' 'libkpimutils4' 'gir1.2-syncdaemon-1.0' 'zonecheck-cgi' 'trac-virtualticketpermissions' 'roundcube-mysql' 'python-matplotlib-data' 'python-django-threadedcomments' 'lxappearance-obconf-dbg' 'licq-plugin-kde4' 'libxs2-dbg' 'libxqilla-dev' 'libtext-worddiff-perl' 'liblua5.1-posix1' 'libextlib-ruby' 'libanjuta-dev' 'kernelshark' 'gcx' 'libevas-dev' 'dracut-network' 'bcron-run' 'libfltk1.3' 'libgtksourceview2.0-0' 'texlive-metapost-doc' 'libsuitesparse-metis-dev' 'libc-ares-dev' 'libbcprov-java' 'libdbusmenu-qt2' 'libqglviewer2' 'gambas2-gb-image' 'system-tools-backends-dev' 'python-fltk-doc' 'python-ecryptfs' 'plasma-widget-yawp-dbg' 'mpd-dbg' 'libmoosex-poe-perl' 'libldap-java' 'ruby-liquid' 'gosa-plugin-pureftpd-schema' 'libfko0' 'libjibx1.1-java' 'fp-units-multimedia-2.6.0' 'ruby-bundler' 'ent' 'agda-bin' 'ada-reference-manual-text' 'acl2-infix-source' 'abe-data' 'libxen-ocaml-dev' 'libx32ncursesw5-dev' 'libsigc++-2.0-0c2a' 'libowcapi-2.8-13' 'xword' 'scribus-template' 'libnauty-dev' 'python3-simpy' 'opj2dat' 'node-optimist' 'libpoe-component-client-http-perl' 'libghc-blaze-markup-doc' 'libflaim-dev' 'libconcurrent-java-doc' 'libhtml-formfu-perl' 'libphysfs-dev' 'libspring-web-java' 'libitext-java' 'foomatic-gui' 'ttf-adf-libris' 'courier-faxmail' 'chasen-dictutils' '389-console' 'libevent-pthreads-2.0-5' 'indicator-appmenu-gtk2' 'torrus-common' 'sozi' 'skalibs-dev' 'mailnag' 'libopencascade-dev' 'libunicode-map-perl' 'libdirac-decoder0' 'libdatetime-format-mysql-perl' 'kmplayer' 'dwb' 'python-ufw' 'hal' 'libdbusmenu-qt5' 'yasat' 'smuxi' 'smartdoc-src' 'pyroman' 'voxbo' 'libowcapi-2.8-15' 'libltcsmpte-doc' 'libjs-extjs-doc' 'libghc-wai-doc' 'libduo3' 'ruby-daemons' 'libapp-control-perl' 'libgfortran-4.7-dev-arm64-cross' 'gfm' 'ffdiaporama' 'erc' 'epm' 'douf00' 'libcortado-java' 'libmoose-perl' 'ghc' 'lo-menubar' 'lynx-cur' 'libgda-4.0-4' 'python-rtslib' 'pdns-recursor' 'libust0' 'libmaven-hpi-plugin-java' 'libghc-hxt-cache-prof' 'libdigest-md2-perl' 'libdevel-partialdump-perl' 'libkgapi0' 'ltsp-livecd' 'dime' 'dchroot' 'axiom-test' 'libsoundtouch0' 'ocaml-findlib-wizard' 'libpcap0.8-dbg' 'bogl-bterm' 'libghc6-hsql-odbc-doc' 'xipmsg' 'xfce4-indicator-plugin' 'synfigstudio' 'pythoncard' 'libsilly-dev' 'libghc-statevar-prof' 'libfacile-ocaml-dev' 'libcupt2-doc' 'libbin-prot-camlp4-dev' 'libapache2-mod-encoding' 'libaiksaurus-1.2-data' 'gforth-common' 'libphp-simplepie' 'python-qt4-gl' 'odbcinst1debian2' 'libgdata-dev' 'ser-postgres-module' 'gambas2-gb-qt' 'zathura-djvu' 'python-sfml' 'php5-memcache' 'libtime-warp-perl' 'libpar2-0-dev' 'libogg-ocaml' 'libmaven-archiver-java-doc' 'libhtml-treebuilder-libxml-perl' 'libghc-yesod-json-dev' 'libdose2-ocaml-dev' 'libdist-metadata-perl' 'libcojets2-gfortran' 'lcdproc-dbg' 'pinyin-database' 'gnome-dictionary' 'libgalax-ocaml-dev' 'fso-deviced' 'libepsilon0' 'crtmpserver-dev' 'icedtea-netx-common' 'python-zope.app.authentication' 'plasma-widget-kbstate' 'libzarith-ocaml-dev' 'libpnglite-dev' 'libmp3lame-dev' 'libhtml-wikiconverter-mediawiki-perl' 'libghc-resourcet-dev' 'libbio-scf-perl' 'gearhead2-data' 'fprintd-doc' 'fnfxd' 'exactimage-dbg' 'eql' 'code2html' 'naist-jdic-utf8' 'liblocal-lib-perl' 'xserver-xorg-video-modesetting-dbg' 'policycoreutils' 'libcdio-dev' 'libcairo-script-interpreter2' 'libbackport-util-concurrent-java-doc' 'libapache2-mod-python-doc' 'libx32gcc1' 'clvm' 'ruby-echoe' 'libsfst1-1.2-0-dev' 'liblouisutdml-java-doc' 'libkcddb-dev' 'libimage-science-ruby-doc' 'libghc-patience-dev' 'libghc6-edison-core-doc' 'libsiscone0' 'libdesktop-agnostic-fdo-glib' 'libcroco-tools' 'libcpandb-perl' 'ldtp-doc' 'libqaccessibilityclient0' 'python-soappy' 'libmono-npgsql2.0-cil' 'emacs24-lucid-dbg' 'libghc6-fastcgi-doc' 'wmweather' 'stda' 'snoopy' 'rdsserver' 'python-django-evolution' 'plymouth-theme-glow' 'libmaven-invoker-java' 'libjs-jquery-ui-theme-south-street' 'libio-stty-perl' 'libdevel-pragma-perl' 'libbusiness-onlinepayment-viaklix-perl' 'libb-compiling-perl' 'gwibber-service-twitter' 'gwibber-service-sina' 'kde-l10n-zhcn' 'libsmokeqtscript4-3' 'libpangomm-1.4-1' 'libgupnp-dlna-1.0-dev' 'gforge-plugin-projectlabels' 'ubuntustudio-look' 'tecnoballz-data' 'pdns-backend-pipe' 'owserver' 'openvanilla-imgeneric-data-th' 'node-tilelive' 'libvdk2-doc' 'libspeex-ocaml-dev' 'librime-data-pinyin-simp' 'libghc-type-level-prof' 'libghc-tls-dev' 'libghc-iteratee-prof' 'kicad-doc-de' 'libncbi6' 'atheme-services' 'ruby-shadow' 'language-pack-nso-base' 'busybox-static' 'libqtcore4' 'libntfs-dev' 'zentyal-ntp' 'python-unicodecsv' 'libxbase2.0-dev' 'libtracker-miner-doc' 'libgtkhex-3-dev' 'libplexus-containers-java' 'libcss-squish-perl' 'kdiff3-doc' 'libgfs-mpi-dev' 'utouch-frame-tools' 'libfalcon-engine1' 'evolver-doc' 'ding' 'dcap-dbg' 'airstrike' 'adacgi1' 'munin-doc' 'libghc6-colour-doc' 'firmware-b43legacy-installer' 'xbubble-data' 'tcosconfig' 'pkg-config-arm-linux-gnueabi' 'php-token-stream' 'opendrim-lmp-os' 'node-generic-pool' 'mono-dbg' 'libraw-bin' 'libnetfilter-acct1-dbg' 'libtext-german-perl' 'libgnome2-vfs-perl' 'libclass-default-perl' 'jfractionlab' 'skanlite' 'gnotski' 'fsniper' 'bootpc' 'libsbc-dev' 'libmtp-doc' 'libavahi-gobject0' 'language-pack-kde-fur' 'language-pack-gnome-af-base' 'isc-dhcp-dev' 'gir1.2-gdesktopenums-3.0' 'libstlport5.2-dev' 'gambas2-gb-vb' 'tuxpaint-data' 'tryton-modules-stock-supply-day' 'quassel-qt4' 'python-radicale' 'python-sss' 'php-cas' 'libmedimport-dev' 'libjs-jquery-watermark' 'libjboss-ejb3-java' 'libio-async-loop-glib-perl' 'libghc-vector-space-points-prof' 'libghc-logict-prof' 'libghc-knob-prof' 'libjgrapht0.8-java' 'ssft' 'gmerlin-dbg' 'efax' 'dwm' 'diod' 'avr-libc' 'geoip-database-contrib' 'linux-server' 'libsmokeqtcore4-3' 'libjack-jackd2-dev' 'umview' 'stardict-gnome' 'robojournal' 'libvrb0' 'libsequel-ruby' 'librdf-linkeddata-perl' 'libpdf-fdf-simple-perl' 'libimlib2-ruby' 'ruby-gtk2-dbg' 'libgnomecanvasmm-2.6-doc' 'debichem-modelling' 'ruby1.9.1-examples' 'language-pack-kde-hne' 'language-pack-kde-an-base' 'binutils-doc' 'libgcj-common' 'merb-slices' 'tagbkup' 'libcore++-dev' 'ubuntu-packaging-guide-html' 'slimit' 'puddletag' 'plasma-widget-veromix' 'openjdk-7-jre-zero' 'linkchecker-web' 'libtracker-sparql-doc' 'kttsd' 'iptables-persistent' 'libinfinity-0.5-0' 'clipf' 'citadel-client' 'avahi-ui-utils' 'python-ogg-dbg' 'python-carrot' 'libxcb-shape0-dev' 'libmono-sqlite4.0-cil' 'libclucene-dev' 'language-pack-gnome-kk-base' 'python-sugar-toolkit-0.84' 'libunicapgtk2' 'linux-headers-3.2.0-40-lowlatency' 'linux-headers-3.2.0-35-lowlatency' 'xemacs21-mulesupport-el' 'sshm' 'sqsh' 'libsynfig0' 'libsidplay2-dev' 'pvm-dev' 'libjogl2-java-doc' 'libhe5-hdfeos0' 'libjcodings-java' 'ibus-table-thai' 'prover9' 'fgetty' 'libpt2.10.10' 'libprotobuf7' 'fonts-sil-scheherazade' 'python-sugar-toolkit-0.90' 'wine-gecko1.4' 'stax' 'p2kmoto' 'mozplugger' 'libtext-reflow-perl' 'libtest-poe-server-tcp-perl' 'libstomp-ruby1.8' 'libtext-hunspell-perl' 'libopendbx1-sybase' 'libnet-scp-ruby' 'libircclient-dev' 'libghc-dual-tree-doc' 'libarmadillo-dev' 'invada-studio-plugins-lv2' 'imagevis3d' 'gt5' 'ttf-sil-gentium-basic' 'fai-setup-storage' 'drslib' 'doschk' 'dibbler-server' 'libmath-vecstat-perl' 'caribou-antler' 'antiword' 'libfs6-dbg' 'language-pack-kde-mi-base' 'libgtkmm-3.0-doc' 'libgfortran-4.7-dev' 'libgnome-desktop-3-dev' 'libglibmm-2.4-dev' 'libqt3-mt-dev' 'linux-headers-3.5.0-22-generic' 'xen-hypervisor-4.2-amd64' 'vim-latexsuite' 'varnish-dbg' 'python-sugar-toolkit-0.86' 'python3-twisted-experimental' 'libxcomp3' 'libsundials-cvodes2' 'lammps-doc' 'libgwenhywfar60-dbg' 'gnome-noble-icon-theme' 'fpc' 'drupal6-mod-cck' 'cvs2cl' 'python-netifaces' 'libleveldb-dev' 'dovecot-solr' 'libaccount-plugin-1.0-0' 'pcd2html' 'libghc6-hslogger-doc' 'libghc6-happstack-util-prof' 'gforge-lists-mailman' 'linux-image-3.2.0-38-virtual' 'r-cran-matchit' 'python3-prettytable' 'lua-penlight' 'libzorp-dev' 'libvanessa-socket-dev' 'libmaven-project-info-reports-plugin-java' 'libghc-resourcet-prof' 'libgedcom-perl' 'ruby-dbd-odbc' 'libgnome-vfsmm-2.6-dev' 'libapache2-mod-defensible' 'jenkins' 'insanity-web' 'libextractor3' 'dino' 'xmakemol' 'python-pisock-dbg' 'x11proto-scrnsaver-dev' 'lib64mudflap0' 'radiusd-livingston' 'yui-builder' 'ubuntustudio-font-meta' 'python-sugar-toolkit-0.88' 'orpie' 'mlmmj-php-web-admin' 'linphone-dbg' 'libevent-rpc-perl' 'libcvector2' 'liburi-smarturi-perl' 'libmodule-find-perl' 'libapache2-mod-rivet' 'libwv-1.2-4' 'cmtk' 'ubuntu-release-upgrader-gtk' 'libpaper-dev' 'libgnome-menu-3-dev' 'libesd0' 'gnome-disk-utility' 'libgnumail-java' 'vavoom' 'ubuntustudio-generation' 'redmine-pgsql' 'python-tidylib' 'openvanilla-imgeneric-data-vi' 'libgcr410' 'libcommons-validator-java-doc' 'libvirt-glib-1.0-0' 'gip' 'comixcursors-righthanded' 'transmission-qt' 'libgnomecanvas2-0' 'gnome-common' 'linux-headers-lbm-3.2.0-31-generic-pae' 'linux-headers-lbm-3.2.0-26-generic-pae' 'sandboxgamemaker' 'qtquick1-5-dev' 'libparams-coerce-perl' 'php-apc' 'diodon' 'libclassad3' 'python-hdate' 'mythes-en-au' 'libwpd-doc' 'gnome-phone-manager' 'geoclue-ubuntu-geoip' 'live-config-runit' 'libghc6-hashed-storage-doc' 'awn-applet-weather' 'supervisor' 'python-tox' 'python-sugar-toolkit-0.96' 'uwsgi-plugin-python' 'python-bloomfilter' 'pkcs11-data' 'libnet-httpserver-perl' 'libgmsh-dev' 'liballegro5-dev' 'lesstif2-dbg' 'inetutils-talk' 'imagination-common' 'libhttrack2' 'frei0r-plugins-doc' 'fraqtive' 'libsdl-ttf2.0-0' 'libchromaprint0' 'python-svn' 'libxmlrpc-core-c3-dev' 'libcdd-dev' 'libapt-pkg-doc' 'xletters' 'vbuf' 'squirrelmail-quicksave' 'sendmail-cf' 'psi-translations' 'lxkeymap' 'ruby-xml-simple' 'libpocoutil9' 'libokular-ruby1.8' 'libnet-sieve-perl' 'libitext-rups-java' 'libgnome-menu-dev' 'libetpan-dev' 'libdbd-mysql-ruby' 'libcontextual-return-perl' 'libcollection-dev' 'plymouth-theme-kubuntu-text' 'kicad-doc-en' 'ess' 'libibverbs1-dbg' 'libchewing3-dev' 'libipmimonitoring4' 'python-pyoptical' 'python-llfuse-dbg' 'powermanga-data' 'ocamlmod' 'mumble-dbg' 'ogmtools' 'libqtscript4-doc' 'libmemcache-client-ruby1.9.1' 'liblv2dynparam1-dev' 'libjcharts-java-doc' 'libjbcrypt-java' 'libhdf4g-dev' 'ruby-goocanvas' 'gnutls-doc' 'libghc-sdl-ttf-dev' 'syncevolution-common' 'libsilly' 'kde-config-touchpad' 'globus-gsi-callback-dbg' 'ecasound-el' 'x11proto-xf86bigfont-dev' 'libyaml-0-2-dbg' 'libgupnp-doc' 'firefox-locale-mai' 'git' 'libghc6-haskelldb-hdbc-odbc-dev' 'linux-image-extra-3.2.0-23-virtual' 'linux-headers-3.2.0-31-generic-pae' 'linux-headers-3.2.0-26-generic-pae' 'sharand' 'tk8.4-dev' 'science-meteorology' 'python-pyaudio-doc' 'python-pebl-doc' 'python-apache-openid' 'python-pyside.qtopengl' 'omegat' 'libshogun11' 'libkolabxml0' 'libgnuradio-audio3.6.1' 'globus-gssapi-error-dbg' 'flare-data' 'dwz' 'crtmpserver' 'condor-dev' 'ruby-sass' 'coinor-libvol0-dbg' 'apertium-fr-ca' 'nvidia-settings-310-updates' 'liblouis2' 'libjson0-dev' 'libipmimonitoring5' 'fop' 'wmctrl' 'xserver-xorg-input-joystick-dev' 'xmms2-plugin-airplay' 'wmifs' 'ming-fonts-dejavu' 'libnet-dri-perl' 'libjthread1.3.1' 'libi18n-ruby' 'libghc-keys-dev' 'ruby-eb' 'libcalendar-ocaml' 'junior-config' 'guacamole' 'chromium-bsu-data' 'libgnomecanvasmm-2.6-1c2a' 'libmikmod2' 'thunar' 'libtelepathy-farstream3-dbg' 'snmp-mibs-downloader' 'libibus-1.0-dev' 'dbus-1-dbg' 'automake1.9-doc' 'libfast-md5-java' 'fp-units-fcl-2.4.4' 'pnopaste-cli' 'libqwtplot3d-qt4-dev' 'libperldoc-search-perl' 'libjamon-java' 'libghc-hssyck-prof' 'libgeronimo-stax-1.0-spec-java' 'libclaw-logger-dev' 'jargon-text' 'libclhep-dev' 'gnustep-gui-doc' 'fosfat' 'ttf-sil-galatia' 'clips' 'libipmidetect0' 'libalgorithm-merge-perl' 'lugaru' 'libmesh-dev' 'python-kwwidgets' 'proftpd-mod-fsync' 'netrw' 'mupen64plus-rsp-z64-dbg' 'musescore-common' 'libqzeitgeist0' 'libghc-sdl-image-doc' 'libgdl-3-common' 'libg2-dev' 'libdbd-pg-ruby' 'kicad-doc-es' 'step' 'kdeartwork-emoticons' 'libmudflap0-4.7-dev-armhf-cross' 'gambas3-script' 'collectd-utils' 'python-bittorrent' 'gjs' 'libgdraw4' 'libcplgasgano12' 'wget-el' 'libthrust-dev' 'uwsgi-plugin-admin' 'lierolibre' 'libshr-glib-dbg' 'libomhacks0' 'libnecpp0' 'liblwjgl-java-doc' 'liblog-tracemessages-perl' 'libhomerun-dev' 'libevas-doc' 'libcache-memcached-managed-perl' 'chef-server-api' 'cgns-convert' 'ubuntu-wallpapers-oneiric' 'libtomcat7-java' 'libspectre-dev' 'libxslt1-dbg' 'libqtassistantclient4' 'libaal-dev' 'lib64readline-gplv2-dev' 'ltsp-client-core' 'language-pack-gnome-nds-base' 'dhelp' 'x-pgp-sig-el' 'trscripts' 'python-django-configglue' 'openlp' 'ndoutils-nagios3-mysql' 'sslh' 'libkohana3.1-mod-cache-php' 'libjifty-plugin-authentication-cas-perl' 'liblcgdm-dev' 'libauthen-simple-smb-perl' 'libspring-ldap-java-doc' 'libkosd2' 'ttf-sil-padauk' 'iscsitarget-dkms' 'gshare' 'gnumeric-plugins-extra' 'gcc-powerpc-linux-gnu' 'libcgns-dev' 'anthy-el' 'xmltex' 'libreoffice-l10n-af' 'openoffice.org-common' 'gir1.2-friends-gtk-0.1' 'cdrskin' 'python-glade2' 'xgmod' 'octave3.2-dbg' 'plasma-widget-fastuserswitch' 'mpdris' 'lire-doc' 'libtracker-sparql-0.14-dev' 'pgapack' 'libcurand5.0' 'libapache2-mod-auth-ntlm-winbind' 'libglobus-gssapi-gsi-dev' 'libjibx-java' 'e17-dbg' 'drupal6-mod-inactive-user' 'valac' 'libnokogiri-ruby1.9.1' 'python-qt4-dbus' 'libgl1-mesa-dri-experimental-dbg' 'language-pack-ia-base' 'language-pack-dz-base' 'language-pack-eu-base' 'mail-stack-delivery' 'linux-image-3.8.0-9-generic' 'linux-headers-lbm-3.2.0-24-generic' 'libnetlib-java' 'libcplgasgano20' 'skalibs-doc' 'scala-mode-el' 'python3-subunit' 'libuconv-ruby1.8' 'libsha-ocaml' 'libmrpt-dbg' 'libmeep-lam4-6' 'libghc-io-storage-prof' 'libfftw3-mpi-dev' 'libdata-serializer-perl' 'kicad-doc-fr' 'gpicview-dbg' 'etw' 'dvbackup' 'cmus' 'python-tk-dbg' 'libkprintutils4' 'ttf-tmuni' 'cherokee-doc' 'libnl2-dbg' 'linux-image-3.2.0-40-generic' 'linux-image-3.2.0-35-generic' 'xfce4-wavelan-plugin' 'ifeffit' 'python-matplotlib-dbg' 'python-authkit' 'obnam' 'mythbuntu-gdm-theme' 'libtaoframework-lua5.1-cil' 'libsyncevolution0' 'libkgapi0-dbg' 'libghc-tls-prof' 'libghc-css-text-prof' 'libjcifs-java' 'freebsd-glue' 'cone' 'brazilian-conjugate' '3dchess' 'python-uno' 'libsmokeqtnetwork4-3' 'libpcap0.8-dev' 'libpam-winbind' 'liblwp-protocol-https-perl' 'libgif4' 'distro-info-data' 'xzdec' 'wikipedia2text' 'webkit2pdf' 'unetbootin-translations' 'tcptrace' 'publican-debian' 'mixxx' 'libecap2-dev' 'libdecodeqr0' 'libclass-trait-perl' 'libmoosex-types-common-perl' 'libantelope-java' 'icinga-web' 'iat' 'haxml' 'refit' 'gobjc++-multilib' 'gnome-backgrounds' 'mtkbabel' 'ginspector' 'libgiftiio0' 'rdist' 'g++-4.4-arm-linux-gnueabi' 'dict-de-en' 'dasher-data' 'createrepo' 'canorus-data' 'amsn-data' 'x11proto-randr-dev' 'libtirpc1' 'libreoffice-l10n-be' 'itstool' 'ttf-sil-nuosusil' 'language-pack-ta-base' 'oss-compat' 'tango-icon-theme-extras' 'libtpl-dev' 'libsilly-doc' 'libmcpp-dev' 'libgnome-media-profiles-dev' 'libgarcon-common' 'libsox-fmt-all' 'python-eggtrayicon' 'python-sidl' 'libreoffice-l10n-ca' 'libmysqlcppconn5' 'libgraphite-dev' 'libgdata-doc' 'language-pack-kde-hsb' 'krb5-multidev' 'freeglut3-dbg' 'libghc6-sha-dev' 'styx-dev' 'memlockd' 'libstdc++6-4.7-pic-powerpc-cross' 'libghc-yesod-json-doc' 'libghc-wai-test-prof' 'libdevel-caller-ignorenamespaces-perl' 'libcgi-session-driver-memcached-perl' 'libapp-rad-perl' 'libgoffice-0.10-10' 'gambas3-gb-db-sqlite2' 'dish' 'crtmpserver-libs' 'clirr' 'am-utils' 'python3-bsddb3' 'libreoffice-l10n-bg' 'libgd-text-perl' 'libavahi-qt4-1' 'gstreamer0.10-plugins-good-dbg' 'libdrm-ltsq2' 'wwwstat' 'qtsensors5-dbg' 'piuparts-master' 'phamm-ldap' 'ns2-dbg' 'multitee' 'libzarith-ocaml-doc' 'libparsetree-ruby' 'libocamlgraph-viewer-ocaml-dev' 'liblingua-en-namecase-perl' 'libghc-resourcet-doc' 'libdbd-firebird-perl' 'libdata-yaml-perl' 'libcmdparse-ruby' 'kumofs' 'libidn2-0' 'gambas3-gb-db-sqlite3' 'exaile-plugin-ipod' 'erlang-cowboy' 'bitlbee-common' 'atomix-data' 'wireshark-dbg' 'transcend' 'suck' 's3d' 'rabbit-mode' 'peace-theme' 'mtink-doc' 'mpc123' 'abyss' 'libstdc++6-4.6-dbg-armhf-cross' 'qtmobility-l10n' 'liblatex-decode-perl' 'libjgraphx-java' 'libgrib-api-dev' 'libghc-patience-doc' 'ruby-gd' 'libpoe-component-irc-perl' 'god' 'libhfobjc-4.7-dev-armel-cross' 'stockfish' 'ttf-tomsontalks' 'blcr-util' 'php5-mysqlnd' 'python' 'linux-image-3.8.0-17-generic' 'qmk-groundstation' 'linux-image-hwe-generic' 'sqcwa' 'unhide.rb' 'pdfsam' 'librmagick-ruby-doc' 'libqmmp-misc' 'libwx-perl-datawalker-perl' 'libgmt-dev' 'libapache2-mod-authnz-external' 'gstreamer0.10-vaapi' 'fte' 'fillets-ng-data-cs' 'dosbox' 'cutter-testing-framework-bin' 'compass-slickmap-plugin' 'coinor-libdylp0' 'clisp' '389-ds-console-doc' 'sunpinyin-utils' 'python3-roman' 'libsmokeqttest4-3' 'xdiskusage' 'tcptrack' 'simplebackup' 'python-pyside.qtdeclarative' 'php-horde-text-filter-csstidy' 'vcsh' 'mdns-scan' 'libio-socket-multicast-perl' 'libghc-transformers-prof' 'libghc-syb-with-class-dev' 'libghc-tls-doc' 'libgsasl7-dev' 'gpa' 'libgig6' 'fitscheck' 'dcap-dev' 'adanaxisgpl' 'mouseemu' 'python-django-piston' 'libreoffice-l10n-da' 'libqt5network5' 'lib64stdc++6-4.4-dbg' 'hspell' 'libkdc2-heimdal' 'gir1.2-evince-3.0' 'ifupdown' 'trackballs-music' 'scrypt' 'scilab-data' 'libroot-io-xmlparser5.34' 'liblogfile-rotate-perl' 'libdballef-dev' 'libsac-java' 'wmgui' 'gir1.2-caribou-1.0' 'fsl' 'libsmokeqsci3' 'libgmime-2.6-dev' 'gir1.2-gusb-1.0' 'expect' 'libtao-orbsvcs-2.0.1' 'ruby-prof' 'root-plugin-math-fumili' 'openhpi-clients' 'libxml-semanticdiff-perl' 'libspring-security-2.0-java-doc' 'libslurm-perl' 'libroot-proof-proofplayer-dev' 'libnet-nslookup-perl' 'libnb-org-openide-util-lookup-java' 'libstapler-adjunct-codemirror-java' 'libxml-checker-perl' 'libghc-edison-core-prof' 'libmapi-dev' 'libdebug0-dev' 'libhttp-server-simple-psgi-perl' 'starman' 'gnome-genius' 'gnome-nibbles' 'gcc-4.6-locales' 'btpd' 'python-genetic' 'x11proto-damage-dev' 'libreoffice-l10n-ar' 'libreoffice-style-human' 'libcwidget-dev' 'bsdutils' 'libgtk-3-0' 'libmerb-ruby-doc' 'awn-applet-related' 'xserver-xorg-input-mtrack-lts-quantal' 'ruby-kyotocabinet' 'libtest-valgrind-perl' 'libepub-dev' 'libkipi-data' 'kdewallpapers' 'kde-telepathy-send-file-dbg' 'jquery-alternative-doc' 'gosa-plugin-phpgw-schema' 'idn' 'glusterfs-examples' 'fake' 'openmx' 'clive' 'bchunk' 'moblin-icon-theme' 'acl2-books-source' 'libreoffice-l10n-bn' 'libreoffice-l10n-as' 'erlang-tools' 'cpio' 'libgfccore-2.0-0c2a' 'libgwibber-gtk-dev' 'uhub' 'r-cran-fportfolio' 'quantlib-refman-html' 'ruby-rubymail' 'libmodule-starter-plugin-cgiapp-perl' 'libgsl-ruby' 'libgkeyfile-cil-dev' 'libpthread-workqueue0' 'libcpprspserver2' 'libspreadsheet-parseexcel-perl' 'gyoto-dbg' 'gpe' 'goto-fai-progress' 'gmt' 'gfarm2fs' 'fts-fai-ldap' 'freeciv-client-extras' 'ttf-mplus' 'v-sim' 'schroot-common' 'chiark-really' 'check-mk-livestatus' 'bugz' 'msp430mcu' 'cook' 'python3-newt' 'tinyca' 'xorg-sgml-doctools' 'libreoffice-l10n-de' 'bacula-console-qt-dbg' 'python-brlapi' 'libcore++-doc' 'sugar-etoys-activity' 'scilab-sivp' 'python-quixote-doc' 'python-daap' 'python-usb' 'libxfconf-0-2-dbg' 'libstatistics-r-perl' 'root-plugin-geom-geompainter' 'libnids-dev' 'libhtml-html5-parser-perl' 'libhaildb6' 'libgii1' 'libapp-options-perl' 'kicad-doc-hu' 'kcollectd' 'dict-freedict-eng-nld' 'cvsutils' 'libcobertura-java' 'python-babel' 'openjdk-7-demo' 'tinyproxy' 'subunit' 'ruby-webrobots' 'roxterm-gtk2' 'libgdome2-0' 'libauthen-simple-cdbi-perl' 'igstk-examples' 'gpe-soundbite' 'ttf-sazanami-gothic' 'fair' 'ettercap-dbg' 'libparse-debian-packages-perl' 'libanyevent-http-perl' 'tar-doc' 'python-psycopg2' 'libldl2.0.1' 'libipc-signal-perl' 'libdrm-dev' 'libcanberra-gstreamer-dbg' 'flex-doc' 'obexd-client' 'ichthux-emoticons' 'systraq' 'roxterm-gtk3' 'qelectrotech' 'openguides' 'ohcount-doc' 'libplplot-ocaml' 'libghc-data-binary-ieee754-prof' 'libhash-merge-simple-perl' 'libgwenhywfar60-dev' 'guayadeque' 'gom' 'gitstats' 'libcpputest-dev' 'cons' 'ceferino' 'libreoffice-l10n-br' 'parted-doc' 'libgtk2.0-bin' 'libfile-which-perl' 'libglibmm-2.4-doc' 'sudo' 'libtextcat-dev' 'libghc-pool-prof' 'yauap' 'sweethome3d' 'splat' 'slony1-2-doc' 'proftpd-mod-dnsbl' 'mira-assembler' 'ugene' 'libpgpool0' 'libmail-gnupg-perl' 'libghc-xdg-basedir-dev' 'libg20' 'libestraier-ruby1.8' 'libclass-dbi-sqlite-perl' 'steptalk' 'shiki-illustrious-theme' 'fcitx-module-lua' 'dist' 'bppsuite' 'a2jmidid' 'python-pyao' 'overlay-scrollbar-gtk2' 'ubuntu-defaults-builder' 'libreoffice-l10n-bs' 'emacs23-lucid' 'libio-stringy-perl' 'qtgstreamer-dbg' 'librec-dev' 'libhtml-stream-perl' 'libgnome-vfsmm-2.6-doc' 'libfeed-find-perl' 'kicad-doc-it' 'libindidriver0b' 'hv3' 'gridengine-master' 'goo' 'glotski' 'courier-base' 'breathe-icon-theme' 'ubuntu-virt-server' 'overlay-scrollbar-gtk3' 'libraw-dev' 'libgvnc-1.0-dev' 'libparse-cpan-meta-perl' 'libjpeg-dev' 'libatkmm-1.6-dbg' 'hunspell-tools' 'gfortran-4.4-doc' 'texlive-latex-extra' 'ubuntu-keyring' 'scim-sunpinyin' 'awn-applet-shinyswitcher' 'libfm-gtk1' 'linux-backports-modules-cw-3.4-3.2.0-39-generic' 'yorick-optimpack' 'xfonts-bolkhov-koi8u-misc' 'r-cran-timeseries' 'python-xmlrunner' 'python-old-doctools' 'mediainfo-gui' 'libxdmf-dev' 'libssl-ocaml' 'libroot-tree5.34' 'libreoffice-templates' 'libghc-csv-prof' 'libjgrapht0.6-java' 'nordugrid-arc-isis' 'lernid' 'leaktracer' 'lakai' 'libthepeg15' 'dv4l' 'libreoffice-l10n-fa' 'libmount-dev' 'ftp' 'python-xdg' 'yatex' 'syslog-ng-mod-json' 'svn-workbench' 'suil-dbg' 'php-horde-service-urlshortener' 'libtaglib2.0-cil' 'libslicot-dbg' 'libpam-shield' 'libghc-filestore-dev' 'libdevice-cdio-perl' 'libaws2.10.2' 'liburcu1' 'hud-tools' 'gtk2-ex-formfactory-perl' 'goto-common' 'g++-4.7-arm-linux-gnueabihf' 'language-pack-kde-bg-base' 'fonts-tlwg-sawasdee' 'bustle' 'libx11-xcb-dev' 'libgsm0710mux0' 'libgnustep-base1.22' 'retext' 'python3-pyside.qthelp' 'php-crypt-cbc' 'multitet' 'libsmi2ldbl' 'libmodello-maven-plugin1.4-java-doc' 'libfm-gtk3' 'liblemonldap-ng-portal-perl' 'krosspython' 'jcc' 'lesstif2-dev' 'grc' 'jam' 'opensc' 'dvblast' 'detox' 'desmume' 'libdcap1' 'python-yaml-dbg' 'ttf-telugu-fonts' 'libnss3-tools' 'gpm' 'language-pack-gnome-is-base' 'gconf-service-backend' 'dh-xsp' 'libghc6-xml-dev' 'language-pack-tlh-base' 'yaws-wiki' 'vala-dep-scanner' 'unicode-screensaver' 'thewidgetfactory' 'root-plugin-proof-peac' 'python-dmidecode' 'python-d2to1' 'libupnp3' 'libmatheval-dev' 'liblog4cxx10-dev' 'libjaffl-java' 'libhdfeos5-ruby1.8-dbg' 'kde-config-telepathy-accounts' 'icebreaker' 'gstreamer0.10-plugins-ugly-doc' 'fts' 'emboss-lib' 'raidutils' 'debaux' 'libdbd-xbase-perl' 'splay' 'ttf-gfs-porson' 'libbuzztard0' 'apertium-fr-es' 'ntp-doc' 'libreoffice-l10n-cs' 'libm17n-0-dbg' 'sml-mode' 'ruby-oily-png' 'python-utouch-evemu' 'libvcs-lite-perl' 'libupnp4' 'uim-google-cgiapi-jp' 'libres-ocaml-dev' 'libleptonica' 'libkwargs-perl' 'libmowgli-dev' 'libetpan-doc' 'libclustalo-dev' 'libksieve4' 'gambas3-gb-xml-xslt' 'libgsm0710mux2' 'liburi-encode-perl' 'naist-jdic' 'barcode-dbg' 'libgnustep-base1.24' 'nvidia-304-updates-dev' 'ri1.9.1' 'libx32gfortran3' 'language-pack-kde-nb-base' 'language-pack-kde-mg-base' 'fonts-tlwg-norasi' 'crda' 'bouml' 'libjulius-dev' 'uni2ascii' 'sam2p' 'qdacco' 'python-blockdiag' 'openbios-ppc' 'libyecht-java' 'librivet11' 'liboss4-salsa2' 'libocamlnet-ocaml' 'libghc-sdl-ttf-doc' 'libghc-blaze-builder-enumerator-prof' 'libflann1' 'gpp' 'genometools-doc' 'drupal6-mod-openid-provider' 'deborphan' 'glue-schema' 'ruby-mocha' 'libreoffice-l10n-ga' 'language-pack-gnome-vi-base' 'language-pack-gnome-ts-base' 'libxft2' 'libjaxp1.3-java' 'libghc6-haskelldb-hdbc-odbc-doc' 'linux-image-3.2.0-39-generic-pae' 'xfce4-notes' 'uanytun' 'tryton-modules-account-be' 'python-speex' 'torsocks' 'newsbeuter' 'libopenigtlink1-dev' 'libnagios-plugin-perl' 'libqtcontacts1' 'kvpm-dbg' 'kolab-cyrus-imapd' 'hnb' 'globus-gram-job-manager-pbs-setup-seg' 'libiec16022-0' 'libgeo-ip-perl' 'condor-doc' 'libxml-grove-perl' 'libupnp6' 'python-guestfs' 'tk8.4-doc' 'libreoffice-l10n-el' 'libpython3-all-dbg' 'fluid' 'gir1.2-gladeui-2.0' 'tome' 'vdr-plugin-svdrpext' 'ruby-coffee-script' 'nuapplet' 'multistrap' 'libroot-misc-table-dev' 'libminidjvu-dev' 'libgtksourceview2-ruby1.8' 'libghc-hstringtemplate-dev' 'libghc-keys-doc' 'ibus-mozc' 'grok-dbg' 'gpr' 'ftpwatch' 'autoconf-gl-macros' 'asused' 'tipa-doc' 'pciutils' 'h264enc' 'tmake' 'python-llfuse' 'php-horde-kronolith' 'unionfs-fuse' 'libxml-rss-simplegen-perl' 'libpg-perl' 'libosmgpsmap-dev' 'libjenkins-trilead-ssh2-java-doc' 'libgpeschedule0-dbg' 'libsuperlu3-dev' 'libdevel-declare-parser-perl' 'libkonqsidebarplugin4a' 'kuser' 'libplasmagenericshell4' 'gri' 'digikam' 'coop-computing-tools' 'libreoffice-l10n-fi' 'icon-naming-utils' 'fonts-tlwg-typo' 'openjdk-6-jre-headless' 'libunicapgtk2-dev' 'libmesh-doc' 'sdlmame' 'xfce4-screenshooter-plugin' 'weechat-dbg' 'virtaal' 'scilab-test' 'treetop' 'prelude-notify' 'ow-shell' 'librhash-ruby1.8' 'librd-ruby1.8' 'libqxt-web0' 'libshr-glib-dev' 'libnet-rendezvous-publish-backend-avahi-perl' 'liblua5.1-rex-onig0' 'libghc-haskore-prof' 'libga-dev' 'php-letodms-core' 'gpt' 'libhfmudflap0-armel-cross' 'fonts-orya-extra' 'fonts-lohit-orya' 'ditz' 'crrcsim' 'anc-api-tools' 'ubuntu-wallpapers-karmic' 'libreoffice-l10n-eo' 'libreoffice-l10n-cy' 'libdbus-1-dev' 'libxslt1-dev' 'bacula-common-mysql-dbg' 'libghc6-haskelldb-hdbc-prof' 'linux-backports-modules-cw-3.3-3.2.0-38-generic' 'xbmc-bin' 'wbar' 'tegaki-recognize' 'streamtuner2' 'libs3dw-dev' 'libluajit-5.1-2' 'libexo-1-0-dbg' 'libdrawtk0' 'kradioripper' 'kepas' 'hotswap-text' 'libhtml-tableextract-perl' 'gnome-search-tool' 'globus-gram-audit' 'ttf-adf-gillius' 'kfind' '389-ds-console' 'python3-mock' 'claws-mail-fancy-plugin' 'pd-aubio' 'netcat6' 'linpsk' 'libspf2-2' 'libmygpo-qt-dev' 'jnoisemeter' 'jack-stdio' 'initramfs-tools-tcos' 'fortunes-eo-ascii' 'e17-dev' 'cl-pipes' 'chromium-codecs-ffmpeg-extra' 'sssd' 'reiser4progs' 'bash-doc' 'libbsf-java' 'libstdc++6-4.4-pic-armel-cross' 'opensm' 'libwthttp-dev' 'libmrpt-dev' 'libmerb-param-protection-ruby' 'libglobus-gssapi-gsi-doc' 'libghc-groupoids-prof' 'libconfig-model-dpkg-perl' 'libcastor-xml-schema-java' 'libkasten2okteta1core1' 'libtext-wikiformat-perl' 'gpw' 'freespeak' 'fenix-dev' 'liboctave1' 'giblib1' 'snort-pgsql' 'razor' 'libgwibber2' 'sendpage-server' 'python3-pgpdump' 'python-cffi' 'puppetmaster-passenger' 'libtest-inline-perl' 'libpolybori-dev' 'libghc-fastcgi-dev' 'libembryo-bin' 'libcgic2' 'jed' 'herculesstudio' 'globus-authz-dbg' 'giggle' 'python-wit' 'coinor-csdp-dbg' 'libcarp-always-perl' 'cairo-dock-plug-ins-dbus-interface-mono' 'asterisk-moh-opsound-g722' 'valac-0.16-dbg' 'nova-api' 'libreoffice-l10n-es' 'libnl2-dev' 'ttf-sil-scheherazade' 'devio' 'gir1.2-glib-2.0' 'libgwibber3' 'libgef-java' 'lcl-0.9.30.2' 'fpc-2.4.4' 'libwxbase2.6-0' 'sntop' 'raincat-dbg' 'libzbargtk-dev' 'libvolpack1-dev' 'libmath-fibonacci-perl' 'libhtml-wikiconverter-moinmoin-perl' 'libghc-doctest-prof' 'libfreehep-graphicsio-svg-java' 'fcitx-module-cloudpinyin' 'dh-make-drupal' 'gausssum' 'cookietool' 'node-node-stringprep' 'archipel-agent-vmparking' 'agave' '6tunnel' 'libreoffice-l10n-he' 'libreoffice-l10n-et' 'xen-docs-4.1' 'virtualbox-guest-additions-iso' 'wavemon' 'trac-httpauth' 'tcd-utils' 'slang-tess' 'plptools' 'mlmmj' 'mcu8051ide' 'vdr-plugin-xine' 'libmcs-backend-gconf' 'lua-xmlrpc' 'libjifty-plugin-googlemap-perl' 'libglobus-gfork-dev' 'libfileutils-ocaml-dev' 'libquota-perl' 'imapfilter' 'salliere' 'gamine' 'flightgear' 'kdebase-bin' 'console-tools' 'libreoffice-l10n-eu' 'libreoffice-l10n-dz' 'libperl-critic-perl' 'ibus-sunpinyin' 'freeglut3-dev' 'flite1-dev' 'opensp' 'xen-docs-4.2' 'shinken-receiver' 'python-quixote' 'phpwebcounter' 'php5-radius' 'php-horde-crypt' 'ovsdbmonitor' 'igv' 'linux-image-3.8.0-19-lowlatency' 'libwv2-dev' 'libdose3-ocaml' 'libcss-parser0' 'lcl-0.9.30.4' 'plasma-widget-facebook' 'gtg' 'gnome-subtitles' 'gfortran-mingw-w64-i686' 'ttf-oflb-asana-math' 'erlang-folsom' 'mpi-default-bin' 'mlock' 'libxen-dev' 'libreoffice-l10n-gl' 'libmission-control-plugins-dev' 'libfriends-dev' 'sessioninstaller' 'tmux' 'base-passwd' 'autotools-dev' 'libghc6-sha-doc' 'libghc6-lazysmallcheck-dev' 'linux-headers-3.2.0-30-virtual' 'linux-headers-3.2.0-25-virtual' 'zita-rev1' 'xtrlock' 'uucpsend' 'styx-doc' 'qtsensors5-dev' 'qtsensors5-examples' 'planner-data' 'osmosis-plugin-borderextract' 'mcl-doc' 'lustre-tests' 'libtzinfo-ruby1.9.1' 'libghc-strict-concurrency-dev' 'libtext-simpletable-perl' 'terminal.app' 'fonts-comfortaa' 'fonts-ecolier-lignes-court' 'dict-freedict-gla-deu' 'libdeps-perl' 'cpp-4.7-aarch64-linux-gnu' 'cl-getopt' 'vim-gnome' 'libreoffice-l10n-fr' 'dkms' 'lprng' 'libdrm-nouveau1a' 'ubuntustudio-sounds' 'svn-load' 'python-sphinxcontrib.blockdiag' 'pd-smlib' 'libxmlbeans-maven-plugin-java' 'wireshark-dev' 'libhawknl' 'libghc-cookie-dev' 'libgcroots-dev' 'libakonadi-ruby1.8' 'latrace' 'python-irclib' 'libgpac-dbg' 'libaosd2' 'algol68g' 'latex-cjk-japanese-wadalab' 'python-kerberos' 'libxcb-render-util0-dev' 'libxcb-damage0' 'libreoffice-l10n-id' 'libreoffice-l10n-hi' 'libapache2-mod-log-sql-dbi' 'espeak-data' 'libplumbgpl2' 'php5-uuid' 'ike' 'launchpad-integration' 'roxterm' 'python-setupdocs' 'nordugrid-arc-plugins-globus' 'libproxool-java' 'libmonitoring-availability-perl' 'liblasso-perl' 'libjboss-metadata-java' 'libghc-regex-tdfa-utf8-prof' 'korganizer-mobile' 'disulfinder' 'claws-mail-attach-remover' 'zephyr-clients' 'asterisk-ooh323' 'asp.net-examples' 'ttf-tamil-fonts' 'libcanberra-gtk-module-dbg' 'language-pack-es-base' 'libdbusmenu-gtk4' 'ihu' 'trac' 'rwall' 'python-nipy-doc' 'pysycache-move-food' 'phlipple' 'libqt5svg5-private-dev' 'libjexcelapi-java-doc' 'libghc-xml-conduit-prof' 'libfile-sharedir-install-perl' 'libjiu-java' 'krb5-rsh-server' 'systemsettings' 'heroes-ggi' 'libghemical5' 'ganeti-htools' 'fapg' 'tklib' 'libmocha-ruby' 'libtelepathy-logger2' 'libreoffice-l10n-ja' 'libjmock-java' 'libcolumbus0-0' 'libboost-date-time1.46-dev' 'libgssapi3-heimdal' 'libgtk2.0-cil' 'lprof' 'libghc6-regex-tdfa-utf8-prof' 'python-jinja' 'yudit' 'xmlcopyeditor' 'r-cran-rserve' 'python-zope.app.pagetemplate' 'python-lazr.enum' 'll-scope' 'libjs-slimbox' 'libghc-syb-with-class-doc' 'libghc-html-dev' 'libembryo-dbg' 'libclutter-gst-1.0-dbg' 'libxbean-java-doc' 'libjetty-extra-java' 'gvb' 'gosa-plugin-pptp' 'chromium-chromedriver' 'libvtk5.8' 'guestmount' 'libdb5.1++-dev' 'libtelepathy-logger3' 'db5.3-doc' 'scantailor' 'python3-columbus' 'python-nitime-doc' 'python-mosquitto' 'pclock' 'lxinput' 'live-image-kde-desktop' 'ruby-oauth' 'libmail-checkuser-perl' 'libimap-admin-perl' 'libgrib-api-tools' 'libghc-shakespeare-css-prof' 'libstaden-read1' 'drgeo-doc' 'aj-snapshot' 'uboot-envtools' 'libgmime-2.6-doc' 'libcolumbus0-0-common' 'libbabl-dev' 'language-pack-sd-base' 'language-pack-ps-base' 'gmerlin-doc' 'owfs-common' 'libreadline-java-doc' 'libhtml-wikiconverter-wikkawiki-perl' 'libhtml-element-extended-perl' 'libghc-statistics-dev' 'libghc-postgresql-simple-dev' 'klettres-data' 'kdebase-dbg' 'hepmc-examples' 'goldendict' 'fp-units-fcl-2.6.0' 'uisp' 'edubuntu-menus' 'node-node-uuid' 'anagramarama' 'pulseaudio-module-bluetooth' 'network-manager-vpnc-gnome' 'libdevel-stacktrace-perl' 'libcwidget-doc' 'libssl-dev' 'libxml-libxml-perl' 'rzip' 'libsasl2-modules-gssapi-mit' 'kbd' 'tryton-modules-account-de-skr03' 'toonloop' 'pinball-dev' 'octave-octcdf' 'makehuman-doc' 'libtest-identity-perl' 'libonig2' 'libghc-basic-prelude-dev' 'libghc-base64-conduit-prof' 'libcrypt-hcesha-perl' 'plasma-widget-telepathy-presence' 'hmmer2-doc' 'fastqc' 'balazar3-common' 'libspiro0-dbg' 'libvpx1' 'libleveldb1' 'gir1.2-gwibber-0.2' 'spyder' 'poedit-dbg' 'muon-discover' 'lv2-extensions-good' 'timblserver' 'libmeep-mpi-default-dev' 'libghc-filemanip-dev' 'libaudio-mixer-perl' 'ideviceinstaller' 'libtododb0' 'geoclue-manual' 'freemind-plugins-help' 'calligra-l10n-cavalencia' 'account-plugin-identica' 'vgabios' 'libreoffice-l10n-ka' 'libreoffice-l10n-gu' 'liblightdm-qt5-2-0' 'telepathy-idle' 'ubuntu-orchestra-modules-apache' 'gambas2-gb-gtk-ext' 'ssss' 'ruby-http-connection' 'python-django-uwsgi-admin' 'pcmanx-gtk2' 'openbox-xdgmenu' 'olpc-powerd' 'liburi-find-simple-perl' 'libnet-openid-common-perl' 'libmoosex-param-perl' 'kicad-doc-pl' 'fofix' 'libhdf4-0-alt' 'libmono-system-web4.0-cil' 'dictionaries-common' 'gliese' 'python-django-social-auth' 'pgpdump' 'netgen' 'tomoyo-tools' 'sordi' 'libmatio2-dbg' 'liblua5.1-sql-mysql-dev' 'libkvkontakte-dev' 'libghc-utf8-string-prof' 'libmixin-linewise-perl' 'kcc' 'gwc' 'librsvg2-2.0-cil-dev' 'tcl-fitstcl' 'mopac7-bin' 'cyrus-dev-2.2' 'cl-base64' 'libbytecode-java' 'python-gi-dbg' 'mono-gac' 'syslinux-common' 'libreoffice-l10n-hr' 'libgutenprint2' 'language-pack-kde-mai' 'im-config' 'libedata-cal-1.2-13' 'vera' 'varnish-doc' 'tora' 'python3-pyside.qtuitools' 'python-silo' 'pxe-kexec' 'octave-communications-common' 'ml-burg' 'libseaudit4' 'libmoo-perl' 'libhtml-treebuilder-xpath-perl' 'libpostscript-perl' 'libjogl-java' 'inputlirc' 'libfltk-forms1.3' 'cppo' 'libengine-pkcs11-openssl' 'usb-creator-gtk' 'python-vte' 'libreoffice-l10n-in' 'libprotoc-dev' 'kwiki' 'python-gtkspellcheck' 'pearpc' 'openvpn-auth-ldap' 'oasis' 'monkeystudio' 'libmysql-ruby1.8' 'libghc-xdg-basedir-doc' 'hmmer2' 'ganglia-monitor-python' 'fceu' 'cyrus-dev-2.4' 'ruby-gherkin' 'ctsim-doc' 'libatkmm-1.6-dev' 'xloadimage' 'libghc6-http-dev' 'awn-applet-bandwidth-monitor' 'linux-backports-modules-hv-3.2.0-37-virtual' 'ttf-mathematica4.1' 'xmp-audacious' 'xcutmp3' 'php-horde-gollem' 'okteta-dev' 'netenv' 'museekd-tools' 'libuconv-ruby1.9.1' 'librcsb-core-wrapper-doc' 'libio-pty-easy-perl' 'libbiococoa2' 'libactiverecord-ruby1.9.1' 'gup' 'gromacs-dev' 'python-pyorbit-omg' 'biogenesis' 'unattended-upgrades' 'libreoffice-l10n-hu' 'libraw-doc' 'libradius1-dev' 'xcp-eliloader' 'r-cran-lmtest' 'python-nflog' 'php-net-smtp' 'netsend' 'libslicot-dev' 'libmoosex-async-perl' 'libmecab-ruby1.8' 'libjs-sax' 'libghc-safesemaphore-dev' 'libextractor-dbg' 'libggz2' 'formed' 'escputil' 'centerim-common' 'bitmap-mule' 'banshee-extension-telepathy' 'openstack-dashboard-ubuntu-theme' 'libustr-dev' 'qt4-qmake' 'libnm-glib4' 'openipmi' 'bittorrent' 'libcomplearn1-headers' 'taxbird' 'live-image-xfce-desktop' 'libvomsjapi-java-doc' 'ruby-tioga-doc' 'liblwipv6-2' 'libghc-filestore-doc' 'libapache2-mod-speedycgi' 'klone-package' 'hsc' 'gbirthday' 'libtest-nowarnings-perl' 'libxcb-shape0' 'libapache2-mod-auth-mysql' 'gir1.2-dee-1.0' 'ttf-arphic-bsmi00lp' 'bf-utf-source' 'xserver-xorg-input-elographics' 'qmidiarp' 'python-unity-singlet' 'pd-wiimote' 'pd-libdir' 'mailutils-guile' 'libtarantool-dev' 'libnbio0' 'libgrilo-0.2-bin' 'libdata-show-perl' 'libcore-renderer-java' 'libdoxia-java' 'kreversi' 'hdhomerun-config-gui' 'globus-gridmap-callout-error-dbg' 'ftnchek' 'autogrid' 'libreoffice-l10n-is' 'libipc-shareable-perl' 'libbcel-java-doc' 'gir1.2-wnck-1.0' 'libxt-dev' 'libedata-cal-1.2-18' 'diveintopython-zh' 'thoggen' 'sugar-chat-activity-0.84' 'libghc6-xml-doc' 'libcore++1c2' 'libcomplearn-dev' 'nifti2dicom' 'libwww-freshmeat-perl' 'python-vtk' 'liblog4cxx10-doc' 'libglobus-gridftp-server-dev' 'libfxscintilla-dev' 'libdpm-dev' 'kicad-doc-pt' 'kdesdk-dolphin-plugins' 'cutecom' 'libvolpack1' 'ajaxterm' 'gstreamer1.0-libav' 'ruby-metaclass' 'ltspfsd' 'openjdk-6-jdk' 'libreoffice-l10n-it' 'hijra-applet' 'boinc-nvidia-cuda' 'stow' 'python-zope.app.server' 'python-llfuse-doc' 'startactive-ksplash-theme' 'marble-dbg' 'mail-notification-evolution' 'lubuntu-lxpanel-icons' 'ruby-qpid' 'libphone-utils0-dbg' 'libkactivities-bin' 'libghc-path-pieces-prof' 'libclustalo-doc' 'kdf' 'libkwinglesutils1' 'hoz' 'gnokii' 'fonts-jura' 'erlang-cherly' 'libedje-bin' 'eterm' 'usb-creator-common' 'speech-dispatcher-flite' 'libedit-dev' 'libgtk2.0-dev' 'libapache-pom-java' 'sugar-chat-activity-0.86' 'seivot' 'pennmush' 'olsrd-gui' 'ruby-pg' 'libwin-hivex-perl' 'libkvkontakte1' 'libgavl1' 'fluidsynth-dssi' 'fatrat' 'stellarium' 'libmygpo-qt1' 'libpython3-all-dev' 'language-selector' 'bacula-sd-sqlite' 's51dude' 'python-pocketsphinx' 'php-horde-perms' 'mtp-tools' 'mga-vid-common' 'libwsil4j-java' 'libtext-chasen-perl' 'libtest-utf8-perl' 'libkohana3.2-mod-cache-php' 'libghc-monad-control-dev' 'libuniversal-can-perl' 'libaacs0' 'libyaz4' 'fillets-ng-data-nl' 'erlang-guestfs' 'fonts-gfs-didot-classic' 'codeblocks-contrib' 'burn' 'node-underscore.logger' 'swat' 'libvte9' 'libreoffice-l10n-km' 'librcc-dev' 'libavformat-dev' 'python-ceph' 'dbus-1-doc' 'trn4' 'recite' 'qtscript-tools' 'python-springpython' 'python-pyke' 'pgstaging-client' 'osmjs' 'python-gnutls' 'libghc-hstringtemplate-doc' 'libghc-file-location-prof' 'libole-storage-lite-perl' 'libmudflap0' 'jstest-gtk' 'freemedforms-emr-resources' 'efte' 'libogg-vorbis-header-pureperl-perl' 'libgexiv2-dev' 'harvestman' 'weechat-dev' 'webgui-l10n-de' 'uec-provisioning-dhcpd' 'texworks-help-en' 'shedskin' 'qsampler' 'python3-wadllib' 'python-pyip' 'python-audioread' 'plasma-active-metadatamodels' 'libmecab-ruby1.9.1' 'libjstun-java-doc' 'libghc-yaml-dev' 'libghc-harp-dev' 'libghc-bytestring-mmap-prof' 'libcommons-attributes-java-doc' 'libajaxtags-java' 'libnet-imap-simple-perl' 'libssh2-1' 'erlang-appmon' 'libglc0' 'calligra-l10n-nds' 'burp' 'billard-gl-data' 'python-cerealizer' 'unifont-bin' 'libreoffice-l10n-ko' 'language-pack-kde-be-base' 'culmus' 'libstonith1' 'libghc6-haskelldb-dev' 'libmudflap0-4.6-dev-armel-cross' 'xdaliclock' 'vmfs-tools' 'yoshimi' 'tegaki-zinnia-simplified-chinese' 'scim-canna' 'rxvt-unicode-ml' 'python-desktop-agnostic' 'pd-boids' 'mrbayes-mpi' 'libpiano0' 'libmodule-starter-plugin-tt2-perl' 'libjna-java-doc' 'ink' 'gputils-common' 'debiandoc-sgml-doc-pt-br' 'agedu' 'linux-image-extra-3.8.0-19-generic' 'language-pack-gnome-lb-base' 'iestonian' 'libghc6-vector-dev' 'libghc6-sdl-prof' 'python-zope.file' 'nautilus-script-manager' 'liblein-clojars-clojure' 'libjson-ruby1.8' 'libgoocanvas-ruby' 'libghc-weighted-regexp-prof' 'iog' 'php-doc' 'read-edid' 'fonts-lohit-beng-assamese' 'dssi-dev' 'bittorrent-gui' 'totd' 'radosgw' 'qtbase5-dbg' 'qemu-keymaps' 'bikeshed' 'libreoffice-l10n-nb' 'liquidsoap' 'libjpeg62-dbg' 'libgsf-1-common' 'libgpmg1-dev' 'octave3.2-doc' 'sumo' 'slashem-gtk' 'octave-nlopt' 'lybniz' 'libicee-java' 'libedac-dev' 'libdata-phrasebook-perl' 'usb-creator-kde' 'rxvt' 'tree' 'gambas3-gb-qt4-ext' 'python-espeak' 'emacs-jabber' 'aswiki' 'splix' 'kdm' 'linux-base' 'libqjson0-dbg' 'libgnomeui-0' 'language-pack-kde-ko-base' 'ifinnish' 'sun-javadb-core' 'unaccent' 'solfege' 'python-mvpa2-lib' 'whitedune' 'maliit-framework-dbg' 'libsofa1-dev' 'lua-copas' 'libkactivities-dbg' 'libjson-spirit-dev' 'libedje-dbg' 'libdca-utils' 'hotot-gtk' 'ruby-rd' 'inn' 'shutdown-at-night' 'python-unittest2' 'libcommons-collections-java-doc' 'language-pack-gnome-sv-base' 'hud' 'libx32gfortran-4.7-dev' 'bacula-common-mysql' 'libnl2-doc' 'brother-cups-wrapper-bh7' 'xmoto-data' 'tokyocabinet-bin' 'python-matplotlib-doc' 'oath-dbg' 'nagcon' 'lutefisk-doc' 'libowasp-java-html-sanitizer-java-doc' 'libsmokenepomukquery3' 'libmarkdown2-dbg' 'libghc-mime-mail-dev' 'libghc-fastcgi-doc' 'libdbix-connector-perl' 'grml-rescueboot' 'ipe' 'crip' 'libreoffice-l10n-ne' 'sylpheed' 'drbd8-utils' 'linux-image-3.2.0-23-lowlatency' 'tkmib' 'tkgate-doc' 'mupen64plus-video-glide64' 'mozilla-gtk-vnc' 'morse-simulator' 'linux-wlan-ng-firmware' 'librtfilter-dev' 'libphp-magpierss' 'lua-sql-postgres' 'libauthen-krb5-admin-perl' 'kicad-doc-ru' 'iok' 'libjhdf5-java' 'f2fs-tools' 'ddd-doc' 'libcsync0' 'ats-lang-anairiats-doc' 'libreoffice-l10n-mk' 'libreoffice-l10n-ku' 'libsub-name-perl' 'gnome-doc-utils' 'libclutter-1.0-0' 'stud' 'stimfit' 'python3-amqplib' 'python-pymc' 'openscenegraph-plugin-citygml-shared' 'msrtool' 'libzvbi-common' 'librdf-vcard-perl' 'libencode-arabic-perl' 'libdigest-bubblebabble-perl' 'libatinject-jsr330-api-java-doc' 'kgb' 'signing-party' 'cia-clients' 'balazar3' 'adminer' 'libreoffice-l10n-ml' 'libksba8' 'linux-image-3.2.0-39-lowlatency-pae' 'xfstt' 'syslog-ng-dbg' 'scilab-getfem++' 'pgn-extract' 'libghc-openglraw-prof' 'libdata-validate-domain-perl' 'jenkins-test-annotations-doc' 'libset-crontab-perl' 'fakeroot-ng' 'ekg2' 'bzr-rebase' 'boxes' 'python-geoip-dbg' 'guymager' 'libxmu-dev' 'libreoffice-l10n-oc' 'libmission-control-plugins-doc' 'libdb5.1-stl-dev' 'gstreamer0.10-plugins-good-doc' 'erlang-percept' 'tuxtype-data' 'sdl-ball-data' 'python-pyme' 'ns2-doc' 'ruby-termios' 'spatialite-bin' 'libknewstuff2-perl' 'libgpac-dev' 'libghc-strict-concurrency-doc' 'libghc-hcwiid-prof' 'libcgi-application-plugin-json-perl' 'libcddb2-dev' 'ion' 'gnoemoe' 'libwnn0' 'ttf-yanone-kaffeesatz' 'debfoster' 'daisy-player-dbg' 'crawl-tiles-data' 'xfwm4' 'python3-bsddb3-dbg' 'libreoffice-l10n-mn' 'davfs2' 'libmono-system-drawing4.0-cil' 'bacula-sd-pgsql-dbg' 'mysql-server' 'libghc6-llvm-prof' 'winff-gtk2' 'uwsgi-plugin-pyerl-python' 'python-logilab-constraint' 'wireshark-doc' 'libqtxdg0' 'libghc-regexpr-prof' 'libghc-cookie-doc' 'lcalc' 'icontool' 'emerillon-dev' 'coinor-libsymphony0-dbg' 'libreoffice-l10n-lt' 'libdiscid0-dev' 'libudev-dev' 'alsa-utils' 'libswidgets-java' 'libawn1-dbg' 'mariadb-client' 'linux-image-extra-3.2.0-39-virtual' 'xawtv-tools' 'ruby-test-unit' 'libterralib-dev' 'netdisco-mibs-installer' 'libextractor-java-dbg' 'speedcrunch' 'htp' 'gyp' 'midgard2-common' 'libfwts1' 'fonts-sawarabi-gothic' 'drupal6-mod-xmlsitemap' 'asterisk-core-sounds-en-wav' 'arista' 'moodbar' 'openoffice.org' 'libmail-dkim-perl' 'hwb' 'alien-arena-server' 'dosemu' 'tcosmonitor' 'starpu-contrib-examples' 'squirrelmail-compatibility' 'reaver' 'r-cran-bitops' 'python-subvertpy-dbg' 'libnuclient4' 'libmed-dev' 'libjgoodies-forms-java-doc' 'libghc-tagsoup-prof' 'libembryo-dev' 'libclass-c3-componentised-perl' 'kiki-the-nano-bot' 'kspaceduel' 'gnome-alsamixer' 'ftgl-dev' 'dmitry' 'gnat-doc' 'libtest-script-perl' 'libreoffice-l10n-lv' 'libreoffice-l10n-nl' 'libmono-system-runtime-serialization-formatters-soap4.0-cil' 'keystone-doc' 'gir1.2-telepathylogger-0.2' 'tomcat6-examples' 'ripoff' 'slv2-doc' 'opensaml2-schemas' 'libroot-math-mathcore-dev' 'libmodule-package-perl' 'libgle3' 'libghc-html-doc' 'libghc-cryptocipher-prof' 'libclass-factory-perl' 'libclass-dbi-asform-perl' 'gregorio' 'geany-plugin-debugger' 'libspctag1' 'libtext-wrapper-perl' 'kde-l10n-zhtw' 'ubuntu-release-upgrader-core' 'signon-plugin-password' 'libxml-commons-resolver1.1-java-doc' 'samba-tools' 'libreoffice-l10n-mr' 'libp11-kit-dev' 'libappconfig-perl' 'gkbd-capplet' 'teamspeak-client' 'podget' 'pktstat' 'orbital-eunuchs-sniper' 'libsage-dev' 'libportaudio-ocaml' 'latex2rtf-doc' 'libgeant321-2-dev' 'libchamplain-0.12-0' 'drupal6-mod-commentrss' 'cvc3' 'cernlib-extras' 'nvidia-current-dev' 'texlive-binaries' 'libreoffice-l10n-nn' 'libbabl-doc' 'libkrossui4' 'gettext-el' 'ttf-opensymbol' 'cyrus-sasl2-heimdal-dbg' 'libxcomposite1' 'devscripts' 'libgtk2-perl' 'linux-image-3.5.0-17-generic' 'meritous' 'linux-image-3.5.0-22-generic' 'vlc-plugin-fluidsynth' 'qingy' 'lintex' 'libwill-paginate-ruby' 'libvomsjapi-java-gcj' 'libspandsp-dev' 'libnet-dropbox-api-perl' 'libsmokekfile3' 'libghc-postgresql-simple-doc' 'libghc-statistics-doc' 'libdpm-perl' 'slang-wildcard' 'java3ds-fileloader' 'hotot-common' 'gnustep-common' 'gesftpserver' 'rxvt-unicode' 'flight-of-the-amazon-queen' 'fcitx-rime' 'mpi-default-dev' 'libcipux-cat-web-perl' 'abiword-plugin-grammar' 'cm-super-minimal' 'libssl-doc' 'libpisock-dev' 'idle-python2.7' 'sunpinyin-data' 'gnome-session-fallback' 'libcroco3' 'libghc6-hdbc-dev' 'at-spi-doc' 'mariadb-test' 'linux-backports-modules-net-3.2.0-39-generic' 'refdb-www' 'python-messaging' 'python-flufl.password' 'python-adodb' 'xmms2-plugin-all' 'libghc-mersenne-random-prof' 'libghc-basic-prelude-doc' 'libfreeimage3-dbg' 'libcrypt-openssl-x509-perl' 'libarpack++2-dev' 'lazarus-doc' 'plasma-active-settings' 'gyoto-doc' 'tuxpaint' 'libstdc++6-4.7-dev-arm64-cross' 'doc-linux-ja-html' 'ctdb' 'cksfv' 'libmyodbc' 'libjbig2dec0' 'libbatik-java' 'gnome-session-bin' 'linux-backports-modules-cw-3.5-3.2.0-39-generic-pae' 'stun' 'plasma-widget-stockquote' 'monodevelop-database' 'libunicode-japanese-perl' 'libpgapack-mpi1' 'liblwt-ssl-ocaml-dev' 'libghc-numinstances-prof' 'libghc-filemanip-doc' 'libdiet-sed2.8-dev' 'ruby-dataobjects-mysql' 'libhtml-simpleparse-perl' 'globus-openssl-module-dbg' 'xfonts-terminus' 'libcgi-formbuilder-perl' 'libfile-tail-perl' 'addresses.framework' 'python-qwt5-qt4' 'ocaml-mode' 'libvte-2.90-common' 'konwert' 'xchat-indicator' 'gstreamer1.0-plugins-good' 'icedax' 'apache2-suexec' 'ldc' 'python-metacity' 'vice' 'kic' 'glx-alternative-nvidia' 'ruby-rr' 'rake-compiler' 'patcher' 'node-lru-cache' 'libstax2-api-java' 'libbridge-method-injector-java-doc' 'libtelepathy-farstream2' 'kdegraphics-libs-data' 'dicod' 'daa2iso' 'libmath-bezier-perl' 'libcrypt-rijndael-perl' 'libisajet758-3-dev' 'bastet' 'avant-window-navigator' 'twisted-doc' 'python-gi-dev' 'lilo-doc' 'libreoffice-l10n-nr' 'libreoffice-l10n-om' 'language-pack-dv-base' 'webgui-l10n-es' 'unity-webapps-facebookmessenger' 'surf' 'r-cran-readbrukerflexdata' 'paxctl' 'libjmock2-java' 'libghc-numeric-quest-prof' 'libghc-io-storage-dev' 'libghc-hashmap-prof' 'libfinance-qif-perl' 'ips' 'x3270' 'golang' 'git-extras' 'cutter-testing-framework-doc' 'fglrx-amdcccle' 'libtelepathy-farstream3' 'libghc6-erf-dev' 'libghc-neither-dev' 'nvidia-compute-profiler' 'libmetis-edf-dev' 'biomaj-watcher' 'zsh-lovers' 'qtdeclarative5-xmllistmodel-plugin' 'pdns-backend-mysql' 'libusbredirhost-dev' 'ruby-rt' 'libpam-foreground' 'libnet-netrc-ruby1.9.1' 'libgearman-client-async-perl' 'libdaemons-ruby' 'libtime-duration-parse-perl' 'libcatalyst-plugin-compress-perl' 'lat' 'tzwatch' 'gobjc-4.6-multilib' 'fortunes-debian-hints' 'dawgdic-tools' 'spring-maps-kernelpanic' 'shorewall6-lite' 'rygel-gst-launch' 'python-oauth2' 'php-image-text' 'php-horde-sessionhandler' 'qtgstreamer-doc' 'libgstreamer-vaapi0.10' 'fpc-2.6.0' 'flush' 'dolfin-bin' 'xserver-xorg-input-synaptics-dbg' 'speech-dispatcher-doc-cs' 'libmoosex-method-signatures-perl' 'libatkmm-1.6-doc' 'kerneloops' 'unar' 'libghc6-http-doc' 'libgooglecharts-ruby1.8' 'tuxcmd-modules' 'tryton-modules-purchase-invoice-line-standalone' 'php-text-template' 'node-jquery' 'mingw-ocaml' 'libtemplate-plugin-datetime-format-perl' 'libqtgtl-dev' 'libpadre-plugin-moose-perl' 'libjts-java' 'libhtml-microformats-perl' 'libdata-pageset-perl' 'libcsfml1.6-dbg' 'librose-db-perl' 'libaudio-mpd-perl' 'lcl' 'kig' 'libextractor-dev' 'libgwengui-gtk2-0' 'gnash-opengl' 'fonts-takao' 'tzdata-java' 'mdbtools-gmdb' 'libreoffice-l10n-pl' 'xserver-xorg-input-penmount' 'libcommandline-ruby1.8' 'webauth-tests' 'ruby-eim-xml' 'revu-tools' 'python3-pipeline' 'python-pynn' 'pyrite-publisher' 'voms-clients' 'mpegdemux' 'libslicot-doc' 'libregina3-dev' 'libghc-safesemaphore-doc' 'libcsoundac5.2' 'libobject-authority-perl' 'gtimelog' 'gamgi-data' 'fonttools' 'libcrypt-blowfish-perl' 'libustr-doc' 'libreoffice-l10n-or' 'libklibc-dev' 'libgweather-common' 'libassuan0-dbg' 'gsettings-desktop-schemas-dev' 'libxext-dev' 'python-xapian' 'libghc6-xhtml-dev' 'libibmad1' 'deal.ii-doc' 'awn-applet-showdesktop' 'eagle-data' 'avidemux-common' 'xfonts-bolkhov-misc' 'worklog' 'vistrails' 'python-rope' 'python-pymt' 'maxima-share' 'libmagic-ocaml-dev' 'libjifty-plugin-userpic-perl' 'libmaven-doxia-tools-java' 'libapache2-mod-shib2' 'kchmviewer' 'ipx' 'harden-doc' 'gresolver' 'texlive-full' 'libghc6-maybet-prof' 'yajl-tools' 'smarty-gettext' 'libvdkbuilder2c2' 'libpod-pseudopod-perl' 'libmodule-install-rdf-perl' 'libghc-representable-tries-dev' 'libghc-groupoids-dev' 'libfam-ruby' 'libdevel-nytprof-perl' 'libdata-report-perl' 'lbt' 'joe' 'libgsql0' 'libcaribou-gtk-module' 'libwxbase2.8-0' 'swig' 'python-twisted-lore' 'libxt-doc' 'activity-log-manager-common' 'jitsi' 'virtuoso-server' 'nautilus-wipe' 'lubuntu-artwork-12-04' 'libmath-calculus-expression-perl' 'libjs-jquery-resize-doc' 'secure-delete' 'libghc-src-exts-prof' 'libghc-gnutls-prof' 'gobjc-arm-linux-gnueabi' 'globus-scheduler-event-generator-progs' 'nodejs' 'linux-backports-modules-cw-3.4-3.2.0-38-generic-pae' 'libkasten1core1' 'python-metaconfig' 'lubuntu-artwork-12-10' 'libpinyin-dbg' 'monodoc-opentk-manual' 'liblogforwarderutils2-dev' 'libjboss-aop-java' 'libghc-monoid-extras-prof' 'libghc-extensible-exceptions-prof' 'libdune-istl-dev' 'libapache2-mod-fcgid-dbg' 'libtimblserver2' 'fetch-crl' 'berusky-data' 'libicc2' 'amphetamine-data' 'python-smbc' 'python-nautilus' 'libgraphite3-dbg' 'libgtk2.0-doc' 'texlive-xetex' 'bacula-director-mysql' 'mgltools-pyautodock' 'veusz-helpers' 'python-cap-ng' 'openacs' 'nordugrid-arc-ws-monitor' 'libtpm-unseal-dev' 'libtggraphlayout-java' 'libebook-tools-perl' 'libatd-ocaml' 'lfc' 'libibmad5' 'gomoku.app' 'dict-bouvier' 'dealer' 'filters' 'python-argh' 'liblogthread-dev' 'ldm' 'libghc6-cairo-prof' 'whohas' 'upslug2' 'pslib-dev' 'xgrep' 'live-image-all' 'libmopac7-dev' 'libghc-test-framework-th-dev' 'libghc-monad-control-doc' 'libextutils-cchecker-perl' 'libmarble-dev' 'libkpimidentities4' 'libtie-cache-perl' 'libinline-perl' 'dkim-milter-python' 'astyle' 'libpst-dev' 'libmono-system-security4.0-cil' 'libopenexr6' 'libio-dirent-perl' 'libtrain-bin' 'python3-flexmock' 'plasma-widget-weatherforecast' 'plasma-mobile' 'openwalnut-qt4' 'sipwitch' 'liblog4shib-dev' 'libghc-hjsmin-dev' 'kate-dbg' 'kanjidic-xml' 'festlex-poslex' 'eukleides' 'libtowitoko-dev' 'cobbler-common' 'gnuplot-nox' 'mythes-en-us' 'libreoffice-l10n-pt' 'debget' 'python-prettytable' 'libgmtk0-dbg' 'libghc6-hxt-prof' 'libboost-signals1.46.1' 'linux-backports-modules-cw-3.6-3.2.0-37-virtual' 'xmms2-plugin-faad' 'weechat-doc' 'quantum-plugin-brocade' 'uim-qt3' 'libnet-google-code-perl' 'liblog4shib1' 'libjs-jquery-resize' 'libghc-yaml-doc' 'libghc-harp-doc' 'libboost-mpi-python1.49-dev' 'mingw-w64-dev' 'gbrowse-calign' 'libfelix-main-java' 'alevtd' 'libreoffice-l10n-ta' 'python-central' 'dconf-service' 'libghc6-haskelldb-doc' 'yate-qt4' 'snd-nox-alsa' 'python-acidobasic' 'monotone-viz' 'maildir-filter' 'libtowitoko2' 'libroot-net5.34' 'libgrilo-0.2-dev' 'libghc-largeword-dev' 'libclass-pluggable-perl' 'libcdi-api-java' 'kerneloops-applet' 'python-pypm' 'libslicot0' 'gcc-arm-linux-gnueabihf' 'ardesia' 'python-pyinotify-doc' 'libjpeg62-dev' 'qtbase5-dev' 'libcrack2-dev' 'language-pack-kde-mhr' 'app-install-data-partner' 'clamav-daemon' 'libghc6-vector-doc' 'libmusicbrainz4-dev' 'mgltools-molkit' 'yade-doc' 'rinputd' 'libupse2' 'libjgoodies-looks-java-doc' 'libevent-loop-ruby1.8' 'libplack-test-externalserver-perl' 'kvirc-data' 'indicator-appmenu-tools' 'fakepop' 'desproxy' 'kde-standard' 'xbrlapi' 'libtemplate-perl-doc' 'libsystemd-id128-0' 'libqt4-sql-psql' 'libgtkhtml-editor-4.0-0' 'cron' 'xmms2-client-nycli' 'xen-hypervisor-4.2-i386' 'libroot-roofit-dev' 'libmoosex-arrayref-perl' 'libmaven-plugin-testing-java-doc' 'maliit-framework-dev' 'libirrlicht1.7a' 'libghc-simple-sendfile-prof' 'libeurodec1-gfortran' 'libdb4.2-ruby1.8' 'libchart-clicker-perl' 'libkactivities-dev' 'libedje-dev' 'python3-httplib2' 'python-twisted-conch' 'libreoffice-l10n-si' 'libgutenprint-dev' 'python-cliff' 'linux-backports-modules-cw-3.5-precise-generic' 'idle-python3.2' 'uvcdynctrl-dbg' 'slashem-x11' 'yorick-cubeview' 'python-hachoir-subfile' 'python-keyczar' 'lxsplit' 'libstarpu-contrib-1.0' 'libmarkdown2-dev' 'libghc-yesod-core-dev' 'libgdamm5.0-dev' 'josm-plugins' 'libgme0' 'gauche-gdbm' 'icoutils' 'dict-freedict-eng-por' 'proofgeneral' 'felix-latin-data' 'coinor-csdp-doc' 'xemacs21' 'alure-doc' 'xserver-xorg-video-nouveau' 'libxml-commons-resolver1.1-java-gcj' 'libreoffice-l10n-ro' 'libreoffice-l10n-te' 'libimobiledevice-dev' 'gfs-pcmk' 'libjdepend-java' 'libghc6-haskore-prof' 'sfftobmp' 'nekobee' 'libxml-nodefilter-perl' 'libterm-clui-perl' 'libpam-barada' 'libnss-sss' 'libmd3-1' 'libghc-mime-mail-doc' 'libacme-bleach-perl' 'jless' 's3d-data' 'gir1.2-diodon-1.0' 'claws-mail-acpi-notifier' 'libtevent0' 'aghermann' 'libjs-jquery-tablesorter' 'libreoffice-l10n-sk' 'libppix-utilities-perl' 'idle-python3.3' 'facter' 'lha' 'lusca-dbg' 'fso-sounds-none' 'linux-backports-modules-cw-3.3-3.2.0-37-generic-pae' 'xvba-va-driver' 'webissues-server' 'unity-webapps-youtube' 'simpleopal' 'redsocks' 'razorqt-config' 'pinball' 'mupen64plus-rsp-z64' 'qmfgen' 'libnarray-ruby1.8' 'libjglobus-gss-java' 'libapr-memcache0' 'kexi-map-form-widget' 'ninix-aya' 'icebox' 'gyoto' 'lazarus' 'famfamfam-flag-gif' 'libspandsp2' 'php5-pspell' 'libreoffice-l10n-tg' 'libreoffice-l10n-sl' 'at-spi' 'cpp-doc' 'umit' 'pychess' 'lua-nginx-memcached' 'libmjpegtools-dev' 'lfm' 'xmhtml1' 'gosa-plugin-netatalk' 'smbios-utils' 'fatrat-czshare' 'ploticus' 'libdebian-dpkgcross-perl' 'downtimed' 'libapache2-mod-xsendfile' 'bsfilter' 'amarok' 'nova-doc' 'libreoffice-l10n-th' 'libpackage-stash-xs-perl' 'libindicator3-dev' 'language-pack-kde-nds' 'gfortran' 'wdq2wav' 'strongswan-dbg' 'sadms' 'python-zope.tales' 'python-traitsui' 'webauth-weblogin' 'libtime-format-perl' 'libffcall1-dev' 'libdansguardian-perl' 'libtelepathy-logger-qt4-1' 'katepart' 'gpe-contacts' 'gnome-breakout' 'fgfs-atlas' 'dieharder' 'blends-dev' 'language-pack-gnome-ht-base' 'libfreerdp-plugins-standard' 'libobjc3-armel-cross' 'xmess-x' 'xmms2-plugin-m3u' 'ttf-xfree86-nonfree' 'scsh-0.6-doc' 'pirl-image-tools' 'petitboot-twin' 'tifffile' 'libwtfcgi33' 'liblua5.1-oopango-dev' 'libhiredis-dbg' 'ruby-gstreamer' 'libgoocanvas-2.0-dev' 'libglrr-gtk0' 'libconfig-model-tkui-perl' 'kdm-theme-aperture' 'kamailio-perl-modules' 'python-whisper' 'libdrumstick0' 'lsdvd' 'dc-qt' 'emboss' 'vkeybd' 'afterstep-data' 'python-ubuntu-sso-client.tests' 'cmap-adobe-korea1' 'libxml-sax-perl' 'libipc-run-perl' 'gstreamer0.10-pulseaudio' 'fonts-ubuntu-font-family-console' 'libwtfcgi29' 'linux-backports-modules-cw-3.5-3.2.0-36-virtual' 'vifm' 'snake4' 'ruby-formatador' 'rails-doc' 'python-zope.componentvocabulary' 'python-formalchemy' 'owncloud-sqlite' 'libunbound-dev' 'libsmokesopranoserver3' 'libocsync0' 'libmidi-perl' 'libextractor-java-dev' 'libsamba-util-dev' 'jsmath-fonts-sprite' 'fbtv' 'libewf1' 'easygit' 'claws-mail-extra-plugins' 'blktap-dev' 'bidentd' 'ace-gperf' 'libreoffice-l10n-ru' 'language-pack-kde-km-base' 'libtheora0' 'dovecot-core' 'libice6' 'awn-applet-tomboy-applet' 'libmariadbclient18' 'system-config-date' 'subcommander-doc' 'sigrok' 'python-pytc' 'libwordnet-querydata-perl' 'libterralib-doc' 'libsox-fmt-pulse' 'libnet-pcap-perl' 'libhtml-packer-perl' 'libdvbcsa1' 'libmoosex-types-loadableclass-perl' 'libmetainf-services-java' 'fso-frameworkd' 'fauhdlc' 'dzen2' 'coq-theories' 'maq' 'xserver-xorg-video-vmware' 'liboverlay-scrollbar-0.2-dev' 'libreoffice-l10n-ug' 'language-pack-gnome-ve-base' 'language-pack-gnome-st-base' 'fonts-nanum-coding' 'ripole' 'fp-units-rtl-2.4.4' 'libapiextractor0.10' 'xfonts-wqy' 'twisted-py3-doc' 'stx-btree-demo' 'simpleproxy' 'omniidl' 'nautic' 'lv2file' 'libtwolame-dev' 'libsopranoclient-perl' 'libpolyorb-dbg' 'libmed-doc' 'liblua5.1-curl-dev' 'libgfshare1' 'libembryo-doc' 'guile-gnutls' 'python-rpy2' 'geoclue-hostip' 'flashcache-utils' 'banshee-extension-randombylastfm' 'python3-gpgme-dbg' 'libx32objc4-dbg' 'libspectre1-dbg' 'libreoffice-l10n-sr' 'libreoffice-l10n-rw' 'librarian0' 'libdlrestrictions-dev' 'dictd' 'update-inetd' 'libopenturns0' 'qt3d5-examples' 'unknown-horizons' 'med-config' 'ltsp-cluster-nxloadbalancer' 'llvm-3.2-source' 'libsoupcutter0' 'libredstone-xmlrpc-java' 'libqt5clucene5' 'libpgm-dbg' 'libmorph-dev' 'libkaya-pgsql-dev' 'libheckle-ruby1.8' 'xfonts-a12k12' 'ghc-testsuite' 'fso-sounds-yue-base' 'dhis-dns-engine' 'cpp-4.5-arm-linux-gnueabi' 'libbotan-1.10-0' 'aweather' 'libreoffice-l10n-tn' 'libreoffice-l10n-ss' 'libgdbm-dev' 'language-pack-kde-ur-base' 'gnupg-agent' 'gir1.2-wnck-3.0' 'libcogl-pango0' 'xmms2-plugin-asf' 'vserver-debiantools' 'mat' 'libroot-misc-minicern-dev' 'liblog-dispatch-filerotate-perl' 'libgnelib0-dbg' 'lft' 'freepats' 'eclipse-mylyn-versions-cvs' 'lie' 'libreoffice-l10n-ve' 'libreoffice-l10n-st' 'libaa1' 'monodevelop-python' 'libjrexx-java' 'libace-flreactor-6.0.1' 'libopencv-core2.3' 'linux-backports-modules-cw-3.6-3.2.0-34-generic' 'yaws-yapp' 'php-invoker' 'pd-mjlib' 'oboinus' 'libspandsp-doc' 'libroot-graf2d-gpad-dev' 'libopenct1-dbg' 'libglobus-gsi-openssl-error-dev' 'libdssialsacompat0' 'libdatetimex-easy-perl' 'libconfig-model-perl' 'libapol4' 'libaa-bin' 'jta' 'hex-a-hop' 'freedm' 'libcrypto++9' 'libqtscript4-gui' 'libstdc++6-4.5-dbg' 'libreoffice-l10n-uk' 'fonts-ipafont-mincho' 'libghc6-hdbc-doc' 'wbox' 'sxid' 'styx' 'python-pyth' 'pd-plugin' 'python-xenapi' 'netanim' 'mcl' 'libts-0.0-0-dbg' 'libphone-ui-shr-dbg' 'libproc-wait3-perl' 'libini4j-java' 'libghc-async-dev' 'libderiving-ocaml' 'jtb' 'ifgate' 'gobjc-mingw-w64-x86-64' 'liboglappth2' 'ladspa-sdk' 'libopencv-core2.4' 'python-hp3parclient' 'libreoffice-l10n-sv' 'libxpp2-java' 'libcloog-ppl-dev' 'fonts-liberation' 'avahi-autoipd' 'libghc6-xmonad-contrib-prof' 'thunar-gtkhash' 'quilt-el' 'php-horde-support' 'mlton-basis' 'libtoolkit-perl' 'lua-rex-pcre' 'libsmokekutils3' 'libhyena-cil-dev' 'libghc-certificate-prof' 'libauthen-krb5-perl' 'libace-flreactor-6.0.3' 'mbr' 'gpe-soundserver' 'gnome-platform-devel' 'glosstex' 'boinc-app-seti-dbg' 'python-distribute-doc' 'libreoffice-l10n-tr' 'libftdipp1-dbg' 'language-pack-gnome-fur-base' 'xfaces' 'webp' 'texworks-scripting-lua' 'tablix2' 'sagan' 'libapache2-mod-fastcgi' 'pocketsphinx-lm-zh-hant-gigatdt' 'owncloud-mysql' 'openarena-085-data' 'nginx-naxsi-dbg' 'mythbuntu-common' 'mingw-w64-tools' 'libtiger-types-java-doc' 'libgnomescan-dev' 'libdbix-datasource-perl' 'libapache2-mod-random' 'kvpnc' 'hamster-indicator' 'mapnik-utils' 'libc6-dev-ppc64-powerpc-cross' 'calibre' 'runit' 'libreoffice-l10n-ts' 'libreoffice-l10n-vi' 'libpe-rules2-dev' 'clamav-docs' 'kagemai' 'xserver-xorg-video-mach64-lts-quantal' 'notion' 'libtet1.4' 'uec-provisioning-common' 'python-slip' 'python-repoze.who-plugins' 'nuauth-utils' 'libpocketsphinx-dev' 'mbt' 'libghc-io-storage-doc' 'libghc-haskell-lexer-prof' 'libunixsocket-java' 'ekg2-ui-gtk' 'dict-freedict-eng-scr' 'crossroads' 'texlive-publishers' 'texlive-lang-arabic' 'libghc6-erf-doc' 'libghc-neither-doc' 'liberis-1.3-15' 'linux-headers-3.2.0-37-lowlatency-pae' 'mdk' 'manderlbot' 'libwtdbopostgres33' 'libsitemesh-java' 'libreoffice-gtk3' 'libghc-network-prof' 'libghc-crypto-numbers-prof' 'libmoosex-storage-perl' 'ircii' 'librmagick-ruby' 'libgcc-4.7-dev-armhf-cross' 'xserver-xorg-input-synaptics-dev' 'libxres1-dbg' 'libpe-status3' 'libgadu-dev' 'libevince3-3' 'libnet-ip-perl' 'ltp-disc-test' 'libwtdbopostgres29' 'fp-units-base-2.4.4' 'linux-image-3.2.0-40-lowlatency-pae' 'linux-image-3.2.0-35-lowlatency-pae' 'tcl-memchan' 'rumor' 'monkeystudio-dbg' 'massxpert-dbg' 'mailplate' 'libvideo-frequencies-perl' 'libnvtt-bin' 'libhtree-ruby1.8' 'libccaudio2-dev' 'libastro-fits-header-perl' 'libakuma-java' 'hg-fast-export' 'gcc-mingw32' 'cl-contextl' 'libgstreamer-plugins-good1.0-dev' 'libdbusmenu-glib-dev' 'xen-tools' 'libmrpt-scanmatching0.9' 'libbiosig0-dbg' 'tryton-modules-project-plan' 'python-zope.app.folder' 'mdm' 'mbw' 'libseaudit-dev' 'libmono-microsoft-visualbasic10.0-cil' 'libmatchbox1' 'liblablgl-ocaml-dev' 'libgarcon-1-0-dbg' 'libfile-bom-perl' 'libdigidocpp0' 'errno' 'edubuntu-live-welcome' 'graph-includes' 'python-apsw' 'ampache-themes' 'xcb-proto' 'python-redis' 'libjetty-java' 'dhcp3-server' 'gir1.2-gupnpigd-1.0' 'gir1.2-gsf-1' 'docbook-xsl-doc-html' 'wzdftpd-dev' 'wims-extra-all' 'wdg-html-validator' 'scim-im-agent' 'pari-galdata' 'nepomuk-core-ffmpegextractor' 'libghc-edison-api-dev' 'libbitmask1' 'juffed-plugins' 'gwakeonlan' 'openstreetmap-map-icons-scalable' 'libnet-freedb-perl' 'foremost' 'libxext-doc' 'libpspell-dev' 'libhashkit-dev' 'language-pack-gnome-mhr-base' 'ca-certificates' 'libghc6-xhtml-doc' 'virtualbox-dkms' 'tortoisehg' 'shiki-colors-metacity-theme' 'python-pacparser' 'pybtex' 'opencubicplayer-doc' 'libtmail-ruby1.8' 'libloudmouth1-0-dbg' 'libghc-haddock-prof' 'libdatapager-perl' 'gobjc++-mingw-w64' 'liberis-1.3-19' 'open-iscsi-utils' 'rdesktop' 'libcdr-0.0-0' 'ivy' 'linux-backports-modules-cw-3.5-3.2.0-33-generic' 'yafaray-blender2.5-exporter' 'sipdialer' 'python-soaplib' 'python-deap' 'oar-user-mysql' 'ruby-will-paginate' 'libghc-semigroupoid-extras-dev' 'libghc-groupoids-doc' 'libghc-representable-tries-doc' 'libcluttergesture-0.0.2-0' 'libcgi-application-plugin-authorization-perl' 'gnome-raw-thumbnailer' 'libcwnn0' 'dotdee' 'python2.7-examples' 'pulseaudio-module-x11' 'libxdmcp6' 'firefox-locale-nso' 'language-pack-eo-base' 'language-pack-cy-base' 'webgui-l10n-nl' 'python-insighttoolkit3' 'privbind' 'paraview-python' 'libtyxml-ocaml' 'libnet-bonjour-perl' 'libmodule-packaged-perl' 'libjrosetta-java' 'libghc-quickcheck1-prof' 'libdataobjects-ruby' 'libcapi20-dev' 'gpe-julia' 'gfortran-4.7-multilib-arm-linux-gnueabi' 'libfeel++1' 'entangle' 'libwebservice-musicbrainz-perl' 'nettle-bin' 'libxcb-randr0-dbg' 'libsasl2-modules-otp' 'integrit' 'wmnet' 'viewvc-query' 'vamps' 'ssake-examples' 'slingshot' 'python-gtk-gnash' 'libtelepathy-qt4-dbg' 'libtest-mockrandom-perl' 'libdune-istl-doc' 'ircmarkers' 'herwig++-data' 'gnash-dbg' 'fonts-nakula' 'libclthreads2' 'libvigraimpex-dev' 'libreoffice-l10n-xh' 'openais' 'w3m' 'libqt5core5' 'openoffice.org-voikko' 'sword-text-web' 'python-mpi4py-dbg' 'ruby-serialport' 'libipathverbs1' 'libauthen-simple-radius-perl' 'libapache2-mod-log-sql' 'libanet0.1-dbg' 'gwibber-service-sohu' 'gcolor2' 'dolfin-dev' 'checkgmail' 'python3-imaging-sane-dbg' 'libqt4-sql-sqlite' 'libpython3.3-testsuite' 'libdatetime-perl' 'openjdk-6-jre' 'libpst-doc' 'python-flufl.bounce-doc' 'python-bobo' 'node-express' 'netpanzer-dbg' 'python-louie' 'mini-buildd-bld' 'lshw-gtk' 'libsquizz-dev' 'libopenid-ruby' 'libghc-test-framework-th-doc' 'libexporter-declare-perl' 'libdataobjects-postgres-ruby1.9.1' 'fonts-motoya-l-maruberi' 'drbdlinks' 'python-distutils-extra' 'makepatch' 'mailutils-dbg' 'libusb-ocaml-dev' 'libreadosm-dev' 'libspooles2.2' 'libparse-method-signatures-perl' 'libmaven-dependency-tree-java' 'liblog4shib-doc' 'libghc-hjsmin-doc' 'ksudoku' 'juk' 'xjdic' 'crrcsim-doc' 'buffer' 'bogofilter-bdb' 'libmodello-java' 'libreoffice-l10n-za' 'libreoffice-l10n-uz' 'konwert-dev' 'libgcrypt11' 'libgnome-bluetooth11' 'genext2fs' 'libpipeline1' 'libnotmuch2' 'libaqbanking33-dbg' 'earcandy' 'znc-perl' 'supercollider-gedit' 'omniidl-python' 'scratchbox2' 'libroar-dev' 'libmediawiki-dev' 'libghc-reactive-banana-prof' 'libghc-cipher-rc4-prof' 'libsiscone-dev' 'libcpan-inject-perl' 'glam2' 'libelementary-svn-09' 'dvbsnoop' 'bitlbee' 'agenda.app' 'python-egenix-mxstack' 'libunique-1.0-0' 'lm-sensors' 'libpython2.7-testsuite' 'icedtea-netx' 'libmono-corlib4.0-cil' 'xmms2-plugin-asx' 'wzdftpd-mod-tcl' 'libmemchan-tcl-dev' 'statcvs' 'python-pydirector' 'postgresql-autodoc' 'ncc' 'nam' 'libnotmuch3' 'libgrilo-0.2-doc' 'libghc-largeword-doc' 'ftphs-doc' 'libghc-data-memocombinators-prof' 'gprompter' 'gambas3-gb-db-odbc' 'engauge-digitizer' 'mhc' 'libakonadi-notes4' 'libwww-mechanize-formfiller-perl' 'libpython2.7-minimal' 'vile' 'jython' 'spectemu-x11' 'posixtestsuite' 'lua-curl-dev' 'libirrlicht1.7a-dbg' 'libglobus-rls-client-dev' 'libgettext-ocaml-dev' 'python-twisted-news' 'libsub-install-perl' 'libreiser4-dev' 'libcpldfs12' 'linux-image-3.2.0-40-lowlatency' 'linux-image-3.2.0-35-lowlatency' 'linux-image-3.2.0-30-virtual' 'linux-image-3.2.0-25-virtual' 'libkworkspace4abi1' 'mbrola-af1' 'xiphos-data' 'sxiv' 'python-storm-dbg' 'sonata' 'python-django-notification' 'php-horde-routes' 'maliit-framework-doc' 'libomxil-bellagio0-dbg' 'libnkf-perl' 'libhepmcfio4' 'libghc-lambdabot-utils-dev' 'libghc-ghc-mtl-prof' 'libfcgi-ruby1.9.1' 'libexpat-ocaml' 'libedje-doc' 'liblog-loglite-perl' 'libhdf4-0' 'eegdev-plugins-free' 'cl-postoffice' 'libimvirt-perl' 'libflexmock-ruby1.9.1' 'nettle-dbg' 'libgutenprint-doc' 'libgphoto2-l10n' 'libcommons-net-java' 'zathura' 'ubiquity-slideshow-lubuntu' 'trustedqsl' 'queuegraph' 'nap' 'plzip' 'libtemplates-parser-doc' 'petsc-dev' 'libmonogame-cil-dev' 'libhtml-stripscripts-perl' 'libghc-yesod-core-doc' 'libgdamm5.0-doc' 'libboost-wave1.46-dev' 'ncbi-epcr' 'python-zmq' 'indicator-applet-appmenu' 'mcrypt' 'libzlcore0.12' 'courier-mta-ssl' 'libmumps-4.10.0' 'clisp-module-postgresql' 'libkworkspace4abi2' 'libimobiledevice-doc' 'libboost-test1.49-dev' 'libvala-0.12-0-dbg' 'tinywm' 'php-net-dime' 'ngrep' 'libosl1-dbg' 'libghc-persistent-postgresql-prof' 'libfile-libmagic-perl' 'libva-intel-vaapi-driver-dbg' 'hesiod' 'dose-extra' 'clfswm' 'cssc' 'python-psycopg2-dbg' 'python-feedparser' 'libtest-taint-perl' 'openslp-doc' 'debconf-doc' 'willowng-config-gnome' 'libghc6-hsql-odbc-prof' 'libcgi-auth-foaf-ssl-perl' 'akonadi-backend-odbc' 'linux-headers-3.2.0-38-generic' 'libtrain-dev' 'xvattr' 'netpipe-pvm' 'mgm' 'mew' 'ruby-systemu' 'libccss-tools' 'libshibsp5' 'kbibtex' 'goldendict-wordnet' 'ghc-doc' 'qesteidutil' 'libcpldfs20' 'cyrus-replication' 'libqtscript4-uitools' 'glade' 'libaccounts-qt-dev' 'libthreadweaver4' 'stimfit-dbg' 'razorqt-desktop' 'pong2' 'octave-lhapdf' 'mupen64plus-audio-sdl' 'r-cran-genetics' 'libtest-checkdeps-perl' 'libpuma-dev' 'ruby-pango-dbg' 'libmrpt-scanmatching1.0' 'liblog4tango4' 'libjs-cssom' 'libgstreamer-ocaml-dev' 'libghc-project-template-prof' 'libghc-contravariant-prof' 'libextractor-java0' 'libhttp-server-simple-perl' 'python-laditools' 'kexi-web-form-widget' 'mathpiper' 'libgcc-4.7-dev-powerpc-cross' 'libdapl2' 'ruby-amqp' 'openssh-blacklist' 'nas' 'ihungarian' 'recode' 'smartmontools' 'gobjc++-4.6-multilib-arm-linux-gnueabihf' 'doc-rfc-std-proposed' 'xserver-xorg-input-kbd' 'wayv' 'unity-scope-askubuntu' 'sipcalc' 'r-cran-mvtnorm' 'phpunit-mock-object' 'monodoc-gkeyfile-manual' 'libreplaygain-dev' 'libhiredis-dev' 'libmoosex-types-json-perl' 'libconstantine-java-doc' 'tasks-icons' 'lyx-common' 'gem-plugin-tiff' 'blends-doc' 'qt4-default' 'libmono-system-data-linq2.0-cil' 'libpetsc3.1' 'libnux-2.0-0' 'lib64expat1-dev' 'mgp' 'nsscache' 'libjsf-java-doc' 'libplexus-archiver-java' 'libhtml-copy-perl' 'firebird2.5-super' 'embassy-domalign' 'libtelepathy-logger-dev' 'libnspr4-dbg' 'joystick' 'libdlm-dev' 'wodim' 'octave3.2-htmldoc' 'xmlsec1' 'weex' 'stressapptest' 'rasmol-doc' 'pkglab' 'pd-pddp' 'metalink' 'lyskom-elisp-client' 'libvanessa-socket-pipe' 'libtse3-0.3.1c2a' 'libtie-dbi-perl' 'libqt5designercomponents5' 'libpolyorb3' 'liblog4ada2-dev' 'libghc-regex-base-dev' 'libcgi-application-plugin-validaterm-perl' 'libapache-poi-java' 'libcgi-fast-perl' 'libpetsc3.2' 'libnet-ssh-perl' 'kalgebra' 'gnome-control-center-signon' 'libthai0' 'makedev' 'libmrpt-obs0.9' 'mgltools-viewerframework' 'xfonts-cronyx-cp1251-100dpi' 'unity-webapps-pandora-com' 'synfigstudio-dbg' 'python-pyknon' 'packaging-tutorial' 'mbtserver' 'makedic' 'libmarc-record-perl' 'libjs-jquery-colorbox' 'liblchown-perl' 'libplexus-containers1.5-java' 'kexi-sybase-driver' 'jwm' 'id3tool' 'hasciicam' 'gadmin-rsync-dbg' 'ksh' 'gmchess' 'nec' 'libaudit-dev' 'libstdc++6-4.5-dev-armhf-cross' 'python-louis' 'wzdftpd' 'simplesamlphp' 'python-pywt' 'postgres-xc-pltcl' 'pcp-import-sar2pcp' 'nvidia-profiler' 'libplucene-perl' 'libpgm-dev' 'libmpdclient2-dbg' 'libmaven-ejb-plugin-java' 'libghc-pango-prof' 'libghc-libxml-sax-prof' 'printer-driver-escpr' 'doodled' 'tokyocabinet-doc' 'musixtex' 'python-twisted-words' 'libmono-tasklets4.0-cil' 'llvm-3.2-dev' 'dctrl-tools' 'xfsdump' 'python-zope.sendmail' 'nco' 'mgt' 'ruby-dbd-mysql' 'libmath-bigint-gmp-perl' 'gconf-cleaner' 'gcc-mingw-w64-i686' 'coala' 'libnepomukcore4abi1' 'libx32ncurses5' 'gir1.2-secret-1' 'libghc6-convertible-dev' 'libstdc++6-4.5-dev' 'xmldiff-xmlrev' 'ruby-pdf-inspector' 'python3-easygui' 'python-django-genshi' 'ocaml-batteries-included' 'netpipe-tcp' 'libtwin0' 'libopenct1-dev' 'liboggkate-dev' 'liblog-agent-rotate-perl' 'libkiokudb-backend-dbi-perl' 'libghc-configurator-dev' 'libcompfaceg1-dev' 'libboost-signals1.46-dev' 'iptotal' 'gnome-mplayer' 'fcrackzip' 'libbpp-core2' 'libpackage-deprecationmanager-perl' 'libhangul-data' 'language-pack-kde-af-base' 'ssl-cert' 'libghc6-json-dev' 'libghc6-cautious-file-dev' 'wmmon' 'usemod-wiki' 'python-yappy' 'mupen64plus-ui-console' 'libming-dev' 'libjs-jquery-ui-theme-cupertino' 'libjboss-jms-java' 'libglobus-gsi-openssl-error-doc' 'herold' 'python-pylirc' 'fluid-soundfont-gm' 'fasttree' 'drac' 'dis51' 'samba-doc-pdf' 'python3-pyxattr' 'language-pack-gnome-hr-base' 'netpipe-mpich' 'libghc6-tagsoup-prof' 'libutouch-evemu1' 'python-rtai' 'opennebula-tools' 'libzeep-dev' 'libygl4' 'libset-nestedgroups-perl' 'libqof2-backend-qsf' 'libocas-dbg' 'libmkdoc-xml-perl' 'libmaven-common-artifact-filters-java-doc' 'libghc-async-doc' 'libdevel-repl-perl' 'libdca-dev' 'ibus-table-easy' 'html2wml' 'libqt5quick5' 'libgooglepinyin0' 'eruby' 'lttoolbox' 'batv-filter' 'uwsgi-plugins-all' 'shogun-lua-modular' 'weka' 'root-plugin-graf3d-x3d' 'python-pytango-doc' 'pythia8-doc-html' 'live-manual-epub' 'libroot-math-foam5.34' 'libopencore-amrwb-dev' 'libfile-finder-perl' 'libdesktop-agnostic-bin' 'libopencv-core-dev' 'libhash-case-perl' 'libcob1-dev' 'icedtea-6-jre-jamvm' 'gworkspace-apps-wrappers' 'audiofile-tools' 'regina-normal-dev' 'libcephfs-jni-dbg' 'language-pack-kde-kk-base' 'indicator-status-provider-mc5' 'fonts-khmeros' 'libghc6-binary-shared-dev' 'libboost-signals1.48.0' 'drizzle-plugin-mysql-unix-socket-protocol' 'ubuntu-restricted-extras' 'sdlbasic' 'restartd' 'qutecom-data' 'python3-gearman.libgearman' 'nagvis-demos' 'lpe' 'librdf-closure-perl' 'libghc-hspec-expectations-dev' 'libboost-signals1.53.0' 'libadminutil-data' 'lib64gomp1-powerpc-cross' 'heroes-data' 'ethstatus' 'duende' 'dict-freedict-eng-rom' 'language-pack-gnome-sr-base' 'language-pack-gnome-rw-base' 'wapiti' 'pygfarm' 'python-openpyxl' 'libpadre-plugin-spellcheck-perl' 'libopencv-ts-dev' 'libmokoui2-0' 'libevtlog0-dbg' 'klines' 'junkfilter' 'jmeter-ftp' 'skkdic-extra' 'libgeos-c1' 'libzeitgeist0.8-cil' 'libreoffice-l10n-zu' 'dpkg' 'videotrans' 'sponc' 'python-sponge' 'python-nosexcover' 'pperl' 'maatkit' 'paulstretch' 'libmoosex-log-log4perl-perl' 'libjnr-posix-java-doc' 'libhtml-tagfilter-perl' 'libfile-fu-perl' 'libdbusada0.2' 'libhal-storage1' 'fpdns' 'libs3d2' 'calligra-l10n-zhcn' 'libgadu-doc' 'libnepomukutils4' 'rsync' 'flashplugin-installer' 'unity-webapps-yandex-music' 'tiemu-skinedit' 'libgarcon-1-0-dev' 'libcrypt-generatepassword-perl' 'libcharls-dev' 'libccaudio2-doc' 'icewm-lite' 'gnuspool-cupspy' 'fonts-gujr-extra' 'fluid-soundfont-gs' 'coinst' 'bowtie2-examples' 'lzma-dev' 'libdbusmenu-glib-doc' 'openbsd-inetd' 'vino' 'libjline-java' 'antlr-doc' 'mplayer-skin-blue' 'tellico-scripts' 'poedit' 'php-numbers-words' 'neverputt' 'libwpeditor-dev' 'libming-util' 'lua-sql-sqlite3' 'libgettext-ocaml' 'libdaemon-control-perl' 'libbunny-ruby-doc' 'libscalar-string-perl' 'libasm2-java' 'libdevel-globaldestruction-perl' 'xblast-tnt-levels' 'muddleftpd' 'hapolicy' 'esmtp' 'ctapi-dev' 'swig2.0-doc' 'libjs-mochikit' 'python-cmd2' 'ltsp-docs' 'htmldoc-common' 'python-dbus' 'gir1.2-pango-1.0' 'texlive-bibtex-extra' 'libevs4' 'testdrive' 'starvoyager-data' 'so-synth-lv2' 'searchandrescue-common' 'mono-jay' 'librdkit1' 'libifstat-dev' 'vnc4server' 'libghc-edison-api-doc' 'libdebug0' 'kst' 'kamoso' 'francine' 'eot-utils' 'gdal-bin' 'mongodb' 'libfriends0' 'findutils' 'systune' 'libuchardet0' 'libprintsys' 'gpe-edit' 'gcal' 'dahdi-linux' 'ctpl' 'cl-zpb-ttf' 'squid3-dbg' 'pulseaudio-module-x11-dbg' 'libjs-yui3-debug' 'libwayland-dev' 'fonts-cns11643-sung' 'xfonts-thai-nectec' 'monodoc-mono-fuse-manual' 'libzip-ruby1.8' 'librtfcomp-dbg' 'libopencv-videostab-dev' 'libogre-dev' 'libghc-semigroupoid-extras-doc' 'libelementary-data' 'libbox2d0-dbg' 'gpe-othello' 'gobjc-4.4-arm-linux-gnueabihf' 'globus-gram-job-manager-pbs-dbg' 'dvdtape' 'drizzle-plugin-debug' 'libemail-date-format-perl' 'libdbus-java' 'python3-pyqt4' 'python-cjson' 'postfix-pcre' 'libxcb-randr0-dev' 'libneon27-gnutls-dbg' 'mousetweaks' 'libauthen-sasl-perl' 'libghc6-happstack-state-dev' 'libmumps-4.9.2' 'mplayer-fonts' 'r-cran-matrix' 'python-pyside.qthelp' 'python-zsi' 'libtelepathy-qt4-dev' 'librdsldap-dev' 'libpam-abl' 'libmaven-dependency-tree-java-doc' 'liblas-bin' 'libhtml-wikiconverter-markdown-perl' 'libghc-recaptcha-dev' 'libafpclient-dev' 'python-clint' 'lazarus-ide' 'gnash-dev' 'ttf-kiloji' 'debichem-abinitio' 'libck-connector-dev' 'camlp4' 'aptdaemon' 'lcl-qt4-0.9.30.2' 'debgtd' 'x2x' 'tudu' 'slapos-client' 'squeak-plugins-scratch' 'tcl-signal' 'python-qpid-extras-qmf' 'libvalidatable-ruby1.9.1' 'libtest-exit-perl' 'libmrpt-obs1.0' 'libghc-comonad-transformers-dev' 'libexif-gtk-dev' 'libcufft5.0' 'libcpptest-dev' 'libbio-mage-utils-perl' 'libauth-yubikey-webclient-perl' 'libanet0.1-dev' 'jalview' 'ibus-input-pad' 'highlight-common' 'fp-units-rtl-2.6.0' 'firmware-addon-dell' 'libchamplain-gtk-0.12-0' 'athcool' 'nvidia-experimental-304-dev' 'pulseaudio-module-jack-dbg' 'libwacom-dev' 'libvigraimpex-doc' 'camlp5' 'postal' 'python-selinux' 'llvm-3.1-runtime' 'libprojectm-dev' 'libnvtt-dev' 'libghc-readargs-prof' 'libghc-cabal-file-th-prof' 'libdssi-ocaml-dev' 'libqofexpensesobjects1' 'gourmet' 'gnome-devel' 'gcap' 'libfreehep-graphicsio-java' 'dolfin-doc' 'classmate-tools' 'anyremote-doc' 'fglrx-dev' 'postgresql-9.1-dbg' 'wine1.4-dbg' 'uwsgi-extra' 'tilelite' 'spatialite-gui-dbg' 'quantlib-examples' 'python-zope.app.appsetup' 'python-flufl.password-doc' 'libmerb-assets-ruby' 'liblwjgl-java-jni' 'liblua5.1-lpeg2' 'libcss-perl' 'lcl-qt4-0.9.30.4' 'muon-notifier' 'kde-telepathy-data' 'gir1.2-urfkill-glib0' 'geoclue-plazes' 'eq10q' 'emdebian-grip-server' 'elib' 'drbl' 'hello-debhelper' 'dmidecode-dbg' 'libpython2.7' 'libpadre-plugin-html-perl' 'libaqbanking33-dev' 'wp2x' 'thepeg' 'python-yapsy' 'lustre-utils' 'uim-skk' 'libsvn-web-perl' 'librose-uri-perl' 'libreadosm-doc' 'liblua5.1-soap0' 'lua-rex-pcre-dev' 'libjs-wax' 'libglobus-gsi-callback-dev' 'libghc-midi-dev' 'libdbix-class-introspectablem2m-perl' 'libalgorithm-checkdigits-perl' 'kupfer' 'banshee-extension-duplicatesongdetector' 'thunderbird-locale-es-ar' 'vlan' 'libvala-0.16-dev' 'libsuitesparse-dbg' 'libgail-3-0' 'gnome-system-monitor' 'lsb' 'obm' 'avant-window-navigator-data' 'unity-webapps-googleplus' 'unison2.32.52' 'svgalib-bin' 'slimrat-nox' 'python-pycallgraph' 'openclipart2-libreoffice' 'r-cran-rocr' 'mlv-smile' 'libglobus-gssapi-error-dev' 'libghc-sha-prof' 'libghc-language-c-dev' 'libfile-find-object-rule-perl' 'libaosd-dev' 'keepass2' 'kde-wallpapers-default' 'python-mygpoclient' 'dir2ogg' 'bzr-builddeb' 'libversion-requirements-perl' 'kvm' 'maas-enlist' 'libhttp-proxy-perl' 'libopenhpi-dev' 'libgmime-2.6-0' 'language-pack-gnome-zh-hant-base' 'landscape-client-ui' 'lpr' 'bacula-sd-sqlite3' 'ubuntu-packaging-guide-html-es' 'typespeed' 'scribes' 'python-couchdbkit' 'ns2' 'ssake' 'libverilog-perl' 'librime-data-wubi' 'libpcl1-dev' 'librouter-simple-perl' 'libghc-x11-xft-prof' 'ruby-barby' 'lcmaps-plugins-basic-localaccount' 'kinput2-canna' 'gosa-plugin-systems' 'geany-plugin-gproject' 'eqonomize' 'plymouth-theme-edubuntu' 'bochs-wx' 'banshee-extension-karaoke' 'system-config-printer-common' 'libcephfs1-dbg' 'btrfs-tools' 'linux-headers-3.2.0-33-lowlatency-pae' 'sword-text-wlc' 'squid-prefetch' 'slurm-llnl-basic-plugins' 'ruby-rubyforge' 'openjdk-6-jre-lib' 'ns3' 'madbomber-data' 'libglobus-rls-client-doc' 'libghc-data-accessor-dev' 'libeventmachine-ruby1.8' 'libbisho-common0-dbg' 'oolite' 'circuslinux-data' 'python-mocker' 'nettle-dev' 'manpages' 'libsasl2-modules-ldap' 'libidl0' 'dictionaries-common-dev' 'libghc6-diff-dev' 'resample' 'rabbitsign' 'python-async' 'plasma-runner-telepathy-contact-dbg' 'pd-flite' 'mathopd' 'maki-plugins' 'libomxil-bellagio0-components-vorbis' 'libkohana3.2-php' 'libghc-network-protocol-xmpp-prof' 'libghc-lambdabot-utils-doc' 'libfile-find-object-perl' 'libaudiomask-dev' 'kio-mtp' 'gnu-smalltalk-browser' 'gnome-online-accounts' 'xemacs21-basesupport' 'dcmtk-www' 'command-runner-applet' 'libcojets2-dev' 'bygfoot-data' 'libgtkdatabox-0.9.1-1' 'ballz' 'libaqsis1' 'ruby-shoulda-context' 'libjavascriptcoregtk-1.0-dev' 'libfftw3-long3' 'dnsmasq-utils' 'cmake-curses-gui' 'libplumb2' 'linux-image-extra-3.5.0-23-generic' 'libghc6-haxml-dev' 'linux-backports-modules-cw-3.4-3.2.0-31-generic' 'xpmutils' 'r-cran-polspline' 'open-axiom-test' 'libnet-stomp-perl' 'libmlt++-dev' 'libghc-tokyocabinet-prof' 'libeina-dbg' 'ruby-cmdparse' 'kgb-bot' 'jbibtex-bin' 'fusedav' 'ferm' 'elektra-bin' 'libhdf5-7' 'libflexmock-ruby1.8' 'libgstreamer-plugins-good1.0-0' 'language-pack-or-base' 'libxdamage-dev' 'anacron' 'unison2.27.57' 'sheepdog' 'sabily-themes' 'python-pyepl-common' 'python-ncrypt' 'opendnssec-signer' 'libxml-rsslite-perl' 'libucl-dev' 'libtzinfo-ruby1.8' 'libopengl-ruby' 'libghc-monadcryptorandom-dev' 'libdbd-ldap-perl' 'jack-rack' 'geiser' 'fp-units-base-2.6.0' 'fonts-komatuna' 'flvmeta' 'libecore-imf1' 'python-authres' 'dict-freedict-eng-spa' 'moc' 'libclam1.4' 'chicken-bin' 'ann-tools' 'wngerman' 'libreoffice-style-crystal' 'xneur-dbg' 'r-cran-rmpi' 'python-ucltip' 'libqtweetlib-dev' 'libnet-cidr-lite-perl' 'libjs-obrowser' 'libsystem-command-perl' 'libapron-ocaml-dev' 'libsublime-dev' 'jmeter-apidoc' 'infinoted' 'gnokii-smsd-mysql' 'libjfugue-java' 'debsig-verify' 'cobalt-panel-utils' 'unity-lens-friends' 'bcfg2' 'libcommons-dbcp-java' 'libaccounts-qt-doc' 'libedata-cal1.2-dev' 'ceph-common-dbg' 'libace-inet-6.0.1' 'libboost-graph1.46.1' 'wide-dhcpv6-client' 'ubuntu-defaults-zh-cn' 'sweethome3d-furniture-editor' 'ruby-lapack-dbg' 'tvtime' 'liquidsoap-plugin-schroedinger' 'librostlab-blast0' 'libpuma-doc' 'libpam-pkcs11' 'libghc-hsp-dev' 'libfam0c102' 'libdkim1d' 'libboost-math-dev' 'libbenchmark-progressbar-perl' 'ld10k1' 'libindi0b' 'gpe-question' 'jackd2-firewire' 'cwcp' 'cl-pubmed' 'libbg1' 'xmountains' 'sugar-sliderpuzzle-activity' 'python-fibranet' 'liblocales-perl' 'libgoffice-0.10-10-common' 'libghc-hsql-prof' 'libfortune-perl' 'libdir-purge-perl' 'libbdd0c2' 'tagcoll' 'db4.7-util' 'asterisk-prompt-it-menardi-alaw' 'wamerican-insane' 'unity-lens-music' 'python-qt4-dbg' 'liboverlay-scrollbar3-0.2-dev' 'libxcb-xinerama0' 'libsaclm3-dev' 'libnspr4-dev' 'libxml2' 'libghc6-polyparse-prof' 'fossology-web-single' 'torque-client-x11' 'python-smbpasswd' 'phpunit-selenium' 'mpb' 'libpocosqlite9' 'libduo-dev' 'libdpkg-ruby1.9.1' 'libcgi-application-server-perl' 'libace-inet-6.0.3' 'grub-ipxe' 'gir1.2-ges-0.10' 'libifd-cyberjack6' 'libmldbm-perl' 'binfmtc' 'autofs-hesiod' 'anon-proxy' 'libtelepathy-logger-doc' 'libghc6-colour-prof' 'vite' 'synfig' 'libsoundgen-dbg' 'libpolyml-dev' 'libhkl-dbg' 'libhawtjni-runtime-java' 'libghc-warp-prof' 'libghc-regex-base-doc' 'libgdict-common' 'libchemistry-openbabel-perl' 'libgettext-commons-java' 'libtie-shadowhash-perl' 'gcstar' 'gamazons' 'mpc' 'xemacs21-mule' 'libhogweed2' 'libgtkmm-2.4-1c2a' 'libcanberra-gtk0' 'gambas2-gb-db-mysql' 'libbeidlib3-dev' 'yhsm-validation-server' 'xmms2-plugin-cue' 'python3-mpmath' 'pcaputils' 'python-gnupginterface' 'libtioga-ruby-doc' 'libthread-pool-simple-perl' 'libnet-ntp-perl' 'konsole-dbg' 'glabels-data' 'gigedit' 'gamt' 'python-rdkit' 'ctorrent' 'mpd' 'usb-modeswitch-data' 'python-repoze.lru' 'nvidia-settings-304' 'libmono-system-drawing-design4.0-cil' 'libavformat-extra-53' 'twinkle' 'linux-headers-lbm-3.2.0-23-generic-pae' 'libimobiledevice2' 'mgltools-vision' 'elasticache' 'tightvncserver' 'tclvfs' 'smbnetfs' 'z88' 'libxml-easyobj-perl' 'libxml-namespacefactory-perl' 'libjdo-api-java' 'libics0' 'libghc-crypto-api-dev' 'libinotifytools0' 'golang-mode' 'python-expeyes' 'xemacs21-mule-canna-wnn' 'libboost-signals1.49.0' 'nvidia-settings-310' 'llvm-3.2-doc' 'gtk-3-examples' 'cinder-volume' 'libxerces2-java' 'python-melangeclient' 'sauerbraten-data' 'xymon' 'wiipdf' 'r-cran-misc3d' 'qtdeclarative5-window-plugin' 'pysycache-move-animals' 'mlton-runtime-native' 'mingw32' 'libsundials-ida2' 'libpcre++0' 'libnsbmp0' 'liblwipv6-dev' 'ruby-glib2' 'jmdlx' 'griffith' 'fonts-kanjistrokeorders' 'libfsplib0' 'drupal6-mod-imagefield' 'nkf' 'clisp-dev' 'balsa' 'axel-kapt' 'libdesktop-notify-perl' 'purifyeps' 'libimobiledevice3' 'gir1.2-rsvg-2.0' 'libghc6-split-prof' 'libghc6-convertible-doc' 'linux-backports-modules-cw-3.3-3.2.0-30-generic' 'linux-backports-modules-cw-3.3-3.2.0-25-generic' 'xfce4-systemload-plugin' 'zeitgeist-fts-extension' 'mmv' 'liboxford-calendar-perl' 'libgnustep-base1.24-dbg' 'libghc-configurator-doc' 'libdbix-class-dynamicdefault-perl' 'key-mon' 'inventor-clients' 'reglookup' 'ekg2-scripting-python' 'cm-super' 'libstdc++6-4.5-doc' 'libsignon-extension1' 'libxapian22' 'libghc6-json-doc' 'libghc6-cautious-file-doc' 'doc-rfc-fyi-bcp' 'libpurelibc-dev' 'libpoe-filter-http-parser-perl' 'libocas-dev' 'haskell-agda-doc' 'libcarp-datum-perl' 'libasync-http-client-java' 'gnunet-fuse' 'elki' 'easy-rsa' 'djvulibre-bin' 'gnat-gps' 'python-egenix-mxqueue-doc' 'ffmpeg' 'wesnoth-all' 'linux-headers-3.2.0-23-generic-pae' 'tralics' 'tkrat' 'taglog' 'sword-text-sparv' 'root-plugin-math-fftw3' 'qtdeclarative5-examples' 'python-remctl' 'octave-htmldoc' 'opencl-headers' 'ocamlgraph-editor' 'mudita24' 'mon' 'libsombok-dev' 'libnb-java5-java' 'libhttpunit-java' 'libghc-io-choice-dev' 'libclass-gomor-perl' 'libcgi-extratags-perl' 'gant' 'dc3dd' 'atanks' 'libmxml1' 'nis' 'libedata-book-1.2-11' 'volumeicon-alsa' 'thunar-media-tags-plugin' 'scilab-include' 'regina-normal-doc' 'pytone' 'postgres-xc-plperl' 'plasmate' 'quickly-ubuntu-template' 'net-acct' 'linux-headers-lowlatency-pae' 'libomxil-bellagio0-components-base' 'kdemultimedia' 'grabcd-rip' 'gpe-todo' 'gnome-sharp2' 'php-http-webdav-server' 'enca' 'zlib1g-dbg' 'unity-common' 'ltp' 'libghc6-binary-shared-doc' 'libglom-1.20-dev' 'libpython3.2' 'gwibber-service-digg' 'zope-common' 'mira-doc' 'libkparts-perl' 'libghc-maybet-prof' 'libghc-hspec-expectations-doc' 'liblogforwarderutils2' 'libtest-exception-lessclever-perl' 'globus-gsi-sysconfig-dbg' 'libticalcs2-7' 'filtergen' 'ez-ipupdate' 'eiskaltdcpp-qt-mini' 'tkpng' 'nbd-server' 'libnl-genl-3-dev' 'musetup-qt' 'uqm-music' 'yorick-hdf5' 'xfig-libs' 'smuxi-frontend-stfl' 'rdkit-data' 'python-byteplay' 'purity-off' 'pal' 'mrb' 'mixxx-data' 'mediawiki-extensions' 'lldpad-dev' 'libwww-mediawiki-client-perl' 'libsquizz' 'libqt5graphicaleffects5' 'libpolylib64-8' 'libkohana3.1-mod-image-php' 'kannel' 'jlint' 'gtk2-engines-magicchicken' 'ufraw' 'pcb' 'alleyoop' 'testng' 'libpython3.3' 'libbctsp-java-doc' 'linux-image-extra-3.8.0-6-generic' 'lusca-common' 'libbind9-80' 'broadcom-sta-common' 'quickml' 'python-regex' 'pygopherd' 'myproxy-dbg' 'perlprimer' 'massxpert-doc' 'liburi-query-perl' 'liblensfun-dev' 'libkipi-dbg' 'libjts-java-doc' 'libdatetime-format-natural-perl' 'libconvert-binary-c-perl' 'xubuntu-artwork' 'globus-gss-assist-progs' 'qlandkartegt' 'lib64gfortran-4.7-dev-powerpc-cross' 'flpsed' 'fcitx-table-thai' 'libzlui-gtk' 'libfaifa0' 'doxyqml' 'dots' 'digitools' 'dicomnifti' 'thunderbird-locale-es-es' 'python-crypto-dbg' 'libdbd-csv-perl' 'libuuid-perl' 'localechooser-data' 'umview-mod-umfusefat' 'tegaki-zinnia-traditional-chinese' 'tango-starter' 'pan' 'liburfkill-glib-dev' 'librhash0-dbg' 'libnet-smtp-server-perl' 'libghc-fgl-dev' 'kstars-data' 'rygel-playbin' 'libgmt4' 'exabgp' 'dpsyco-patch' 'cycfx2prog' 'ac100-tarball-installer' 'gir1.2-colorhug-1.0' 'libedata-book-1.2-15' 'dh-translations' 'bacula-director-pgsql-dbg' 'libghc6-terminfo-prof' 'xdesktopwaves' 'xcal' 'sslstrip' 'python-zope.pagetemplate' 'octave-financial' 'namazu2-common' 'libunicode-linebreak-perl' 'libkohana3.1-mod-orm-php' 'libghc-boomerang-prof' 'libcanna1g-dev' 'libboo-cil-dev' 'telnetd' 'libcrystalhd3' 'daemonlogger' 'liboping0' 'libsigc++-1.2-5c2' 'libt1-dev' 'libmono-sqlite2.0-cil' 'libmagickcore-dev' 'libexcalibur-logkit-java' 'language-pack-gnome-ka-base' 'language-pack-gnome-gu-base' 'freeradius-utils' 'firefox-gnome-support' 'ruby-net-irc' 'recoll' 'python-pyscard' 'poster' 'pdfresurrect' 'libsbml5-octave' 'libpulse-ocaml' 'libhamlib2++c2' 'libgpgme-ruby1.8' 'libestraier-java' 'libapp-daemon-perl' 'libiconv-hook1' 'fspanel' 'libpt-dbg' 'eiskaltdcpp-scripts' 'dict-freedict-eng-rus' 'chiark-backup' 'libgirepository-1.0-1' 'djvulibre-dbg' 'libghc6-network-prof' 'deal.ii-examples' 'python-iniparse' 'libsaml2-dev' 'librtfcomp-dev' 'libmrss0-dbg' 'libembryo1' 'libdesktop-agnostic-dev' 'libclaw-dev' 'libacr38ucontrol-dev' 'libakonadi-dev' 'gm-notify' 'coolkey' 'chemical-mime-data' 'monkeysphere' 'python-django' 'libsaamf3' 'libneon27-gnutls-dev' 'language-pack-kde-is-base' 'gstreamer1.0-plugins-bad-dbg' 'libdee-1.0-4' 'libmumps-seq-4.9.2' 'yhsm-docs' 'pfsglview' 'par' 'node-libravatar' 'ngircd' 'lubuntu-nexus7-extra-files' 'libssreflect-ocaml-dev' 'libooolib-perl' 'libmultibitnums-ruby' 'lua-wsapi' 'libhe5-hdfeos-dev' 'libghc-maths-dev' 'libghc-edison-api-prof' 'libqtversitorganizer1' 'libaws2.10.2-dev' 'libaiksaurusgtk-1.2-dev' 'libgofigure0' 'globus-gass-server-ez-progs' 'qsynth' 'nmh' 'ruby-mixlib-config' 'libgraflib1-dev' 'lxc' 'ubuntu-minimal' 'openbox' 'libmaven-plugin-tools-java' 'libao4' 'language-pack-gnome-tk-base' 'language-pack-gnome-ru-base' 'gir1.2-colord-1.0' 'gir1.2-notify-0.7' 'wget' 'cups' 'libbind9-90' 'libtao-xtresource-2.0.1' 'libghc6-happstack-state-doc' 'liboce-ocaf-lite1' 'vdr-plugin-sudoku' 'uptimed' 'universalindentgui' 'ssldump' 'root-plugin-sql-mysql' 'python-enthoughtbase' 'openmcdf' 'ofed-docs' 'muroard-dbg' 'lua-zlib' 'libtelepathy-qt4-doc' 'libncp-dev' 'libghc-recaptcha-doc' 'libghc-haskelldb-hdbc-sqlite3-dev' 'libfelix-bundlerepository-java-doc' 'libcgi-application-plugin-stream-perl' 'libcf0' 'gnash-doc' 'festival-hi' 'mp3info' 'cupt' 'ahcpd' '3depict' 'openoffice.org-thesaurus-en-au' 'libgl1-mesa-dri-dbg' 'libmrpt-graphslam0.9' 'libcherokee-server0-dev' 'xfce4-eyes-plugin' 'python3-flufl.bounce' 'python-mpi4py-doc' 'libxpa1' 'libwtdbo33' 'libvips-dev' 'libpdf-api2-simple-perl' 'libwoodstox-java' 'libghc-comonad-transformers-doc' 'libfile-sync-perl' 'libcpptest-doc' 'libdata-stag-perl' 'libkwwidgets1-dev' 'jets3t' 'intel2gas' 'libsdl-pango1' 'liboce-ocaf-lite2' 'dirvish' 'libgnatprj4.6' 'crosshurd' 'asterisk-core-sounds-en' 'python-gpgme-dbg' 'libsaxonb-java' 'libappindicator0.1-cil' 'language-pack-kde-vi-base' 'erlang-dev' 'libpils2' 'libwtdbo29' 'libm4ri-0.0.20080521' 'libghc6-haddock-prof' 'netams-dbg' 'wine1.4-dev' 'selinux-policy-dummy' 'python-doit-doc' 'pike7.8-image' 'quickly' 'licq-plugin-kde' 'libmapnik2-2.0' 'libghc-silently-prof' 'libgfortran3-armel-cross' 'libdbix-class-timestamp-perl' 'libconfig-mvp-reader-ini-perl' 'libactiveldap-ruby-doc' 'gyrus' 'gkrellmitime' 'fonts-lohit-taml' 'customdeb' 'biomaj' 'aptitude-doc-cs' 'git-el' 'curl' 'java-package' 'nml' 'libuser1' 'libnbio-dev' 'mailutils-doc' 'libghc-comonad-prof' 'libtbb2-dbg' 'libdata-showtable-perl' 'libcpan-mini-perl' 'libbpp-seq-dev' 'libxml-dom-xpath-perl' 'libantlr-maven-plugin-java' 'mpich2' 'gpe-conf' 'gnurobots' 'openbmap-logger' 'ctwm' 'ceilometer-agent-compute' 'libsuitesparse-dev' 'libwmf-bin' 'libgudev-1.0-0' 'python3-lxml' 'libgrinvin-core-java-doc' 'ltp-dev' 'libutouch-frame1' 'swift-plugin-s3' 'mutt-patched' 'lwm' 'lxappearance' 'lightyears' 'libsvg-graph-ruby1.8' 'libplayerdrivers3.0' 'libglobus-gsi-callback-doc' 'libghc-midi-doc' 'libptscotch-5.1' 'leksah-server' 'libnetcdfc++4' 'inetutils-ftp' 'csync-owncloud' 'paw' 'python-imaging-compat' 'monodoc-http' 'libio-socket-inet6-perl' 'vc-dev' 'slashem' 'python-zope.minmax' 'qrencode' 'mooproxy' 'lisaac' 'libtumbler-1-0' 'libpoe-filter-ircd-perl' 'ofx' 'libglobus-gssapi-error-doc' 'libghc-language-c-doc' 'libplexus-containers-java-doc' 'libacr38u' 'ttf-mscorefonts-installer' 'edict' 'libopencc-dbg' 'libgegl-0.0-dev' 'libbonobo2-0' 'pax' 'libsamplerate0' 'virtualbox-ose-source' 'os8' 'xscavenger' 'psensor-server' 'planet.rb' 'oaklisp-doc' 'libpoppler-cil' 'libmodello-maven-plugin-java' 'libicapapi-dev' 'libdist-zilla-plugins-cjm-perl' 'roarplaylistd' 'kde-style-polyester' 'isomd5sum' 'libsugarext0' 'galleta' 'libwxsvg0' 'bible-kjv' 'asterisk-core-sounds-es' 'emil' 'xmonad' 'trac-ja-resource' 'texmacs-common' 'syncmaildir' 'ruby-whitewash' 'redmine-plugin-botsfilter' 'ocsync' 'pcp' 'liblas-dev' 'libgsm0710-0' 'libghc-data-accessor-doc' 'ledger' 'lskat' 'kcheckers' 'flvstreamer' 'fcode-utils' 'cl-rsm-mod' 'aptitude-doc-fi' 'python-werkzeug' 'python-twisted' 'libglade2-0' 'libart2.0-cil-dev' 'libkmediaplayer4' 'aptitude-doc-en' 'libghc6-diff-doc' 'xul-ext-https-finder' 'ruby-pkg-config' 'pear-symfony-project-channel' 'libpolybori-groebner-dev' 'pdl' 'libmozjs185-dev' 'libcatalyst-view-excel-template-plus-perl' 'gir1.2-emerillon-0.2' 'mpack' 'libeina-dev' 'barrydesktop-dbg' 'libc-client2007e' 'qtchooser' 'libdrm-nouveau2' 'emacs23-common' 'libnet-dns-perl' 'libcomplearn1' 'paml-doc' 'xemacs21-mulesupport' 'vm-bonus-el' 'ubuntu-benchmark-tools' 'r-cran-slam' 'qarecord' 'libzorpll3.9-1-memtrace' 'libqxmpp-dev' 'libopenrawgnome-dev' 'libmthca1' 'libmatrixssl1.8-dev' 'liblocale-currency-format-perl' 'libcamltemplate-ocaml-dev' 'kubuntu-netbook' 'ruby-soprano' 'konversation-dbg' 'gcin' 'ttf-paktype' 'python-psycopg2-doc' 'libmagick++-dev' 'nullmailer' 'xcfa' 'python-zope.app.securitypolicy' 'libtest-data-perl' 'proj-data' 'libmath-prime-util-perl' 'libghc-yesod-dev' 'libghc-pastis-dev' 'libghc-parseargs-prof' 'libghc-monadcryptorandom-doc' 'libghc-hunit-prof' 'libkdgantt2' 'ifinnish-small' 'ttf-umeplus' 'cvsdelta' 'mozilla-plugin-gnash' 'asterisk-core-sounds-fr' 'libkcal4' 'afnix' 'libsvn-dev' 'account-plugin-windows-live' 'libghc6-tar-dev' 'out-of-order' 'ztex-bmp' 'vlc-plugin-jack' 'tcosmonitor-common' 'ruby-arel' 'remuco-amarok' 'ocsinventory-agent' 'monodoc-zeitgeist-manual' 'libzipios++-dev' 'libwv2-4' 'libqtrpc2-dev' 'kdenetwork-filesharing' 'dsdp' 'dozzaqueux-data' 'gplcver' 'human-icon-theme' 'python3-pykde4' 'hunspell-eu-es' 'cloop-utils' 'libghc6-ghc-mtl-prof' 'guile-1.6-dev' 'vflib3-bin' 'ruby-ronn' 'red5-server' 'python-zope.browserpage' 'python-guppy-lib' 'ptscotch' 'octave-nnet' 'libsilo-bin' 'librygel-renderer-gst-2.0-1' 'liblastfm-dbg' 'libjsf-impl-java' 'libghc-hsp-doc' 'libgetopt-java-doc' 'ruby-gdk-pixbuf2-dbg' 'libcanlock2' 'kicad' 'plasma-wallpapers-addons' 'itrans-fonts' 'ipopd' 'graphthing' 'gnome-media-profiles' 'debirf' 'aptitude-doc-es' 'python-qt4-dev' 'libxml2-dbg' 'libpoppler-glib-dev' 'openoffice.org-hyphenation' 'glance-registry' 'gcc-4.6-multilib-arm-linux-gnueabihf' 'fatrat-unpack' 'stellarium-data' 'linuxlogo' 'libsequence-library-java' 'ruby-rhash' 'kde-telepathy-send-file' 'python3-simplegeneric' 'debian-reference-common' 'python-problem-report' 'python-openvswitch' 'tidy-proxy' 'libostyle1c2' 'libboost-python1.49-dev' 'language-pack-ga-base' 'dbtoepub' 'libqtcore4-perl' 'libnode-uglify' 'libghc6-zip-archive-prof' 'intel-microcode' 'ocamlweb' 'python-nevow' 'nqc' 'node-mirror' 'link-grammar' 'libsoundgen-dev' 'libqtgstreamer-dev' 'libqmfengine1-dev' 'libpolybori-0.8-3' 'lua-cgi' 'libhkl-dev' 'libgportugol-dev' 'indicator-china-weather' 'gosa-help-de' 'getdp-sparskit' 'fcitx-table-zhengma' 'dict-freedict-eng-swa' 'libmath-round-perl' 'libtext-formattable-perl' 'aumix-common' 'dhcpcd' 'libgck-1-dev' 'language-pack-crh-base' 'evince' 'libqthreads-12' 'xserver-xorg-video-nouveau-lts-quantal' 'zaz-dbg' 'wesnoth-1.10-tools' 'spout' 'sm-archive' 'pen' 'olpc-xo1-hw' 'matlab-support-dev' 'libx11-guitest-perl' 'libtest-most-perl' 'libobject-tiny-perl' 'libmeschach-dev' 'libglib2-ruby1.8-dbg' 'ruby-extlib' 'libdc5' 'chronicle' 'openbve' 'bluemindo' 'libtaoframework-sdl1.2-cil' 'libx32z1-dev' 'libbctsp-java-gcj' 'ttf-arphic-uming' 'python-wxgtk2.6-dbg' 'lazarus-src-0.9.30.2' 'kubuntu-docs' 'xbuffy' 'python-relatorio' 'prayer-templates-src' 'php-horde-listheaders' 'mirrormagic' 'mdf2iso' 'librudeconfig3' 'lua-cosmo' 'libghc-monoid-extras-dev' 'libannotation-indexer-java-doc' 'knotes' 'expect-lite' 'emma' 'csv2latex' 'crossfire-server' 'aptitude-doc-fr' 'libnokogiri-ruby' 'freeradius-dbg' 'yardradius' 'qt3-apps-dev' 'libobjc2-dbg' 'mpdscribble-dbg' 'libsidplayfp-dbg' 'libxerces-c-dev' 'libglib2-ruby1.8' 'libghc-crypto-api-doc' 'libauthen-oath-perl' 'junior-games-gl' 'gnome-panel-dbg' 'libnfsidmap-dev' 'pgf' 'libswscale-extra-2' 'linux-image-extra-3.8.0-11-generic' 'liblaunchpad-integration-3.0-dev' 'when' 'webauth-utils' 'tupi' 'python3-pyshp' 'python3-serial' 'php-crypt-gpg' 'libserialport-ruby1.8' 'libqxrunner-dev' 'libnb-org-openide-modules-java' 'lua-apr' 'libghc-uri-prof' 'libfreexl1' 'lazarus-src-0.9.30.4' 'gnome-clocks' 'geany-plugin-insertnum' 'fatrat-dev' 'epdfview' 'dict-freedict-swe-eng' 'dict-freedict-eng-swe' 'clisp-doc' 'python3-imaging-tk' 'linux-source' 'libpam-cap' 'keymapper' 'hp2xx' 'libghc6-hslogger-prof' 'libgradle-antlr-java' 'mbrola-de4' 'wmnut' 'sendip' 'pfm' 'pdns-server-dbg' 'octave-geometry' 'npm' 'libqt5v8-5-dbg' 'libemail-outlook-message-perl' 'iotop' 'gnome-split' 'freevo' 'fortunes-es-off' 'efax-gtk' 'conntrackd' 'ircd-ratbox' 'bsign' 'aptitude-doc-ja' 'mtr' 'libunity-protocol-private0' 'libsasl2-modules-sql' 'cmigrep' 'icomlib1-dev' 'linux-source-3.2.0' 'linux-headers-lbm-3.2.0-40-virtual' 'linux-headers-lbm-3.2.0-35-virtual' 'linux-headers-3.5.0-25-generic' 'mbrola-de5' 'php-horde-xml-wbxml' 'mgetty-docs' 'libpirl-java-doc' 'libobject-realize-later-perl' 'libghc-vector-algorithms-prof' 'ruby-facets-doc' 'liblo10k1-0' 'icewm-themes' 'rubberband-cli' 'python-gnuplot' 'gallery' 'ftp-upload' 'electricsheep' 'liby-dev' 'libbluetooth3' 'libfile-desktopentry-perl' 'python-carquinyol-0.84' 'gobjc++-4.4-multilib' 'linux-image-3.2.0-36-generic-pae' 'mbrola-de6' 'xfig-doc' 'wulf2html' 'ubuntustudio-lightdm-theme' 'shinken-discovery' 'python3-ws4py' 'python-configshell' 'libxray-absorption-perl' 'libtruth-java' 'libopensrs-perl' 'libghc-io-choice-doc' 'libbasicplayer-java' 'kmflcomp' 'kamailio-redis-modules' 'julius-voxforge' 'libjifty-perl' 'libhandoff0' 'openstreetmap-map-icons-square' 'gedit-valencia-plugin' 'geda' 'elinks-doc' 'eb-utils' 'dict-freedict-nld-deu' 'ruby-switch' 'python3-sqlalchemy' 'libpoppler-dev' 'zlib1g-dev' 'bogofilter' 'python-carquinyol-0.90' 'libghc6-uniplate-prof' 'mbrola-de7' 'xbmc' 'pidgin-latex' 'pia' 'librplay3-dev' 'jenkins-task-reactor-doc' 'gtk-recordmydesktop' 'libdapclient3' 'console-data' 'claws-mail-bsfilter-plugin' 'xapm' 'mpage' 'docbook-dsssl-doc' 'python-carquinyol-0.86' 'python-dmedia' 'xserver-xorg-video-fbdev-lts-quantal' 'shapetools-tutorial' 'mpglen' 'vo-amrwbenc-dbg' 'tuxguitar-alsa' 'python-pyode-doc' 'python-brian' 'php-horde-kolab-format' 'photoml' 'pev' 'pax-utils' 'mtd-utils' 'libobexftp0-dev' 'libmaliit0' 'libghc-reactive-banana-dev' 'libsmpeg-dev' 'libcommons-daemon-java' 'haskell-doc' 'xaos' 'wicd' 'multiarch-support' 'gnome-games-data' 'torque-client' 'libvarnishapi-dev' 'librtcom-telepathy-glib-dev' 'libldns-dev' 'libcomedi-dev' 'librubberband2' 'libkipi-dev' 'dpkg-dev-el' 'cvsd' 'lesstif2' 'libstemmer0d' 'sl-modem-source' 'haveged' 'python-lockfile' 'libmono-codecontracts4.0-cil' 'hello' 'gir1.2-rest-0.7' 'libgksu-polkit0' 'linux-headers-3.2.0-37-lowlatency' 'yorick-yeti-fftw' 'uwsgi-plugin-nagios' 'skanlite-dbg' 'qv4l2' 'python-carquinyol-0.88' 'nsd' 'r-other-mott-happy' 'witty-examples' 'libsrecord-dev' 'libusbredirparser1' 'ruby-odbc-dbg' 'liblog4cplus-1.0-4' 'libusageenvironment0' 'liblensfun-doc' 'libghc-random-shuffle-prof' 'libbunny-ruby1.9.1' 'libamazonec2-ruby1.8' 'latex-make' 'kannel-extras' 'parallel' 'lyx' 'glark' 'gimp-resynthesizer' 'gqview-dbg' 'festvox-kallpc16k' 'citadel-suite' 'libfltk-images1.3' 'funny-manpages' 'libgtksourceview-3.0-common' 'libdebian-installer4-dev' 'dput' 'bzr-doc' 'mtx' 'liblzo2-2' 'xenstore-utils' 'tagtool' 'python-zope.app.i18n' 'python-factory-boy' 'octave-plplot' 'multiwatch' 'libplexus-sec-dispatcher-java-doc' 'libntrack0' 'libhfgomp1-armel-cross' 'libghc-fgl-doc' 'libcoro-twiggy-perl' 'libactivesupport-ruby1.8' 'lazarus-ide-gtk2' 'kgamma' 'libpythia8-dev' 'libosinfo-1.0-0' 'fusefat' 'sat4j' 'hddtemp' 'libphtools2-dev' 'libraw1394-dev' 'libapache2-mod-perl2' 'gawk' 'libghc6-recaptcha-prof' 'libghc6-openal-prof' 'psi-plus-common' 'nqp' 'libwiretap-dev' 'librasterlite1' 'libjs-jquery-uploadify' 'libpt-dev' 'kshutdown' 'globus-xio-pipe-driver-dbg' 'globus-proxy-utils-dbg' 'id-utils' 'fsgateway' 'info2www' 'ttf-gfs-artemisia' 'libt1-doc' 'libgoa-1.0-0' 'growisofs' 'linux-image-extra-3.2.0-31-virtual' 'linux-image-extra-3.2.0-26-virtual' 'winff-qt' 'python-carquinyol-0.96' 'php-xml-parser' 'science-psychophysics' 'libvoaacenc-ocaml-dev' 'libmrss0-dev' 'libecm-dev' 'pari-gp' 'gosa-help-en' 'gnome-boxes' 'eiskaltdcpp' 'libtinyxml-dev' 'cloudprint' 'nvidia-settings-313-updates' 'libpython-stdlib' 'libmemcached6' 'libconqat-simulink-java' 'libboost-math1.46.1' 'xfonts-thai' 'xbmc-eventclients-xbmc-send' 'python-zope.structuredtext' 'photopc' 'xapt' 'openswan-modules-dkms' 'olpc-kbdshim' 'monajat-data' 'libsaml2-doc' 'libxml-atom-simplefeed-perl' 'libmatthew-io-java' 'libghc-dav-prof' 'libdesktop-agnostic-doc' 'libclaw-doc' 'jbossas4' 'pdf2djvu' 'libmodule-depends-perl' 'colortail' 'binutils-z80' 'biniax2' 'apertium-pt-ca' 'libxfont1-dbg' 'libwayland0-dbg' 'isc-dhcp-common' 'ttf-arphic-gbsn00lp' 'deja-dup-backend-ubuntuone' 'libboost-graph1.48.0' 'tourney-manager' 'shishi-dbg' 'python-cjson-dbg' 'poppass-cgi' 'muroard-dev' 'libswingx1-java-doc' 'libpurelibc1' 'libghc-maths-doc' 'libghc-markov-chain-dev' 'libboost-graph1.53.0' 'libace-foxreactor-dev' 'jmeter-jms' 'libhkl4' 'fnfx-client' 'gcc-4.6-base' 'mousepad' 'libjpeg-turbo8' 'hfsutils' 'orchestra' 'libboost-graph-parallel1.46.1' 'mbrola-br1' 'xdeb' 'tryton-modules-stock' 'tryton-modules-party-vcarddav' 'python-nipy-lib' 'transcode' 'openclonk-dbg' 'linux-lowlatency' 'libteem1-dev' 'libmpich1.0-dev' 'libindicate-gtk-dev' 'libghc-sdl-gfx-prof' 'libghc-haskelldb-hdbc-sqlite3-doc' 'libgamin-dev' 'libcvc3-5-java' 'gtk2-engines-cleanice' 'gnome-dvb-client' 'gadmin-openvpn-client' 'etw-data' 'cernlib-base' 'kcachegrind' 'qtbase5-dev-tools' 'libparse-recdescent-perl' 'libknewstuff2-4' 'libxmu6' 'python-boto' 'sensible-utils' 'apt-clone' 'mgltools-bhtree' 'xmms2-plugin-flv' 'unity-webapps-googlecalendar' 'powermanagement-interface' 'lubuntu-artwork-13-04' 'libvips-doc' 'libu1db1' 'libmarc-crosswalk-dublincore-perl' 'libghc-profunctor-extras-prof' 'xchm' 'libkst2widgets2' 'grub-coreboot-bin' 'courier-authlib-postgresql' 'ttf-gfs-solomos' 'libx32gomp1' 'gnome-icon-theme-full' 'erlang-doc' 'vdr-plugin-solitaire' 'linux-backports-modules-net-3.2.0-31-generic' 'linux-backports-modules-net-3.2.0-26-generic' 'python-pyopencl' 'mbrola-br3' 'ttf-ipafont-jisx0208' 'supercollider-server' 'ruby-execjs' 'php-horde-group' 'libnode-pg' 'ocamlviz' 'libsub-exporter-globexporter-perl' 'libghc-ekg-dev' 'libgdchart-gd2-noxpm' 'liblog-dispatch-config-perl' 'imview' 'fcitx-libpinyin' 'aptitude-doc-it' 'libcdparanoia0' 'libgpm2' 'qtstalker-doc' 'libmrpt-reactivenav0.9' 'libcouchdb-glib-dev' 'systemtap-server' 'python-junitxml' 'pstack' 'libsyntax-perl' 'libroot-graf3d-eve5.34' 'roaraudio' 'libhamlib2-tcl' 'libfm-dev' 'isoqlog' 'iagno' 'gcc-4.4-arm-linux-gnueabi' 'libgtk2-gladexml-perl' 'festival-mr' 'emms' 'python-quantum' 'libx11-xcb1-dbg' 'libsuitesparse-doc' 'libdw-dev' 'libghc6-url-dev' 'libghc6-hjscript-prof' 'linux-headers-lbm-3.2.0-32-generic' 'linux-headers-lbm-3.2.0-27-generic' 'mp3diags-doc' 'python-funcparserlib' 'libclass-mixinfactory-perl' 'gnunet-dbg' 'libec0' 'libecere0' 'dict-freedict-eng-wel' 'audiocd-kio-dbg' 'golang-go' 'libopencc-dev' 'libcap-dev' 'linux-image-3.2.0-38-generic' 'ebox-dns' 'scid-rating-data' 'omt' 'nordugrid-arc-gridmap-utils' 'qct' 'praat' 'linsmith' 'libticcutils1-dev' 'lua-rex-onig' 'libclam-dev' 'libcgi-session-expiresessions-perl' 'ibus-table-cns11643' 'uhd-host' 'gadmin-rsync' 'emacs-chess' 'dvbcut' 'dssp-dbg' 'debian-faq' 'darktable-dbg' 'plymouth-theme-ubuntu-logo' 'libx32gfortran3-dbg' 'libgegl-0.0-doc' 'libcrmcluster1' 'language-pack-kde-lb-base' 'fontforge-dbg' 'autotrace' 'svn-buildpackage' 'libopenhpi2' 'postgresql' 'bacula' 'debianutils' 'xautomation' 'shelxle' 'ruby-multi-json' 'python-logsparser' 'libpocoutil9-dbg' 'libnet-netrc-ruby1.8' 'libhook-wrapsub-perl' 'libghc-yesod-auth-dev' 'ipppd' 'gosa-help-fr' 'geany-plugins-common' 'libio-all-perl' 'brcm-patchram-plus-nexus7' 'boa-constructor' 'python-rsvg' 'libtelepathy-logger3-dbg' 'language-pack-gnome-ti-base' 'libtimezonemap1' 'emacs23-common-non-dfsg' 'mindi-busybox' 'ccscript-doc' 'autopano-sift' 'mythtv-dbg' 'snooper' 'routeplanner-gnome' 'python-mpi4py' 'printer-driver-all-enforce' 'ruby-ipaddress' 'octave-octgpr' 'libstatistics-linefit-perl' 'liblemonldap-ng-cli-perl' 'libghc-vault-dev' 'php-services-weather' 'glines' 'gcom' 'python-loggingx' 'libsys-syscall-perl' 'libconfig-model-approx-perl' 'python-eventlet' 'libasprintf-dev' 'libmuroard2' 'xfce4-diskperf-plugin' 'user-manager' 'openclipart-png' 'node-dirty' 'mp3val' 'rnahybrid' 'libwrap-ruby1.8' 'ruby-rubymail-doc' 'ruby-prawn' 'libgsl-ruby-doc' 'libeina-doc' 'libcatalystx-leakchecker-perl' 'libbusiness-onlinepayment-ippay-perl' 'tuxtype' 'libecore-ipc1' 'dphys-config' 'gdis' 'chameleon-cursor-theme' 'yapps2' 'media-player-info' 'libhyphen-dev' 'libtspi-dev' 'libattica-dbg' 'language-pack-kde-sv-base' 'pm-utils' 'libghc-happstack-data-dev' 'west-chamber-source' 'ubuntu-ui-toolkit-doc' 'sflphone-daemon' 'r-cran-foreach' 'q4wine' 'openafs-fileserver' 'msmtp-mta' 'libqxmpp-doc' 'libspooles-dev' 'libogre-1.8.0-dbg' 'libnet-easytcp-perl' 'libmuroard3' 'libzen0' 'libmatrixssl1.8-doc' 'libextutils-cppguess-perl' 'julia-doc' 'hearse' 'grub-coreboot-dbg' 'fondu' 'cuyo' 'gstreamer0.10-buzztard' 'elementary-icon-theme' 'asterisk-core-sounds-en-g722' 'libpam-p11' 'iamerican-insane' 'mailutils' 'file' 'libghc6-x11-xft-prof' 'virtualbox-guest-additions' 'mbrola-ee1' 'teeworlds-server' 'squid-deb-proxy-client' 'potool' 'nagircbot' 'libmono-reflection-cil-dev' 'libgst-ruby1.8-dbg' 'libghc-yesod-doc' 'libghc-pastis-doc' 'libexplain30-dbg' 'ocrad' 'arkose' 'libconfig-yaml-perl' 'pulseaudio-module-lirc' 'libsvn-doc' 'libparted0debian1-dbg' 'libwmf-dev' 'libqt5widgets5' 'libtao-flresource-dev' 'libghc6-tar-doc' 'xubuntu-desktop' 'xfonts-traditional' 'ubuntu-packaging-guide-html-ru' 'sloccount' 'r-cran-date' 'python-libpcap' 'prover9-mace4' 'python-configparser' 'libzipios++-doc' 'libtest-simpleunit-perl' 'librefdb-perlmod-perl' 'librdf-query-client-perl' 'liblibrary-callnumber-lc-perl' 'liblastfm-dev' 'libitsol-dev' 'libforest-perl' 'libbusiness-onlinepayment-authorizenet-perl' 'libaudio-file-perl' 'gcc-4.4-source' 'libcr-dbg' 'aroarfw-dev' 'python-piston-mini-client' 'libavfilter2' 'ntp' 'dict-jargon' 'libxml2-dev' 'tclodbc' 'network-manager-iodine' 'lphdisk' 'libxine2-bin' 'libghc-murmur-hash-dev' 'lam-mpidoc' 'kfilereplace' 'libitl-gobject0' 'ttf-adf-oldania' 'common-lisp-controller' 'ruby-fakefs' 'python-qt4-doc' 'x11proto-input-dev' 'gir1.2-goa-1.0' 'telepathy-mission-control-5' 'acidrip' 'xindy-rules' 'rwhod' 'libgensec-dev' 'keepassx' 'iipimage-doc' 'gfan' 'floodlight' 'audacious-dbg' 'python-pysqlite2' 'wakeonlan' 'valac-0.18-vapi' 'php5-xmlrpc' 'libsys-syslog-perl' 'libtiff4-dev' 'libspice-server1' 'libfindlib-ocaml' 'libjson-glib-dev' 'libroken18-heimdal' 'libnabrit2' 'libcherokee-base0' 'xmms2-plugin-gme' 'videolan-doc' 'pysycache' 'osspd' 'libion-dev' 'libio-socket-socks-perl' 'libhkl-doc' 'libee0' 'libbuzztard-dev' 'libactiverecord-ruby' 'libmudflap0-4.6-dev' 'fso-gsmd-gta04' 'freedink-engine-dbg' 'cvm-mysql' 'libbt0' 'notify-osd-icons' 'mono-mcs' 'libspeechd2' 'libqt4-sql' 'libmono-system-runtime-serialization4.0-cil' 'libgck-1-doc' 'libffado2' 'nvi' 'libgtkhtml-editor-4.0-dev' 'opendrim-lmp-bios' 'ebook-dev-alp' 'ucimf-openvanilla' 'pnp4nagios-web' 'mlton' 'libnabrit3' 'libgluegen2-rt-java' 'rsplib-tools' 'enna' 'libterm-shellui-perl' 'dict-freedict-eng-tur' 'gir1.2-gstreamer-1.0' 'myspell-el-gr' 'libstdc++6-4.4-pic-armhf-cross' 'rt3.8-db-postgresql' 'linux-backports-modules-cw-3.6-3.2.0-39-generic-pae' 'libcupsdriver1' 'wordnet-dev' 'streamer' 'okular-backend-odp' 'libzerg-perl' 'spfquery' 'libsidplayfp-dev' 'libweb-id-perl' 'libnet-ssh-multi-ruby1.8' 'libghc-postgresql-libpq-prof' 'libghc-parallel-prof' 'libghc-monoid-extras-doc' 'libalkimia4' 'kamera-dbg' 'kamailio' 'jenkins-external-job-monitor' 'tp-smapi-dkms' 'gegl' 'freetds-bin' 'elektra-doc' 'clisp-module-bindings-glibc' 'python-egenix-mx-base-dbg' 'postgresql-doc' 'transfermii' 'python3-zope.event' 'libxerces-c-doc' 'libvdkxdb2-dev' 'libosgearth-dev' 'libhtml-formhandler-model-dbic-perl' 'libdisasm-dev' 'libdate-iso8601-perl' 'libatk-adaptor-schemas' 'indicator-sound-gtk2' 'openafs-client' 'ghc6' 'ekeyd-egd-linux' 'cpuset' 'calligrawords-common' 'bomstrip' 'sphinx-common' 'libglib2.0-data' 'libgd-gd2-perl' 'libservlet3.0-java' 'r-cran-gplots' 'wand-doc' 'python-django-shorturls' 'pd-iemambi' 'osc' 'oggvideotools' 'libqt5v8-5-dev' 'libghc-hspec-dev' 'libpacklib-lesstif1-gfortran' 'libfreemarker-java-doc' 'liberis-doc' 'libdbix-simple-perl' 'libklatexformula3' 'josm-l10n' 'haci' 'rar' 'squid3' 'pulseaudio-utils' 'libapache2-mod-dnssd' 'gnome-user-guide' 'account-plugin-aim' 'awn-applet-file-browser-launcher' 'yorick-imutil' 'vflib3-dev' 'rdd' 'python-guidata' 'prads' 'med-practice' 'libyojson-ocaml' 'libsilo-dev' 'libqmfengine1' 'libmysql-ocaml' 'libmrpt-reactivenav1.0' 'liblttctl0' 'libkohana3.2-mod-image-php' 'libclass-inner-perl' 'libbitmask-dev' 'gcompris-sound-zhcn' 'eztrace' 'evolvotron' 'kommander' 'claws-mail-pgpmime' 'browser-plugin-lightspark' 'filo' 'libifp4' 'xdiagnose' 'spamass-milter' 'python-appconf' 'fonts-tlwg-waree' 'libtext-format-perl' 'mpichpython' 'libcamlpdf-ocaml-dev' 'crafty-books-medtosmall' 'xfonts-bolkhov-cp1251-75dpi' 'weechat-curses' 'saint' 'rat' 'qtcreator-dbg' 'opt' 'libxine2-dbg' 'libstroke0-dev' 'libmath-combinatorics-perl' 'liblua5.1-cyrussasl-dev' 'libghc-yesod-test-dev' 'libencode-detect-perl' 'ksshaskpass' 'plasma-widget-message-indicator' 'libjpfcodegen-java' 'qgo' 'gap-libs' 'kword' 'cabal-install' 'python3-nose' 'nut' 'fonts-nanum-extra' 'language-pack-cs-base' 'libasound2' 'libghc6-highlighting-kate-dev' 'unity-2d-spread' 'reformat' 'python-mlpy-doc' 'python-django-mptt' 'pmk' 'moon-lander' 'monav-data' 'poa' 'libspring-orm-java' 'libopenthreads-dev' 'libghc-numtype-dev' 'sfftw2' 'libc6-armel-armhf-cross' 'krb5-sync-tools' 'ruby-gettext' 'libconstantine-java' 'python-elib.intl' 'globus-openssl-module-progs' 'freediams' 'ferret' 'fbbdoc' 'deskmenu' 'alsoft-conf' 'libxcb-randr0' 'libidl-dev' 'ldm-themes' 'ytree' 'python-openstack-compute' 'shimmer-wallpapers' 'mldonkey-gui' 'libtext-recordparser-perl' 'libreins-ocaml-dev' 'libjs-jquery-ui-theme-blitzer' 'speech-tools-doc' 'libdiet-client2.8-dev' 'libcddb-file-perl' 'libcal3d12' 'gtk2hs-buildtools' 'clisp-module-berkeley-db' 'libaqhbci20' 'libmocha-ruby1.8' 'libwrap0-dev' 'libjavatar-java-doc' 'wfut' 'r-cran-deal' 'r-cran-qvalue' 'libwreport-dev' 'libwutil2' 'ocsigenserver-doc' 'libjenkins-dom4j-java-doc' 'libghc-reactive-banana-doc' 'libghc-lambdabot-utils-prof' 'libdirectfb-bin-dbg' 'libbox2d-dev' 'haskell98-report' 'glabels-dev' 'gfax' 'libjing-java' 'libapache2-mod-auth-pam' 'libkfile4' 'javahelper' 'sysvbanner' 'python-django-extdirect' 'pysycache-buttons-ice' 'php-horde-mime-viewer' 'libqtscript4-opengl' 'libmath++-dev' 'libhugs-haskell98-bundled' 'libboost-graph1.49.0' 'libhpricot-ruby' 'scribus' 'libkopete4' 'bibshelf' 'backfire-dkms' 'armagetronad-common' 'python-crypto-doc' 'mongrel' 'mbrola-cr1' 'squid-common' 'sphinxsearch' 'ree' 'ray' 'qmf-examples' 'python-cobe' 'libuima-addons-java' 'libpdl-io-hdf5-perl' 'libsnowball-norwegian-perl' 'libghc-vector-space-points-dev' 'libghc-knob-dev' 'haskell-hsql-doc' 'libpthread-workqueue-dev' 'libauthcas-perl' 'ruby-actionpack' 'imsniff' 'libglacier2-34' 'gtk2-engines-equinox' 'gsl-bin' 'libqwtplot3d-qt4-0' 'gfortran-4.4-arm-linux-gnueabi' 'festival-te' 'elza' 'dailystrips' 'btscanner' 'libknewstuff3-4' 'tango-starter-dbg' 'python-scikits.statsmodels-doc' 'powerstat' 'libuddi4j-java-doc' 'libuclmmbase1-dev' 'libjtidy-java-doc' 'guile-cairo-dev' 'libglobus-gfork0' 'eclipse' 'dita-ot-doc' 'calligra-l10n-zhtw' 'apachetop' 'acl2-doc' 'libraw1394-doc' 'libmono-ldap4.0-cil' 'libgnomecanvas2-dbg' 'libfreetype6-dev' 'libatk1.0-data' 'fonts-dzongkha' 'libjson-glib-1.0-0' 'telepathy-logger' 'libxslthl-java' 'net-tools' 'libqapt-runtime' 'vdr-plugin-svdrposd' 'postfix-cluebringer-sqlite3' 'nzb' 'morse-simulator-doc' 'libuuidtools-ruby' 'libpt-doc' 'ruby-memcache-client' 'exfalso' 'drupal6-mod-trackback' 'gdpc' 'axiom' 'libqdox-java' 'libnl-nf-3-dev' 'libmono-system-web2.0-cil' 'grub-linuxbios' 'flac' 'debtags' 'virtualbox-ose-guest-source' 'unity-webapps-newsblur' 'spl-dev' 'sac' 'python-weberror' 'python-iplib' 'muffin-dbg' 'mod-gearman-doc' 'libxml-filter-xslt-perl' 'libtinyxml-doc' 'libsary10' 'libopenjpeg-dev' 'libkdeedu-dbg' 'libjericho-html-java-doc' 'libgrss-1.0-0' 'libghc-xml-prof' 'libghc-glade-dev' 'kubrick' 'kamailio-xmpp-modules' 'itcl3-dev' 'gstreamer1.0-plugins-bad-doc' 'globus-gass-copy-progs' 'codeblocks-common' 'libart-2.0-dev' 'bsdmainutils' 'libwnck-3-0' 'libcgns2' 'libarb' 'xfonts-terminus-oblique' 'ttf-sinhala-lkmug' 'tinydyndns' 'pms' 'openerp6.1-core' 'oneisenough' 'mpd-sima' 'libreoffice-writer2latex' 'libnanoxml2-java-doc' 'liblocale-us-perl' 'libdm0' 'libjmol-java' 'gweled' 'gri-el' 'gosa-plugin-nagios' 'glbsp' 'guile-library' 'flphoto' 'efilinux' 'libbpp-seq9' 'libcr0' 'apertium-pt-gl' 'aglfn' 'aewan' 'libxcb-composite0' 'libpolkit-agent-1-dev' 'libspiro0' 'libcogl-dev' 'rcs' 'vdr-plugin-infosatepg' 'python3-setuptools-git' 'manpages-pt-dev' 'libxine1-all-plugins' 'libjogl-jni' 'libghc-tinyurl-dev' 'libghc-markov-chain-doc' 'libghc-happstack-prof' 'kde-telepathy-integration-module' 'jglobus-doc' 'duff' 'coinor-libipopt1-dbg' 'cellwriter' 'cd-hit' 'libxcb-xv0-dbg' 'uvccapture' 'ubuntustudio-desktop' 'tango-test' 'rabbitvcs-nautilus' 'qgis-common' 'python-pyxine-dbg' 'phenny' 'libvorbisidec1' 'libsigrokdecode0' 'libsfgomp1-armhf-cross' 'libsbjson-dev' 'libpfqueue-dev' 'libonemind-commons-invoke-java' 'libnet-ssh-gateway-ruby1.8' 'libghc-word8-dev' 'libghc-edison-core-dev' 'libaudiocdplugins-dev' 'libfile-mmagic-perl' 'kobodeluxe' 'gsql-plugins' 'xmedcon' 'browser-plugin-vlc' 'aolserver4-nsldap' 'amtterm' 'ltspfsd-core' 'partimage' 'mgltools-visionlibraries' 'uwsgi' 'twms' 'libtest-image-gd-perl' 'libspreadsheet-parseexcel-simple-perl' 'libqtweetlib1.0' 'libpadre-plugin-yaml-perl' 'libshishi-dev' 'libglazedlists-java-doc' 'libghc-binary-shared-prof' 'libdbicx-testdatabase-perl' 'libkexiv2-data' 'geany-plugin-lipsum' 'libcext0' 'ekg2-core' 'libsigsegv-dev' 'tf5' 'libesd0-dev' 'libifeffit-perl' 'zend-framework' 'tclxml' 'pmw' 'mysqmail-courier-logger' 'mrtg-contrib' 'mencal' 'librdf-helper-perl' 'libsisu-guice-java' 'libghc-ekg-doc' 'lxmenu-data' 'libdate-jd-perl' 'libextlib-ocaml' 'gpsshogi' 'freeradius-iodbc' 'epoptes-client' 'dhcp-helper' 'python-nibabel' 'bedtools' 'asterisk-prompt-it-menardi-gsm' 'xindy' 'libsocket-perl' 'gir1.2-udisks-2.0' 'libxpm4' 'libcouchdb-glib-doc' 'ichthux-default-settings' 'zutils-dbg' 'rds' 'python-easyzone' 'uim-utils' 'pmx' 'libghc-hjavascript-prof' 'libfishsound1-dbg' 'libexosip2-dev' 'keepass2-doc' 'plasma-widget-kimpanel' 'libakonadi-calendar4' 'libxml-stream-perl' 'iipimage-server' 'gnunet-dev' 'gigolo' 'eiskaltdcpp-gtk-dbg' 'debian-xcontrol' 'gcc-4.7-aarch64-linux-gnu-base' 'python-subversion-dbg' 'libva-tpi1' 'libqt4-svg' 'libc6-amd64' 'libflac8' 'bonnie++' 'libservlet2.4-java-doc' 'libmrpt-bayes0.9' 'libghc6-url-doc' 'libghc6-transformers-prof' 'stretchplayer' 'science-physics' 'simulpic' 'regexxer' 'renpy' 'manpages-fr-extra' 'libsigx-2.0-2' 'libplexus-utils2-java-doc' 'libouch-perl' 'liblog-dispatch-perl-perl' 'libivykis-dev' 'leafnode' 'puredata-dev' 'libspectrum8' 'libimdi0' 'wmweather+' 'trac-wikirename' 'mathtex' 'logol-bin' 'rep' 'libntrack-glib2' 'libjboss-cache3-java' 'libclam-doc' 'libjson-simple-java' 'otp' 'postgresql-filedump' 'fts-clacks' 'libfirestring0.9' 'python-dicom' 'gnustep-gpbs' 'python-newt-dbg' 'libreoffice-script-provider-python' 'iukrainian' 'libhx27' 'ruby-text' 'quantum-plugin-plumgrid' 'node-request' 'qiv' 'lilypond-doc-html' 'libxs-compat-libzmq1' 'libradare2-0.9' 'libpacparser-dev' 'libghc-yesod-auth-doc' 'libgdbm-gst' 'git-sh' 'freefoam-dev-doc' 'fonts-beng-extra' 'qmail' 'libproxy0.4-cil' 'libgpg-error0' 'gcc-4.4-base' 'apturl' 'fp-units-net-2.4.4' 'ruby-slop' 'r-cran-funitroots' 'qmc' 'ppm' 'memcachedb' 'libtest-html-content-perl' 'libstring-mkpasswd-perl' 'libghc-vault-doc' 'libghc-pandoc-types-dev' 'haskell-convertible-doc' 'libgeronimo-validation-1.0-spec-java-doc' 'libffms2-dev' 'libcrypto++9-dbg' 'kubuntu-web-shortcuts' 'libmad0-dev' 'elinks-lite' 'dansguardian' 'libguichan-allegro-0.8.1-1' 'acedb-other-dotter' 'php5-pgsql' 'libhx28' 'libattica-dev' 'ibus-chewing' 'im-switch' 'linux-headers-3.2.0-33-virtual' 'vmpk' 'spatialite-gui' 'modplug-tools' 'ml-yacc' 'magicor' 'libupnp-dev' 'libtexttools5' 'libmini18n1-dbg' 'liburcu-dev' 'libghc-digest-dev' 'libghc-colour-prof' 'libflamingo-java-doc' 'libfilesys-diskspace-perl' 'libnet-server-mail-perl' 'fil-plugins' 'festvox-rablpc16k' 'libej0' 'erlang-meck' 'buzztard' 'syslinux-themes-ubuntu' 'python-launchpadlib' 'python3-germinate' 'eog-plugins' 'python-edje' 'meritous-data' 'libghc-happstack-data-doc' 'linux-backports-modules-cw-3.5-3.2.0-36-generic-pae' 'xgalaga++' 'sdl-ball' 'php-horde-notification' 'mrtg-rrd' 'mlton-runtime-i486-linux-gnu' 'libzemberek-tk-java' 'libghc-hastache-prof' 'libdjconsole-data' 'libchipcard6' 'python-geoclue' 'gosa-help-nl' 'gimp-dcraw' 'bwbasic' 'python-soya' 'ibus-m17n' 'libpython3-stdlib' 'scala' 'oar-common' 'libprpc-perl' 'libghc-svgcairo-dev' 'libghc-attoparsec-prof' 'libcxgb3-1' 'libcr-dev' 'evilwm' 'estic' 'libargtable2-0' 'libhighgui-dev' 'libwmf-doc' 'libxext6-dbg' 'samba' 'libxpm-dev' 'language-pack-gnome-ig-base' 'libio-compress-perl' 'ppp' 'xserver-xorg-video-mach64-lts-quantal-dbg' 'remuco-tvtime' 'postgresql-9.1-pgpool2' 'ruby-tidy' 'libpasswdqc0' 'openscenegraph-doc' 'libmusic1' 'lua-sql-sqlite3-dev' 'liblua5.1-sec-dev' 'lua-doc' 'libjxgrabkey-java' 'libmaven-stapler-plugin-java' 'libjboss-management-java' 'libhaildb-dbg' 'libghc-gio-prof' 'ruby-dbus' 'ipset' 'gis-workstation' 'fcitx-data' 'asterisk-core-sounds-ru' 'aroarfw-doc' 'unity-lens-shopping' 'swift-object' 'libheartbeat2-dev' 'libxml2-doc' 'doxygen-latex' 'binutils-gold' 'python-thrift-dbg' 'pyprompter' 'nautilus-scripts-manager' 'libview2-dbg' 'libsbuild-dev' 'libplack-middleware-status-perl' 'libgii1-target-x' 'libghc-murmur-hash-doc' 'libmethod-autoload-perl' 'libgeda-common' 'libboost-thread1.53-dev' 'libbiniou-ocaml' 'libace-qtreactor-dev' 'jbigkit-bin' 'libglobus-gridftp-server-control0' 'libxfce4ui-1-0' 'rstatd' 'chef-expander' 'audacious-dev' 'glance-client' 'phonon-backend-gstreamer' 'libspice-client-gtk-3.0-1' 'libboost-thread1.48-dev' 'language-pack-kde-ht-base' 'gnome-sudoku' 'libct4' 'libconvert-tnef-perl' 'generatorrunner-dbg' 'libmudflap0-4.6-dev-armhf-cross' 'xsysinfo' 'libwings-dev' 'libpam-script' 'libnetfilter-cttimeout-dev' 'libhugs-fgl-bundled' 'libgraphics-libplot-perl' 'libdata-guid-perl' 'libapron' 'mcelog' 'ttf-komatuna' 'spawn-fcgi' 'libjson-glib-doc' 'language-pack-gnome-tg-base' 'language-pack-gnome-sl-base' 'libtextwrap1' 'libpicocontainer-java' 'vmdk-stream-converter' 'virtuoso-vad-isparql' 'pgxnclient' 'oar-admin' 'r-bioc-edger' 'libroot-misc-memstat-dev' 'librdsserver1' 'libopencascade-visualization-6.5.0' 'liblip-dev' 'libglobus-xio-pipe-driver-dev' 'liballegro-image5.0' 'libpano13-2' 'fping' 'firebird2.5-dev' 'biabam' 'libva-egl1' 'libboost-chrono1.49-dev' 'daemon' 'vala-gen-project-dbg' 'sdf' 'python-pkginfo' 'python-lamson' 'pyragua' 'php-xajax' 'packagekit-backend-aptcc' 'netmrg' 'mcollective-plugins-puppetca' 'libservice-wrapper-java' 'libqdbm3++c2' 'libgstreamermm-0.10-dbg' 'libgranite-dev' 'libga2' 'libcuba-doc' 'libboost-iostreams1.53-dev' 'korundum' 'gnunet-client' 'libspice-client-gtk-3.0-4' 'dict-freedict-nld-eng' 'cantor-dbg' 'aiccu' 'python-egenix-mx-base-dev' 'pidgin-dbg' 'libboost-iostreams1.48-dev' 'language-pack-kde-st-base' 'xdg-utils' 'libboost-math1.48.0' 'awn-applet-yama' 'openoffice.org-style-andromeda' 'moncli' 'vrrpd' 'rig' 'python-edbus' 'prerex' 'owl' 'libsidplayfp-doc' 'liblhapdf0' 'libghc-publicsuffixlist-dev' 'libeliom-ocaml' 'libpcre-ocaml-dev' 'libboost-math1.53.0' 'gkrellmoon' 'fish' 'python-ldap-dbg' 'nova-common' 'x11proto-fixes-dev' 'keepalived' 'netpbm' 'vdr-plugin-dvd' 'springlobby' 'sec' 'yade' 'libtrident-java-doc' 'libschedule-cron-perl' 'libreoffice-writer2xhtml' 'libkaya-sqlite3-dev' 'wine' 'scm' 'libjgoodies-looks-java' 'recordmydesktop' 'gnome-blog' 'cl-trivial-gray-streams' 'python-dateutil' 'libkpty4' 'libboost-graph-parallel1.48.0' 'unity-webapps-twitter' 'ruby-terminal-table' 'psi' 'oem-config-remaster' 'ncaptool' 'uqwk' 'xfce4-settings' 'libtrove3-java-doc' 'libpinyin-utils' 'libgupnp-dlna-doc' 'libghc-hspec-doc' 'libboost-graph-parallel1.53.0' 'launchy' 'guile-gnome2-canvas' 'driftnet' 'biniax2-data' 'sed' 'libxrender1' 'adduser' 'linux-backports-modules-cw-3.4-3.2.0-40-generic-pae' 'linux-backports-modules-cw-3.4-3.2.0-35-generic-pae' 'wordpress' 'wing' 'vflib3-doc' 'torchat' 'python-dexml' 'pysol-cardsets' 'phatch-cli' 'pachi' 'libxml-parser-ruby' 'libxine2-dev' 'sofa-tutorials' 'libghc-certificate-dev' 'libdeclarative-systeminfo' 'gmanedit' 'gitmagic' 'libtime-duration-perl' 'freeradius-mysql' 'emacs24-nox' 'db-util' 'cabextract' 'python-spread' 'ejecter' 'tribler-swift' 'rt4-db-postgresql' 'libwsil4j-java-doc' 'lua-iconv' 'libghc-yesod-test-doc' 'libghc-chell-prof' 'libgda-5.0-4-dbg' 'libauthen-simple-pam-perl' 'fonts-mona' 'valac-0.16-vapi' 'sparsehash' 'libgssapi-perl' 'gcj-4.7-jre-headless' 'libjcaptcha-java-doc' 'libghc6-highlighting-kate-doc' 'xdemorse' 'sawfish-dbg' 'python3-psutil' 'python-statgrab' 'php-http-request' 'libxs-compat-libzmq-dev' 'libphysfs1-dbg' 'openmpi1.6-bin' 'libgts-bin' 'libghc-numtype-doc' 'libfilehandle-fmode-perl' 'libindicate-qt1' 'ebhttpd' 'pmuninstall' 'libirc-formatting-html-perl' 'libqt5opengl5-dev' 'mail-notification' 'libdecoration0-dev' 'rrdcollect-dbg' 'rotter' 'python-cmor' 'proftmb-dbg' 'netbeans' 'linux-headers-lowlatency' 'libghc-data-memocombinators-dev' 'libcodenarc-groovy-java' 'liblemonldap-ng-handler-perl' 'gpe-expenses' 'gnome-icon-theme-extras' 'gems' 'sfc' 'xinit' 'sdm' 'libunique-3.0-dev' 'libradius1' 'iputils-arping' 'libtao-foxresource-2.0.1' 'linux-headers-3.2.0-30-generic' 'linux-headers-3.2.0-25-generic' 'libxrandr-dev-lts-quantal' 'tk2' 'stella' 'signify' 'ruby-qscintilla2' 'python-hachoir-urwid' 'octave-signal' 'libwreport-doc' 'libvte-ruby' 'libtrycatch-perl' 'librdf-rdfa-generator-perl' 'liblog4ada-dbg' 'libghc-dimensional-prof' 'libball1.4-dev' 'kalgebramobile' 'jesred' 'gosa-plugin-opengroupware' 'gengetopt' 'libzipios++0c2a' 'libwnck2.20-cil' 'ttf-malayalam-fonts' 'freetds-dev' 'hyphen-en-us' 'uucp' 'libmicrohttpd5' 'mbrola-en1' 'units-filter' 'rio' 'python-mzml-doc' 'libspatialindex1' 'libromkan-ruby' 'oasis3-examples' 'libmath++-doc' 'libmath-polygon-perl' 'ibus-table-quick' 'gnome-humility-icon-theme' 'gkrellkam' 'gfal2-plugin-lfc' 'libfprint0' 'fonts-teluguvijayam' 'ekg2-api-docs' 'dssp' 'celestia' 'python-txamqp' 'libldap-2.4-2-dbg' 'irussian' 'libbison-dev' 'libghc6-tagsoup-dev' 'playonlinux' 'yafc' 'puf' 'pd-iemnet' 'mythbuntu-diskless-client' 'libs3decoder-dev' 'libqalculate-dev' 'ruby-merb-core' 'libkutils-perl' 'libghc-vector-space-points-doc' 'libghc-knob-doc' 'libsiscone-spherical0' 'libhypre-dev' 'kolab-cyrus-clients' 'kde-service-menu-fuseiso' 'php-log' 'libeiskaltdcpp2.2-dbg' 'chef-solr' 'bzr-git' 'node-node-xmpp' 'geomview' 'mythes-ca' 'libgnomecanvas2-dev' 'icomlib1' 'sgb' 'xdms' 'tk5' 'timemachine' 'mcollective-plugins-nrpe' 'libxray-scattering-perl' 'xpaint' 'gcin-gtk3-immodule' 'gcc-4.7-powerpc-linux-gnu' 'libcw3' 'wims' 'libahven3-dev' 'libdcmtk2' 'python-compressor' 'printer-driver-pnm2ppa' 'libgeis1' 'wily' 'sweethome3d-furniture' 'wipe' 'rsbac-admin' 'r-cran-rpvm' 'python-z3c.ptcompat' 'packagekit-backend-smart' 'mypaint-data' 'python-envisage' 'libpam-encfs' 'libmongo-client0-dbg' 'libconfig-record-perl' 'libcommons-validator-java' 'libclutter-imcontext-0.1-0-dbg' 'kde-style-oxygen' 'libkdeedu-dev' 'gitit' 'eclipse-mylyn-builds-hudson' 'clips-common' 'extra-xdg-menus' 'alarm-clock-applet' 'ubuntu-mono' 'python-appindicator' 'libopenmpi1.5-2' 'uwsgi-plugin-rrdtool' 'uim-xim' 'owx' 'vmtk' 'libsphere-dev' 'libmvel-java' 'ruby-mathml' 'libghc-zlib-conduit-dev' 'libghc-glade-doc' 'libghc-active-prof' 'kexi-xbase-driver' 'itcl3-doc' 'libsox-fmt-mp3' 'libnetpbm10-dev' 'libid3-doc' 'libgcj-doc' 'libvotequorum4' 'tcl8.5-dev' 'libcv2.3' 'linux-backports-modules-cw-3.3-3.2.0-34-generic-pae' 'linux-backports-modules-cw-3.3-3.2.0-29-generic-pae' 'submux-dvd' 'llvm-2.9-source' 'libxml-node-perl' 'shishi-doc' 'libgts-dbg' 'libghc-wai-eventsource-dev' 'libclass-adapter-perl' 'libcairo-ruby1.8' 'gfortran-4.6-multilib' 'duma' 'libavogadro1' 'libxcb-xv0-dev' 'libmono-opensystem-c4.0-cil' 'libcogl-doc' 'openstackx' 'r-cran-digest' 'python-zope.principalannotation' 'openarena-data' 'live-f1' 'libverbiste-0.1-0' 'libmuffin-dev' 'libghc-warp-dev' 'libghc-tinyurl-doc' 'libcv2.4' 'lfc-server-mysql' 'hpsockd' 'glfer' 'geany-plugin-numberedbookmarks' 'gaffitter' 'fonts-cwtex-docs' 'planetpenguin-racer' 'dimbl' 'dclock' 'pybootchartgui' 'accerciser' 'walinuxagent-data-saver' 'libdifflcs-ruby1.8' 'libcrypt-openssl-random-perl' 'xdmx' 'webalizer' 'python-repoze.tm2' 'python-magics++' 'python-augeas' 'menu-l10n' 'libghc-word8-doc' 'libghc-edison-core-doc' 'libconcurrentlinkedhashmap-java-doc' 'kubuntu-netbook-default-settings' 'gtklick' 'zipper.app' 'enum' 'elvis-common' 'policykit-1-doc' 'libplexus-component-metadata-java' 'libtdb-dev' 'libpthread-stubs0-dev' 'libnih-dbus-dev' 'libmtp-runtime' 'libgexiv2-2-dbg' 'rng-tools' 'lsb-base' 'glx-diversions' 'tcc' 'libxml-namespace-perl' 'libpuzzle-php' 'liblua5.1-leg-dev' 'libghc-shellac-dev' 'libghc-monadrandom-prof' 'libgettext-ruby-util' 'libctemplate-dev' 'junior-puzzle' 'gnome-screensaver-flags' 'gnome-js-common' 'libntlm0' 'gfmd' 'epix' 'ser' 'doc-linux-fr-text' 'apng2gif' 'libtask-weaken-perl' 'libdbustest1' 'unity-place-files' 'yagf' 'wmwork' 'uruk' 'python-traitsbackendqt' 'python-hachoir-parser' 'libjibx1.2-java-doc' 'libfishsound1-dev' 'inadyn' 'libwaili1c2' 'libjava3d-java' 'imvirt' 'openvswitch-pki' 'icedtea-7-plugin' 'libmessaging-menu0' 'libparse-debcontrol-perl' 'python-requests' 'wmshutdown' 'qtgain' 'pike7.8-core' 'mha4mysql-manager' 'minicom' 'libphone-ui-20110825' 'libnagios-object-perl' 'libmlx4-dev' 'libmoosex-followpbp-perl' 'libghc-cairo-dev' 'libgfarm-dev' 'firmware-crystalhd' 'libwv-dev' 'eclipse-anyedit' 'ruby-thor' 'docker' 'naturaldocs' 'mythes-de' 'pngmeta' 'gir1.2-gnomebluetooth-1.0' 'evolution-plugins' 'bacula-client' 'texlive-latex-recommended' 'libghc6-sdl-gfx-prof' 'powder' 'nikto' 'mbrola-cz2' 'mathematica-fonts' 'puredata-doc' 'pathological-music' 'mrename' 'libwsman-clientpp-dev' 'libsyslog-ocaml-dev' 'libopendrim0' 'liblua5.1-zip0' 'liblttoolbox3-3.1-0-dev' 'libghc-vty-prof' 'libcsoap-dev' 'libcrystalhd-dev' 'openafs-krb5' 'libg15daemon-client1' 'ampliconnoise' 'libfdt-dev' 'fontforge-doc' 'libtulip-qt4-3.1' 'linux-backports-modules-hv-3.2.0-37-generic' 'libgles2-mesa-dev-lts-quantal' 'language-pack-kde-tlh' 'xmms2-scrobbler' 'xenwatch' 'radiance-doc' 'qdigidoc-dbg' 'liblodo3.0-dev' 'libglobus-gass-copy-dev' 'libghc-feed-prof' 'libexcel-writer-xlsx-perl' 'libconfig-inihash-perl' 'libapache2-mod-gnutls' 'wx2.8-doc' 'clustershell' 'bombono-dvd-data' 'atheist' 'scalable-cyrfonts-tex' 'ruby-mocha-doc' 'quagga' 'python-jsonschema' 'openoffice.org-thesaurus-en-us' 'libreoffice-impress' 'libjson-pp-perl' 'libecpg-dev' 'libcommons-collections-java' 'g++-4.7-multilib' 'libnspr4' 'mythtv-doc' 'tdc' 'sword-text-arasvd' 'sic' 'r-cran-maptools' 'xdot' 'python-dmidecode-dbg' 'mrxvt-mini' 'ruby-libvirt' 'lv2-c++-tools-doc' 'libghc-ldap-prof' 'libdataobjects-sqlite3-ruby1.9.1' 'libcdd-test' 'libarray-refelem-perl' 'konfont' 'syslog-ng' 'engauge-digitizer-doc' 'pvm' 'flex-old' 'liboverlay-scrollbar3-0.2-0' 'libmono-2.0-1' 'libdate-manip-perl' 'flex' 'tar' 'qps' 'gcc-4.4-arm-linux-gnueabihf-base' 'linux-image-3.2.0-38-lowlatency-pae' 'libmagickcore4' 'bsdgames-nonfree' 'tryton-server' 'python-pysnmp-common' 'mousetrap' 'mcollective-plugins-puppetral' 'libsystemu-ruby' 'librb-inotify-ruby1.9.1' 'libqt5multimediawidgets5' 'libghc-pandoc-types-doc' 'libfilter-eof-perl' 'libtextcat0' 'desktopnova-module-gnome' 'banshee-extension-liveradio' 'wfaroese' 'libreoffice-nlpsolver' 'libpam-doc' 'libcroco3-dev' 'gir1.2-rest-extras-0.7' 'libpilotobjects0' 'xmms2-plugin-wavpack' 'python3-pandas' 'pxe' 'libwaili-dev' 'libscotchmetis-dev' 'libpar-packer-perl' 'libmvel-java-doc' 'libigstk4' 'libghc-digest-doc' 'libcatalystx-injectcomponent-perl' 'ldaptor-doc' 'ksaneplugin' 'genus2reduction' 'libgtg0' 'python-cssutils' 'multex-bin' 'python3-examples' 'libsystemd-daemon0' 'libespeak1' 'libmagickcore5' 'tea' 'roffit' 'qsf' 'tau' 'python-zope.password' 'python-z3c.autoinclude' 'python-ethos' 'ng-latin' 'libroot-math-matrix5.34' 'libfilesystem-ruby1.8' 'libextractor1c2a' 'libboolstuff-0.1-0-dbg' 'nvram-wakeup' 'libecore-evas1' 'apport-valgrind' 'libafterstep1' 'libvisual-0.4-dev' 'libqpdf-dev' 'liblockfile-bin' 'libaudiofile1' 'language-pack-nds-base' 'gir1.2-appindicator-0.1' 'dimp1' 'python-sphinxapi' 'parsewiki' 'ming-fonts-opensymbol' 'maxima-emacs' 'libslepc3.2-dbg' 'libmono-cecil-flowanalysis-cil' 'libmaruku-ruby' 'libhaml-ruby-doc' 'libhaildb-dev' 'libghc-svgcairo-doc' 'libghc-opengl-dev' 'libfilesystem-ruby1.9' 'libboost-math1.49.0' 'libarchive-tar-wrapper-perl' 'kubuntu-debug-installer-dbg' 'ircp-tray' 'libtifiles2-5' 'python-freeipa' 'extract' 'ubuntu-vm-builder' 'alt-ergo' 'tcl' 'python3-keyring' 'uuid' 'libedata-book1.2-dev' 'openoffice.org-wiki-publisher' 't1-xfree86-nonfree' 'tcm' 'magicrescue' 'libxml-treebuilder-perl' 'libtulip-qt4-3.7' 'libosmgpsmap2' 'liblua5.1-sql-sqlite3-dev' 'libgroupsock0' 'ruby-filesystem' 'libdebian-copyright-perl' 'python-autopilot' 'piuparts' 'conky-std' 'wise' 'python-rgain' 'python-pylons' 'tftp-hpa' 'libenchant-voikko' 'libasm-dev' 'fusionforge-plugin-scmbzr' 'linux-backports-modules-cw-3.3-3.2.0-32-generic-pae' 'linux-backports-modules-cw-3.3-3.2.0-27-generic-pae' 'squeak-sources3.9' 'stardict-gtk' 'slashem-sdl' 'nyquist' 'libvalidation-class-perl' 'libsbuild-doc' 'libplexus-compiler-javac-java' 'libsort-key-top-perl' 'libhtml-template-expr-perl' 'libjboss-cache1-java' 'libghc-hxt-curl-dev' 'libboost-graph-parallel1.49.0' 'libalsa-ocaml' 'amule-daemon' 'x11-session-utils' 'python-bson' 'lsb-multimedia' 'mythes-cs' 'libgnomecanvas2-common' 'libfriends-gtk-dev' 'libshout3' 'kubuntu-firefox-installer' 'libcoroipcc4' 'emilda-print' 'pytrainer' 'python-poker-prizes' 'pretzel' 'node-graceful-fs' 'nikwi' 'libtachyon-0.99' 'libsolid-perl' 'libpal-java-doc' 'libnet-amazon-s3-tools-perl' 'lua-rings' 'libjs-jquery-ui-theme-flick' 'libjasperreports-java' 'libhmsbeagle-java' 'gpredict' 'gobjc++-mingw-w64-x86-64' 'fonts-lohit-telu' 'fonts-freefarsi' 'ceferino-data' 'calligraauthor' 'elinks' 'ax25-tools' 'xfig' 'libmagickcore5-extra' 'gir1.2-gucharmap-2.90' 'dump' 'telepathy-gabble' 'xserver-xorg-video-vesa-lts-quantal' 'linux-image-3.5.0-25-generic' 'libnepomuksync4' 'lugaru-data' 'whichman' 'todiscgui' 'squirrelmail-sent-confirmation' 'scilab-doc-pt-br' 'science-nanoscale-physics' 'python-zc.resourcelibrary' 'smartlist' 'luminance-hdr' 'libterm-size-perl-perl' 'libpadre-plugin-svn-perl' 'liblua5.1-rex-onig-dev' 'libhttp-cache-transparent-perl' 'libgstreamermm-0.10-dev' 'gtk-gnutella' 'libobjc-4.7-dev-powerpc-cross' 'firebird2.5-doc' 'dnsproxy' 'concalc' 'br2684ctl' 'avrdude' 'python-dogtail' 'pidgin-dev' 'munin-plugins-extra' 'lksctp-tools' 'libmpc-dev' 'libdaemon-dev' 'libgsm1' 'libsync-menu1' 'exim4-doc-info' 'sgml-base' 'vbindiff' 'teg' 'tdl' 'rosegarden-dbg' 'qrq' 'python3-zope.exceptions' 'pyg' 'nordugrid-arc-doxygen' 'ninja' 'libplasma-ruby' 'libspring-transaction-java' 'libncurses-ruby1.9.1' 'ruby-multibitnums' 'libghc-arrows-dev' 'libgammu-dbg' 'xlockmore' 'fontmatrix' 'libfreehep-export-java' 'libjs-yui' 'flim' 'ftplib3' 'ruby-tilt' 'ibus-pinyin-db-android' 'libnautilus-extension1a' 'libghc6-syb-with-class-instances-text-dev' 'searchmonkey' 'node-abbrev' 'mmpong-gl-data' 'live-boot-initramfs-tools' 'libnb-apisupport3-java' 'libghc-publicsuffixlist-doc' 'libfko0-dbg' 'libeb16-dev' 'keyanalyze' 'kdeutils' 'hol88-source' 'g++-4.7-arm-linux-gnueabi' 'dns-flood-detector' 'cutycapt' 'calligra-dbg' 'live-build' 'libdv4' 'libjson-perl' 'softgun' 'tcs' 'perl-cross-debian' 'otrs2' 'libtomcatjss-java' 'libroot-graf3d-g3d-dev' 'libproc-fork-perl' 'liblingua-stem-snowball-da-perl' 'libfile-path-expand-perl' 'libdc-dev' 'libbarcode-code128-perl' 'libc6-ppc64-powerpc-cross' 'gwibber-service-identica' 'gtk3-engines-xfce' 'gfortran-4.7-powerpc-linux-gnu' 'otf-yozvox-yozfont-edu' 'fancontrol' 'elkdoc' 'libdvdnav4' 'compass-layoutgala-plugin' 'checkpolicy' 'bzflag-server' 'libkblog4' 'auralquiz' 'exfat-utils' 'nagios3-dbg' 'libghc6-xmonad-dev' 'fusionforge-plugin-scmcvs' 'libfm1' 'mbrola-es1' 'gstreamer0.10-plugins-bad-multiverse-dbg' 'uae' 'tpm-tools' 'picard' 'python-packagekit' 'nfacct' 'libv8-dbg' 'libqmf2-1' 'libhtml-wikiconverter-pmwiki-perl' 'libgupnp-av-1.0-dbg' 'libghc-mwc-random-prof' 'libdxflib-2.2.0.0' 'libqscintilla2-designer' 'ttf-takao' 'flip' 'libucimf0' 'xen-utils-common' 'clutter-1.0-tests' 'postfix-cdb' 'libtest-without-module-perl' 'libdw1' 'libconqat-ccsm-commons-java' 'xserver-xorg-video-ati-lts-quantal-dbg' 'mbrola-es2' 'vpim' 'fonts-larabie-uncommon' 'scim-dev' 'qtcreator-doc' 'qimhangul-qt4' 'python-stfl' 'ngraph-gtk-addin-import-ps' 'libxine2-doc' 'libmosquittopp0' 'libinnate-ruby1.8' 'libghc-certificate-doc' 'libdpkg-ruby' 'libdigidoc2' 'hydrogen' 'frozen-bubble-data' 'ezmlm-browse' 'debian-archive-keyring' 'nagios3-cgi' 'libquvi-dev' 'libmono-accessibility4.0-cil' 'language-pack-kde-hr-base' 'awn-applet-slickswitcher' 'flashplugin-nonfree-extrasound' 'z88dk' 'sb16ctrl-bochs' 'ruby-vegas' 'rabbitvcs-cli' 'r-cran-relimp' 'med-data' 'r-cran-haplo.stats' 'libwiki-toolkit-plugin-ping-perl' 'libghc-openal-prof' 'libfm3' 'libbest-perl' 'kvpnc-data' 'klash-opengl' 'libkimap4' 'icmake-doc' 'openexr' 'erubis-doc' 'code-saturne-data' 'lsscsi' 'libtokyocabinet-dbg' 'language-pack-gnome-te-base' 'language-pack-gnome-ro-base' 'python-glance' 'libspread-perl' 'libobjc3-armhf-cross' 'rhash' 'qtm' 'php-horde-turba' 'php-elisp' 'libnanohttp1-dbg' 'librdf-kml-exporter-perl' 'libpoe-component-jabber-perl' 'h5utils' 'gambas3-gb-settings' 'dtrx' 'libledit-ocaml-dev' 'phatch-doc' 'mustang' 'lua-dbi-postgresql-dev' 'lordsawar' 'libomxil-components' 'libmodule-used-perl' 'libidn2-0-dbg' 'libghc-ldap-dev' 'libghc-data-memocombinators-doc' 'libfonts-java-doc' 'libdevel-stacktrace-withlexicals-perl' 'libcxxtools-dev' 'libconcord-dev' 'latrine' 'libcli1.9' 'libnet-openid-consumer-perl' 'goto-fai-backend' 'libfreehep-xml-java' 'fp-units-net-2.6.0' 'python-dolfin' 'crawl-common' 'ruby-libxml' 'basex' 'avinfo' 'chktex' 'libunique-3.0-doc' 'libmono-sharpzip2.84-cil' 'language-pack-kde-wae' 'language-pack-kde-sr-base' 'language-pack-kde-rw-base' 'libwbclient0' 'repro' 'r-cran-survival' 'qtdeclarative5-folderlistmodel-plugin' 'libxml-security-java' 'libsofia-sip-ua-glib-dev' 'libsdl-ttf-gst' 'libpod2-base-perl' 'libgwt-dev-java' 'libflorist-dbg' 'libball1.4-doc' 'mathwar' 'knights' 'dict-freedict-nld-fra' 'libmowgli2' 'libxapian-dev' 'libtimedate-perl' 'libcherokee-server0' 'libmagick++4' 'wmdrawer' 'tuxpaint-dev' 'sma' 'ruby-tins' 'python-vsgui' 'pyp' 'nagios-plugins-openstack' 'libvorbisidec-dev' 'libqof2-dbg' 'libpqxx-3.1-dbg' 'libnet-google-authsub-perl' 'libmaven-scm-java' 'libgpgme-ruby1.9.1' 'libglobus-gss-assist-dev' 'libghc-resource-pool-prof' 'libghc-lrucache-prof' 'libfusefs-ruby1.8' 'libdaemon-generic-perl' 'libbuilder-ruby' 'git2cl' 'gemanx-gtk2' 'gambas3-gb-compress' 'euler' 'python-polib' 'powerwake' 'libxau-dev' 'libwww-mechanize-perl' 'libghc6-tagsoup-doc' 'zita-resampler-dbg' 'uim-gtk2.0' 'srcinst' 'rpl' 'libxml-libxml-debugging-perl' 'libqalculate-doc' 'liboss4-salsa-asound2' 'libgeography-nationalgrid-perl' 'liborlite-perl' 'libcdr-tools' 'hapm' 'gnumed-common' 'gmt-coast-low' 'liblensfun0' 'aqbanking-tools' 'libmono-db2-1.0-cil' 'libgnomecanvas2-doc' 'libglew-dev' 'libmagick++5' 'dpkg-dev' 'wmbattery' 'vo-aacenc-dbg' 'smc' 'yale' 'python3-zope.fixers' 'opendrim-lmp-softwareupdate' 'snacc-doc' 'librostlab3-dbg' 'libglibmm-utils2' 'libmaven-reporting-impl-java' 'firmware-tools' 'libdx4' 'cuyo-data' 'avogadro' 'autotrash' 'texlive-science-doc' 'mythes-fr' 'rpm' 'zeroc-ice-manual' 'sbnc-dbg' 'polybori' 'php-horde-serialize' 'pcb-lesstif' 'parsec47-data' 'openerp-desktop' 'lua-ldap' 'libnet-amazon-ec2-perl' 'libghc-libtagc-prof' 'libgentlyweb-utils-java-doc' 'gnome-time-admin' 'garden-of-coloured-lights-data' 'fatrat-opensubtitles' 'dillo' 'courierpassd' 'acl2-emacs' 'python3-virtkey' 'maven-ant-helper' 'libpe-status3-dev' 'libauparse-dev' 'qc-usb-utils' 'fossology' 'xfonts-tipa' 'vdesk' 'the' 'libzeroc-ice34-dbg' 'libstxxl1-dbg' 'spacenavd' 'plplot11-driver-wxwidgets' 'libncap44' 'liblua5.1-zip-dev' 'libgts-dev' 'libghc-zlib-conduit-doc' 'lcmaps-basic-interface' 'indicator-applet-session' 'irker' 'libxml-treepp-perl' 'xfonts-intl-arabic' 'python-dipy' 'python-tofu' 'tcl8.5-doc' 'ubuntu-extras-keyring' 'libijs-dev' 'gobjc++-4.4' 'libdrm-ltsq-radeon1' 'zookeeper-bin' 'wmfrog' 'pxz' 'namazu2' 'libphtools2-gfortran' 'libpcp-import-perl' 'libghc-wai-eventsource-doc' 'libeliom-ocaml-dev' 'libcsv-java' 'libcommons-modeler-java-doc' 'libapreq2-dev' 'libmaven-enforcer-plugin-java' 'gnurobbo' 'globus-gatekeeper' 'dpkg-awk' 'libcommons-beanutils-java' 'usb-modeswitch' 'libcholmod1.7.1' 'ucf' 'gobjc++-4.5' 'root-system-rootd' 'psychopy' 'libwww-search-perl' 'libqof2-backend-sqlite' 'libnet-akamai-perl' 'libkgeomap-dev' 'libghc-warp-doc' 'libghc-haskell-src-prof' 'libbullet-dev' 'ike-scan' 'gridsite-gsexec' 'eric' 'clam-networkeditor' 'libgraphics-colorobject-perl' 'lilypond' 'canna-shion' 'texlive-lang-norwegian' 'landscape-client' 'indicator-datetime' 'software-properties-common' 'python-epr-dbg' 'pacpl' 'node-diff' 'libuhd-dev' 'libibcommon1' 'softhsm' 'libcublas5.0' 'libcgi-application-plugin-anytemplate-perl' 'libadplug-dev' 'libpocketsphinx1' 'gobjc++-4.6' 'ghostess' 'ghex' 'gfsd' 'python-dkim' 'libmedc-dev' 'python-pymongo' 'python-oauth' 'ceph-fs-common' 'tgn' 'snd' 'sks' 'radare2' 'python-facebook' 'php-horde-constraint' 'python-nifti' 'libghc-shellac-doc' 'libvtk5-dev' 'libdatetime-event-ical-perl' 'gobjc++-4.7' 'wgerman-medical' 'libnet-dns-fingerprint-perl' 'libencode-perl' 'nautilus-share' 'mozvoikko' 'liborc-0.4-0-dbg' 'libjs-yui3-common' 'libc6-dev-amd64' 'libcoroipcs-dev' 'libsnmp-perl' 'libiptables-ipv4-ipqueue-perl' 'libobjc2-dbg-armel-cross' 'libboost-iostreams1.46.1' 'tau-examples' 'python-statsmodels' 'notebook-gtk2' 'nginx-full-dbg' 'clustalw-mpi' 'libz80ex-dev' 'libnet-openid-server-perl' 'libjenkins-htmlunit-java' 'libdacs-dev' 'libcrypt-twofish-perl' 'festvox-kallpc8k' 'dragonegg' 'capiutils' 'quantum-plugin-nec' 'konqueror' 'libjavascript-minifier-xs-perl' 'csync2' 'gtk2.0-examples' 'fonts-sil-padauk' 'signon-plugin-oauth2' 'gitalist-common' 'libpoppler-qt4-3' 'uck' 'ttf-yofrankie' 'libxine1-gnome' 'libstarlink-ast-grf3d0' 'libnet-ssh-ruby1.8' 'libghc-optparse-applicative-prof' 'libghc-cairo-doc' 'libconvert-pem-perl' 'libanyevent-xmpp-perl' 'kwin-style-dekorator' 'vpnc' 'kde-config-gtk-style-preview' 'hdav' 'htmldoc' 'libmx-1.0-2' 'mono-utils' 'xawtv-plugin-qt' 'tig' 'sng' 'samplv1' 'python-pyodbc' 'lierolibre-data' 'libsysactivity1' 'libxmltooling-dev' 'libtime-progress-perl' 'libpaperclips-java-doc' 'libcpuset1' 'kde-wallpapers' 'gir1.2-tracker-0.14' 'gem-plugin-dv4l' 'rplay-client' 'claws-mail-bogofilter' 'libpoppler-qt4-4' 'libextutils-cbuilder-perl' 'libipmimonitoring-dev' 'libdotconf-dev' 'zbar-dbg' 'rygel-dbg' 'python-yappy-doc' 'python-traitsbackendwx' 'libopencascade-foundation-dev' 'libmixlib-log-ruby1.8' 'libmath++0c2a' 'libjconv2' 'libglobus-gass-copy-doc' 'libbusiness-issn-perl' 'libbognor-regis-0.6-0-dbg' 'kdegraphics' 'idzebra-2.0-doc' 'libmath-calc-units-perl' 'cfengine2' 'libstreamanalyzer0' 'lib64gcc1-dbg' 'dpkg-cross' 'python-okasha-examples' 'xmms2-plugin-curl' 'robocut' 'ruby-hikidoc' 'python-turbogears2-doc' 'netpipe-openmpi' 'plastimatch' 'libopenctl0.8' 'libghc-quickcheck-instances-prof' 'kde-window-manager-active-gles' 'inteltool' 'gmidimonitor' 'gdb-mingw-w64-target' 'erlang-proper-dev' 'egoboo-data' 'dput-ng-doc' 'cfengine3' 'awesome-extra' 'aften' 'rrdtool-tcl' 'language-pack-mt-base' 'multipath-tools' 'ibritish-large' 'mbrola-fr1' 'fonts-ipafont-nonfree-uigothic' 'xfce4-fsguard-plugin' 'shiboken' 'ruby-shoulda-matchers' 'qwo' 'petris' 'lifelines-reports' 'libpfs-1.2-0' 'libjcm-java-doc' 'libtbb-dev' 'libbencode-perl' 'geany-plugin-webhelper' 'firebird2.5-classic' 'libpdl-stats-perl' 'libunity-core-6.0-dev' 'libunity-2d-private-dev' 'libbrlapi-dbg' 'tgt' 'gforge-shell-postgresql' 'sauerbraten' 'r-cran-boot' 'r-mathlib' 'netdiag' 'mythbuntu-control-centre' 'mantis' 'libipc-run-safehandles-perl' 'libhttpclient-ruby1.9.1' 'libghc-algebra-prof' 'flog' 'ffmsindex' 'confetti' 'bitmeter' 'libaspectj-java' 'zeitgeist-extension-fts' 'python-django-nose' 'x11proto-print-dev' 'mythes-hu' 'libtext-iconv-perl' 'zsafe' 'linux-backports-modules-cw-3.5-3.2.0-39-virtual' 'vala-terminal' 'xfce4-cpugraph-plugin' 'python-seqdiag' 'macchanger' 'picard-tools' 'libprinterconf-dev' 'libpocoodbc9' 'libgopersist-1-dev' 'libslepc3.2-dev' 'libdataobjects-mysql-ruby' 'libboost-mpi-python1.46-dev' 'khangman' 'debsigs' 'amqp-tools' 'python3-numpy-dbg' 'libmono-corlib2.0-cil' 'libphonon4' 'language-pack-yo-base' 'os-prober' 'bzr-gtk' 'sugar-session-0.84' 'libghc6-webkit-dev' 'mbrola-fr4' 'zend-framework-bin' 'wesnoth-core' 'omniorb' 'xmms2-plugin-mad' 'libmgl-data' 'libghc-opengl-doc' 'jasmin-sable' 'libinsighttoolkit3-dev' 'ufc' 'squareness' 'libev4' 'android-tools-fastboot' '389-admin-console' 'python-suds' 'libgnome-vfs2.0-cil-dev' 'dh-exec' 'libdevmapper-event1.02.1' 'wikkid' 'sugar-session-0.90' 'z88dk-bin' 'spd' 'tin' 'python-z3c.macro' 'plasma-widget-bkodama' 'openwince-jtag' 'libtcltk-ruby1.8' 'libphone-utils-dev' 'libgdkcutter-pixbuf0' 'libeet-bin' 'libcolorchooser-java-doc' 'libperl6-slurp-perl' 'ruby-amrita2' 'kgrab' 'xpa-tools' 'festvox-rablpc8k' 'phpmyadmin' 'python-oslo-config' 'libjson-glib-1.0-0-dbg' 'ibmasm-utils' 'sugar-session-0.86' 'generatorrunner-doc' 'libokularcore1abi1' 'mbrola-id1' 'udo' 'sshfp' 'spe' 'pd-list-abs' 'licq-plugin-msn' 'libsoundtouch-ocaml-dev' 'libpadre-plugin-pdl-perl' 'libnetfilter-log1' 'libnet-daap-dmap-perl' 'libkface-data' 'libgraphite-php' 'libghc-rsa-dev' 'libghc-hxt-curl-doc' 'libcliquer-dev' 'libbot-basicbot-perl' 'kaddressbook' 'gollem' 'cpp-powerpc-linux-gnu' 'boolstuff' 'barcode' 'libgvc5' 'mythes-it' 'hunspell-gl-es' 'gcc-4.5-arm-linux-gnueabihf-base' 'libcwd' 'rocs-dbg' 'python-epsilon' 'libtext-vcard-perl' 'root-plugin-geom-geombuilder' 'libomxil-bellagio0-components-alsa' 'libbareword-filehandles-perl' 'guestfsd' 'grfcodec' 'geany-plugin-gendoc' 'gambc-doc' 'fastx-toolkit' 'tla' 'ccrypt' 'openprinting-ppds' 'tao-idl' 'sugar-session-0.88' 'libvala-0.10-0-dbg' 'libghc6-svgcairo-dev' 'linux-backports-modules-cw-3.6-3.2.0-37-generic' 'xavante-doc' 'tcpick' 'musescore' 'lua-sec-dev' 'libpocofoundation9-dbg' 'libgstreamermm-0.10-doc' 'libghc-mtlparse-dev' 'libgammu-dev' 'libutouch-evemu-dev' 'python-simplegeneric' 'pcmciautils' 'libdbus-glib-1-dev' 'smartdoc-elisp' 'r-cran-snow' 'qmidinet' 'python3-pyparsing' 'prelude-lml' 'openhpi' 'libprintsys-dev' 'libgss3' 'libghc-arrows-doc' 'libfko0-dev' 'libclippoly-dev' 'libyanfs-java' 'gpe-bluetooth' 'glest' 'pidgin-hotkeys' 'fso-datad' 'dict-freedict-scr-eng' 'darcsum' 'calligra-dev' 'bsnes' 'python-ldap-doc' 'sshfs' 'gir1.2-xkl-1.0' 'mtview' 'libqt3-mt-sqlite' 'libghc6-syb-with-class-instances-text-doc' 'libboost-random1.46.1' 'tarantool-client' 'statserial' 'regina-normal' 'procmeter3' 'libvte0.16-cil' 'libjsf-api-java' 'libglobus-gass-transfer-dev' 'libactivemq-activeio-java-doc' 'kimwitu++' 'groundcontrol' 'fmit' 'libsocket-getaddrinfo-perl' 'nowebm' 'logtail' 'libpkcs11-helper1' 'liblockfile-dev' 'gstreamer0.10-plugins-bad' 'libxalan2-java' 'wnn7egg' 'syncevolution-dbus' 'sugar-logviewer-activity' 'python-zope.app.locales' 'sugar-session-0.96' 'libv8-dev' 'libplack-middleware-file-sass-perl' 'libxml-atom-fromowl-perl' 'libhdf5-openmpi-1.8.4' 'libgupnp-av-1.0-dev' 'libglobus-usage-dev' 'libdnsjava-java' 'gftp' 'libfxt0' 'siproxd' 'libwps-0.2-2' 'libpils2-dev' 'libghc6-xmonad-doc' 'libutouch-qml' 'quake3' 'libpam-duo' 'libghc-openpgp-asciiarmor-dev' 'libghc-objectname-prof' 'libdar-dev' 'libbobcat-dev' 'libasm-java-doc' 'ipsvd' 'ghkl' 'funnelweb' 'freevo-doc' 'pandora-build' 'printer-driver-splix' 'piwigo-pgsql' 'linphone-nox' 'openoffice.org-help-ca' 'voms-dbg' 'python-django-nova' 'mythbuntu-bare-client' 'mighttpd2' 'libocas-tools' 'libghc-data-lens-prof' 'libfusioninventory-agent-task-deploy-perl' 'libfm3-dbg' 'libeet-dbg' 'libdevel-patchperl-perl' 'libcsiro0' 'python-gtkmvc' 'itcl3' 'easychem' 'libtokyocabinet-dev' 'libquvi-doc' 'gobjc-4.4' 'urlscan' 'socklog-run' 'qxw' 'quantum-plugin-bigswitch' 'python-django-dajaxice' 'octave-struct' 'libxdmf2' 'liblttng-ctl-dev' 'libjs-reqwest' 'libghc-hdbc-postgresql-prof' 'libfelix-gogo-shell-java' 'libiso9660-8' 'babel-1.4.0' 'liboverlay-scrollbar-0.2-0' 'xapian-doc' 'gobjc-4.5' 'wmlongrun' 'python-zope.exceptions' 'nanoweb-doc' 'thunar-data' 'libscriptalicious-perl' 'libns3-3-dbg' 'libidn2-0-dev' 'libghc-github-dev' 'libsox-fmt-base' 'libgo0' 'gadmin-samba' 'coinor-csdp' 'checkpw' 'chado-utils' 'asymptote-doc' 'tix' 'libpthread-stubs0' 'libmono-tasklets2.0-cil' 'printer-driver-hpcups' 'xmlroff' 'sputnik' 'php-net-url2' 'libwebcam0' 'libnet-vnc-perl' 'liblog4ada-doc' 'libjava-gnome-java-doc' 'libghc-ldap-doc' 'libghc-cpu-prof' 'libformat-human-bytes-perl' 'xsdcxx' 'gobjc-4.6' 'libjetty8-java' 'cuetools' 'python-twitter' 'libfluidsynth1' 'libzephyr4-krb5' 'mythes-ne' 'libfs6' 'libavalon-framework-java' 'fusionforge-plugin-scmgit' 'postgresql-plperl-8.4' 'xicc' 'tryton-modules-party' 'tk-tktray' 'shorewall-core' 'python-germinate' 'libmodule-scandeps-perl' 'libhtmlunit-java' 'jack-tools' 'fso-deviced-dbg' 'csound-data' 'ruby-bdb' 'xchat-gnome' 'texlive-metapost' 'libreadline-gplv2-dev' 'libgpod-common' 'libhdb9-heimdal' 'gobjc-4.7' 'openoffice.org-help-da' 'python-launchpad-integration' 'linux-backports-modules-cw-3.5-3.2.0-36-generic' 'libmtj-java-doc' 'srg' 'science-electrophysiology' 'yard' 'rednotebook' 'lunzip-dbg' 'libmulticobex1' 'libgst7' 'libglobus-gss-assist-doc' 'libglobus-gass-cache5' 'ttf-dejima-mincho' 'dircproxy' 'mutt-dbg' 'libpst4-dbg' 'language-pack-gnome-fr-base' 'fonts-arphic-gkai00mp' 'openoffice.org-report-builder' 'yudit-common' 'skipfish' 'luckybackup-data' 'librostlab3-dev' 'libjsr311-api-java' 'libgooglepinyin0-dbg' 'libgnet-dev' 'kio-ftps' 'kdc2tiff' 'jester' 'toga2' 'gnokii-smsd' 'gcin-dev' 'fonts-gfs-porson' 'libdvdread4' 'auto-complete-el' 'libchart-perl' 'isoquery' 'libghc6-alut-dev' 'mythbuntu-apple-trailers' 'yate-mysql' 'wulfstat' 'shogun-dbg' 'png23d' 'mmpongd' 'libsubtitles-perl' 'libspf2-dev' 'libobject-pluggable-perl' 'libgpiv3-dbg' 'libghc-basic-prelude-prof' 'libfeedtools-ruby-doc' 'libb-hooks-op-annotation-perl' 'kdebase-runtime-dbg' 'heroes-sdl' 'haxe' 'gkrellm-hdplop' 'fcitx-config-gtk2' 'dynalogin-client-php' 'dict-freedict-dan-eng' 'claws-mail' 'libfile-find-rule-perl' 'language-pack-kde-ka-base' 'language-pack-kde-gu-base' 'libqt4-xml' 'sox' 'e2fslibs' 'selfhtml' 'python-zope.browserresource' 'python-django-dajax' 'netdisco-common' 'pure-ftpd' 'orthanc' 'libzeroc-ice34-dev' 'libjs-jquery-metadata' 'libgtkdatabox-0.9.1-1-glade' 'libghc-entropy-dev' 'krb5-clients' 'libkarma0' 'havp' 'fastdep' 'dell-dup' 'libsoup-gnome2.4-1' 'libghc6-haskeline-prof' 'openoffice.org-help-de' 'tclcl-dbg' 'uif' 'ruby-platform' 'r-cran-reshape' 'python-uwsgidecorators' 'python-pyevolve-doc' 'python-tlslite' 'openmpi1.6-doc' 'libroot-geom-dev' 'padre' 'libjs-jquery-ui-theme-trontastic' 'libimage-size-ruby1.8' 'libgts-doc' 'libghc-transformers-base-dev' 'libghc-nats-prof' 'libghc-gtk-prof' 'libcangjie-dev' 'libbind4-dev' 'python3-pyside.qtgui' 'gnome-klotski' 'libzip2' 'dballe' 'tigr-glimmer' 'audiolink' 'vtk-doc' 'slrnpull' 'ttf-kacst-one' 'evolution-data-server' 'tob' 'libweather-google-perl' 'uqm-russian' 'openjdk-6-jre-zero' 'opendkim-tools' 'solr-tomcat' 'libsvn-dump-perl' 'libgmerlin-dev' 'libeliom-ocaml-doc' 'libapreq2-doc' 'ibus-table-emoji' 'fritzing' 'fp-ide' 'cameramonitor' 'yui-compressor' 'python-django-doc' 'python-sqlite' 'libqt5sql5-mysql' 'libsoup-gnome2.4-dev' 'language-pack-kde-ru-base' 'libknotifyconfig4' 'python-uniconvertor' 'imagemagick-dbg' 'ttf-dzongkha' 'gettext-base' 'zlib1g' 'virtualbox-ose-qt' 'linux-backports-modules-net-3.2.0-37-generic-pae' 'tao-ifr' 'r-cran-abind' 'openclipart-svg' 'libwtdbofirebird-dev' 'mupen64plus-data' 'libdatetime-format-xsd-perl' 'otter' 'awardeco' 'xfpt' 'python-gnomekeyring' 'libqtnetwork4-perl' 'libmono-cecil-private-cil' 'libasyncns0' 'ssh' 'ufw' 'stardict-german-czech' 'sympow' 'sabily-xsplash-artwork' 'python-zope.security' 'x2goclient' 'msort-gui' 'libspin-java-doc' 'libterm-readpassword-perl' 'liblablgtk2-gl-ocaml-dev' 'libjudy-dev' 'python-extractor' 'libatdgen-ocaml' 'kpart-webkit-dbg' 'libportmidi0' 'holdingnuts-server' 'hbro' 'gjay' 'fonts-hosny-amiri' 'libexplain30' 'fonts-okolaks' 'libgetopt-argvfile-perl' 'axiom-databases' 'adplay' 'python-pytest-doc' 'libaio1-dbg' 'texlive-generic-recommended' 'git-arch' 'gir1.2-gck-1' 'mbrola-gr1' 'trac-datefieldplugin' 'tnftp' 'ticgit' 'mupen64plus-audio-sdl-dbg' 'libstruct-compare-perl' 'libgpp4f-dev' 'libgnat-4.6-dbg' 'hol-light' 'ddns3-client' 'libyahoo2-11' 'libmodule-util-perl' 'rhythmbox-plugins' 'mythes-de-ch' 'libxv1-dbg' 'libgtk-vnc-1.0-0-dbg' 'libdbd-anydata-perl' 'libasound2-plugin-equal' 'linux-image-3.2.0-33-virtual' 'mbrola-gr2' 'yash' 'ulatencyd' 'maint-guide-ca' 'lxc-dbg' 'libproxy1-plugin-webkit' 'libomnievents-dbg' 'libhtml-autopagerize-perl' 'libeditline-dev' 'libtest-mockobject-perl' 'libarch-perl' 'ice34-slice' 'faustworks' 'exiftran' 'docbook-mathml' 'libglobus-common0' 'xfonts-100dpi' 'cdrdao' 'pacemaker-dev' 'libgomp1-dbg' 'cups-dbg' 'linux-headers-3.5.0-21' 'wmressel' 'wmii' 'wcslib-tools' 'vboot-kernel-utils' 'tpb' 'rxvt-ml' 'openload' 'libghc-hxt-charproperties-dev' 'libdose3-ocaml-dev' 'guessnet' 'erlang-esdl-dev' 'libboost-regex-dev' 'libaudiocdplugins4' 'samplerate-programs' 'libmono-windowsbase4.0-cil' 'libgusb2' 'linux-headers-3.5.0-22' 'vrfy' 'uim' 'netsed' 'libxmltooling-doc' 'libpion-common-dev' 'libmaven-site-plugin-java' 'lua-leg-dev' 'libjenkins-json-java' 'libiksemel-utils' 'libchi-perl' 'libdata-random-perl' 'libspring-beans-java' 'latex-mk' 'ekiga-dbg' 'yate' 'doconce' 'debram' 'context-modules' 'cipux-rpcd' 'libflexmock-ruby' 'libwvstreams-dev' 'espeak-dbg' 'libghc6-ghc-events-prof' 'awn-applet-stack' 'linux-headers-3.5.0-23' 'linux-headers-3.5.0-18' 'ttf-larabie-uncommon' 'tucnak2' 'srs' 'sapphire' 'python-van.testing' 'python-fcgi' 'libtxc-dxtn-s2tc-bin' 'libthunar-vfs-1-2-dbg' 'libswiss-perl' 'libnet-managesieve-perl' 'libkeybinder-dev' 'libghc-wai-test-dev' 'libfacets-ruby' 'libapache2-mod-wsgi-py3' 'cqrlog' 'python3-defer' 'libparted0-i18n' 'libdbd-mysql' 'libclutter-1.0-common' 'openoffice.org-help-cs' 'linux-headers-3.5.0-24' 'linux-headers-3.5.0-19' 'opendict-plugins-lingvosoft' 'xzoom' 'xmms2-plugin-mp4' 'pd-markex' 'netrik' 'libosmpbf-java' 'libnss-myhostname' 'libcgicc5-dev' 'libmoosex-semiaffordanceaccessor-perl' 'libgrabcd-readconfig-perl' 'gfxboot-examples' 'festvox-kdlpc8k' 'xfonts-intl-phonetic' 'python-poppler' 'libgraphics-magick-perl' 'xcursor-themes' 'libfakefs-ruby1.9.1' 'postfix-dev' 'libbrlapi-dev' 'libblas3gf' 'libdconf0' 'linux-headers-3.5.0-25' 'websimba' 'rxp' 'mapivi' 'libtbb-doc' 'libtarantoolsql1-dbg' 'librdf-generator-void-perl' 'libnewtonsoft-json-cil-dev' 'liblablgl-ocaml' 'libjcsp-java' 'libcxgb3-dev' 'stk' 'grub-splashimages' 'x-face-el' 'libgraphviz-perl' 'yasm' 'libgssdp-1.0-dbg' 'libdconf1' 'libdeal.ii-dbg' 'linux-headers-3.5.0-26' 'calligramobile' 'python-sqlkit' 'magicicada' 'libnetsds-util-perl' 'libjs-jquery-tipsy' 'libjboss-vfs-java' 'libhtml-toc-perl' 'libalog0.4.1-full' 'libspring-ldap-java' 'gworldclock' 'givaro-user-doc' 'fretsonfire' 'dvtm' 'dotmcp' 'dict-freedict-wel-eng' 'bluez-compat' 'mythes-pl' 'libmono-i18n-rare4.0-cil' 'libfontembed-dev' 'tasksel' 'python-osmgpsmap-dbg' 'openoffice.org-help-el' 'linux-headers-3.5.0-27' 'udev-discover' 'tmw' 'themonospot' 'slurm-llnl-basic-plugins-dev' 'routino' 'python-skimage' 'minisapserver' 'libwebrtc-audio-processing-0' 'libinotify-ruby' 'libsys-virt-perl' 'libghc-x11-dev' 'libghc-irc-dev' 'libghc-glib-dev' 'libclass-prototyped-perl' 'vdr' 'ruby-maruku' 'gnusim8085' 'fizmo-ncursesw' 'docbook-simple' 'libconvert-color-perl' 'dante-server' 'cyrus-admin' 'armada-backlight' 'python3-pylibacl-dbg' 'mono-csharp-shell' 'libsexy-dev' 'libgnomevfs2-bin' 'libppl0.12-dev' 'libbind-dev' 'packagekit' 'exim4-doc-html' 'libghc6-webkit-doc' 'mlmmj-php-web' 'liquidsoap-plugin-all' 'ruby-rsvg2-dbg' 'libotf-trace1' 'libghc-temporary-dev' 'libexpect-ocaml-dev' 'libcryptokit-ocaml' 'libmoose-autobox-perl' 'ifupdown-extra' 'lua-expat' 'eiskaltdcpp-sounds' 'dwoo' 'drupal6-mod-imageapi' 'libprojectm2' 'libgpgme11-dev' 'libdrm-radeon1' 'libarchive-dev' 'language-pack-br-base' 'libghc6-happstack-data-prof' 'openoffice.org-help-fi' 'ucimf-chewing' 'performous' 'netdisco-frontend' 'libio-interactive-perl' 'libgig-dev' 'libetsf-io-dev' 'libdbix-password-perl' 'libbitstring-ocaml-dev' 'fp-units-base' 'doc-linux-pl-html' 'libavifile-0.7c2' 'libportaudio-dev' 'libnl-cli-3-dev' 'libxss1' 'libiw30' 'libghc6-smtpclient-prof' 'openoffice.org-officebean' 'yatm' 'sword-comm-pers' 'ruby-cutest' 'python-casmoothing' 'mcollective-plugins-iptables' 'liquidsoap-plugin-lastfm' 'libpoppler-glib-ruby' 'libghc-rsa-doc' 'libconfig-model-itself-perl' 'icecc' 'gtkvncviewer' 'gmt-gshhs-high' 'globus-io-dbg' 'yasr' 'openvswitch-ipsec' 'libgtksourceview-3.0-dev' 'linux-backports-modules-hv-precise-generic-pae' 'xxxterm' 'xfce4-datetime-plugin' 'etoys' 'pango-graphite-dbg' 'libflint-dev' 'libstruts1.2-java' 'libcommons-jci-java-doc' 'ipython-qtconsole' 'gnome-schedule' 'gcin-qt4-immodule' 'python-farstream' 'libboost-test1.46-dev' 'language-pack-mr-base' 'libghc6-svgcairo-doc' 'gforge-plugin-extratabs' 'esix' 'yorick-yeti' 'python-wand' 'netris' 'libxfce4ui-utils' 'libokular-perl' 'libmoosex-app-cmd-perl' 'libghc-mtlparse-doc' 'libclass-meta-perl' 'libabstract-ruby-doc' 'libvamsas-client-java' 'fpm2' 'famfamfam-flag-png' 'electric-fence' 'courier-authlib-userdb' 'tor' 'postgresql-plperl-9.1' 'libdbus-glib-1-doc' 'libucil2' 'wmcoincoin' 'wm2' 'wcd' 'mimefilter' 'rivet-reference' 'libpocoxml9' 'libogginfo-ruby1.8' 'libnumber-range-perl' 'libmath-vector-real-kdtree-perl' 'fonts-nanum-eco' 'fonts-gfs-neohellenic' 'coinor-libcgl0-dbg' 'code-saturne' 'fluidsynth' 'linux-source-3.8.0' 'libfile-slurp-perl' 'libgirepository1.0-dev' 'gimp-gutenprint' 'a2ps' 'libgd2-xpm' 'quantlib-ruby' 'openoffice.org-help-es' 'xfrisk' 'xabacus' 'synopsis-doc' 'snappy' 'python-clamav' 'php-net-portscan' 'php-horde-translation' 'mu-cade-data' 'molds' 'profphd' 'ruby-paint' 'qpxtool' 'libglobus-gass-transfer-doc' 'libanyevent-forkobject-perl' 'ibus-table-viqr' 'gray-theme' 'gbackground' 'libatlas-cpp-0.6-1' 'dvsink' 'shntool' 'courier-authlib' 'aumix-gtk' 'adonthell' 'xserver-xorg-video-openchrome-dbg' 'wbrazilian' 'nagios3-doc' 'libgnomevfs2-extra' 'libido3-0.1-0' 'libsasl2-modules-gssapi-heimdal' 'acpi-support' 'nautilus-clamscan' 'openoffice.org-help-et' 'linux-image-3.2.0-30-generic' 'linux-image-3.2.0-25-generic' 'wxgeometrie' 'tpp' 'sup' 'qapt-utils' 'python-netio230a' 'libsvg-graph-ruby-doc' 'libhtml-tagcloud-perl' 'libcorelinux-dev' 'libgstreamer-plugins-bad0.10-0' 'gnome-dvb-daemon' 'python-djvu' 'clawsker' 'makejvf' 'language-pack-hne-base' 'erlang-x11' 'gmbox' 'libopenmpi1.5-dbg' 'openoffice.org-help-eu' 'openoffice.org-help-dz' 'mariadb-test-10.0' 'xfce4-artwork' 'wmix' 'voms-dev' 'root-plugin-net-globus' 'renpy-doc' 'python-secretstorage-doc' 'prctl' 'libwings2' 'libvalidate-net-perl' 'libtermios-ruby' 'librsyntaxtextarea-java' 'libjemmy2-java-doc' 'libghc-tagsoup-dev' 'libghc-openpgp-asciiarmor-doc' 'jspwiki' 'fonts-hosny-thabit' 'libeet-dev' 'qt4-bin-dbg' 'gconf2-common' 'gcc-4.6-arm-linux-gnueabihf-base' 'openoffice.org-help-gl' 'linux-backports-modules-cw-3.4-3.2.0-37-virtual' 'xmacro' 'tmw-music' 'xview-clients' 'libusb-java-dbg' 'libtime-fake-perl' 'libslicot-pic' 'liblogservicecomponentbase2-dev' 'libssl-ocaml-dev' 'libghc-numinstances-dev' 'liberis-1.3-19-dbg' 'gosa-plugin-dhcp' 'hoichess' 'cvsconnect' 'grub-pc-bin' 'libgs9' 'libboost-iostreams1.48.0' 'openoffice.org-help-fr' 'ruby-coffee-script-source' 'pforth' 'libglobus-gram-client-dev' 'libfpdi-php' 'libfakekey0' 'libboost-iostreams1.53.0' 'ruby-passenger' 'krusader-dbg' 'libserd-0-0' 'gkrellm-volume' 'postgresql-9.1-postgis' 'ghc-mod' 'cd-circleprint' 'vala-0.18-doc' 'nautilus-dbg' 'python-tempita' 'fonts-texgyre' 'yorick-yutils' 'xfce4-dev-tools' 'vdr-plugin-examples' 'scim-gtk-immodule' 'xosd-bin' 'licq-plugin-osd' 'libibnetdisc-dev' 'libghc-hcard-prof' 'libghc-github-doc' 'libghc-extensible-exceptions-dev' 'libfind-lib-perl' 'iptraf-ng' 'fossil' 'libjericho-html-java' 'cyrus-imspd' 'libbpp-qt1' 'mythes-ro' 'libgucharmap-2-90-dev' 'glade-gnome' 'gcc-multilib' 'postgresql-client' 'bacula-console' 'openoffice.org-style-crystal' 'libghc6-html-prof' 'docgenerator' 'openoffice.org-emailmerge' 'vfu' 'php-net-publicsuffix' 'p10cfgd' 'ooo-thumbnailer' 'sigviewer' 'r-cran-epibasix' 'libpostgresql-jdbc-java-doc' 'libh323-dbg' 'libpdfbox-java' 'gcin-tables' 'libapache2-mod-lisp' 'mythes-sk' 'libasound2-dbg' 'linux-image-3.8.0-12-generic' 'openoffice.org-help-ja' 'xfonts-cronyx-isocyr-75dpi' 'wmnd' 'ttb' 'tfdocgen' 'python-unac' 'mangler' 'libqmmp-dev' 'libpam-shishi' 'libgdict-1.0-dev' 'libclaw-graphic1' 'gobjc-4.4-arm-linux-gnueabi' 'gmediaserver' 'ballview' 'abr2gbr' 'flwm' 'libassuan0' 'gcc-4.7-multilib' 'keyboard-configuration' 'xfonts-thai-etl' 'python3-slimmer' 'ns2-examples' 'lv2fil' 'linux-image-lowlatency' 'libxml-sax-expat-incremental-perl' 'shibboleth-sp2-schemas' 'libgooglepinyin0-dev' 'libglobus-gsi-credential-dev' 'fped' 'enemies-of-carlotta' 'bomberclone-data' 'bdf2psf' 'libunity-core-5.0-5' 'trn' 'xfce4-smartbookmark-plugin' 'redmine-plugin-recaptcha' 'sux' 'ncoils' 'librome-java-doc' 'libqmi-utils' 'libgpiv3-dev' 'libghc-gtkglext-prof' 'libgeo-helmerttransform-perl' 'libdb-je-java' 'libantlr2.7-cil' 'gnupg-pkcs11-scd' 'aconnectgui' 'python-ubuntu-sso-client' 'libcdr-dev' 'libghc6-alut-doc' 'netbook-launcher' 'python-rpy-doc' 'mffm-timecode-dev' 'libvlccore-dev' 'libnet-ping-external-perl' 'libghc-hostname-dev' 'libghc-cgi-prof' 'icinga-core' 'hwloc' 'holotz-castle-editor' 'ruby-imagesize' 'gpe-what' 'proj-bin' 'algotutor' 'python-gtk-vnc' 'libsnmp-dev' 'libatk-bridge2.0-dev' 'libkntlm4' 'gstreamer1.0-pulseaudio' 'gimp' 'libhypre-2.4.0' 'tua' 'ps-watcher' 'lua-rex-tre' 'littlewizard-data' 'tclcl-dev' 'libqt5quickparticles5' 'libperlanet-perl' 'libhtmlcxx3' 'libghc-entropy-doc' 'libghc-diagrams-dev' 'haskell-cpphs-doc' 'libgeronimo-commonj-spec-java' 'libfiredns-dev' 'kdrill' 'isdnutils-doc' 'iptux' 'r-base' 'chinese-calendar' 'mythes-ru' 'grub-pc-dbg' 'libappindicator1' 'libnet-server-perl' 'complearn-tools' 'unity-webapps-gmail' 'libtet1.4.2-dev' 'ruby-build' 'r-cran-coda' 'node-step' 'licq-plugin-qt4' 'libvi-quickfix-perl' 'libshogun-dev' 'libnet-dns-async-perl' 'liblwt-ocaml' 'liblouisutdml-bin' 'libghc-transformers-base-doc' 'libndr-dev' 'kopete-plugin-thinklight' 'marble' 'xjed' 'gammaray' 'r5rs-doc' 'dxpc' 'xnee-doc' 'libopenbabel4' 'libunity-webapps-dev' 'libphononexperimental4' 'libgmerlin-doc' 'linux-backports-modules-cw-3.3-3.2.0-36-virtual' 'wmbutton' 'tokyotyrant' 'qtdeclarative5-dev-tools' 'tth' 'libsqljet-java-doc' 'libhivex-ocaml' 'libgcroots0' 'libvte0.16-cil-dev' 'ginn' 'exaile' 'dockmanager' 'update-motd' 'wdm' 'libbsf-java-doc' 'libboost-system1.49-dev' 'hyphen-af' 'vim' 'openoffice.org-l10n-zh-cn' 'libtriangle-dev' 'smplayer' 'python-epr-doc' 'python-larch' 'maint-guide-es' 'live-debconfig-doc' 'libvoms-api-java-java' 'libtemplate-plugin-textile2-perl' 'librostlab3' 'libqt5multimedia5' 'libghc-test-framework-dev' 'libghc-safesemaphore-prof' 'libcurses-ocaml-dev' 'ruby-bio' 'lib64gcc1-dbg-powerpc-cross' 'ruby-okular' 'python-cinfony' 'php5-mcrypt' 'clipit' 'ruby-net-scp' 'calendarserver' 'libnuma1' 'libcoroipcs4' 'virtualbox-ose-dbg' 'xmms2-plugin-flac' 'stx-btree-dev' 'libxapian-ruby1.8' 'lua-zip-dev' 'libenv-path-perl' 'libcsync-plugin-smb' 'xmorph' 'globus-gram-job-manager-dbg' 'rdiff-backup' 'fuseiso' 'python-bzrlib-dbg' 'cdebootstrap' 'language-pack-gnome-ia-base' 'language-pack-gnome-eu-base' 'language-pack-gnome-dz-base' 'libboost1.48-all-dev' 'unp' 'redmine-mysql' 'openbox-dev' 'lxc-dev' 'libunrar0-dev' 'libomnievents-dev' 'libmicrohttpd-dbg' 'libpath-utils1' 'libhugs-mtl-bundled' 'libglide3-dev' 'libboost1.53-all-dev' 'libargtable2-dev' 'gosa-plugin-fai' 'man2html' 'debian-cd' 'fonts-gfs-artemisia' 'colortest' 'libpod-spell-perl' 'libp11-kit-gnome-keyring' 'session-migration' 'libcluster-glue-dev' 'openoffice.org-help-hu' 'xjokes' 'whatsnewfm' 'vrms' 'rygel-mediathek' 'python3-distro-info' 'python-llvm-dbg' 'python-zope.traversing' 'libvendorlib-perl' 'libsfml1.6-dbg' 'otpw-bin' 'libgrapple-1.0-1' 'libghc-zip-archive-prof' 'gurgitate-mail' 'genometools' 'genders' 'yaws' 'enna-dbg' 'drpython' 'php5-recode' 'tao-imr' 'libboost-random1.48.0' 'linux-backports-modules-cw-3.4-3.2.0-34-generic' 'linux-backports-modules-cw-3.4-3.2.0-29-generic' 'wordnet-gui' 'ttm' 'openvanilla-imgeneric-data-zh-cn' 'node-htmlparser' 'mpdris2' 'xmaxima' 'liquidsoap-plugin-alsa' 'liblastfm-java' 'libjava-xmlbuilder-java' 'libhtml-wikiconverter-perl' 'libghc-hxt-charproperties-doc' 'libunix-mknod-perl' 'libboost-random1.53.0' 'gsynaptics' 'libzlui-qt4' 'erlang-esdl-doc' 'xfonts-intl-japanese-big' 'eclipse-egit-mylyn' 'maint-guide-fr' 'libgnome-speech7' 'asterisk-prompt-fr-proformatique' 'vlc' 'tcl8.4' 'language-pack-gnome-ta-base' 'hyphen-ca' 'libkrb5-26-heimdal' 'cups-bsd' 'whatweb' 'tracker-explorer' 'shogun-cmdline-static' 'qsapecng' 'ptex-jisfonts' 'liblockdev1-dbg' 'libinotifytools0-dev' 'libgeomview-dev' 'libaunit2-dev' 'libdatetime-format-w3cdtf-perl' 'libreadline-java' 'fcitx-table-jyutping' 'eiskaltdcpp-gtk-data' 'debichem-semiempirical' 'probcons' 'libgudev1.0-cil' 'openmpi-bin' 'redhat-cluster-suite' 'liblocale-maketext-simple-perl' 'libmaa-dev' 'tcl8.5' 'libindi0' 'xemacs21-basesupport-el' 'tex4ht-common' 'tcl8.6' 'outdoors-theme' 'libtest-cukes-perl' 'libpod-abstract-perl' 'libjs-sink-test' 'libidzebra-2.0-mod-grs-marc' 'libghc-wai-test-doc' 'libfelix-utils-java-doc' 'cjk-latex' 'libmono-i18n-other4.0-cil' 'libmime-perl' 'ldap-utils' 'javacc-doc' 'gimp-plugin-registry' 'ser-osp-module' 'libghc6-split-dev' 'latex-cjk-xcjk' 'libgecodegist30' 'openoffice.org-help-it' 'libqt3-headers' 'xprobe' 'xca' 'python-pqueue' 'maxima-doc' 'maint-guide-ja' 'libnussl-dev' 'libghc-free-prof' 'xfdesktop4' 'plasma-widgets-addons' 'imageshack-uploader-common' 'libtiff4' 'postfix-doc' 'libgssdp-1.0-dev' 'libespeak-dev' 'libdeal.ii-dev' 'xcb' 'wormux-data' 'valabind' 'libtsk-dev' 'libmath-derivative-perl' 'libhttpunit-java-doc' 'libghc-tagstream-conduit-dev' 'libgdome2-cpp-smart-dev' 'libboost-mpi-dev' 'leave' 'gnome-documents' 'ibam' 'foo2zjs' 'freewheeling' 'libfontenc1' 'libtiff5' 'perl-modules' 'libpt2.4.5' 'linux-image-3.2.0-33-generic-pae' 'rsnapshot' 'python-transmissionrpc' 'poc-streamer' 'perlconsole' 'openjpeg-tools' 'mypaint' 'libwttest-dev' 'libtest-carp-perl' 'libibcm-dev' 'ruby-dbi' 'libalgorithm-numerical-sample-perl' 'xblast-tnt-musics' 'libgecodegist32' 'easytag' 'simple-scan-dbg' 'gambas2-gb-gtk-svg' 'openoffice.org-help-km' 'x11-xserver-utils-lts-quantal' 'ffmpeg-dbg' 'python3-pylast' 'php5-tokyo-tyrant' 'outguess' 'node-passport' 'libuima-addons-java-doc' 'libsamizdat-ruby' 'librmagick-ruby1.8' 'libghc-x11-doc' 'libghc-irc-doc' 'libghc-glib-doc' 'libghc-comonad-dev' 'libgfortran3-armhf-cross' 'libmail-thread-perl' 'freetennis' 'emacs-calfw-howm' 'calligrasheets' 'libsexy-doc' 'libasm-java' 'mbrola-la1' 'mbrola-hu1' 'firmware-b43-lpphy-installer' 'wfo' 'ttt' 'rtorrent' 'libvo-amrwbenc-dev' 'libpolarssl-runtime' 'librdf-trin3-perl' 'libghc-temporary-doc' 'libfindbin-libs-perl' 'libdata-alias-perl' 'kinfocenter' 'python-typogrify' 'libcryptui0a' 'ure' 'oem-config' 'libevview3-3' 'openoffice.org-help-ko' 'simutrans-data' 'robotfindskitten' 'opendrim-lmp-boot' 'notmuch-mutt' 'multitail' 'libudunits2-dev' 'libportaudio-doc' 'libmemcache-client-ruby' 'lua-event-dev' 'liblash-compat-1debian0' 'libgps-dev' 'libgig-doc' 'libghc-http-conduit-prof' 'libetsf-io-doc' 'libepc-common' 'libatinject-jsr330-api-java' 'shisen.app' 'lua-md5' 'libkate1' 'xawtv-plugins' 'hyphen-bn' 'hyphen-as' 'gstreamer0.10-nice' 'gfs2-cluster' 'xul-ext-ubufox' 'xjobs' 'ttv' 'sagan-rules' 'lsb-security' 'xsidplay' 'libpoe-test-loops-perl' 'libmonitoring-livestatus-perl' 'libio-socket-multicast6-perl' 'libflexdock-java' 'libfeedtools-ruby1.8' 'libdlna-dev' 'libuniversal-exports-perl' 'libapache-authznetldap-perl' 'jstest-gtk-dbg' 'libgeronimo-activation-1.1-spec-java' 'ices2' 'gperiodic' 'cucumber' 'compass-yui-plugin' 'libpycaml-ocaml' 'bibledit-gtk' 'libtxc-dxtn-s2tc-dev' 'libgtksourceview-3.0-doc' 'hyphen-de' 'libbeid2-dbg' 'linux-backports-modules-cw-3.3-3.2.0-33-generic' 'uqm' 'ubuntu-restricted-addons' 'sysadmin-guide' 'sylpheed-i18n' 'lua5.1-policy-dev' 'librygel-core-2.0-1' 'liblingua-preferred-perl' 'libgettext-rails-ruby' 'libbenchmark-ocaml-dev' 'globus-gsi-cert-utils-dbg' 'ndisc6' 'fstrcmp' 'freegish-dbg' 'ttf-adf-berenis' 'otf-freefont' 'fonts-linex' 'libpython3.3-dbg' 'libatk-adaptor' 'libgcc1-dbg' 'fonts-opensymbol' 'virtuoso-opensource-6.0' 'libghc6-glut-prof' 'tworld' 'python-wxversion' 'libquickfix14' 'libpgp-sign-perl' 'liblapack-test' 'libbytecode-java-doc' 'killbots' 'kapman' 'pxlib1' 'gdebi-kde' 'libalien-sdl-perl' 'buffy' 'libjargs-java-doc' 'libplasma3' 'cpp-4.7-doc' 'libboost-iostreams1.49.0' 'xserver-xorg-input-vmmouse-lts-quantal' 'xsane-common' 'xmms2-client-medialib-updater' 'virtuoso-opensource-6.1' 'val-and-rick' 'uzbl' 'setools' 'python3-pyaudio' 'ovito' 'moc-ffmpeg-plugin' 'libncurses-ruby' 'libjaxe-java-doc' 'libiml0' 'libgtkhotkey-dev' 'libjasypt-java' 'libacme-eyedrops-perl' 'mozc-utils-gui' 'gpac-modules-base' 'kanjidic' 'feisty-session-splashes' 'libcdaudio1' 'libbliss1d' 'atmel-firmware' 'libhtml-form-perl' 'libgirepository1.0-doc' 'language-pack-gnome-nan-base' 'ttf-arphic-ukai' 'libcdparanoia-dev' 'libv8-i18n0.0.0' 'libmelt-ocaml-dev' 'libgnomeprintui2.2-dev' 'kildclient-doc' 'kde-style-skulpture' 'libmime-lite-perl' 'libsystemd-login0' 'libptexenc-dev' 'libgnomevfs2-dev' 'libcogl-pango-dev' 'libxcomposite-dev' 'libopenmpi1.5-dev' 'libghc6-criterion-dev' 'mgltools-support' 'ruby-graffiti' 'python-zc.datetimewidget' 'likewise-open5-gui' 'libpadre-plugin-snippet-perl' 'libjifty-plugin-authzldap-perl' 'libcorelinux-doc' 'ledmon' 'pnp4nagios' 'erlang-bitcask' 'email-reminder' 'dirac' 'tremulous-server' 'psfontmgr' 'z88dk-doc' 'voms-doc' 'vmm' 'texmaker-data' 'python-repoze.who' 'nowhere' 'movabletype-opensource' 'monodoc-hyena-manual' 'librtai1' 'libhal-dev' 'libghc-sdl-ttf-prof' 'libghc-tagsoup-doc' 'libgdk-pixbuf2-ruby1.8' 'libeet-doc' 'libhash-util-fieldhash-compat-perl' 'libampsharp-cil-dev' 'trace-cmd' 'kdepim-dbg' 'junior-arcade' 'twm' 'libzthread-2.3-2' 'gnunet-gtk' 'gmt-examples' 'postr' 'libglobus-ftp-client2' 'xfce4-power-manager' 'software-properties-gtk' 'linux-image-extra-3.8.0-9-generic' 'spring-common' 'python-gitdb' 'pscan' 'libtaktuk-1-dev' 'libghc-numinstances-doc' 'kpart-webkit' 'xbs' 'debian-el' 'avahi-discover' 'aolserver4-core' 'python-txtftp' 'libjargs-java' 'libgcj13-dbg' 'xmms2-plugin-ofa' 'open-axiom-hypertex-data' 'midori-dbg' 'maint-guide-it' 'libqfits0' 'libpoe-component-sslify-perl' 'libocamlnet-ssl-ocaml' 'libglobus-gram-client-doc' 'kexi-calligrasheets-driver' 'xjig' 'libindi-data' 'python-jswebkit' 'libmimic0' 'fomp' 'fische' 'clzip' 'bloboats' 'python3-pyqt4-dbg' 'xubuntu-plymouth-theme' 'language-pack-pa-base' 'uswsusp' 'vamp-plugin-sdk' 'userinfo' 'shorewall6' 'python-bcrypt' 'nordugrid-arc-dbg' 'libprinterconf0c2a' 'libghc-extensible-exceptions-doc' 'libdevel-trace-perl' 'libcsync-dev' 'librsskit-dev' 'gitg' 'genius-dev' 'fvwm-crystal' 'agrep' 'libspeexdsp-dev' 'libasound2-dev' 'libxml-simple-perl' 'libbrasero-media3-1' 'qiime-doc' 'puredata-gui' 'pilot-manager' 'php-cache-lite' 'opendrim-lmp-dhcp' 'liblua5.1-md5-dev' 'libgetopt-usaginator-perl' 'libhash-withdefaults-perl' 'libactiverecord-ruby1.8' 'plasma-mediacenter' 'libkasten2okteta1controllers1' 'kdeartwork-dbg' 'geneatd' 'debichem-tasks' 'libsybdb5' 'libmercator-0.2-dev' 'libopal3.10.2' 'openoffice.org-help-nl' 'xmms2-plugin-mms' 'uif2iso' 'tzc' 'rddmarc' 'oss4-base' 'monav' 'libsublib-cil' 'libmodpbase64-0' 'libldap-ocaml-dev' 'libhtml-widget-perl' 'libavahi-cil-dev' 'libghc-hbro-dev' 'python-progressbar' 'libelmersolver-6.1' 'banshee-extension-magnatune' 'xdm' 'libcommons-httpclient-java-doc' 'libjasper1' 'libghc6-data-accessor-dev' 'libqt3-mt-psql' 'fonts-larabie-straight' 'trackballs-data' 'python-changesettings' 'pound' 'php-horde-role' 'nss-updatedb' 'libopenslide0' 'libnewmat10ldbl' 'libparams-callbackrequest-perl' 'libjodconverter-java-doc' 'libgnadesqlite3-2' 'libglobus-gsi-credential-doc' 'libghc-haskelldb-hdbc-prof' 'lekhonee-gnome' 'liblunar-date-2.0-0' 'libfastjetplugins-dev' 'drawterm' 'criticalmass-data' 'libqtscript4-sql' 'python-numpy-dbg' 'librhino-java' 'language-pack-gnome-shs-base' 'language-pack-fur-base' 'openmcu' 'mongrel-doc' 'qt3-doc' 'z80dasm' 'xfe' 'ray-doc' 'postgres-xc-server-dev' 'openvanilla-imgeneric-data-zh-hk' 'python-tracing' 'nginx-naxsi-ui' 'mididings-doc' 'libtest-distmanifest-perl' 'shishi-kdc' 'libming1' 'liblua5.1-cyrussasl0' 'liblbfgs0-dbg' 'libjs-jquery-ui-theme-ui-darkness' 'libgtkglada2.24.1-dev' 'libgpiv3-doc' 'libgenders0-dev' 'libdevel-stacktrace-ashtml-perl' 'ruby-atk' 'libapache2-mod-auth-tkt' 'hmmer2-pvm' 'gmysqlcc' 'gearman' 'fizmo-common' 'dotlrn' 'gcc-4.7-arm-linux-gnueabihf-base' 'abinit' 'tcl-dev' 'libttspico-utils' 'libtextcat-data' 'libreoffice-java-common' 'libcdr-doc' 'libqt4-network' 'uuid-dev' 'gitk' 'ttf-nanum-coding' 'erlang-et' 'libgtop2-7' 'automake' 'libghc6-tokyocabinet-prof' 'sawfish-themes' 'ruby-excon' 'libtest-yaml-valid-perl' 'libspice-client-gtk-3.0-dev' 'libghc-hostname-doc' 'libstring-escape-perl' 'libao-ocaml' 'kamailio-sqlite-modules' 'slang-gdbm' 'gosa-plugin-dns' 'g++-4.7-multilib-arm-linux-gnueabi' 'fortunes-bg' 'python-migrate' 'liblua5.1-0-dbg' 'gstreamer0.10-doc' 'libpng12-0' 'lcl-gtk2-0.9.30.2' 'libnet-amazon-perl' 'libmeep-mpi-dev' 'libghc-diagrams-doc' 'l7-protocols' 'kde-telepathy-minimal' 'gnome-dust-icon-theme' 'gmt-gshhs-low' 'xmms2-core' 'boinc-dbg' 'telepathy-rakia' 'libextutils-command-perl' 'libjbig2dec0-dev' 'libcogl12-dbg' 'dwww' 'rssreader.app' 'wavesurfer' 'tokyotyrant-dbg' 'libsocialweb-service' 'librdf-crypt-perl' 'libopengl-ruby1.9.1' 'libmunge-maven-plugin-java' 'libmaven-verifier-java' 'libmaven-docck-plugin-java' 'ruby-goocanvas-dbg' 'libboost-random1.49.0' 'gerstensaft' 'python-osmgpsmap' 'paw++' 'capi4hylafax' 'cadabra' 'squid' 'adequate' 'libunity-webapps-doc' 'imagemagick-doc' 'ntfsprogs' 'gob2' 'erlang-ic' 'liblinbox-dev' 'openoffice.org-help-om' 'martian-modem' 'vainfo' 'python-z3c.optionstorage' 'libtest-nobreakpoints-perl' 'libwbxml2-dev' 'libpyside-py3-1.1' 'liblapack-doc-man' 'libjmol-java-doc' 'libghc-monad-control-prof' 'libdevel-calltrace-perl' 'lcl-gtk2-0.9.30.4' 'kdeartwork-theme-window' 'libplib1' 'aylet' 'ncurses-examples' 'libtie-ixhash-perl' 'tkinfo' 'thunar-dbg' 'python-windowmocker' 'plymouth-theme-script' 'libsimple-http-java-doc' 'libosinfo-1.0-0-dbg' 'libghc-xss-sanitize-dev' 'libghc-test-framework-doc' 'libbash-doc' 'slang-curl' 'gnushogi' 'gnome-hwp-support' 'libemail-mime-perl' 'why' 'afuse' 'unity-lens-files' 'python-pyparsing' 'pppoe' 'language-pack-mhr-base' 'libgimp2.0' 'libhtml-data-parser-perl' 'beid-mozilla-plugin' 'xdu' 'tcplay' 'stx-btree-doc' 'ruby-sprockets' 'python-axiom' 'libsyncevo-dbus0' 'libjglobus-gridftp-java' 'libhfmudflap0-dbg-armel-cross' 'libghc-openal-dev' 'plasma-scriptengine-superkaramba' 'kaddressbook-mobile' 'japitools' 'ipgrab' 'libmicrohttpd-dev' 'osmosis' 'fonts-tuffy' 'ltsp-server-standalone' 'libs3-dev' 'libamd2.2.0' 'haskell-platform' 'allegro-examples' 'mbrola-it3' 't-prot' 'partimage-server' 'libsqlite3-ruby1.8' 'libpam-ccreds' 'libgtkhtml3.14-dbg' 'libghc-template-prof' 'libcec-dev' 'libexcalibur-logger-java' 'gkrellshoot' 'g-wrap' 'felix-main' 'extace' 'libsdl-perl' 'software-properties-kde' 'libwebkitgtk-1.0-0-dbg' 'libgnutls-openssl27' 'ledit' 'fonts-unfonts-core' 'ttf-dejavu' 'autoconf-doc' 'ubuntu-orchestra-client' 'tuxeyes' 'libmrpt-maps0.9' 'openoffice.org-help-pl' 'mbrola-it4' 'xfm' 'vor' 'libsox-fmt-oss' 'libmpeg3-dev' 'libitl-gobject-dev' 'libfeedparser-ruby' 'libdata-faker-perl' 'hol88-library-help' 'gman' 'moovida' 'magicfilter' 'xserver-xorg-video-intel-lts-quantal' 'linux-backports-modules-cw-3.6-3.2.0-36-generic-pae' 'python-tracer' 'sitplus' 'libtest-autoloader-perl' 'liblockdev1-dev' 'libmatthew-debug-java' 'libcaml2html-ocaml-dev' 'libafrodite-0.12-2-dbg' 'hotot-qt' 'fortunes-de' 'font-hosny-amiri' 'fbcat' 'array-info' 'libsackpt3-dev' 'libnetfilter-conntrack-dev' 'libgnuinet-java' 'erlang-gs' 'xserver-xorg-video-i128' 'libgdata1.9-cil' 'python-pyentropy' 'python-mlpy-lib' 'mythimport' 'med-oncology' 'libpam-afs-session' 'liblouisutdml-dev' 'liberis-1.3-dev' 'libdshconfig1-dev' 'libdbd-sybase-perl' 'hdup' 'fonts-misaki' 'fcitx-table-yawerty' 'mayavi2' 'gmap' 'awffull' 'libjpeg62' 'hyphen-fr' 'libcrack2' 'wmf' 'yap' 'libpion-net-plugins-dbg' 'libghc-vector-space-prof' 'libghc-snap-core-prof' 'liborlite-statistics-perl' 'forg' 'dvips-fontdata-n2bk' 'okumura-clsfiles' 'csmash-data' 'fonts-gfs-bodoni-classic' 'ruby-treetop' 'bzr-loom' 'ant-phone' 'thunderbird-locale-zh-hans' 'ruby-dev' 'hyphen-hi' 'qt3-dev-tools-compat' 'libghc6-split-doc' 'gnome-mousetrap' 'ruby-pgplot-dbg' 'python-sprox' 'libghc-data-binary-ieee754-dev' 'libcommons-jci-eclipse-java' 'liba52-0.7.4-dev' 'fortunes-br' 'eficas' 'vim-migemo' 'libamrita-ruby1.8' 'thunderbird-locale-zh-hant' 'rhythmbox-ubuntuone' 'account-plugin-icq' 'libbogl0' 'erlang-crypto' 'libtext-wrapi18n-perl' 'lsb-appchk3' 'esvn' 'python-gnucash' 'plymouth-theme-xubuntu-text' 'qapt-dbg' 'libsocialweb-client2-dbg' 'ruby-rmagick-doc' 'libicapapi0-dbg' 'libgtkhtml-editor-common' 'libghc-tagstream-conduit-doc' 'ibid' 'ebook-tools-dbg' 'ceph-resource-agents' 'moodle' 'libc6-prof' 'language-pack-gnome-es-base' 'apparmor-notify' 'libgmtk0-data' 'vdr-plugin-mp3' 'qnapi' 'python-renpy' 'mythbuntu-log-grabber' 'libplist-utils' 'libhz0' 'libhtml-wikiconverter-wakkawiki-perl' 'libghc-llvm-dev' 'libnet-smtp-tls-butmaintained-perl' 'libheap-perl' 'ksysguardd' 'kdiff3-qt' 'wiliki' 'gaphor' 'xfs' 'libgsf-1-dev' 'hevea' 'libcap-ng0' 'libwebkitgtk-3.0-dev' 'wireless-crda' 'python3' 'wmtv' 'udunits-bin' 'slurm-drmaa1' 'python-zope.server' 'python-pmw-doc' 'xdvik-ja' 'pd-pmpd' 'mupen64plus-video-z64-dbg' 'libsqlheavygtk-dev' 'libslv2-dev' 'liblivejournal-perl' 'libkfile-perl' 'libjs-jquery-ui-theme-hot-sneaks' 'libghc-filesystem-conduit-prof' 'libghc-comonad-doc' 'gnupg-pkcs11-scd-dbg' 'globus-gfork-progs' 'cutesdr' 'cl-babel' 'libmath-complex-perl' 'libserf1-dbg' 'libqt4-designer' 'libwsdl4j-java' 'libatm1-dev' 'fusionforge-minimal' 'openoffice.org-help-pt' 'irpas' 'tryton-modules-party-siret' 'rygel' 'regina-normal-mpi' 'php5-ffmpeg' 'php-horde-image' 'ndiswrapper-dkms' 'libwebauth-dev' 'librsvg2-ruby1.8-dbg' 'libqxt-network0' 'lua-leg' 'liblo-ocaml' 'libdbix-class-datetime-epoch-perl' 'libbiblio-endnotestyle-perl' 'libagrep-ocaml' 'jmeter-tcp' 'dvi2ps-fontdata-tbank' 'exonerate' 'language-pack-gnome-sd-base' 'language-pack-gnome-ps-base' 'libusbmuxd1' 'wml' 'python-libproxy' 'python-iowait' 'pari-seadata' 'python-webassets' 'nexuiz-textures' 'libprison-dbg' 'libnpp5.0' 'libhtml-selector-xpath-perl' 'libghc-skein-prof' 'libghc-shakespeare-css-dev' 'libcitygml0' 'libmousex-getopt-perl' 'ttf-ecolier-court' 'libdumb1' 'xserver-xorg-video-neomagic' 'libprelude-dev' 'bacula-common-pgsql-dbg' 'libbeid2-dev' 'linux-backports-modules-net-3.2.0-37-virtual' 'zapping' 'xtux-server' 'python-zope.app.debug' 'libsdl-stretch-0-3' 'libibumad-dev' 'libfelix-osgi-obr-java' 'libgetopt-euclid-perl' 'gobjc++-4.5-arm-linux-gnueabi' 'gnome-brave-icon-theme' 'original-awk' 'fortunes-cs' 'elyxer' 'libgraphicsmagick++3' 'php5-imap' 'cyrus-pop3d' 'bximage' 'snort-mysql' 'libmarc-charset-perl' 'python-setuptools' 'libpython3.3-dev' 'libusbmuxd2' 'language-pack-kde-tg-base' 'language-pack-kde-sl-base' 'ibus-table-cangjie-big' 'hyphen-gu' 'ttfautohint' 'sogo-dbg' 'squizz' 'libqtscript4-svg' 'libpreludedb0' 'libphone-ui-common' 'libpacket-ruby' 'liblttctl-dev' 'libghc-tagged-prof' 'libghc-highlighting-kate-prof' 'libghc-glfw-prof' 'libgraphics-colornames-www-perl' 'libactionpack-ruby1.8' 'xscreensaver-gl-extra' 'gnumed-client-de' 'gir1.2-gupnp-av-1.0' 'eboard-extras-pack1' 'cakephp-instaweb' 'libiec61883-dev' 'libmudflap0-dbg' 'yelp' 'linux-headers-lbm-3.2.0-38-virtual' 'peace-gdm-theme' 'python-doit' 'mylvmbackup' 'monodoc-mono-zeroconf-manual' 'libvia-dev' 'python-samba' 'libghc-uuagc-cabal-prof' 'libdata-miscellany-perl' 'libapache2-mod-vhost-ldap' 'jetring' 'libiv1' 'fortunes-ga' 'dsbltesters' 'concordance' 'libxml-handler-yawriter-perl' 'beast' 'libcompizconfig0-dev' 'hyphen-hr' 'libm17n-0' 'python-sword-dbg' 'awn-applet-comics' 'trac-announcer' 'solfege-doc' 'screenlets' 'yaz' 'mustang-plug' 'mace2' 'libxr1-dbg' 'libunicode-escape-perl' 'libtuxcap-dev' 'libprotobuf-c0-dev' 'libm17n-im-config-dev' 'libharminv-dev' 'libgdchart-gd2-xpm' 'libfso-glib-dbg' 'libav-source' 'libatomicparsley0' 'gobjc-4.7-powerpc-linux-gnu' 'freeciv-sound-standard' 'fonts-lohit-deva' 'dhis-tools-dns' 'ant1.7-optional' 'texlive-latex-base' 'libgeoip1' 'erlang-eldap' 'xfonts-utils' 'dvd-slideshow' 'tdiary-plugin' 'mgdiff' 'libtonezone-dev' 'libqhull-dev' 'libkactivities-models1' 'libgnomeprintui2.2-doc' 'gnac' 'fonts-cantarell' 'calf-plugins' 'libsdl-mixer1.2' 'python3-piston-mini-client' 'libsvg-ruby' 'libghc6-criterion-doc' 'openoffice.org-help-sl' 'linux-backports-modules-cw-3.6-3.2.0-34-generic-pae' 'ticker' 'snakefood' 'search-ccsb' 'zeroinstall-injector' 'nexuiz-data' 'nedit-dbg' 'maliit-dbus-activation' 'libusb-ocaml' 'ruby-parsetree' 'libmm-ocaml-dev' 'libkonq-common' 'libguac-client-rdp0' 'libghc-cryptocipher-dev' 'libtk-pod-perl' 'parser3-common' 'kdepim-dev' 'libgstreamer-vaapi0.10-dev' 'giws' 'gdb-mingw-w64' 'python-syfi' 'extrema' 'gnome-tweak-tool' 'libatfs1' 'ttf-unifont' 'python-egenix-mxdatetime' 'libqimageblitz-dbg' 'libgpod-cil' 'libboost-python1.46-dev' 'hyphen-hu' 'mono-runtime' 'gccxml' 'ichthux-docs' 'gambas2-gb-db-odbc' 'crash-whitepaper' 'woof' 'qelectrotech-examples' 'menhir' 'libusb-java-doc' 'libsynthesis-dbg' 'libroot-math-splot5.34' 'libmrpt-maps1.0' 'lua-sql-postgres-dev' 'libfile-flat-perl' 'libvariable-magic-perl' 'libspring-core-java' 'kanatest' 'nettoe' 'ifp-line-libifp' 'libobjc4-dbg-powerpc-cross' 'gnome-specimen' 'fortunes-eo' 'fenix-plugins-system' 'texlive-fonts-recommended-doc' 'python-unit' 'libquvi7' 'libgcj13-dev' 'retty' 'python-pypcap' 'mueller7accent-dict' 'licq-plugin-rms' 'libsuil-dev' 'libloader-java-doc' 'libjsoncpp-dev' 'libibmad-dev' 'libgnomeuimm-2.6-dev' 'libjtharness-java' 'gstreamer0.10-fluendo-mp3' 'libmail-mbox-messageparser-perl' 'fmtools' 'flvtool2' 'remote-login-service' 'ubuntuone-client-data' 'likewise-open' 'libcupsfilters1' 'blockade' 'libv8-3.7.12.22' 'nordugrid-arc-dev' 'libtiffxx0c2' 'libtest-database-perl' 'otf-trace' 'libghc-threads-prof' 'liblua5.1-luacsnd5.2' 'kdepimlibs5' 'kalternatives' 'gmt-tutorial-ps' 'ogdi-bin' 'dvdisaster' 'camlidl-doc' 'libreoffice-mysql-connector' 'pst-utils' 'libhcrypto4-heimdal' 'ocaml-findlib' 'soundconvert' 'rt3.8-extension-assettracker' 'openoffice.org-help-ru' 'wmxres' 'tilecache' 'python-django-classy-tags' 'libntrack-gobject1' 'libibatis-java' 'libghc-template-dev' 'libcoy-perl' 'glob2' 'libopenoffice-oodoc-perl' 'libppl-doc' 'libasound2-doc' 'hyphen-it' 'gir1.2-rb-3.0' 'libperl5.14' 'libgl1-mesa-dev' 'libghc6-happstack-dev' 'libassimp2-d-dev' 'classmate-initramfs' 'linux-image-extra-3.2.0-34-virtual' 'linux-image-extra-3.2.0-29-virtual' 'ivtv-utils' 'twclock' 'python3-isodate' 'pyjamas-gchart' 'peace-session-splashes' 'lua-lgi' 'libunac1-dev' 'libqxmlrpc1' 'libllvm-ocaml-dev' 'libjs-jquery-ui-theme-vader' 'libhugs-xhtml-bundled' 'libghc-monad-loops-prof' 'libdmalloc-dev' 'libconfigreader-simple-perl' 'hol88-library-source' 'hocr-gtk' 'fortunes-mario' 'fortunes-es' 'develock-el' 'cernlib' 'batmand' 'ax25-node' 'texlive-lang-italian' 'python3-tk-dbg' 'ocaml-interp' 'libfop-java' 'xserver-xorg-video-chips' 'libmvel2-java' 'libcherokee-mod-libssl' 'wcanadian-huge' 'swish-e-dev' 'python-stsci.distutils' 'nunit-gui' 'libpod-webserver-perl' 'libjs-jquery-mousewheel' 'libghc-skein-dev' 'libghc-hbro-doc' 'libdbi-ruby1.9.1' 'moovida-plugins-good' 'fonts-gfs-baskerville' 'coinor-libflopc++0' 'xfonts-75dpi-transcoded' 'openbabel' 'lynx-cur-wrapper' 'libice6-dbg' 'libgd-tools' 'libbamf3-dev' 'libavcodec-dev' 'libghc6-data-accessor-doc' 'libexttextcat0' 'vinetto' 'sdate' 'python-pylibmc-dbg' 'python-asterisk' 'licq-dev' 'uim-look' 'libsocket-multicast6-perl' 'libhash-diff-perl' 'libgeronimo-jacc-1.1-spec-java' 'latex209-base' 'libidzebra-2.0-dev' 'holotz-castle' 'gkrellm-snmp' 'libvm-ec2-perl' 'courier-webadmin' 'pulseaudio-module-zeroconf' 'make-doc' 'language-pack-bn-base' 'language-pack-as-base' 'apport-retrace' 'libunix-syslog-perl' 'xserver-xorg-video-ivtv' 'trafficserver' 'php-horde-data' 'netwag' 'libzltext-dev' 'libtext-mediawikiformat-perl' 'libplexus-component-api-java' 'libopenraw1-dbg' 'libgrok-dev' 'libghc-dataenc-prof' 'libbusiness-edi-perl' 'libxml-xpath-perl' 'python-insanity' 'gtkaml-dbg' 'gliv' 'gadmin-bind' 'libconfuse0' 'gpicview' 'colortest-python' 'catcodec' 'calligra-libs' 'tcl-doc' 'likewise-open5-eventlog' 'libraptor1-dbg' 'liblua5.1-0-dev' 'hyphen-kn' 'exim4-daemon-heavy' 'xserver-xorg-video-voodoo' 'libghc6-hsql-mysql-prof' 'libudev0' 'libxine1-plugins' 'libroot-montecarlo-eg5.34' 'libopensm2-dev' 'libkvutils2.2-dev' 'libjs-jquery-ui-theme-excite-bike' 'libepr-api2-dev' 'libxml-sax-expatxs-perl' 'kernel-patch-scripts' 'gw6c' 'fortunes-fr' 'ferret-vis' 'xml2' 'config-package-dev' 'boinc-dev' 'libhtml-template-compiled-perl' 'libstrigihtmlgui0' 'liblcms1-dev' 'liblapack3gf' 'libglew1.6-dev' 'tao-concurrency' 'openoffice.org-help-sv' 'linux-backports-modules-net-3.2.0-34-generic' 'linux-backports-modules-net-3.2.0-29-generic' 'linux-backports-modules-cw-3.5-3.2.0-33-generic-pae' 'libexiv2-11' 'python-usbtc08' 'openocd' 'libgtextutils-dev' 'libforks-perl' 'konq-plugins' 'hydra' 'gpsdrive' 'liferea' 'libtest-requires-perl' 'libatlas-dev' 'language-pack-mn-base' 'libudev1' 'xz-utils' 'libghc6-haskell-src-dev' 'melange' 'ripmake' 'devede' 'python-zope.app.renderer' 'python-hurry.query' 'mediawiki-extensions-openid' 'libosl-dev' 'libnzb-dev' 'libhugs-openal-bundled' 'liblbfgs0' 'libabstract-ruby1.9.1' 'xli' 'gnome-gmail' 'freemind-doc' 'shorewall' 'libogre-1.7.4' 'elvis-tools' 'karbon' 'acedb-other-belvu' 'libsgmls-perl' 'libexiv2-12' 'language-pack-kde-mai-base' 'console-setup' 'libghc6-missingh-prof' 'linux-headers-lbm-3.2.0-35-generic' 'linux-headers-lbm-3.2.0-40-generic' 'crafty-books-small' 'rails3' 'startactive' 'php-horde-date' 'xcftools' 'obmenu' 'libss7-dbg' 'nurpawiki' 'libghc-cereal-prof' 'libdevice-usb-perl' 'libchemistry-formula-perl' 'gmt-gshhs-full' 'emdebian-archive-keyring' 'db5.1-sql-util' 'libtinyxml2.6.2' 'libnewt0.52' 'ecryptfs-utils' 'scim-python' 'linux-backports-modules-hv-3.2.0-39-generic-pae' 'wpp' 'python-ipaddr' 'monit' 'mod-gearman-module' 'logapp' 'libtelnet-dev' 'libqdbm-perl' 'libghc-xss-sanitize-doc' 'libghc-xhtml-prof' 'libfelix-shell-java' 'ruby-bsearch' 'kannel-docs' 'imaprowl' 'gnustep-devel' 'libglobus-gsi-openssl-error0' 'globus-gram-job-manager-doc' 'gir1.2-indicate-0.7' 'libginac2' 'xdrawchem' 'pkg-config-aarch64-linux-gnu' 'creduce' 'compizconfig-backend-kconfig' 'libhtml-tidy-perl' 'tcl-tclreadline' 'libmono-ldap2.0-cil' 'libxml++2.6-2' 'language-pack-yi-base' 'libcdio-paranoia1' 'libghc6-diagrams-dev' 'gobjc-4.5-multilib' 'virtualbox-ose-fuse' 'php-horde-argv' 'pd-pdstring' 'monkey-bubble' 'libsss-idmap-dev' 'libplexus-io-java' 'libgtkhtml3.14-dev' 'libghc-openal-doc' 'yorick-gyoto' 'gmic' 'libfcgi-perl' 'bpython-urwid' 'libgstreamer-plugins-bad1.0-0' 'libpkcs11-helper1-dev' 'libpq-dev' 'keyutils-dbg' 'libgcj13-awt' 'python3-pkg-resources' 'account-plugin-facebook' 'sugar-presence-service-0.84' 'python-ecore' 'libsvnqt6' 'tropic-theme' 'pike7.8-gdbm' 'ntfsdoc' 'node-fstream' 'mlton-doc' 'libpam-pgsql' 'libgit-wrapper-perl' 'libbse-dev' 'idn2' 'findimagedupes' 'console-common' 'circos-tools' 'libgpod-dev' 'synopsis-idl' 'sugar-presence-service-0.90' 'slugimage' 'python-pandas-lib' 'libzarith-ocaml' 'libscamperfile0-dev' 'libghc-wai-logger-prefork-prof' 'libghc-sha-dev' 'libboost-locale1.53-dev' 'libboost-locale1.48-dev' 'libsvnqt7' 'proftpd-basic' 'libunicode-string-perl' 'gnat' 'comgt' 'texlive-lang-lithuanian' 'postgresql-client-common' 'libframe-dev' 'gir1.2-gmenu-3.0' 'sugar-presence-service-0.86' 'libmrpt-gui0.9' 'xtrace' 'tailor' 'sixpack' 'libnova-dev' 'libghc-hoauth-dev' 'libghc-convertible-dev' 'libccscript3-1.1-0' 'freepops-doc' 'faifa' 'ditaa' 'ruby-uuidtools' 'changetrack' 'wpasupplicant' 'libkadm5srv-mit8' 'sysvinit-utils' 'libfreeradius2' 'xmail' 'bacula-fd' 'synaptic' 'maas-provision' 'tintin++' 'telepathy-devel-gtk' 'ruby-test-declarative' 'proftpd-mod-pgsql' 'maint-guide-ru' 'liblasi-dev' 'libghc-hsql-sqlite3-dev' 'libtest-www-mechanize-catalyst-perl' 'liballegro-acodec5.0' 'libbinio-dev' 'xserver-xephyr' 'dopewars-data' 'bareftp' 'aolserver4-nspostgres' 'libdevel-cycle-perl' 'libboost-random1.49-dev' 'libaccounts-qt5-1' 'python3-brlapi' 'indicator-appmenu' 'sputnik-storage-git' 'doc-linux-html' 'yorick-full' 'tclx8.4-dev' 'sugar-presence-service-0.88' 'postfix-gld' 'libxml-dt-perl' 'libxdg-basedir-dev' 'libtaoframework-freeglut-cil-dev' 'libsbml5-python' 'libopendrim0-dev' 'libgavl-dev' 'liblog-trace-perl' 'gnustep-back0.22-cairo' 'megaglest' 'gcal-common' 'pkg-php-tools' 'gcrystal' 'libcddb-get-perl' 'cpp-4.7-arm-linux-gnueabihf' 'quantum-plugin-linuxbridge-agent' 'ocfs2-tools-pacemaker' 'libcanberra0' 'linux-backports-modules-cw-3.4-3.2.0-32-generic-pae' 'zec' 'xpilot-ng-server' 'pyjamas-canvas' 'pidgin-audacious' 'phpldapadmin' 'libzita-convolver-dev' 'libwiki-toolkit-perl' 'librtas1' 'libmondrian-java' 'libhtml-wikiconverter-phpwiki-perl' 'libhibernate-jbosscache-java' 'libglobus-gram-protocol-dev' 'libghc-lifted-base-dev' 'libghc-data-binary-ieee754-doc' 'libc6-dbg-powerpc-cross' 'libwagon-java' 'iscsitarget' 'ibod' 'pocketsphinx-lm-en-hub4' 'stepbill.app' 'ttf-georgewilliams' 'libcutter-dev' 'signond' 'libpolkit-qt-1-dev' 'hyphen-pa' 'corosync-dbg' 'assaultcube-data' 'tclreadline' 'ruby-gir-ffi' 'python-musicbrainz2-doc' 'python-csound' 'libzita-alsa-pcmi0' 'libphp-swiftmailer' 'libnet-smtp-tls-perl' 'libmialm-dev' 'libgeos++-dev' 'libdatetime-timezone-tzfile-perl' 'gnee' 'bubbros' 'python-pylibacl' 'libunicode-collate-perl' 'ltsp-server' 'libpam-ldap' 'stgit' 'sork-forwards-h3' 'libebackend-1.2-1' 'tetzle' 'system-config-lvm' 'riece' 'pmacct' 'php-net-ldap2' 'nautilus-bzr' 'mpgtx' 'littler' 'libtest-unit-perl' 'libspring-js-2.0-java' 'libroot-tmva-dev' 'openclipart-libreoffice' 'ruby-pango' 'okular-dbg' 'libkohana2-php' 'libghc-llvm-doc' 'libghc-hxt-relaxng-prof' 'libclass-xsaccessor-perl' 'libcatalyst-plugin-log-dispatch-perl' 'libao-ocaml-dev' 'libzmq1' 'gfortran-4.7-multilib-arm-linux-gnueabihf' 'python-enchant' 'libftgl-dev' 'freepops' 'fbterm' 'blender' 'libhttp-negotiate-perl' 'indicator-bluetooth' 'hyphen-mr' 'libwacom2' 'ffmpeg-doc' 'blt-demo' 'ruby-pgplot' 'zaz' 'libndr-standard0' 'inventor-dev' 'shiki-noble-theme' 'dict-freedict-deu-eng' 'xmp' 'wx-common' 'clisp-module-wildcard' 'ruby-net-ssh' 'muscle' 'asterisk-prompt-es-co' 'language-selector-gnome' 'iasl' 'libstdc++6-4.5-pic' 'libghc6-zip-archive-dev' 'python-totem-plparser' 'libedataserver-1.2-15' 'wsl' 'opendrim-lmp-simpleidentitymanagement' 'libstatistics-distributions-perl' 'libqfits-dev' 'libprison-dev' 'libmimic-dev' 'libinput-pad-xtest' 'mffm-fftw-dev' 'gridlock.app' 'fusion-icon' 'ttf-larabie-straight' 'libxml-writer-perl' 'rpcbind' 'libsaclm3' 'libmono-system-web-abstractions4.0-cil' 'liblzo2-dev' 'monkey' 'luasocket' 'libghc6-hdbc-sqlite3-dev' 'libgbm1-lts-quantal-dbg' 'trac-email2trac' 'r-cran-vgam' 'python-pyramid-tm' 'proftpd-dev' 'openmpi-doc' 'python-coherence' 'libmysql-diff-perl' 'libhugs-opengl-bundled' 'libgl2ps-dev' 'libghc-shakespeare-css-doc' 'libcgi-untaint-email-perl' 'wu-ftpd' 'gambas3-gb-compress-bzlib2' 'composite' 'libaudcore1' 'libwbclient-dev' 'libsepol1' 'automake1.10' 'koffice-l10n-ptbr' 'protoize' 'php-horde-test' 'node-rimraf' 'mcollective-server-provisioner' 'libtorture-dev' 'libsvg-graph-ruby1.9.1' 'libsac-java-doc' 'libpath-dispatcher-perl' 'libkibi-dbg' 'libghc-case-insensitive-dev' 'libgeo-postcode-perl' 'libnet-imap-simple-ssl-perl' 'libglazedlists-java' 'gir1.2-geocodeglib-1.0' 'fortunes-it' 'bibtexconv' 'libebackend-1.2-5' 'libedataserver-1.2-17' 'fusionforge-plugin-scmarch' 'svnmailer' 'rbldnsd' 'pd-moonlib' 'libtext-mecab-perl' 'libghc-testpack-dev' 'libghc-dav-dev' 'libclass-dbi-fromcgi-perl' 'kball-data' 'libion0' 'ibus-rime' 'gringotts' 'libgetopt-simple-perl' 'python3-minimal' 'python-restrictedpython' 'octave-plot' 'mkgmapgui' 'libxr1-dev' 'libvia-doc' 'libplexus-velocity-java-doc' 'libjs-dojo-dijit' 'libglrr-widgets0' 'libfso-glib-dev' 'igalician-minimos' 'gngb' 'gimp-flegita' 'coop-computing-tools-dev' 'libmathlib2-dev' 'apcalc-common' 'libkmime4' 'latex-sanskrit' 'libcommons-vfs-java' 'language-pack-gnome-dv-base' 'ttf-arphic-ukai-mbe' 'laptop-detect' 'tao-log' 'gambas2-gb-qt-ext' 'xmount' 'vlc-plugin-notify' 'unbound' 'textdraw' 'sdlbasic-dbg' 'r-cran-teachingdemos' 'node-sphericalmercator' 'monodoc-notify-sharp-manual' 'libiscwt-java-doc' 'libindicate-gtk0.1-cil-dev' 'glom' 'dossizola-data' 'canorus' 'asylum' 'ubiquity-ubuntu-artwork' 'python3-numpy' 'python-qt4-phonon' 'libxcb-dpms0-dbg' 'dnsmasq' 'xine-console' 'ruby-hiera' 'python3-sunlight' 'python-fabio' 'libsamba-policy-dev' 'libqtexengine1' 'libqhull-doc' 'liblua5.1-bitop-dev' 'libweather-ion6' 'imms-common' 'highlight' 'glpi' 'vym' 'doxymacs' 'comix' 'libmodule-cpanfile-perl' 'anypaper' 'ruby-ffi' 'libqimageblitz-dev' 'libldap-2.4-2' 'libmagickwand4' 'wesnoth-1.10' 'ubuntu-remote-debug-host-tools' 'trac-xmlrpc' 'qgis-providers-common' 'python3-llfuse' 'libsynthesis-dev' 'libmasonx-interp-withcallbacks-perl' 'libjnr-netdb-java-doc' 'libghc-http-date-dev' 'libghc-cryptocipher-doc' 'libio-aio-perl' 'kdepim-doc' 'python3-urwid' 'c-icap' 'libibverbs1' 'hyphen-pl' 'libmysqlclient18' 'bittwist' 'picon-weather' 'xoo' 'python-mhash-dbg' 'python-dpkt' 'psensor' 'moblin-menus' 'r-cran-foreign' 'libogre-1.8.0' 'gtkboard' 'glpk' 'signond-dev' 'libxdot4' 'libmagickwand5' 'gksu' 'libghc6-harp-prof' 'libghc6-gio-dev' 'linux-headers-lbm-3.2.0-37-generic-pae' 'xfce4-power-manager-data' 'spinner' 'secpanel' 'xqf' 'libtie-ical-perl' 'libtevent0-dbg' 'libmrpt-gui1.0' 'libgnomeuimm-2.6-doc' 'libghc-xml-dev' 'libgdome2-cpp-smart0c2a' 'libkdepimdbusinterfaces4' 'glpeces' 'gir1.2-cryptui-0.0' 'reprepro' 'unsort' 'ddtp-translations' 'libint1' 'balder2d-data' 'python-oneconf' 'xmem' 'oem-config-slideshow-ubuntu' 'libx86-dbg' 'libreadline6-dbg' 'language-pack-kde-te-base' 'language-pack-kde-ro-base' 'libdaemon0' 'libparagui1.1' 'libghc6-diagrams-prof' 'unity-webapps-livemail' 'uapevent' 'tango-test-dbg' 'xmds' 'remuco-clementine' 'php-mdb2-schema' 'ohai-doc' 'nordugrid-arc-doc' 'mlton-tools' 'lua-curses-dev' 'libsql-abstract-limit-perl' 'mono-apache-server' 'freesci-doc' 'libcwiid1' 'brp-pacu-dbg' 'biosquid' 'ballz-data' 'archipel-agent-virtualmachine-snapshoting' 'libmono-system-web-extensions-design4.0-cil' 'libpam-ck-connector' 'python-zdaemon' 'python-evemu' 'plptools-dev' 'libsmart-comments-perl' 'librxp-dev' 'libghc-template-doc' 'icli' 'gcj-4.6-jre-headless' 'fookb-wmaker' 'libfreetype6' 'myspell-en-au' 'python3-aptdaemon.gtk3widgets' 'libghc6-sdl-ttf-prof' 'libghc6-happstack-doc' 'gforge-plugin-globalsearch' 'xpn' 'soundgrain' 'qtdeclarative5-particles-plugin' 'nzbget' 'libsocksd0' 'libskk-common' 'libnet-imap-perl' 'ruby-narray-dbg' 'libi18n-charset-perl' 'libgconf-bridge-dev' 'kftpgrabber' 'deluged' 'libcipux-rpc-perl' 'emacs-goodies-el' 'libc6-dbg' 'python3-subnettree' 'python-vtkgdcm' 'python-elementtidy' 'libwps-tools' 'libusb-ruby1.9.1' 'libgypsy-dev' 'libgirara-gtk2-0' 'libghc-skein-doc' 'gap-small-groups' 'bisonc++-doc' 'alsaplayer-daemon' 'python-numpy-doc' 'visualvm' 'libfarstream-0.2-dbg' 'python-prelude' 'plasma-dataengines-yawp' 'parser3-cgi' 'mhonarc' 'megaglest-data' 'libofdt-dev' 'libhtp1' 'libcgal-demo' 'libc6-dev-armel-armhf-cross' 'claws-mail-extra-plugins-dbg' 'libcanna1g' 'auth2db-common' 'libthai-data' 'libraptor1-dev' 'psutils' 'xpp' 'libxtst6' 'gnome-icon-theme' 'xmms2-plugin-normalize' 'vtun' 'stealth' 'python-rhash' 'python-pytc-dbg' 'ruby-netcdf-dbg' 'libsynthesis0' 'libs3d-dev' 'librhash1.0-cil' 'lua-md5-dev' 'libcrypt-smime-perl' 'gnat-mingw-w64-i686' 'gccgo-4.7-multilib-powerpc-linux-gnu' 'gambas3-gb-net-smtp' 'fonts-motoya-l-cedar' 'libstatistics-descriptive-perl' 'ada-reference-manual-2005' 'libthread-queue-perl' 'glew-utils' 'libevs-dev' 'libexosip2-4' 'python-launchpad-integration-dbg' 'qmail-tools' 'python-pyside.qtnetwork' 'orbital-eunuchs-sniper-data' 'myproxy-admin' 'probalign' 'liferea-dbg' 'libpam4j-java' 'libhtml-mason-perl-doc' 'opendnssec' 'libghc-io-choice-prof' 'libgettext-ruby1.9.1' 'libsidplay1' 'gnujump' 'festvox-hi-nsk' 'festvox-czech-ph' 'dpm-rfio-server' 'libasound2-plugins' 'language-pack-kde-csb-base' 'hyphen-ta' 'libxrandr-dev' 'eweouz' 'acgvision-agent' 'gns3' 'xtables-addons-source' 'tokyotyrant-doc' 'python-aptdaemon.gtkwidgets' 'nova-spiceproxy' 'libtranslate-bin' 'libcaribou-gtk3-module-dbg' 'python-pygraphviz' 'php-date' 'gmorgan' 'libsfmudflap0-armhf-cross' 'epic4-help' 'dreamchess' 'darkroom' 'coinst-viewer' 'bindgraph' 'libsidplay2' 'apt-rdepends' 'ada-reference-manual-2012' 'python-scapy' 'linux-doc' 'libjson-rpc-perl' 'libatlas-doc' 'libdmx1-dbg' 'libghc6-haskell-src-doc' 'enigma-level-previews' 'remuco-exaile' 'ruby-fastercsv' 'libss7-dev' 'libqpx-dev' 'libosl-doc' 'libmusic-dev' 'libghc-dbus-prof' 'libclaw-configuration-file-dev' 'libalgorithm-combinatorics-perl' 'libgtkada2.24.1' 'exif' 'e17-data' 'codelite-plugins' 'python3-imaging-dbg' 'libqtsql4-perl' 'kdelibs-bin' 'hyphen-sh' 'quake3-data' 'vdmfec' 'realtimebattle-common' 'orville-write' 'nautilus-compare' 'libpostfix-parse-mailq-perl' 'libghc-binary-communicator-dev' 'libexosip2-7' 'icewm' 'hexec' 'gnash' 'liblo7' 'qtcreator' 'libglade2.0-cil-dev' 'python-opensync' 'libbackgroundrb-ruby' 'linux-backports-modules-cw-3.3-3.2.0-24-generic-pae' 'idjc' 'wwl' 'weborf-daemon' 'perl-byacc' 'openafs-dbserver' 'libnews-scan-perl' 'libjavascript-minifier-perl' 'libghc-zlib-conduit-prof' 'kscreensaver-xsavers-extra' 'hildon-control-panel-l10n-engb' 'libgtk2-gst' 'gmetad' 'libgoa-1.0-dev' 'hyphen-te' 'hyphen-ro' 'bcrelay' 'libghc6-diagrams-doc' 'openoffice.org-l10n-zh-tw' 'xmms2-plugin-pls' 'vim-lesstif' 't2html' 'sysbench' 'starpu-contrib-tools' 'octave-mapping' 'libodbc-ruby1.8-dbg' 'liboath-dev' 'libbluecloth-ruby1.8' 'libapron-dev' 'kde-telepathy-auth-handler' 'poe.app' 'gmod' 'libgenders0' 'ttf-levien-museum' 'usbutils' 'python-oauthlib' 'libgdb-dev' 'sawfish-data' 'radeontop' 'libsoqt-dev-common' 'libsary-ruby1.8' 'liblinux-distribution-perl' 'libfilesys-smbclient-perl' 'libswingworker-java' 'libctapimkt0' 'gmfsk' 'rtpproxy' 'wireshark' 'libfreezethaw-perl' 'linuxdoc-tools' 'myspell-en-gb' 'libgpod-doc' 'hyphen-sl' 'unity-greeter' 'docbook5-xml' 'libtotem-pg-dev' 'libggigcp1' 'libcherokee-mod-streaming' 'linux-headers-lbm-3.2.0-35-generic-pae' 'linux-headers-3.2.0-36-virtual' 'linux-headers-lbm-3.2.0-40-generic-pae' 'xnav' 'sauce' 'rmligs-german' 'prime' 'plasma-widget-translatoid' 'smartdimmer' 'libmail-listdetector-perl' 'libhsclient-dev' 'libghc-sha-doc' 'libghc-lazysmallcheck-prof' 'partitionmanager' 'jaaa' 'gnome-devel-docs' 'fonts-dosis' 'libglobus-ftp-control1' 'clisp-module-dbus' 'zemberek-java-demo' 'vtwm' 'serverstats' 'rsplib-fgp-cfgfiles' 'presage-dbus' 'opendbx-utils' 'mysql-testsuite-5.5' 'libsac-java-gcj' 'libotfaux0' 'libldap-ruby1.8' 'libghc-hoauth-doc' 'libghc-convertible-doc' 'gosa-plugin-sudo' 'frog' 'fltk1.3-doc' 'epstool' 'zeitgeist-datahub' 'libxvmc1' 'myspell-af' 'libcolorhug-dev' 'language-pack-ml-base' 'erlang-odbc' 'libgradle-code-quality-java' 'libcuneiform0' 'wyg' 'xless' 'tumiki-fighters-data' 'squirrelmail-viewashtml' 'quantum-espresso-data' 'python-hachoir-metadata' 'openvanilla-imgeneric-data-zh-tw' 'zgv' 'libshout-ocaml' 'librbl-dev' 'libghc-zlib-prof' 'libghc-hsql-sqlite3-doc' 'libghc-hoauth-prof' 'littlewizard' 'gpac' 'gmpc' 'gocr' 'focalinux-html' 'python-gdal' 'gnome-packagekit' 'ibus-table-erbi' 'fastjar' 'libuuid1' 'cpp-4.6-arm-linux-gnueabihf' 'language-selector-qt' 'libisccfg82' 'zim' 'xnee' 'tclx8.4-doc' 'scalapack-pvm-test' 'samba4-common-bin' 'recoverjpeg' 'museeq' 'libsynopsis0.12-dev' 'liboce-ocaf-dev' 'liblua5.1-wsapi-fcgi-dev' 'liblink-grammar4-java' 'libgit-pure-perl' 'libghc-transformers-base-prof' 'libgavl-doc' 'libg15daemon-client-dev' 'libfile-inplace-perl' 'ldp-docbook-dsssl' 'claws-mail-gdata-plugin' 'grub-rescue-pc' 'librxtx-java' 'thunderbird-locale-af' 'libdifflcs-ruby1.9.1' 'python3-gi-dbg' 'python-twisted-runner-dbg' 'account-plugin-irc' 'libwnck-3-common' 'libfftw3-double3' 'corosync-dev' 'libvarconf-1.0-6' 'libdesktopcouch-glib-1.0-2' 'linux-headers-3.2.0-40-generic-pae' 'linux-headers-3.2.0-35-generic-pae' 'yydebug' 'sflphone-evolution' 'tryton-modules-calendar' 'python-jsonpickle' 'openmsx-data' 'libswtchart-java-doc' 'libparse-plainconfig-perl' 'libopendbx1-odbc' 'libopendbx1-mssql' 'libjcsp-java-doc' 'libipc-pubsub-perl' 'libgtk2-gladexml-simple-perl' 'libglobus-gram-protocol-doc' 'libghc-lifted-base-doc' 'libpod-weaver-perl' 'libcpufreq-dev' 'liblam4' 'ladspa-foo-plugins' 'libfile-userconfig-perl' 'goby' 'gadmintools' 'swfdec-mozilla' 'mozc-server' 'daemonfs' 'bbrun' 'xlog' 'simutrans' 'python-chemfp' 'plywood' 'libtest-perl-critic-perl' 'libqb-dev' 'libpmount-dev' 'libghc-unix-time-prof' 'libbit-vector-minimal-perl' 'libapache2-mod-neko' 'kolab-cyrus-admin' 'okular-dev' 'libjuman4' 'libnetpbm9' 'libgringotts2' 'gnu-smalltalk-common' 'libvarconf-1.0-7' 'python-zope.interface-dbg' 'ttf-linux-libertine' 'libhtml-format-perl' 'hyphen-sr' 'libopencv-ml2.3' 'gambas2-gb-qt-opengl' 'nsis-pluginapi' 'libtaglib-cil-dev' 'libmpd1-dbg' 'libghc-web-routes-prof' 'libghc-hxt-http-dev' 'libfacets-ruby1.9.1' 'lazarus-src' 'launchy-plugins' 'krename' 'libgraphicsmagick++1-dev' 'schism' 'fuse-emulator-common' 'fortunes-pl' 'fonts-oldstandard' 'ed2k-hash' 'dict-freedict-jpn-deu' 'kxterm' 'nvidia-304-dev' 'transmission-daemon' 'latexdiff' 'libglewmx-dev' 'libgvpr1' 'zip' 'myspell-ca' 'libisccfg90' 'bacula-doc' 'yics' 'slang-histogram' 'qdevelop' 'toilet-fonts' 'photofilmstrip' 'owftpd' 'libqxcppunitd1' 'libhfgfortran3-armel-cross' 'libghc-hsql-sqlite3-prof' 'libwfmath-0.3-dev' 'libdbix-searchbuilder-perl' 'libopencv-ml2.4' 'poxml' 'inventor-doc' 'icom' 'gpe-tetris' 'libobjc-4.7-dev-armel-cross' 'fotoxx' 'erlang-tv' 'controlaula' 'cameleon' 'thunderbird-locale-be' 'keychain' 'libsmokeqthelp4-3' 'myspell-bg' 'cups-pk-helper' 'libghc6-zip-archive-doc' 'mythzoneminder' 'sdlmame-tools' 'bugsx' 'xmms2-plugin-oss' 'luvcview' 'libxine2-misc-plugins' 'libtext-kakasi-perl' 'libsofa1' 'libroot-graf3d-gl5.34' 'libmimic-doc' 'hiki' 'bootparamd' 'autodock-getdata' 't1-cyrillic' 'thunderbird-locale-ca' 'libio-pty-perl' 'language-pack-gnome-wae-base' 'python-gdbm' 'git-buildpackage' 'python-distro-info' 'libgdk-pixbuf2.0-0' 'qemulator' 'libghc6-hdbc-sqlite3-doc' 'xscreensaver-screensaver-dizzy' 'tcl-combat' 'rekonq-dbg' 'proftpd-doc' 'paris-traceroute' 'lightsquid' 'libticalcs-dev' 'libtext-context-perl' 'libkibi-dev' 'libgstreamer-ocaml' 'libqtdee-dev' 'libdata-rmap-perl' 'libcgi-application-plugin-fillinform-perl' 'movixmaker-2' 'ruby-sequel' 'fntsample' 'thunderbird-locale-bg' 'tcl8.5-lib' 'python-cups' 'librbd1-dbg' 'libgl1-mesa-dri' 'libcrypt-passwdmd5-perl' 'idle' 'gnome-mime-data' 'libgupnp-1.0-4' 'libbluetooth3-dbg' 'whoopsie' 'libghc6-regex-base-prof' 'texlive-lang-ukenglish' 'tkgate-data' 'qstardict' 'libvirtuoso5.5-cil' 'libtaglib-ocaml' 'libsox-fmt-alsa' 'sanlock' 'ruby-metaid' 'libjs-rainbow' 'libiptcdata0-dbg' 'libghc-case-insensitive-doc' 'libescape-ruby' 'libsub-exporter-formethods-perl' 'libcrypt-gcrypt-perl' 'libcolor-tools-ruby' 'libcache-perl' 'liballeggl4-dev' 'pairs' 'python-fiat' 'codeville' 'libdata-ical-perl' 'libmousex-nativetraits-perl' 'python3-pycurl-dbg' 'libgd-gd2-noxpm-perl' 'libttspico-data' 'python-pyxmpp-doc' 'libstatistics-online-perl' 'libsdl-ruby1.8' 'liblua5.1-xmlrpc0' 'libghc-void-dev' 'libghc-testpack-doc' 'libghc-dav-doc' 'ldm-kubuntu-theme' 'hexer' 'libavahi1.0-cil' 'gosmore' 'gfortran-powerpc-linux-gnu' 'gcc-4.7-multilib-arm-linux-gnueabi' 'fenix-plugin-mpeg' 'drumstick-tools' 'dacco-common' 'libffcall1' 'gnome-core' 'ascii2binary' 'amsynth' 'alac-decoder' 'libqt5printsupport5' 'libmemcachedprotocol0' 'libgupnp-igd-1.0-dbg' 'gdbserver' 'myspell-da' 'fossology-dev' 'worldwind-doc' 'python-apptools' 'live-config-sysvinit' 'listaller-devtools' 'libxml-qofqsf-perl' 'libtext-levenshteinxs-perl' 'libghc-network-info-dev' 'libee-dev' 'libdbix-dr-perl' 'libbt-dev' 'legit' 'preview.app' 'gnats' 'coop-computing-tools-doc' 'codelite' 'lsb-printing' 'libxcb-dpms0-dev' 'libboost-python-dev' 'lrzip' 'ibus-unikey' 'tao-notify' 'xmame-svga' 'ruby-file-tail' 'pkcs11-dump' 'password-gorilla' 'openttd-opengfx' 'nanoweb' 'python-gdcm' 'proftmb' 'lsh-doc' 'live-tools' 'libquantum-dev' 'libqt5webkit5-dbg' 'libpoconet9-dbg' 'libmodule-info-perl' 'libmeep-mpich2-dev' 'libghc-http-reverse-proxy-prof' 'idzebra-2.0' 'gnotravex' 'gir1.2-lunar-date-2.0' 'gap-character-tables' 'djvuserve' 'openmsx' 'libjs-backbone' 'libxdg-basedir1' 'e00compr' 'thunderbird-locale-da' 'libexpat1-dev' 'guile-2.0-libs' 'liboce-foundation1' 'openoffice.org-help-zh-cn' 'zshdb' 'sea-defender' 'netsurf' 'libsigc++-dev' 'librd-html-ext-ruby1.8' 'libjana0-dbg' 'libghc-geniplate-prof' 'libghc-gconf-dev' 'kmail-mobile' 'icheck' 'hime' 'gosa-plugin-ldapmanager' 'libspnav0' 'python-uniconvertor-dbg' 'libaugeas-ruby1.8' 'libx32gcc-4.7-dev' 'libavahi-client3' 'python-qt-dev' 'linux-headers-3.2.0-33-generic' 'libarchive12' 'razorqt-session' 'ruby-wirble' 'libini-config2' 'libgirara-gtk3-0' 'libghc-http-date-doc' 'libdr-sundown-perl' 'liboce-foundation2' 'fcitx-modules' 'dict-freedict-deu-fra' 'crack' 'banshee-dbg' 'udisks2-doc' 'thunderbird-locale-ar' 'quantum-plugin-midonet' 'rhino' 'heartbeat' 'valac-0.10-dbg' 'wmdiskmon' 'smb2www' 'python-lasso' 'ocl-icd-libopencl1' 'libfreexl-dev' 'libdbusada0.2-dbg' 'libclxclient-dev' 'libchipcard-dev' 'libautobox-perl' 'kdesvn-dbg' 'gtk2-engines-xfce' 'thunderbird-locale-bn' 'signond-doc' 'zram-config' 'linux-tools-3.8.0-19' 'libx86-dev' 'libproc-waitstat-perl' 'libreadline6-dev' 'libarchive13' 'dpkg-repack' 'alsa-base' 'ruby-json-pure' 'libghc6-gio-doc' 'xtv' 'xmix' 'unity-webapps-librefm' 'slapd-smbk5pwd' 'r-cran-chron' 'php-zeroc-ice' 'php-horde-stream-wrapper' 'nautilus-filename-repairer' 'libmpich-shmem1.0-dev' 'libtext-password-pronounceable-perl' 'libmocked-perl' 'libmlt-dbg' 'liblua5.1-leg0' 'libghc-xml-doc' 'libferret-ruby' 'libcaribou-common' 'exmh' 'balance' 'libinsighttoolkit3.20' 'thunderbird-locale-de' 'python-gnome2-desktop-dev' 'memtester' 'echolot' 'libemail-address-perl' 'gir1.2-syncmenu-0.1' 'znc' 'xmlindent' 'illuminator-doc' 'mp4v2-utils' 'liquidsoap-plugin-camlimages' 'libmoosex-simpleconfig-perl' 'libgnuradio-wavelet3.6.1' 'libknopflerfish-osgi-framework-java' 'libjs-yui3-full' 'ibus' 'ansel1' 'gogo' 'telegnome' 'teeworlds-data' 'snowballz' 'slimrat' 'ruby-magic' 'python-wsgi-intercept' 'python-mecavideo' 'parser3-dev' 'mu-cade' 'libtimingframework-java' 'librime-data-luna-pinyin' 'libpcp-pmda3' 'libjgromacs-java' 'libgd-gd2-noxpm-ocaml' 'python-fpconst' 'libneko0' 'dia-common' 'crossfire-maps-small' 'conky' 'libmemcached-dbg' 'libc-ares2' 'language-pack-gnome-eo-base' 'language-pack-gnome-cy-base' 'language-pack-gnome-bem-base' 'firefox-locale-af' 'jade' 'libc6-dev' 'mythbuntu-live' 'python-stdeb' 'python-fife' 'translate-toolkit' 'libunicap-docs' 'librapi2' 'libmail-cclient-perl' 'libjs-jquery-ui-theme-black-tie' 'libicee-dev' 'libapache2-mod-mime-xattr' 'libantelope-java-doc' 'jack' 'cricket' 'thunderbird-locale-br' 'paman' 'linux-generic-pae' 'libyelp-dev' 'libfarstream-0.2-dev' 'libao-dbg' 'kvm-ipxe' 'libqtgui4' 'libcheese-gtk21' 'mbrola-nl2' 'vdetelweb' 'valadoc' 'ubuntu-sdk' 'python-gasp' 'libprojectm-qt1' 'polyorb-servers' 'libtest-www-declare-perl' 'libgypsy-doc' 'libghc-idna-dev' 'libdata-printer-perl' 'libanimal-sniffer-java' 'libldb1' 'libkwinglutils1abi1' 'libexo-1-0' 'cl-usocket' 'calligraplan' 'libosgi-core-java' 'screen-resolution-extra' 'rasqal-utils' 'libmono-accessibility2.0-cil' 'libencode-locale-perl' 'libasyncns-dev' 'language-pack-kde-fr-base' 'libktexteditor4' 'libunistring0' 'myspell-fa' 'libgrail5' 'uaputl' 'randtype' 'pacman4console' 'libpam-ncp' 'libjana-ecal0' 'globs' 'dvcs-autosync' 'gmsh' 'libraptor1-doc' 'erlang-nox' 'ubuntu-orchestra-modules-mongodb' 'assaultcube' 'live-boot-doc' 'samba-dsdb-modules' 'liblua5.1-rex-pcre-dev' 'libkate-dev' 'libixp' 'libgnadecommon1' 'libcpan-checksums-perl' 'libapache2-webkdc' 'herwig++-dev' 'googlecl' 'freecell-solver-bin' 'libxqilla6' 'colordiff' 'cl-memstore' 'libcheese-gtk23' 'python-gevent' 'libqtdeclarative4-perl' 'libqca2-dbg' 'wput' 'libgrail6' 'firefox-locale-be' 'tk707' 'taggrepper' 'sblim-cmpi-base' 'pairs-dbg' 'libyubikey0' 'libinstpatch-dev' 'libghc-clientsession-prof' 'lcdf-typetools' 'eclipse-mylyn-context-cdt' 'cpipe' 'libtext-template-perl' 'libreoffice-math' 'libpurple-bin' 'libpulsedsp-dbg' 'libsigsegv2' 'firefox-locale-ca' 'myspell-cs' 'libatspi2.0-0' 'xye' 'xvt' 'slashtime' 'r-cran-foptions' 'mpt-status' 'libventrilo3-0' 'libnxcl-bin' 'libnl1' 'libhighline-ruby' 'libghc-monadcatchio-mtl-prof' 'libdessert0.87-dev' 'libcommons-digester-java' 'gnome-applets-dbg' 'fortunes-ru' 'extremetuxracer-gimp-dev' 'dsc-statistics-collector' 'libfinance-yahooquote-perl' 'libbiojava-java' 'xorg-docs' 'libusb-1.0-0-dev' 'libslang2-dev' 'firefox-locale-bg' 'apparmor' 'libnl2' 'xserver-xorg-video-r128-lts-quantal-dbg' 'sqlgrey' 'ruby-fog' 'pyrenamer' 'libwill-paginate-ruby-doc' 'libqpidtypes1' 'pam-dbus-notify' 'libperl6-junction-perl' 'libboost-locale-dev' 'ibus-table-cantonhk' 'gir1.2-gdl-3' 'ecosconfig-imx' 'libgoogle-collections-java' 'thunderbird-locale-cs' 'ruby-session' 'ocfs2-tools-cman' 'isc-dhcp-relay-dbg' 'myspell-ga' 'cifs-utils' 'libghc6-dataenc-prof' 'gnuboy-sdl' 'python-django-feincms' 'psi-plus-plugins' 'parley-data' 'lua-cjson-dev' 'ltsp-cluster-lbserver' 'libvisual-projectm' 'librpcsecgss-dev' 'libqt5webkit5-qmlwebkitplugin' 'libmrml1-dev' 'libjsr305-java-doc' 'haskell-http-doc' 'libghc-binary-communicator-doc' 'libdeclarative-gallery' 'gss-doc' 'fonts-dejima-mincho' 'game-data-packager' 'bomberclone' 'auth2db-filters' 'gfortran-4.6-multilib-arm-linux-gnueabi' 'wmcdplay' 'vdr-plugin-fritzbox' 'python-libhamlib2' 'oss4-dev' 'liblttng-ust-dev' 'libjreen-dbg' 'libdatetime-format-oracle-perl' 'hotssh' 'gypsy-daemon' 'gpesyncd' 'gnome-commander' 'libphobos2-4.6-dev' 'gnect' 'xfonts-100dpi-transcoded' 'wamerican-small' 'thunderbird-locale-ga' 'libnux-4.0-dev' 'libnm-glib-dev' 'libgoa-1.0-doc' 'gksu-polkit' 'linux-headers-generic-lts-quantal' 'virtualbox-qt' 'r-cran-cluster' 'quassel-client' 'prips' 'libapq3.2.0' 'libhttpmime-java' 'fcitx-table-wbpy' 'cc1111' 'binutils-m68hc1x' 'libplack-perl' 'thunderbird-locale-el' 'firefox-locale-da' 'dmz-cursor-theme' 'myspell-gd' 'myspell-fi' 'libglib2.0-0' 'linux-image-3.2.0-37-lowlatency-pae' 'utfout' 'sword-text-swahili' 'science-astronomy-dev' 'roundcube' 'python-enet' 'indicator-messages-gtk2' 'libstrictures-perl' 'libmimetic0' 'libjglobus-ssl-proxies-tomcat-java' 'libjdbm-java' 'libopencv-objdetect-dev' 'libgjs-dev' 'libanjuta-3-0' 'resource-agents-dev' 'pulseaudio-module-lirc-dbg' 'ttf-indic-fonts-core' 'haproxy' 'myspell-eo' 'obm-storage' 'slimevolley-data' 'scribus-ng-doc' 'pyspread' 'nglister' 'libtrace-tools' 'liblas1' 'libghc-http-types-prof' 'libghc-gstreamer-prof' 'libghc-generic-deriving-dev' 'libformula-java' 'libevtlog-dev' 'libguestfs-gobject-1.0-0' 'dos2unix' 'clonalframe' 'thunderbird-locale-gd' 'thunderbird-locale-fi' 'thunderbird-locale-en' 'libdb-java-dev' 'tzdata' 'firefox-locale-ar' 'tao-load' 'libghc-wash-dev' 'ebox-ntp' 'r-cran-int64' 'xpad' 'libyubikey-dev' 'libtranslate-dev' 'libnet-trac-perl' 'lua-json' 'libgnomemm-2.6-1c2' 'gmt-manpages' 'liblog4cpp5' 'devtodo' 'libdevice-serialport-perl' 'context' 'liborbit2' 'murrine-themes' 'firefox-locale-bn' 'firefox-locale-as' 'fp-units-fv-2.4.4' 'tryton-modules-company' 'easyspice' 'python-wicd' 'python-fftw' 'openafs-kpasswd' 'lighttpd-mod-cml' 'libzvbi-dev' 'libtritonus-java' 'libtcd-dev' 'libghc-http-reverse-proxy-dev' 'libstring-tokenizer-perl' 'cnrun' 'vuze' 'nvidia-313-updates-dev' 'firefox-locale-de' 'v-sim-plugins' 'uwsgi-plugin-logsocket' 'python-rabbyt' 'python-poker-engine' 'pithos' 'libobexftp-perl' 'ruby-git' 'libfcgi-procmanager-maxrequests-perl' 'libnetfilter-queue1' 'goattracker' 'daemontools-run' 'laevateinn' 'birthday' 'libqtscript4-xml' 'libreoffice-l10n-ast' 'libyajl-dev' 'freeipmi-common' 'myspell-es' 'libcupsimage2' 'libghc6-monadcatchio-mtl-prof' 'python-pyopencl-doc' 'xringd' 'scite' 'seq-gen' 'libroot-math-quadp5.34' 'libmoosex-has-options-perl' 'libginspx-dev' 'libghc-categories-prof' 'libcneartree-dev' 'libcatalyst-plugin-unicode-encoding-perl' 'jetty8' 'libgpewidget1' 'gmtp' 'glogg' 'festvox-italp16k' 'python-dput' 'montecarlo-base' 'blast2' 'autokey-qt' '4digits' 'gir1.2-upowerglib-1.0' 'myspell-he' 'myspell-fo' 'myspell-et' 'bacula-sd' 'zoo' 'ubuntu-cloud-keyring' 'pike7.8-mysql' 'live-manual-all' 'libwfmath-doc' 'librhash-perl' 'ruby-htmlentities' 'libghc-system-filepath-prof' 'libclass-virtual-perl' 'nordugrid-arc-janitor' 'libevent-perl' 'gnash-common-opengl' 'docsis' 'condor' 'cliquer' 'blockout2' 'libtaoframework-opengl3.0-cil' 'thunderbird-locale-es' 'tk8.4' 'libcommons-parent-java' 'tinycdb' 'firefox-locale-br' 'libexttextcat-1.0-0' 'libggi-target-fbdev' 'cl-umlisp-orf' 'xmpi' 'remotetea' 'python3-drizzle' 'monodoc-gudev-manual' 'mini-buildd-rep' 'med-cloud' 'r-cran-genabel' 'libghc-oeis-dev' 'libghc-hxt-http-doc' 'libctl-dev' 'libcaribou-dbg' 'libalglib-dev' 'libkwinactiveglutils1abi1' 'jumpnbump' 'firebird2.5-super-dbg' 'colorcode' 'cntlm' 'bwbar' 'thunderbird-locale-he' 'thunderbird-locale-et' 'libshoulda-ruby' 'firefox-locale-bs' 'tk8.5' 'nanourl' 'libobjc2-dbg-armhf-cross' 'libxcb-ewmh1' 'brother-lpr-drivers-common' 'zygrib' 'ruby-tomoe' 'rt4-extension-authenexternalauth' 'libsrecord0-dbg' 'libnzb0c2a' 'libisajet758-3-gfortran' 'libghc-attoparsec-enumerator-dev' 'libfaad-dev' 'libevas1-engine-fb' 'libbarry-dev' 'nordugrid-arc-hed' 'liballegro-audio5.0' 'yum' 'tk8.6' 'libakonadi-contact4' 'thunderbird-locale-eu' 'libwayland0' 'icc-profiles-free' 'esmtp-run' 'erlang-mode' 'myspell-fr' 'ltp-commands-test' 'libkasten1gui1' 'slang-xfig' 'slang-gsl' 'php-soap' 'libsbml5-dbg' 'libsampleicc-dev' 'libopen4-ruby' 'libjutils-java-doc' 'libindicate0.1-cil' 'libbio2jack0' 'libcrypt-unixcrypt-xs-perl' 'ifscheme' 'python-evolution' 'globus-xio-gsi-driver-dbg' 'libopal3.10.10' 'thunderbird-locale-gl' 'libxcb-ewmh2' 'libvdpau1' 'libqt4-private-dev' 'libcrmcluster1-dev' 'language-pack-ne-base' 'language-pack-lo-base' 'firefox-locale-fa' 'libavcodec53' 'pptpd' 'logcheck' 'libutouch-geis1' 'ulogd-sqlite3' 'texify' 'science-geography' 'libwttest3' 'libroot-graf2d-graf5.34' 'libntl-dev' 'liblinux-prctl-perl' 'libiptcdata0-dev' 'libbunny-ruby1.8' 'kpartloader' 'gnustep-dl2' 'chmsee' 'ruby-net-ssh-multi' 'thunderbird-locale-fr' 'latex-cjk-chinese-arphic-gkai00mp' 'libdb5.3-dbg' 'icedtea-7-jre-jamvm' 'poppler-data' 'viridian' 'ubuntustudio-audio' 'pr3287' 'openturns-examples' 'nfoview' 'libqxmlrpc-dev' 'libghc-hipmunk-dev' 'liballegro-physfs5.0' 'goobox' 'libg15-1' 'cvssuck' 'thunderbird-locale-id' 'policykit-desktop-privileges' 'libgupnp-igd-1.0-dev' 'libcurl3-dbg' 'libghc6-safe-dev' 'beast-mcmc-doc' 'sludge-engine' 'octave-specfun' 'linux-lowlatency-headers-3.8.0-19' 'libxineliboutput-fbfe' 'libxine2-ffmpeg' 'libplexus-active-collections-java-doc' 'libns3-3' 'libmono-cecil-flowanalysis-cil-dev' 'libhandoff0-dbg' 'libghc-erf-dev' 'libghc-void-doc' 'libax25-dev' 'libapache2-mod-log-sql-ssl' 'libinfinity-0.5-dbg' 'obdgpslogger' 'fgfs-models-base' 'eikazo' 'discus' 'libtext-bibtex-perl' 'python-xmmsclient' 'python-matplotlib' 'libmono-system-transactions4.0-cil' 'language-pack-wo-base' 'firefox-locale-cs' 'libcegui-mk2-0.7.5' 'xmms2-plugin-sid' 'wsjt' 'splatd' 'r-cran-codetools' 'qtiplot-doc' 'openclonk-data' 'nmapsi4' 'mp3roaster' 'seqan-dev' 'libqt5webkit5-dev' 'libpoe-component-client-ident-perl' 'libmono-profiler' 'libmodello1.4-java-doc' 'libmmpong0.9-dev' 'libghc-network-info-doc' 'libdune-grid-dbg' 'kontrolpack' 'kamailio-lua-modules' 'iec16022' 'thunderbird-locale-ja' 'libncp' 'hyphen-zu' 'php-mythtv' 'zope-quotafolder' 'scilab-plotlib' 'python-pyfann-dbg' 'netscript-2.4-upstart' 'librivet-dev' 'libfile-find-wanted-perl' 'harden-clients' 'libcegui-mk2-0.7.6' 'cplay' 'cl-acl-compat' 'libkfbapi1' 'abcmidi' 'libxplc0.3.13' 'libncurses5-dbg' 'libdee-dev' 'gir1.2-unity-webapps-0.2' 'gawk-doc' 'firefox-locale-ga' 'khelpcenter4' 'webgen0.5-doc' 'urlwatch' 'ticgitweb' 'sary-doc' 'liblz1' 'libghc-gconf-doc' 'kamailio-unixodbc-modules' 'gwhere' 'gphotofs' 'gpe-login' 'gforth-lib' 'bwidget' 'balazarbrothers' 'squirrelmail' 'python-configglue' 'liblua5.1-0' 'firefox-locale-el' 'emacs23' 'libghc6-testpack-dev' 'linux-backports-modules-net-3.2.0-34-generic-pae' 'linux-backports-modules-net-3.2.0-29-generic-pae' 'sqwebmail-de' 'pkgsync' 'pixbros' 'mono-vbnc' 'libpdflib804-2-gfortran' 'libmath-randomorg-perl' 'libjug-java-doc' 'libisrt-java-doc' 'libdbusada0.2-dev' 'libcmdparse2-ruby' 'libpresage1' 'libchasen2' 'liblzma-dev' 'emacs24' 'libanthy0' 'libjcaptcha-java' 'libgiigic1' 'ttf2ufm' 'nova-api-os-compute' 'moria' 'mininet' 'matchbox-keyboard' 'libumlib0' 'libpcp-trace2-dev' 'libmoe-dev' 'libmockito-java' 'libmlt-dev' 'libgtkmathview-bin' 'libfile-countlines-perl' 'libsmokeakonadi3' 'hlbr' 'jackd1-firewire' 'python-cobbler' 'libmp3-info-perl' 'thunderbird-locale-fy' 'libwmf0.2-7-gtk' 'language-selector-common' 'firefox-locale-gd' 'firefox-locale-fi' 'firefox-locale-en' 'myspell-gv' 'glmark2' 'libxfce4util4-dbg' 'xwrits' 'xmms2-plugin-speex' 'simutrans-pak128.britain' 'ruby-god' 'paxtest' 'netwox' 'r-cran-medadherence' 'tsconf' 'liblua5.1-oopango0' 'libstring-shellquote-perl' 'libisorelax-java' 'liballegro-ttf5-dev' 'jeuclid-mathviewer' 'gtk-vector-screenshot' 'shiki-wise-theme' 'libphobos-4.4-dev' 'jags' 'bootcd-mkinitramfs' 'zsh' 'nvidia-common' 'thunderbird-locale-ka' 'libjson-xs-perl' 'firefox-locale-eo' 'firefox-locale-cy' 'exim4-dbg' 'myspell-hr' 'libghc6-x11-prof' 'libcomplearn-ruby1.8' 'xarchiver-dbg' 'webgen0.4' 'tuxcards' 'lunch' 'lunar' 'librudecgi-dev' 'libqb0' 'libmaven-site-plugin-java-doc' 'libtest-class-most-perl' 'libghc-boolean-prof' 'ibsim-utils' 'fspy' 'ubuntu-edu-preschool' 'edubuntu-docs' 'python-pyexiv2' 'mpg123' 'libmemcached-dev' 'libtag1c2a' 'dmake' 'xpdf' 'ghostscript' 'libghc6-wash-prof' 'webgen0.5' 'sshmenu' 'libtest-checkchanges-perl' 'libghc-weighted-regexp-dev' 'libcolorblind0' 'libcgicc-doc' 'jemboss' 'ifhp' 'libmimedir-gnome0.4' 'gnash-tools' 'gfal2-plugin-srm' 'fflas-ffpack-user-doc' 'falconpl' 'espeak-gui' 'rmagic' 'thunderbird-locale-hr' 'libpackage-stash-perl' 'libao-dev' 'ssmtp' 'libstarpu-contribfft0' 'xserver-xorg-input-aiptek' 'webcheck' 'warmux' 'vdradmin-am' 'tclxapian' 'rifiuti' 'python3-scipy-dbg' 'python-whiteboard' 'python-scrapy-doc' 'psi-plus-webkit' 'nautilus-script-collection-svn' 'libwsbm-dev' 'libqtpropertybrowser3-dev' 'libhfgcc1-armel-cross' 'libghc-wai-logger-dev' 'libghc-curl-prof' 'iputils-clockdiff' 'postgresql-9.1-plr' 'python-prctl' 'flashrom' 'firebird2.1-super' 'drizzle' 'tmpreaper' 'courier-filter-perl' 'gstreamer1.0-plugins-ugly-dbg' 'pulseaudio-module-gconf' 'libxmlbeans-java' 'libpackagekit-glib2-dev' 'libfarstream-0.2-doc' 'gir1.2-gcr-3' 'gpgv' 'myspell-hu' 'libmatio0' 'xserver-xorg-video-nouveau-lts-quantal-dbg' 'uwsgi-dbg' 'radioclk' 'mactelnet-server' 'libtest-regression-perl' 'profphd-utils' 'libjs-protoaculous' 'libjs-jquery-reflection' 'libhugs-time-bundled' 'libghc-testpack-prof' 'libghc-idna-doc' 'haskell-hdbc-doc' 'libghc-bifunctors-dev' 'libcppcutter0' 'libobject-signature-perl' 'git-bzr-ng' 'claws-mail-spam-report' 'clamsmtp' 'cvsservice' 'libaubio2' 'libgnome-keyring-common' 'libtommath-dev' 'firefox-locale-es' 'libparrot4.3.0' 'xfce4-quicklauncher-plugin' 'tuxpaint-plugins-default' 'soundstretch' 'mcollective-plugins-process' 'liblwp-authen-oauth-perl' 'libjstun-java' 'libgeo-proj4-perl' 'libtest-spelling-perl' 'libcqrlib2-dev' 'kstars-data-extra-tycho2' 'ftpd' 'libfstrcmp0' 'ewipe' 'libimage-size-perl' 'thunderbird-locale-hu' 'libqca2-dev' 'firefox-locale-he' 'firefox-locale-et' 'librsvg2-2' 'rsh-redone-server' 'python-turbokid' 'python-zope.app.broken' 'proofgeneral-minlog' 'libsbml5-cil' 'libmodule-package-rdf-perl' 'libelektra-dev' 'libtext-pdf-perl' 'libboost-graph-parallel-dev' 'libmatio2' 'localepurge' 'beets' 'libtiff5-alt-dev' 'firefox-locale-eu' 'fetchmailconf' 'crystalspace-glshader-cg' 'webissues-dbg' 'nagvis' 'libusb-java' 'libinstpatch-doc' 'libghc-mbox-prof' 'libpxp-ocaml-dev' 'libc6-powerpc-cross' 'libanyevent-aggressiveidle-perl' 'lcl-gtk2' 'libakonadi-kabc4' 'irsim' 'fonts-deva-extra' 'libchicken-dev' 'myspell-it' 'konwert-filters' 'libgnome-menu-3-0' 'firefox-locale-gl' 'myspell-hy' 'mbrola-mx2' 'xul-ext-gdata-provider' 'zita-ajbridge' 'speakup' 'python-scrapy' 'tulip-doc' 'libqmf2-dev' 'libkonq5-templates' 'libturbojpeg' 'libghc-hsmagick-prof' 'libnewtonsoft-json4.5-cil' 'libexception-handler-perl' 'fts-opsi' 'digikam-data' 'connectomeviewer' 'liblocale-maketext-gettext-perl' 'kde-runtime' 'thunderbird-locale-is' 'cmap-adobe-japan1' 'openjdk-7-dbg' 'libsatmr3' 'libxau6-dbg' 'firefox-locale-fr' 'libxar-dev' 'ttf-sil-yi' 'opendrim-lmp-softwareinventory' 'libtitanium-perl' 'libsdo-api-java-doc' 'libcgi-ssi-perl' 'jsmath-fonts' 'gnustep-back0.22-art' 'libdancer-xml0' 'thunderbird-locale-it' 'thunderbird-locale-hy' 'slapd-dbg' 'pppoeconf' 'cmap-adobe-japan2' 'libgladeui-dev' 'libcairo-gobject2' 'firefox-locale-id' 'firefox-locale-hi' 'liblinphone3' 'weplab' 'tesseract-ocr-slk-frak' 'statsvn' 'libygl4-dev' 'libxml-java' 'libjreen-dev' 'libigstk4-dbg' 'libghc-erf-prof' 'latencytop' 'libk3b6-extracodecs' 'festvox-suopuhe-common' 'libfelix-main-java-doc' 'librime-data' 'mew-bin' 'cl-plplot' 'ruby-bunny' 'ruby-highline' 'libxml-filter-buffertext-perl' 'libxcb-dri2-0' 'libdebconfclient0' 'git-daemon-sysvinit' 'tao-cosevent' 'grilo-plugins-0.1' 'shinken' 'science-robotics' 'python-macaron' 'libqd0' 'libpocozip9' 'libphp-jpgraph' 'liblinphone4' 'libjebl2-java-doc' 'lcrack' 'gextractwinicons' 'fonts-mmcedar' 'fonts-gubbi' 'drizzle-plugin-dev' 'dissy' 'language-pack-kde-ia-base' 'language-pack-kde-eu-base' 'gutenprint-locales' 'grub-ieee1275' 'firefox-locale-ja' 'tedia2sql' 'libmrpt-base0.9' 'linux-backports-modules-net-3.2.0-32-generic-pae' 'linux-backports-modules-net-3.2.0-27-generic-pae' 'xmlcopyeditor-dbg' 'xacobeo' 'wizznic-data' 'tmexpand' 'libtk-gbarr-perl' 'libqpid-perl' 'libnecpp-dev' 'libidzebra-2.0-mod-grs-xml' 'libgtkdatabox-0.9.1-1-dev' 'libgarmin-dev' 'plasma-desktop' 'grilo-plugins-0.2' 'fonts-play' 'ttf-aenigma' 'ingerman' 'coinor-libsymphony0' 'cloog-isl' 'archipel-agent-xmppserver' 'vim-runtime' 'ps2eps' 'portaudio19-dev' 'language-pack-gnome-or-base' 'xmms2-plugin-smb' 'xmldiff' 'wondershaper' 'openoffice.org-dmaths' 'python-popcon' 'python-packagekit-gtk' 'nova-consoleauth' 'libtext-header-perl' 'libooptools-dev' 'liboauth-ruby1.9.1' 'libnet-ifconfig-wrapper-perl' 'libmoneta-ruby' 'libqtsensors1' 'jcal' 'gpiv' 'libcatalyst-modules-perl' 'libdbd-odbc-perl' 'unity-lens-photos' 'gromit' 'ttf-oriya-fonts' 'librdf-ruby' 'libpolkit-backend-1-0' 'macopix-gtk2' 'celt-doc' 'svnkit' 'ruby-playerc' 'libcompass-ruby1.8' 'morla' 'libmyproxy-dev' 'libkmanagesieve4' 'libghc-generic-deriving-doc' 'libghc-cipher-aes-prof' 'libstk0c2a' 'libbrlapi-jni' 'htdig-doc' 'libjudydebian1' 'libgammu-i18n' 'fonts-yozvox-yozfont-edu' 'cantor-backend-scilab' 'thunderbird-locale-ko' 'openoffice.org-thesaurus-de-ch' 'multipath-tools-boot' 'language-pack-kde-ta-base' 'ibus-hangul' 'libpurple-dev' 'myspell-nb' 'colord' 'apache2-doc' 'libghc-wash-doc' 'shell-fm' 'mlterm-im-uim' 'libnxcl-dev' 'libghc-glib-prof' 'libclass-contract-perl' 'inotify-tools' 'p910nd' 'eiskaltdcpp-qt-dbg' 'csmash-demosong' 'ruby-merb-haml' 'alsaplayer-jack' 'quantum-plugin-ryu' 'qemu-system-common' 'ibus-table' 'libxklavier16' 'firefox-locale-fy' 'ocaml-base' 'x11-common' 'libghc6-sdl-mixer-dev' 'libtango-headers' 'linux-backports-modules-net-precise-generic-pae' 'xserver-xorg-video-geode' 'science-config' 'libzvbi-doc' 'librcsb-core-wrapper0' 'libpotrace-dev' 'osgearth' 'libghc-http-reverse-proxy-doc' 'groovy-doc' 'librome-java' 'qt-assistant-compat' 'beanstalkd' 'asterisk-config' 'thunderbird-locale-nb' 'php5-intl' 'libsndfile1-dev' 'libgccxml-dev' 'firefox-locale-ka' 'firefox-locale-gu' 'bzr-pqm' 'libghc6-configfile-prof' 'libparmetis3.1' 'scim-bridge-agent' 'python-sklearn-doc' 'python-shelltoolbox' 'python-empy' 'php5-geoip' 'openbve-data' 'ltris' 'pythia8-data' 'libparser++-dev' 'libobby-0.4-dev' 'libmad-ocaml' 'libgpewidget1-dbg' 'libghc-ghc-events-dev' 'junior-math' 'grap' 'gosa' 'geany-plugin-sendmail' 'fiu-utils' 'debian-handbook' 'kspread' 'python-egenix-mxtools' 'libyajl-doc' 'apache2-mpm-worker' 's3ql' 'ocsigenserver' 'nova-novncproxy' 'loggedfs' 'libtest-prereq-perl' 'libsdl-ocaml-dev' 'libghc-yesod-form-dev' 'libghc-profunctors-prof' 'libboost-context1.53-dev' 'kbattleship' 'kannel-sqlbox' 'libkholidays4' 'imhangul-common' 'freeciv-data' 'fldiff' 'libfreehep-graphicsio-ps-java' 'ubuntu-edu-primary' 'nautilus-actions' 'libgstreamer-plugins-base1.0-dev' 'libbabl-0.1-0-dbg' 'firefox-locale-hr' 'myspell-ku' 'cgroup-lite' 'libgradle-plugins-java' 'libyajl1' 'yesod' 'libsmi2-dbg' 'librestlet-java-doc' 'libqpidbroker2-dev' 'libextlib-ocaml-dev' 'libauthority-shared-perl' 'ikiwiki-hosting-dns' 'libgnustep-dl2-dev' 'libcaribou-dev' 'fonts-levien-typoscript' 'likewise-open5-libs' 'libsane-hpaio' 'foomatic-filters' 'uwsgi-app-integration-plugins' 'pd-comport' 'opticalraytracer' 'magicor-data' 'libremctl-ruby' 'libghc-oeis-doc' 'libdeclarative-organizer' 'libctl-doc' 'hp-ppd' 'fonts-samyak-mlym' 'ruby-erubis' 'cloud-initramfs-growroot' 'bitlbee-plugin-otr' 'thunderbird-locale-mk' 'squidclient' 'libyajl2' 'lib64objc-4.7-dev' 'libmaa3' 'bzr-xmloutput' 'gnus' 'weechat-scripts' 'libwfut-0.2-dev' 'libtemplate-provider-fromdata-perl' 'libsbml5-dev' 'librtmidi-dbg' 'libghc-utf8-light-dev' 'libghc-representable-tries-prof' 'libghc-numbers-dev' 'libghc-attoparsec-enumerator-doc' 'libgaiagraphics-dev' 'libdirac-dev' 'kdirstat' 'utouch-grail-tools' 'libmrml1c2a' 'libtransitioner1-dev' 'libsync-menu-dev' 'libmediastreamer0' 'librrds-perl' 'libgconf2-dev' 'libbonobo2-common' 'libavahi-qt4-dev' 'libreoffice' 'gnome-terminal-data' 'gcc-4.7-doc' 'firefox-locale-hu' 'libgl1-mesa-glx' 'mbrola-pl1' 'sugar-pollbuilder-activity' 'python-skimage-doc' 'python-openwsman' 'mupen64plus-video-arachnoid-dbg' 'xavante' 'libqt5sensors5' 'libexporter-tidy-perl' 'libmediastreamer1' 'kolab-cyrus-pop3d' 'liblua5.2-0' 'couriergraph' 'cantor' 'texlive-lang-german' 'pidgin' 'myspell-lt' 'libdb5.3-dev' 'fonts-arabeyes' 'libnet-tftp-ruby' 'libgmlib0-dbg' 'extcalc' 'openoffice.org-style-tango' 'zekr' 'transifex-client' 'tiobench' 'quassel-client-qt4' 'hts-voice-nitech-jp-atr503-m001' 'mingw32-runtime' 'libsequel-ruby1.9.1' 'nxproxy' 'libnetdot-client-rest-perl' 'libemail-folder-perl' 'libgeronimo-interceptor-3.0-spec-java' 'fweb' 'fcitx-unikey' 'dialog' 'libghc-http-enumerator-dev' 'r-cran-catools' 'python-django-rosetta' 'libuuidtools-ruby1.9.1' 'libsrecord0' 'libqxmlrpc-doc' 'libnsbmp0-dbg' 'libinfinity-0.5-dev' 'libhtml-widgets-selectlayers-perl' 'libghc-http-date-prof' 'libghc-hipmunk-doc' 'grcm' 'gnome-themes-ubuntu' 'dose-builddebcheck' 'lrzsz' 'chrootuid' 'cgi-mapserver' 'thunderbird-locale-lt' 'onboard' 'ttf-wqy-microhei' 'libimobiledevice3-dbg' 'libgupnp-igd-1.0-doc' 'dehydra' 'firefox-locale-is' 'myspell-nl' 'myspell-lv' 'libghc6-safe-doc' 'libace-qtreactor-6.0.1' 'raincat' 'libspark-java-doc' 'libsoqt4-dev' 'libperl-destruct-level-perl' 'libghc-erf-doc' 'libgavl-ocaml-dev' 'libdune-grid-dev' 'libcache-historical-perl' 'kiconedit' 'liboobs-1-5' 'fsvs' 'desktopnova' 'cvstrac' 'claws-mail-address-keeper' 'cl-uffi-tests' 'thunderbird-locale-pa' 'libow-util-ant-tasks-java' 'libmeanwhile1' 'libx32stdc++6-4.7-dbg' 'firefox-locale-it' 'firefox-locale-hy' 'linux-image-3.2.0-33-lowlatency-pae' 'xfonts-cronyx-misc' 'trac-accountmanager' 'ruby-hoe' 'r-cran-domc' 'python-fdsend' 'puredata-extra' 'libopencsg-example' 'libkopete-dev' 'libgirara-dbg' 'libstring-formatter-perl' 'velocity' 'libnet-ipv6addr-perl' 'gnome-mplayer-dbg' 'xjadeo' 'python-geis' 'fonts-cwtex-heib' 'fldigi' 'fbdesk' 'balazar3-2d' 'thunderbird-locale-nl' 'x11proto-xf86vidmode-dev' 'language-pack-am-base' 'libncurses5-dev' 'firefox-locale-kk' 'myspell-nn' 'sun-javadb-javadoc' 'sqlite3-pcre' 'plasma-widget-memusage' 'osptoolkit' 'lxshortcut' 'ltrsift-examples' 'libvoms-api-java-java-doc' 'libace-qtreactor-6.0.3' 'libmailimporter4' 'japa' 'gobjc++-4.7-multilib-arm-linux-gnueabihf' 'gnome-applets' 'gmerlin-encoders-good' 'libkeybinder0' 'ocfs2console' 'libdee-doc' 'libgksu2-0' 'firefox-locale-lg' 'poppler-utils' 'libghc6-pango-prof' 'libfplll-dev' 'python3.2-minimal' 'python-unshare' 'racket-doc' 'libmrpt-base1.0' 'liblogger-syslog-perl' 'ruby-gsl' 'libghc-pwstore-fast-dev' 'libgfs-dbg' 'libclass-accessor-classy-perl' 'jalv' 'liblfc1' 'libgeomview-1.9.4' 'autojump' 'thunderbird-locale-nn' 'python-egenix-mxdatetime-doc' 'libmono-management4.0-cil' 'firefox-locale-km' 'libghc6-testpack-doc' 'libgles2-mesa-lts-quantal' 'systemtap' 'swac-explore' 'scilab-celestlab' 'refdb-clients' 'octave-benchmark' 'musica' 'mktorrent' 'libusbredirhost1' 'libnexus0-dev' 'libfreehep-graphicsio-java-java' 'libdancer-plugin-database-perl' 'libcriticism-perl' 'libdbix-class-tree-nestedset-perl' 'libssl0.9.8' 'g++-mingw-w64' 'fcitx-table-viqr' 'bino-dbg' 'libmpg123-0' 'exo-utils' 'libffi-ruby1.9.1' 'python-egenix-mxtexttools-doc' 'liblzma-doc' 'firefox-locale-kn' 'sgml-data' 'libghc6-hsemail-dev' 'libisl8' 'libgradle-wrapper-java' 'linux-backports-modules-cw-3.5-3.2.0-39-generic' 'ubuntustudio-wallpapers' 'sweethome3d-furniture-nonfree' 'python-buffy' 'libuima-cpe-java' 'libsylph-dev' 'libtext-trac-perl' 'libjtharness-java-doc' 'libguytools2-dev' 'libgeronimo-osgi-support-java' 'libapache-mod-security' 'ktorrent-dbg' 'gridsite' 'gobby' 'libffmpegthumbnailer4' 'burgerspace' 'libbio-perl-run-perl' 'python-nose-doc' 'libpar-dist-perl' 'mahjongg' 'firefox-locale-ko' 'exim4-dev' 'myspell-nr' 'libggi2-dev' 'xserver-xorg-video-dummy-lts-quantal' 'tesseract-ocr-spa-old' 'mcollective-plugins-service' 'libtolua-dev' 'libcusparse5.0' 'gir1.2-goocanvas-2.0-9' 'libc6-dev-armhf-armel-cross' 'fp-units-fv-2.6.0' 'ttf-thai-arundina' 'bouncy' 'balazar3-3d' 'myspell-ns' 'testdisk-dbg' 'python-pytools' 'python-peak.rules' 'linux-igd' 'libsikuli-script-java' 'libnet-proxy-perl' 'kdeadmin' 'libjlha-java' 'gmountiso' 'libmad0' 'language-pack-xh-base' 'gstreamer0.10-plugins-base-apps' 'firefox-locale-nb' 'librsvg2-bin' 'openoffice.org-zemberek' 'fp-units-misc-2.4.4' 'libxml-grddl-perl' 'libroot-proof-dev' 'librampart0' 'libkohana-php' 'libjglobus-ssl-proxies-java' 'libghc-weighted-regexp-doc' 'keyboards-rg' 'easystroke' 'libhamlib2' 'flawfinder' 'libxcb-xf86dri0-dbg' 'libnetpbm9-dev' 'gnumeric' 'lib64gfortran-4.7-dev' 'xview-examples' 'xfce4-power-manager-plugins' 'xfce4-linelight-plugin' 'sentinella' 'ng-common' 'libtk-filedialog-perl' 'liblcmaps-dev' 'libghc-wai-logger-doc' 'lsh-client' 'elvis-console' 'kdegraphics-strigi-plugins' 'libgeoclue-dev' 'psgml' 'myspell-pl' 'xmms2-plugin-rss' 'node-backbone' 'nictools-pci' 'libsane-extras-common' 'libprima-perl' 'ruby-ogginfo' 'libglobus-callout-dev' 'libghc-bifunctors-doc' 'libcastor-anttasks-java' 'ktorrent-data' 'jockey-gtk' 'gtrayicon' 'cmdtest' 'libx11-protocol-perl' 'ruby-net-sftp' 'maven-debian-helper' 'libsignon-qt5-dev' 'unison2.32.52-gtk' 'revelation' 'ovito-examples' 'nstreams' 'mythtv-status' 'libqdbm-ruby1.8' 'libnxcl1' 'neko-dev' 'liblognorm0' 'libghc-bloomfilter-dev' 'autokey-gtk' 'wfrench' 'thunderbird-locale-pl' 'rubygems1.8' 'python-jabber' 'pitivi' 'libsunpinyin3-dbg' 'libqca2-doc' 'firefox-locale-mk' 'firefox-locale-ku' 'ubuntu-dev-tools' 'wifi-radar' 'remmina-plugin-telepathy' 'r-cran-robustbase' 'libnfo-dev' 'liblcas-dev' 'libgtkmathview-dev' 'libemail-send-perl' 'libclirr-maven-plugin-java' 'xl2tpd' 'globus-gsi-credential-dbg' 'mailtextbody' 'libgdata2.1-cil' 'xserver-xorg-input-joystick' 'libnetpbm10' 'grep' 'firefox-locale-ml' 'libedataserver1.2-dev' 'libghc6-regex-posix-prof' 'linux-image-3.2.0-30-generic-pae' 'linux-image-3.2.0-25-generic-pae' 'tryton-proteus' 'phonon-backend-vlc-dbg' 'opengtl-tools' 'lttng-tools' 'libspring-web-portlet-java' 'libghc6-hsx-dev' 'libganv-dev' 'libfile-type-webimages-perl' 'kde-base-artwork' 'libgdal-dev' 'libfox-1.6-0' 'libdb4.8' 'ocaml-doc' 'libident-dev' 'indicator-sound' 'myspell-en-us' 'firefox-locale-oc' 'libghc6-quickcheck1-dev' 'linux-image-3.2.0-36-virtual' 'sitecopy' 'rsakeyfind' 'r-cran-fnonlinear' 'libsunflow-java' 'libstarpumpi-1.0' 'libsigc++0c2' 'libroot-math-unuran-dev' 'libqwtplot3d-doc' 'libjs-jquery-ui-theme-overcast' 'libjcode-perl' 'libbio-mage-perl' 'junior-writing' 'hydrogen-drumkits' 'git-cola' 'geogebra' 'geant321-data' 'enigma-doc' 'drobo-utils' 'mjpegtools' 'bastille' 'libmdbsql2' 'atm-tools' 'fontforge-nox' 'firefox-locale-mn' 'root-plugin-graf2d-qt' 'pslib1-dbg' 'nsca-client' 'maliit-keyboard-data' 'libperl-metrics-simple-perl' 'libflexdock-java-doc' 'libadasockets4-dev' 'libace-xtreactor-dev' 'libigstk4-dev' 'gtkmorph-example' 'libkipi10' 'iverilog' 'berusky' 'python-rrdtool' 'libsnmp-base' 'librsvg2-dbg' 'libpoppler-private-dev' 'libgladeui-doc' 'ldm-ubuntu-theme' 'libsysfs2' 'firefox-locale-lt' 'mariadb-common' 'rexima' 'ltt-bin' 'libvxl1-dev' 'libsys-mmap-perl' 'libroot-net-auth-dev' 'libmediastreamer-dev' 'libcommons-jci-rhino-java' 'libclaw-dynamic-library-dev' 'libsub-identify-perl' 'gnustep-back-common' 'gcc-h8300-hms' 'etherape' 'claws-mail-tnef-parser' 'apt-build' 'nickle' 'ruby-stomp' 'libgegl-0.2-0-dbg' 'firefox-locale-pa' 'request-tracker3.8' 'uicilibris' 'moon-lander-data' 'libnet-ssh-gateway-ruby' 'libgpds-dbg' 'libcss-parser-pp0' 'libclalsadrv-dev' 'libcegui-mk2-0.7.6-dbg' 'libasio-dev' 'lcd4linux' 'kamailio-snmpstats-modules' 'fwanalog' 'fbreader' 'xine-ui' 'dict-freedict-ara-eng' 'd-rats' 'myspell-pt' 'libusbmuxd2-dbg' 'libharfbuzz0' 'libkio5' 'libcanberra-pulse' 'friends-flickr' 'firefox-locale-nl' 'firefox-locale-lv' 'bacula-director-common' 'xmms2-plugin-ices' 'supertuxkart-dbg' 'scim-pinyin' 'libsslcommon2' 'libi18n-acceptlanguage-perl' 'libghc-haskelldb-prof' 'libfaad-ocaml-dev' 'epylog' 'dvi2ps-fontdata-a2n' 'libwreport2' 'dancer-ircd' 'coinor-libcoinutils-dev' 'account-plugin-fitbit' 'texlive-lang-indic' 'python-svn-dbg' 'portaudio19-doc' 'libio-multiplex-perl' 'libgmime-2.6-0-dbg' 'libselinux1-dev' 'libpeas-dev' 'firefox-locale-mr' 'fence-agents' 'bluez-dbg' 'libx11-6' 'xserver-xorg-video-i740' 'xfonts-terminus-dos' 'wsynth-dssi' 'syslog-ng-mod-sql' 'libnexus0-python' 'libnaga-java' 'libtevent-dev' 'libghc-bytestring-nums-dev' 'libconfig-grammar-perl' 'libcfitsio3-dbg' 'giws-doc' 'extrema-doc' 'thunderbird-locale-pt' 'gir1.2-vte-2.90' 'firefox-locale-nn' 'crash' 'python-pkg-resources' 'mythweather' 'php-horde-auth' 'mcollective-provisioner-common' 'libmyproxy-doc' 'libjemalloc-dev' 'libhttp-cookiemonster-perl' 'ttf-f500' 'awesfx' 'gpsd' 'atfs-dev' 'eyed3' 'thunderbird-locale-ta' 'syslinux-themes-ubuntu-raring' 'myspell-en-za' 'qemu-kvm-extras' 'python-ceilometerclient' 'mediatomb-daemon' 'libxml-bare-perl' 'librcps-dev' 'libquantlib0-dev' 'libpocomysql9' 'libobus-ocaml-bin' 'libjfreechart-swt-java' 'libghc-shakespeare-i18n-prof' 'libffindex0-dev' 'libezmorph-java' 'libdbix-abstract-perl' 'libckit-smlnj' 'jsonbot' 'texlive-lang-english' 'fuse' 'libghc6-sdl-mixer-doc' 'xnbd-client' 'xmms2-plugin-modplug' 'xmms2-client-cli' 'sweep-dev' 'snort-common' 'pidgin-mra' 'libxsettings-dev' 'libthread-serialize-perl' 'libvlc-dev' 'libjboss-ejb3x-java' 'kde-telepathy-text-ui-dbg' 'libjalali0' 'libitl0' 'gnome-commander-data' 'gkrelluim' 'thunderbird-locale-rm' 'xorg' 'libmono-system-xml-linq4.0-cil' 'language-pack-gnome-ga-base' 'gstreamer1.0-plugins-good-dbg' 'libdrm-ltsq-intel1' 'wmforkplop' 'python-hachoir-regex' 'libsvrcore0-dbg' 'libqtrpc2-1' 'liblocale-ruby1.8' 'libgit-ruby1.8' 'libghc-reflection-prof' 'libghc-ghc-events-doc' 'libapache2-mod-parser3' 'ktorrent' 'grig' 'g15composer' 'epiphany-browser-dbg' 'libecasoundc1' 'bkhive' 'thunderbird-locale-si' 'python-imaging-dbg' 'rsh-client' 'librest-extras-dev' 'libqtopengl4-perl' 'libnet-cidr-perl' 'libextutils-depends-perl' 'gobjc' 'myspell-sk' 'foomatic-db' 'lcl-utils-0.9.30.2' 'doc-rfc-informational' 'widelands-data' 'mon-client' 'libtest-routine-perl' 'libsmi2-dev' 'libnet-frame-perl' 'liblwt-glib-ocaml' 'libgzstream-tulip-3.7.0' 'libghc-yesod-form-doc' 'libqtshiva0.1' 'jockey-kde' 'libgportugol0' 'textedit.app' 'freetalk' 'filezilla-common' 'crasm' 'libcatalyst-authentication-credential-http-perl' 'mafft' 'mpg321' 'thunderbird-locale-ro' 'swig-examples' 'libunique-dev' 'liblapack3' 'language-pack-kde-es-base' 'language-pack-zh-hans-base' 'myspell-sl' 'aptitude-dbg' 'xcalib' 'x2goplugin' 'scim-dev-doc' 'recoverdm' 'python-zope.browser' 'lisaac-common' 'libstxxl1' 'libsdl-sound-gst' 'libqalculate5-data' 'libmina-java' 'libopenigtlink1.9' 'libghc-text-dev' 'libfreeimage3' 'gmerlin-encoders-extra' 'gir1.2-libvirt-glib-1.0' 'libsfgfortran-4.7-dev-armhf-cross' 'fonts-lohit-tamil-classical' 'fonts-aoyagi-kouzan-t' 'libdigest-md5-file-perl' 'isdnutils' 'kompare' 'python-pyatspi2' 'thunderbird-locale-sk' 'php5-ldap' 'libtest-tester-perl' 'myspell-th' 'libavahi-ui-dev' 'libsasl2-2' 'easytag-aac' 'netdiscover-dbg' 'lxpanel' 'libwxsvg-dbg' 'libwireshark1' 'librtmidi-dev' 'liblayout-java' 'libghc-aeson-dev' 'libdynalang-java' 'libtime-piece-mysql-perl' 'lcl-utils-0.9.30.4' 'libplasmaclock4abi3' 'idesk' 'freebsd-manpages' 'ffmpegthumbs' 'cyrus-doc-2.2' 'c2hs' 'bcron' 'thunderbird-locale-sl' 'libterm-readline-perl-perl' 'python-vmtk' 'uwsgi-plugin-carbon' 'python-pyfribidi' 'mricron-doc' 'lldpad' 'libwww-topica-perl' 'libwireshark2' 'libtarantoolnet1-dbg' 'libkdcraw22-dbg' 'libhugs-quickcheck-bundled' 'libgtk2-ruby1.8' 'libghc-utf8-light-doc' 'libghc-numbers-doc' 'libdirac-doc' 'libc6-armel-cross' 'freedroidrpg' 'embassy-domainatrix' 'elastix-doc' 'dict-freedict-deu-ita' 'cminpack-doc' 'bibtex2html' 'libusb++-0.1-4c2' 'libgconf2-doc' 'language-pack-kde-sd-base' 'language-pack-kde-ps-base' 'firefox-locale-pl' 'linux-image-3.8.0-7-generic' 'gcc-4.4-arm-linux-gnueabi-base' 'firmware-b43-installer' 'xscorch' 'samidare' 'python-dbf-doc' 'peg-e' 'morse' 'mlton-compiler' 'proda' 'libtarantoolrpl1' 'libslurm-dev' 'libsb2' 'libmixin-extrafields-param-perl' 'libmaven-jar-plugin-java-doc' 'libmaven-hpi-plugin-java-doc' 'libghc-dyre-prof' 'ldnsutils' 'kradio' 'gquilt' 'foxtrotgps-dbg' 'cyrus-doc-2.4' 'libqxt-gui0' 'phylip' 'alarm-clock' 'libitm1' 'irssi' 'firefox-locale-or' 'myspell-ru' 'zhone-illume-glue' 'libghc6-event-list-dev' 'libhfobjc3-armel-cross' 'linux-image-3.2.0-33-generic' 'ubuntuone-file-storage-api' 'r-cran-fgarch' 'python-mpltoolkits.basemap-doc' 'ogre-1.8-tools' 'nova-xcp-network' 'libtwofish0' 'ruby-rubytorrent' 'libtest-dir-perl' 'libnsbmp0-dev' 'libnet-ssh2-perl' 'libmapnik-dev' 'libhivex0' 'libghc-static-hash-prof' 'libcgi-application-plugin-requiressl-perl' 'libqglviewer-qt4-dev' 'lcmaps-openssl-interface' 'inn2-dev' 'foo-yc20' 'drizzle-plugin-rabbitmq' 'cl-regex' 'asterisk-prompt-it-menardi-wav' 'python-egenix-mxproxy' 'myspell-tl' 'libllvm3.2-dbg' 'python-desktopcouch-recordtypes' 'libghc-http-enumerator-doc' 'xserver-xorg-video-openchrome-lts-quantal' 'python-stfio' 'python-poker-stats' 'pari-galpol' 'lire-devel-doc' 'libxgks-dev' 'libtext-reform-perl' 'libmaven-invoker-plugin-java' 'liblv2dynparamplugin1-0' 'libiulib-dev' 'libinfinity-0.5-doc' 'libchart-strip-perl' 'libtelepathy-qt4-2' 'libj2ssh-java' 'gkrelltop' 'python-enum' 'congruity' 'thunderbird-locale-ru' 'libxi6-dbg' 'libclone-perl' 'libatk-bridge2.0-0-dbg' 'libx32stdc++6-4.7-dev' 'ntpdate' 'darksnow' 'xorp' 'wmaker-common' 'node-passport-oauth' 'lziprecover' 'libstdc++6-4.7-pic-armel-cross' 'libjs-twitter-bootstrap-docs' 'libgirara-dev' 'libghc-smallcheck-dev' 'libdune-grid-doc' 'libdistorm64-1' 'libdata-dumpxml-perl' 'libcobra-java' 'feed2imap' 'gprbuild' 'thunderbird-locale-sq' 'python-mysqldb-dbg' 'python-mailer' 'openais-dbg' 'javascript-common' 'libhamcrest-java' 'myspell-tn' 'myspell-ss' 'libpq5' 'libdb5.1' 'gcc-4.6-arm-linux-gnueabihf' 'xfonts-kappa20' 'mediawiki-extensions-confirmedit' 'libipathverbs1-dbg' 'liblog-report-perl' 'liblocale-maketext-lexicon-perl' 'libjs-debugger' 'festival' 'scilab' 'thunderbird-locale-sr' 'qemu-utils' 'myspell-st' 'libclamunrar6' 'myspell-ve' 'libghc6-hint-dev' 'mines.app' 'x-tile' 'tablet-encode' 'stormbaancoureur-data' 'seq24' 'slang-cfitsio' 'pycmail' 'pdfcube-dbg' 'pbs-drmaa-dev' 'logidee-tools' 'libwtfcgi-dev' 'libtokyotyrant-dev' 'libpigment0.3-11' 'libmac-widgets-java' 'libjgoodies-common-java-doc' 'libgtk2-unique-perl' 'libclass-std-utils-perl' 'kita2' 'gnome-video-effects-dev' 'globus-ftp-control-dbg' 'libgfs-dev' 'zentyal-printers' 'perl-tk' 'dnscache-run' 'libphononexperimental-dev' 'ttf-baekmuk' 'libdb5.3' 'myspell-uk' 'libghc-happstack-util-dev' 'wing-data' 'proxycheck' 'pachi-data' 'libstfl-dev' 'libsphinxbase-dev' 'librrdtool-oo-perl' 'libghc-pwstore-fast-doc' 'libforms-bin' 'indigo-utils' 'fonts-ecolier-court' 'cream' 'python-vobject' 'libberkeleydb-perl' 'linux-image-3.8.0-15-generic' 'libhdf5-lam-dev' 'openoffice.org-help-zh-tw' 'linux-headers-3.2.0-33-lowlatency' 'umview-mod-umdevtap' 'screader' 'libuuidtools-ruby-doc' 'libparse-dmidecode-perl' 'libpam-rsbac' 'libkakasi-ruby1.8' 'libjs-asciimathml' 'libxml-atom-owl-perl' 'libdballef4' 'libobject-role-perl' 'i3lock' 'citadel-webcit' 'cfourcc' 'thunderbird-locale-uk' 'libxom-java-doc' 'myspell-sw' 'libtommath0' 'firefox-locale-pt' 'render-bench' 'bsd-mailx' 'libghc6-hsemail-doc' 'xrdp' 'twoftpd-run' 'swi-prolog-doc' 'ruby-uglifier' 'regina-rexx' 'php5-xcache' 'libtacacs+1-dev' 'libpri-dev' 'libcry-ocaml-dev' 'ldiskfsck' 'eiskaltdcpp-qt-mini-dbg' 'analog' 'thunderbird-locale-sv' 'squid-cgi' 'libotf0-dbg' 'firefox-locale-ta' 'myspell-ts' 'virtualbox-guest-source' 'mbrola-pt1' 'swami-dbg' 'pidgin-mpris' 'libstaxutils-java' 'libmaven-shade-plugin-java' 'libghc-uulib-dev' 'libghc-listlike-prof' 'libgee-0.8-dev' 'libconfig-gitlike-perl' 'libcegui-mk2-dev' 'jailer' 'php5-imagick' 'goldencheetah' 'compass-susy-plugin' 'thunderbird-locale-tr' 'xul-ext-websites-integration' 'libreoffice-style-galaxy' 'lsb-build-cc3' 'zentyal-services' 'yoshimi-dbg' 'why-examples' 'squidguard-doc' 'rss-glx' 'python-mongoengine-doc' 'libmeschach1.2' 'libsc7' 'libghc-uniplate-dev' 'libopencv-imgproc-dev' 'gearhead-data' 'thunderbird-locale-vi' 'libxcb-xf86dri0-dev' 'gcc-4.4-locales' 'plasma-widget-networkmanagement-dbg' 'php-getid3' 'luola' 'libpocodata9-dbg' 'libhamcrest1.2-java-doc' 'libcapsinetwork-dev' 'monopd' 'gstreamer1.0-plugins-ugly-doc' 'gff2aplot' 'fusesmb' 'libapache-dbi-perl' 'cluster-agents' 'python-pastescript' 'python-oops-twisted' 'libgpgme11' 'firefox-locale-si' 'language-pack-ca-base' 'cryptsetup-bin' 'libggiwmh0' 'openoffice.org-l10n-en-gb' 'xserver-xorg-video-intel-lts-quantal-dbg' 'mrtg-ping-probe' 'meep-lam4' 'logjam' 'libtest-mock-redis-perl' 'sidplay-base' 'libroot-io5.34' 'libluminate-dev' 'liblocale-ruby' 'libjgoodies-binding-java' 'libgtksourceview2-ruby' 'libgtk2-appindicator-perl' 'libghc-executable-path-dev' 'libcpl-dev' 'libfox-1.6-dev' 'gnucap' 'txt2man' 'firefox-locale-te' 'firefox-locale-ro' 'libopenh323-dbg' 'libjavatar-java' 'linux-backports-modules-cw-3.3-3.2.0-39-virtual' 'kplayer-doc' 'iozone3' 'sitesummary' 'meep-mpich2' 'libgsl-ruby1.9.1' 'libglobus-callout-doc' 'libghc-random-dev' 'libclaw-application-dev' 'latexila-data' 'gnokii-common' 'libges-0.10-0' 'fastlink-doc' 'developers-reference-de' 'xpra' 'akonadi-server' 'python3-testtools' 'postgresql-plpython3-9.1' 'libcache-memcached-perl' 'libcmis-dev' 'lib64bz2-dev' 'firefox-locale-sk' 'exim4' 'vala-0.20-doc' 'libworldwind-java' 'python-netfilter' 'libghc-bloomfilter-doc' 'pinentry-doc' 'libxcb-xf86dri0' 'libgsf-gnome-1-dev' 'firefox-locale-sl' 'gcursor' 'rafkill' 'pysycache-move-sports' 'mono-xsp' 'python-monajat' 'lsh-utils' 'libnfo-doc' 'libmsv-dev' 'liblayout-manager-perl' 'libgnome2-gconf-perl' 'libplplot-c++10' 'ftpd-ssl' 'epic4-script-lice' 'drizzle-plugin-auth-schema' 'crawl' 'libplist-dbg' 'libkjsapi4' 'gir1.2-cogl-1.0' 'firefox-locale-th' 'cloud-utils' 'liblua-socket-doc' 'libghc6-hsx-doc' 'libgsoap1' 'uqm-voice' 'udj-desktop-client' 'r-cran-class' 'libspring-security-portlet-2.0-java' 'lua-sec' 'libgdal-doc' 'libdeps-renderer-tulip-perl' 'libjtidy-java' 'ferret-datasets' 'compass-h5bp-plugin' 'libpam-freerdp' 'openjdk-7-doc' 'libghc6-quickcheck1-doc' 'ttf-tiresias' 'python-qrtools' 'postgres-xc-client' 'profnet-isis' 'libsort-fields-perl' 'libnl-utils' 'libnglib-dev' 'libhmac-ruby' 'libghc-ixset-dev' 'libghc-fastcgi-prof' 'libfssm-ruby' 'libglobus-openssl-module0' 'drupal6-mod-inline' 'libgsoap2' 'python-gmenu' 'c++-annotations-latex' 'bbtime' 'libproc-dev' 'librsvg2-dev' 'myspell-xh' 'event-rpc-perl' 'linux-backports-modules-cw-3.4-3.2.0-37-generic' 'xjump' 'tcl-trf-dev' 'python-fmcs' 'lxappearance-obconf' 'libmoosex-setonce-perl' 'junior-games-card' 'jaxe' 'ffindex' 'libgearman6' 'printer-driver-cjet' 'cacti' 'bluedevil' 'libvibrant6a' 'libtelepathy-glib0-dbg' 'libhsqldb-java' 'libgnutls28-dbg' 'heimdal-clients-x' 'firefox-locale-ru' 'augeas-tools' 'libsfobjc3-dbg-armhf-cross' 'dssi-vst' 'xmms2-plugin-tta' 'wcanadian-insane' 'scim-anthy' 'python-utmp' 'pccts' 'njam-data' 'mitmproxy' 'magic' 'liquidsoap-plugin-ladspa' 'libpyside1.1' 'libparse-edid-perl' 'libhttpclient-ruby' 'libgpds-dev' 'libglrr-gobject0' 'libghc-zlib-enum-prof' 'libcharls1' 'glances' 'libindicate5' 'ebumeter' 'python-imaging-tk-dbg' 'pkg-kde-tools' 'watchdog' 'libconfig-inifiles-perl' 'firefox-locale-sq' 'debconf' 'yc-el' 'rainbow' 'pythoncard-tools' 'postgres-xc-plpython' 'liquidsoap-plugin-mad' 'libxineliboutput-sxfe' 'libredcloth-ruby-doc' 'libphat-tools' 'libghc-ieee754-dev' 'libdatetime-event-recurrence-perl' 'libcimcclient0-dev' 'libasio-doc' 'fcitx-hangul' 'bootcd-backup' 'chiark-utils-bin' 'libquadmath0-dbg' 'firefox-locale-sr' 'git-core' 'libghc6-hsql-mysql-dev' 'doom-wad-shareware' 'plymouth-theme-ubuntu-gnome-text' 'nss-passwords' 'libpng-sixlegs-java' 'libdiet-admin2.8-dev' 'libdbix-class-htmlwidget-perl' 'libcfitsio3-dev' 'libmoosex-role-parameterized-perl' 'lcmaps-globus-interface' 'projectcenter.app' 'fcitx-ui-kimpanel' 'php-auth' 'dreampie' 'dolphin-plugins-bazaar' 'safecat' 'coinor-libcoinutils-doc' 'cl-pg' 'cairo-clock' 'rsyslog-relp' 'libpeas-doc' 'libbusiness-isbn-data-perl' 'libmjpegtools-1.9' 'ezgo-tasks' 'update-manager-kde' 'ruby-peach' 'nfdump-dbg' 'libusb-java-lib' 'libplayertcp3.0-dev' 'libisorelax-java-doc' 'libhivex-ocaml-dev' 'libghc-bytestring-nums-doc' 'ruby-gettext-rails' 'libf2c2' 'liblwpx-paranoidagent-perl' 'gravitation' 'gnubik' 'filelight' 'festvox-suopuhe-lj' 'debbugs' 'dbf2mysql' 'libbabeltrace0' 'libalure-dev' 'libacpi0' 'tntdb-sqlite2' 'libntl-5.4.2' 'libgwibber-dev' 'zeya' 'ttyload' 'torrentflux' 'tcpser' 'qmf-doc-html' 'python-hglib' 'pennmush-mysql' 'live-manual-html' 'libvxl1.14' 'librsvg2-ruby1.8' 'libroot-bindings-ruby-dev' 'libjzlib-java' 'libglobalhotkeys-ruby1.8' 'libfelix-framework-java' 'libgeometry-primitive-perl' 'mikmod' 'tidy-doc' 'libboost-system1.46-dev' 'fuse-dbg' 'firefox-locale-uk' 'texpower-examples' 'doc-rfc' 'tntnet-runtime' 'tntdb-sqlite3' 'libprawn-ruby' 'libtext-ngram-perl' 'libidzebra-2.0-mod-alvis' 'libghc-cprng-aes-dev' 'libksignalplotter4' 'libqtwebkit-qmlwebkitplugin' 'libelemental0' 'fonts-vollkorn' 'apt-watch-backend' 'pkg-create-dbgsym' 'firefox-locale-sv' 'libxrandr-ltsq2-dbg' 'r-cran-urca' 'python-scientific-doc' 'pidgin-nateon-dbg' 'php-horde' 'libroot-net-ldap5.34' 'libplayerjpeg3.0-dev' 'librdf-rdfa-parser-perl' 'libanyevent-tools-perl' 'gcompris-data' 'ttf-linex' 'erlang-reltool' 'epiphany-browser-dev' 'ruby-mab' 'xfslibs-dev' 'python-stompy' 'gstreamer1.0-alsa' 'firefox-locale-tr' 'firefox-locale-sw' 'wireless-regdb' 'r-cran-maldiquant' 'python3-d2to1' 'pysolfc' 'opennebula-node' 'mosquitto-clients' 'mgm-doc' 'libzorp3.9' 'libmultibitnums-ruby1.8-dbg' 'libio-digest-perl' 'keybinder-doc' 'inoticoming' 'globus-gfork-dbg' 'fp-units-misc-2.6.0' 'elastichosts-utils' 'distmp3' 'nagios-plugins' 'linux-virtual' 'firefox-locale-vi' 'mumble-11x' 'tryton-modules-account-invoice-line-standalone' 'qtmultimedia5-private-dev' 'python-scipy-dbg' 'prolog-el' 'octave-general' 'libzthread-dev' 'libwfmath-0.3-6-dbg' 'libtritonus-jni' 'libparrot4.6.0' 'libbase-java' 'libace-tmcast-dev' 'libfwtsacpica1' 'libfreefoam1' 'fonts-paktype' 'libclass-std-perl' 'mono-dmcs' 'libunique-doc' 'malaga-bin' 'libfolks-eds-dbg' 'gir1.2-mx-1.0' 'ubuntu-orchestra-client-juju' 'packagekit-bash-completion' 'linux-tools-3.2.0-23' 'linux-backports-modules-cw-3.3-3.2.0-36-generic' 'libxen-4.1' 'tryton-modules-account-product' 'nethack-console' 'python-mysql.connector' 'libwxsvg-dev' 'libpoe-filter-stomp-perl' 'libmm14' 'libmarc-perl' 'libghc-text-doc' 'libdebug-trace-perl' 'kipi-plugins-common' 'ghc-prof' 'geeqie-dbg' 'fontypython' 'fonts-umeplus' 'libwx-perl-processstream-perl' 'trans-de-en' 'dictconv' 'libndesk-dbus-glib1.0-cil' 'libbsd0-dbg' 'pango-graphite' 'esvn-doc' 'linux-tools-3.2.0-24' 'substance-doc' 'scid-spell-data' 'r-cran-quadprog' 'libtododb-dev' 'libtext-sass-perl' 'mapnik-doc' 'libjgit-java-doc' 'libghc-cmdargs-prof' 'libghc-aeson-doc' 'junior-programming' 'grok' 'gnome-paint' 'gedit-developer-plugins' 'tcl-lib' 'libxen-4.2' 'libsgutils2-2' 'man-db' 'libxml-commons-resolver1.1-java' 'libghc6-hunit-prof' 'libfsotransport0' 'linux-tools-3.2.0-30' 'linux-tools-3.2.0-25' 'vdr-plugin-streamdev-client' 'pocketpc-cab' 'metastore' 'libsrtp0-dev' 'liblua5.1-sql-mysql-2' 'eclipse-jgit' 'openvas-server' 'cython3' 'amavisd-new' 'dconf-gsettings-backend' 'linux-tools-3.2.0-31' 'linux-tools-3.2.0-26' 'ubuntustudio-recording' 'ruby-rack-cache' 'uim-mozc' 'libtemplate-alloy-perl' 'libobus-ocaml-dev' 'libhdfeos5-ruby1.9.1-dbg' 'libckyapplet1-dev' 'libbrahe-dev' 'libalgorithm-permute-perl' 'libgetdata++2' 'libgdict-1.0-6' 'glusterfs-dbg' 'crack-attack' 'python3-markupsafe' 'python-anyjson' 'libucommon3-dbg' 'libghc6-event-list-doc' 'linux-tools-3.2.0-32' 'linux-tools-3.2.0-27' 'sbrsh' 'rungetty' 'python-geohash' 'libnetbeans-cvsclient-java' 'liblilv-dev' 'libgridsite-dev' 'libepc-ui-dev' 'lam4-dev' 'grokevt' 'libgnuradio-trellis3.6.1' 'globus-gsi-openssl-error-dbg' 'python-txlongpoll' 'libthreads-perl' 'libstreams0' 'language-pack-gnome-cs-base' 'linux-tools-3.2.0-33' 'xmahjongg' 'vlc-plugin-pulse' 'orbit2-nameserver' 'liquidsoap-plugin-taglib' 'libvibrant6-dev' 'libtreil-dev' 'libruby2ruby-ruby1.8' 'libclutter-cil-dev' 'pmount' 'libfsotransport3' 'qemu-system-arm' 'python3-zope.interface' 'nagios-nrpe-server' 'libvala-0.10-dev' 'openais-dev' 'libid3tag0' 'latex-beamer' 'libopenh323-1.18.0-develop' 'linux-tools-3.2.0-34' 'linux-tools-3.2.0-29' 'mbrola-ro1' 'slang-slirp' 'sks-ecc-doc' 'php-file-iterator' 'xfce4-utils' 'libtcltk-ruby' 'ruby-sexp-processor' 'libroot-static' 'libltc11' 'libgirara-doc' 'libghc-smallcheck-doc' 'kde-telepathy-filetransfer-handler-dbg' 'xsel' 'dhcp3-relay' 'boinc-cgi-stripchart' 'liboauth-dev' 'libgail-3-dev' 'libesmtp-dev' 'language-pack-kde-dv-base' 'libghc6-mwc-random-dev' 'linux-headers-3.2.0-23-virtual' 'linux-tools-3.2.0-35' 'linux-tools-3.2.0-40' 'rt4-clients' 'python-rwproperty' 'ofono' 'libplplot-java' 'libkrb5-ruby-doc' 'libghc-haxr-prof' 'libghc-diagrams-cairo-dev' 'libbiblio-isis-perl' 'libapache2-mod-authn-sasl' 'gradm2' 'gcc-4.5-arm-linux-gnueabihf' 'libstring-approx-perl' 's3dfm' 'checkinstall' 'zenity-common' 'texlive-fonts-extra' 'molly-guard' 'libjmock-java-doc' 'gtk2-engines-murrine' 'libghc6-hint-doc' 'liballegro4.2-plugin-svgalib' 'fso-config-general' 'linux-tools-3.2.0-36' 'wmanager' 'virt-what' 'triggerhappy' 'texworks-scripting-python' 's3cmd' 'python3-flufl.enum' 'python-deliciousapi' 'open-invaders-data' 'museekd' 'libpoe-loop-tk-perl' 'openmpi-common' 'libifp-dev' 'libmoosex-object-pluggable-perl' 'libmoosex-params-validate-perl' 'libkscreen0' 'hpodder' 'hpcc' 'gsmc' 'gcc-4.7-multilib-arm-linux-gnueabihf' 'fonts-inconsolata' 'magit' 'developers-reference-fr' 'libswingx-java' 'python3-openssl' 'hdparm-dbg' 'libopenspc-dev' 'libghc-happstack-util-doc' 'libsfobjc3-armhf-cross' 'linux-tools-3.2.0-37' 'libgweather-3-0' 'compiz-fusion-plugins-extra' 'unity-webapps-qq-mail' 'ttf-century-catalogue' 'spl-sdl' 'slides-doc' 'skytools-modules-9.1' 'python-sphinx-issuetracker' 'ubuntustudio-default-settings' 'libsoil1' 'libowasp-java-html-sanitizer-java' 'libghc-network-multicast-dev' 'libghc-hbro-contrib-dev' 'kwalletmanager' 'grpn' 'gpe-go' 'gauche-zlib' 'dict-freedict-iri-eng' 'deps-tools-cli' 'cutter-report-module' 'amule-adunanza' 'printer-driver-m2300w' 'libxcb-res0' 'libgeronimo-jta-1.1-spec-java' 'gnat-4.6' 'linux-tools-3.2.0-38' 'linux-backports-modules-hv-3.2.0-36-generic-pae' 'ocaml-book-en' 'brother-cups-wrapper-laser' 'python-zope.tal' 'python-zope.html' 'python-dipy-doc' 'monodoc-avahi-manual' 'libwxsqlite3-2.8-dev' 'ruby-redcloth' 'libjs-jquery-livequery' 'libgv-perl' 'libghc-transformers-dev' 'libb-hooks-parser-perl' 'php-kolab-freebusy' 'feed2omb' 'phalanx' 'crm114' 'zftp' 'libgda-5.0-4' 'libraptor1' 'libqca2-plugin-ossl' 'libcommons-pool-java-doc' 'gnupg-curl' 'libgweather-3-1' 'html2text' 'linux-tools-3.2.0-39' 'yasnippet' 'sisu-postgresql' 'sfact' 'screenbin' 'python-translationstring' 'libspreadsheet-ruby-doc' 'libsmf-dev' 'libpsiconv-dev' 'libnb-svnclientadapter-java-doc' 'libm4ri-0.0.20120613-dbg' 'libappframework-java' 'lhapdf-pdfsets-minimal' 'libqtgstreamerui-0.10-0' 'jp2a' 'gaim-thinklight' 'festvox-suopuhe-mv' 'developers-reference-ja' 'dell-recovery' 'alsaplayer-xosd' 'unity-scope-video-remote' 'xul-ext-mozvoikko' 'linuxdoc-tools-info' 'libtest-output-perl' 'libnl-3-dev' 'cpp-4.4-doc' 'libplumb2-dev' 'sork-passwd-h3' 'libghc6-syb-with-class-prof' 'uwsgi-plugin-ping' 'tryton-modules-company-work-time' 'rest2web' 'pathogen' 'science-statistics' 'libtest-cgi-multipart-perl' 'libjtype-java' 'libghc-uulib-doc' 'libcegui-mk2-doc' 'gnuspool-doc' 'fp-compiler' 'filetea' 'ttf-goudybookletter' 'curtain' 'erlang-src' 'myspell-zu' 'python-yaml' 'sendfile' 'gracie' 'python-tp-client' 'openvswitch-brcompat' 'libuninum-dev' 'libsidl-dev' 'librlog-dev' 'libghc-uniplate-doc' 'ruby-dbd-sqlite3' 'java-propose-classpath' 'libstroke0' 'firefox-mozsymbols' 'dodgindiamond2' 'openvswitch-controller' 'libghc6-haskelldb-hdbc-dev' 'awn-applet-media-player' 'spectemu-svga' 'libgooglecharts-ruby' 'libcore++-demo' 'libtulip-ogl-dev' 'libghc-cookie-prof' 'libdataobjects-mysql-ruby1.9.1' 'linux-libc-dev-armel-cross' 'libace-tkreactor-dev' 'jeex' 'couchdb' 'texlive-lang-polish' 'libtotem-plparser-dbg' 'libclass-data-inheritable-perl' 'libghc-csv-enumerator-dev' 'xubuntu-docs' 'qmidinet-dbg' 'libsipwitch1-dbg' 'liblog4cxx10' 'libopenh323-dev' 'libghc-executable-path-doc' 'libfox-1.6-doc' 'libcpl-doc' 'libgyoto0' 'libggzcore9' 'ttf-tuffy' 'flashbake' 'cherrytree' 'ruby-rest-client' 'uw-mailutils' 'timidity' 'debdelta' 'xine-dbg' 'sword-dict-naves' 'python-tables' 'libghc-yaml-light-prof' 'libghc-tls-extra-prof' 'libghc-simpleea-dev' 'libghc-random-doc' 'libforms-dev' 'liblingua-en-tagger-perl' 'libclass-csv-perl' 'libapache2-mod-mono' 'grub-ieee1275-bin' 'gridengine-drmaa-dev' 'createfp' 'compiler-rt' 'cl-rt' 'pbuilder-uml' 'libpam-krb5' 'indicator-session' 'redeclipse-data' 'qtquick1-5-dev-tools' 'opus-tools-dbg' 'libxcp-ocaml' 'libghc-mtl-prof' 'libghc-darcs-prof' 'libemail-send-io-perl' 'libdevel-lexalias-perl' 'lfhex' 'libepub0' 'network-manager-gnome-dbg' 'libplist-dev' 'libdb4.8-dev' 'imagemagick' 'ubuntu-sugar-remix' 'yarssr' 'ruby-actionpack-2.3' 'myproxy' 'libzn-poly-dev' 'libghc-edit-distance-prof' 'libgempc410' 'isdnvboxclient' 'libservlet2.5-java' 'fvwm' 'fritzing-data' 'dozzaqueux' 'asterisk-prompt-it-menardi' 'ubuntuone-installer' 'libmdb2' 'liblapacke' 'libdee-1.0-4-dbg' 'ser-radius-modules' 'ocaml-book-fr' 'supertuxkart-data' 'python-flufl.i18n-doc' 'pictor-unload' 'pdmenu' 'movabletype-plugin-zemanta' 'xmms2-plugin-jack' 'libzltext-data' 'librunapp-perl' 'libroot-math-smatrix5.34' 'libmaven-project-info-reports-plugin-java-doc' 'libgetfem4++' 'libhdf4-dev' 'gcl-doc' 'gconf-editor' 'libapertium3-3.1-0' 'libtest-subcalls-perl' 'idle3' 'python-tablib' 'mariadb-server-core-10.0' 'linux-backports-modules-hv-3.2.0-40-virtual' 'linux-backports-modules-hv-3.2.0-35-virtual' 'wims-modules' 'squirrelmail-locales' 'razorqt-runner' 'python-lazr.lifecycle' 'pchar' 'oasis3' 'librasterlite-dev' 'libplayercommon3.0-dev' 'libnarray-ruby1.9.1' 'libgv-php5' 'libgnutls28-dev' 'libghc-ixset-doc' 'libclojure-maven-plugin-java' 'libexporter-renaming-perl' 'libsfobjc-4.7-dev-armhf-cross' 'libgearman-client-perl' 'fatrace' 'discover-data' 'libdsocksd0' 'ko.tex-extra' 'secureboot-db' 'cowdancer' 'librsvg2-doc' 'libmilter1.0.1' 'otf-ipafont-mincho' 'tcl-trf-doc' 'ruby-sourcify' 'ruby-lapack' 'multiboot' 'libgofigure-dev' 'libdisplaymigration0' 'klatexformula' 'klash' 'lua-lpeg' 'fuzz' 'libedbus1' 'deejayd-xine' 'cl-launch' 'python-pam-dbg' 'glmark2-es2' 'radeontool' 'zabbix-agent' 'xcp-v6d' 'uwsgi-plugin-cache' 'topal' 'rubrica' 'python-web2py' 'python-kaa-imlib2' 'obextool' 'vlc-data' 'libstatistics-test-randomwalk-perl' 'libhbaapi-dev' 'libghc-conduit-prof' 'g++-4.4-arm-linux-gnueabihf' 'libproc-daemon-perl' 'grub' 'erlang-ssh' 'openssl' 'vlc-plugin-zvbi' 'systemtap-doc' 'r-cran-iterators' 'pwrkap' 'mutrace' 'xmms2-plugin-vorbis' 'lxpanel-indicator-applet-plugin' 'libghc-tar-dev' 'libghc-ieee754-doc' 'libextutils-xspp-perl' 'libauthen-simple-ldap-perl' 'dict-freedict-cze-eng' 'minisat' 'libmdc2' 'liblink-grammar4' 'texlive-luatex' 'libzephyr4' 'libgadu3-dbg' 'gnome-control-center-data' 'libalogg1' 'zentyal-firewall' 'vdr-plugin-vcd' 'supybot' 'openssn' 'liblatex-table-perl' 'libghc6-hsql-mysql-doc' 'libexif-ruby' 'libcfitsio3-doc' 'kcometen4' 'rwalld' 'grub-ieee1275-dbg' 'gnome-desktop-sharp2' 'cwdaemon' 'caca-utils' 'binutils-arm-linux-gnueabihf' 'xaw3dg' 'libpixman-1-dev' 'language-pack-li-base' 'language-pack-kn-base' 'samba-common' 'libncursesw5' 'libpilotobjects0-dbg' 'shutter' 'python3-pyside.qtsql' 'libwebkdc-perl' 'libmupdf-dev' 'libjs-colors' 'libjifty-plugin-oauth-perl' 'ruby-gsl-dbg' 'libdouble-conversion-dbg' 'libmmdb0' 'genius' 'geany-plugin-latex' 'dlint' 'rhnsd' 'shotdetect' 'packagekit-backend-apt' 'nova-cert' 'yodl' 'smf-utils' 'python3-zmq-dbg' 'python3-networkx' 'melting' 'libupse-dev' 'libterm-size-any-perl' 'libpion-common-4.0-dbg' 'libghc-syb-prof' 'libhypre-2.8.0b' 'gnome-icon-theme-nuovo' 'antlr3-gunit-maven-plugin' 'libmagic-dev' 'libquadmath0' 'libdb5.3-sql-dev' 'erlang-ssl' 'libquorum4' 'wmmoonclock' 'python-restkit' 'lwresd' 'libghc-cprng-aes-doc' 'libdata-javascript-perl' 'libclass-dbi-loader-perl' 'xpenguins' 'junior-system' 'ibus-table-wu' 'eclib-tools' 'ampache-common' 'ace-of-penguins' 'python3-apt-dbg' 'python-qt4-sql' 'gstreamer1.0-plugins-good-doc' 'gfortran-4.5-multilib' 'python-sptest' 'python-envisagecore' 'php-horde-history' 'libxml-feedpp-mediarss-perl' 'libtest-signature-perl' 'libgempc430' 'libgcc1-armel-cross' 'libev-dev' 'gnome-system-tools' 'python-imaging-doc' 'libxml2-utils-dbg' 'python-spice-client-gtk' 'exiv2' 'libconfig-tiny-perl' 'sphinxbase-utils' 'sisu-pdf' 'open-invaders' 'libtransaction-simple-ruby' 'libnethttpd-ocaml-dev' 'libdevel-ebug-perl' 'libarchive-peek-perl' 'libapache2-mod-axis2c' 'fonts-levien-museum' 'dia-shapes' 'texlive-latex3' 'libfolks-eds-dev' 'rsyslog' 'linux-image-extra-3.8.0-17-generic' 'libmerb-slices-ruby' 'gfortran-4.6-arm-linux-gnueabihf' 'xinput-calibrator' 'ubuntustudio-controls' 'sword-text-tr' 'shogun-r-static' 'pidgin-awayonlock' 'ndisgtk' 'murmur' 'msn-pecan-dbg' 'libtap-harness-archive-perl' 'libsqlheavy0.1-0' 'libjhlabs-filters-java' 'libghc-edit-distance-dev' 'libghc-crypto-numbers-dev' 'libghc-adjunctions-prof' 'liballegro-physfs5-dev' 'lazygal' 'iportuguese' 'ilisp-doc' 'httpry-daemon' 'gmpc-plugins-dbg' 'libdspam7-drv-pgsql' 'concavity' 'celestia-common' 'cantata' 'apcupsd-cgi' 'libgtkmathview0c2a' 'liblangtag-gobject0' 'lib64itm1' 'firefox-locale-zu' 'libcherokee-client0-dev' 'libcherokee-base0-dev' 'libwvstreams4.6-qt' 'xtel' 'liguidsoap' 'libtools-logging-clojure' 'libtest-compile-perl' 'libjs-underscore.logger' 'libicu4j-java' 'libdevel-ptkdb-perl' 'libsdl-ttf2.0-dev' 'kadu' 'globus-gass-copy-dbg' 'libgo0-powerpc-cross' 'tcpwatch-httpproxy' 'cipux-storage-tools' 'nfs-kernel-server' 'libunity-misc4' 'libperl-minimumversion-perl' 'junit4-doc' 'checkbox-qt' 'libsm6' 'qtxmlpatterns5-dev-tools' 'qpid-client' 'python-wader' 'python-medusa' 'pyro-examples' 'pyicqt' 'libstarpu-contribmpi-1.0' 'libshiboken-dev' 'libkio4-perl' 'libjs-excanvas' 'libjibx1.1-java-doc' 'libflac-ocaml' 'ktimetracker' 'krb5-admin-server' 'ekg2-remote' 'pychecker' 'amule-common' 'thunderbird-locale-pa-in' 'libpam-heimdal' 'libgnomeui-0-dbg' 'cpp-4.4' 'tk8.5-dev' 'wajig' 'libaspectwerkz2-java' 'gnustep-back0.20-cairo' 'cpp-4.5' 'qalculate-gtk' 'openchangeserver' 'r-cran-getopt' 'libtest-block-perl' 'libspf2-2-dbg' 'libfsoframework-dbg' 'libbusiness-onlinepayment-payflowpro-perl' 'libvips-tools' 'icee-slice' 'hydra-gtk' 'asis-doc' 'zile' 'rt4-db-mysql' 'python-thrift' 'libmecab1' 'libcatalystx-simplelogin-perl' 'komparator' 'plasma-containments-addons' 'imvirt-helper' 'grun' 'gmt-tutorial-pdf' 'pconf-detect' 'fonts-ipaexfont-mincho' 'cpp-4.6' 'cmuscheme48-el' 'clearlooks-phenix-theme' 'carettah' '7kaa' 'php5-mysql' 'libatspi2.0-dev' 'fwts' 'libgrinvin-help-java' 'liblilv-doc' 'libcitadel2-dbg' 'libkdcraw20' 'xfwm4-themes' 'spring-dbg' 'python-myghty' 'pentobi' 'milter-greylist' 'libxml-opml-perl' 'libocas0' 'libmecab2' 'libhandoff-dev' 'libghc-hsemail-dev' 'libghc-hscolour-dev' 'libghc-hfuse-dev' 'libghc-hashtables-dev' 'libconfig-apacheformat-perl' 'ruby-cairo' 'libgfortran-4.7-dev-armel-cross' 'gav-themes' 'g++-4.6-multilib' 'cl-mcclim' 'bibletime' 'libxft-dev' 'language-pack-bem' 'grub-efi' 'cpp-4.7' 'libkdcraw21' 'slrnface' 'python-traits' 'manpages-es-extra' 'libtpm-unseal1' 'libmenu-cache1-dev' 'imapcopy' 'python-wnck' 'libpgtypes3' 'iczech' 'indent' 'firefox-locale-zh-hans' 'gnome-contacts' 'bzr-svn' 'libspread1-dev' 'libpt-1.10.10-plugins-v4l2' 'python-ply-doc' 'python-ipcalc' 'python-ecasound2.2' 'openstv' 'mrtgutils' 'mirrormagic-data' 'mailutils-pop3d' 'libcext-dev' 'libcamlimages-ocaml' 'libauthen-simple-dbm-perl' 'kmymoney-common' 'libxbase2.0-0' 'isdnlog-data' 'gsql' 'libgtkhex-3-0' 'libkdcraw22' 'acheck' 'openssl-blacklist-extra' 'likewise-open5-rpc' 'libgail-3-doc' 'libvoikko1' 'libdbus-glib-1-2-dbg' 'mount' 'ttf-arabeyes' 'firefox-locale-zh-hant' 'lusca' 'libghc6-mwc-random-doc' 'python-zope.pluggableauth' 'pmailq' 'planner-dev' 'oss4-gtk' 'libnacore5' 'libmosquitto0' 'libmaven-plugin-testing-java' 'libghc-diagrams-cairo-doc' 'libcsfml-network1.6' 'gtkpod-data' 'gcc-4.4-arm-linux-gnueabihf' 'libguestfs0' 'fonts-junicode' 'octave-control' 'cutter-glib-support' 'buildd' 'libreoffice-sdbc-postgresql' 'libpulse0' 'libghc6-sdl-mixer-prof' 'sbackup' 'qshutdown' 'ndoutils-doc' 'minbar' 'libmunge-maven-plugin-java-doc' 'libjoptsimple-java' 'libjboss-remoting-java' 'libhsm-bin' 'kbdd' 'moon-buggy-esd' 'libgstreamer-perl' 'libxvmc-dev' 'libhtml-tree-perl' 'libx11-dev' 'libkadm5srv8-heimdal' 'resolvconf' 'linux-image-extra-3.2.0-37-virtual' 'wxformbuilder' 'python-zope.filerepresentation' 'libwx-scintilla-perl' 'liblwjgl-java' 'libghc-network-multicast-doc' 'libghc-hbro-contrib-doc' 'libclass-method-modifiers-perl' 'gosa-plugin-dns-schema' 'giftrans' 'xfonts-intl-european' 'gperf-ace' 'scons' 'python-gridfs' 'libmalaga-dev' 'language-pack-ber' 'brasero' 'linux-sound-base' 'arb-common' 'pd-windowing' 'open-axiom-tex' 'minbif-common' 'micro-inetd' 'libkml0' 'libobject-declare-perl' 'librdf-icalendar-perl' 'libhtml-linkextractor-perl' 'libghc-transformers-doc' 'cardstories' 'postfix-policyd-spf-python' 'libxcb-util0-dev' 'libisoburn-dbg' 'libva1' 'libnl-3-doc' 'virtualbox-fuse' 'ruby-actionpack-3.2' 'quickly-unity-lens-template' 'python-fltk' 'plymouth-theme-spinfinity' 'nuitka' 'liquidsoap-plugin-faad' 'ruby-semanage' 'libroot-hist-dev' 'libgsmme-dev' 'libghc-mime-types-dev' 'libbio-samtools-perl' 'kdepim-strigi-plugins' 'kopete' 'jobs-admin' 'gtml' 'gstreamer0.10-qapt' 'libgnuradio-fcd3.6.1' 'quarry' 'gamine-data' 'frogr' 'fcitx-ui-classic' 'liboil0.3' 'libmodule-signature-perl' 'libipc-run3-perl' 'libantlr-dev' 'cluster-glue' 'python-elementary' 'libtntnet9' 'reminiscence' 'w3c-linkchecker' 'python3-mpi4py' 'pidgin-otr' 'libsoxr-lsr0' 'libkaya-gl-dev' 'libjoda-convert-java-doc' 'libhttp-oai-perl' 'libghc-hscolour-prof' 'libudns0' 'gufw' 'libwss4j-java' 'libgetopt++1' 'malaga-mode' 'cinder-scheduler' 'python-evas-dev' 'openmpi1.5-common' 'linux-headers-lbm-3.2.0-32-generic-pae' 'linux-headers-lbm-3.2.0-27-generic-pae' 'open-vm-tools-dbg' 'zine' 'tryton-modules-calendar-classification' 'php-net-smartirc' 'openttd' 'lxterminal-dbg' 'libwirble-ruby-doc' 'libmaven-embedder-java' 'libghc-ghc-events-prof' 'libbusiness-onlinepayment-paymentech-perl' 'kubuntu-full' 'gpaco' 'cpphs' 'cl-ppcre' 'anerd-server' 'abicheck' 'libtotem-plparser-dev' 'libmhash2' 'libdatetime-format-mail-perl' 'language-pack-kde-eo-base' 'language-pack-kde-cy-base' 'cyrus-sasl2-dbg' 'libopencv-contrib2.3' 'libghc6-haskelldb-hdbc-doc' 'linux-backports-modules-net-3.2.0-37-generic' 'libgc1c2' 'sipwitch-cgi' 'scmxx' 'ruby-mysql2' 'libtango7' 'libregexp-common-net-cidr-perl' 'libportlet-api-2.0-spec-java-doc' 'libpcp-import1-dev' 'liborange-dev' 'libopendbx1-sqlite' 'libgmpada-dbg' 'plasma-widget-folderview' 'python3-pyside.qtsvg' 'gnucash-docs' 'gpscorrelate' 'libgeda38' 'emacs-mozc' 'ckport' 'libpodofo0.9.0' 'autorenamer' 'liblrdf0' 'python-tdb-dbg' 'gnome-icon-theme-symbolic' 'libopenh323-doc' 'libghc-csv-enumerator-doc' 'libh323-1.21.0' 'xserver-xorg-input-mtrack' 'vdk-doc' 'pennmush-common' 'ndoutils-common' 'nam-examples' 'ltpanel' 'libuuidm-ocaml-dev' 'libskstream-0.3-6-dbg' 'libplayerc3.0' 'libloki0.1.7-dbg' 'libgeronimo-javamail-1.4-provider-java' 'libopencv-contrib2.4' 'libapache2-modsecurity' 'lemonpos-data' 'gadmin-proftpd' 'dvbstream' 'libphotos202-dev' 'libgconfmm-2.6-1c2' 'libicu-dev' 'libgc1c3' 'libavahi-glib1' 'linux-headers-lbm-3.2.0-38-generic' 'xrsh' 'update-notifier-kde' 'yorick' 'libtododb0-dbg' 'ruby-narray-miss' 'liblucene3-java' 'libsmokeknewstuff2-3' 'libjifty-plugin-comment-perl' 'libghc-url-dev' 'libghc-simpleea-doc' 'libforms-doc' 'krb5-kdc-ldap' 'imaptool' 'firmware-extract' 'libflatzebra-0.1-2' 'libxml-sax-base-perl' 'libuniconf4.6' 'libpolkit-backend-1-dev' 'lib64stdc++6-4.5-dbg' 'libgraph4' 'euca2ools' 'libghc6-uniplate-dev' 'linux-headers-3.2.0-32-generic-pae' 'linux-headers-3.2.0-27-generic-pae' 'gwibber-service-pingfm' 'xautolock' 'solid-pop3d' 'qtractor-dbg' 'octave-optiminterp' 'ntfs-config' 'libplib-dev' 'libje-perl' 'libgpars-groovy-java' 'libiv-unidraw1' 'libjcode-pm-perl' 'libwxgtk2.8-dbg' 'libxcb-xfixes0-dbg' 'libreoffice-script-provider-js' 'libplist-doc' 'igaelic' 'libappindicator3-1' 'checkservice' 'librpmsign0' 'python-liblarch-gtk' 'libsmokeokular3' 'pod2pdf' 'libtext-affixes-perl' 'libjs-jquery-ui-theme-mint-choc' 'libghc-yesod-static-prof' 'libghc-openpgp-dev' 'libucto1' 'foundry' 'fb-music-high' 'eclipse-platform' 'debtree' 'fdutils' 'grub-doc' 'exim4-base' 'account-plugin-google' 'tao-tls' 'libghc6-edison-core-prof' 'xmess-sdl' 'ifeffit-doc' 'ruby-jwt' 'node-jsdom' 'libvcdinfo-dev' 'libvc0' 'libnet-sftp2-ruby1.9.1' 'libhdf4-doc' 'javahelp2-doc' 'idecrypt' 'eclipse-cdt-autotools' 'cipux-passwd' 'camitk-imp' 'libtag-extras1' 'librpmsign1' 'ipolish' 'ibus-table-extraphrase' 'adium-theme-ubuntu' 'xpilot-ng-client-x11' 'xbmc-data' 'udisks-glue' 'php-horde-core' 'oinkmaster' 'mangonel' 'mail-expire' 'libplexus-classworlds-java' 'libopenal-data' 'libghc-smtpclient-prof' 'libgfortran3-powerpc-cross' 'libcgi-java' 'libcgi-application-plugin-formstate-perl' 'global' 'ttf-misaki' 'console-tools-dev' 'asterisk-voicemail-imapstorage' 'debtorrent' 'amarok-dbg' 'libds-admin-serv0' 'libenet1a' 'nux-tools' 'libsystemd-daemon-dev' 'odbc-postgresql' 'gir1.2-gweather-3.0' 'fonts-kacst' 'libcman3' 'libheartbeat2' 'touchegg' 'tango-db-dbg' 'sound-icons' 'pgloader' 'pasco' 'netemul' 'libopenid4java-java-doc' 'libnsgif0' 'libgdcm2.2-dbg' 'libfreehep-swing-java' 'libelektratools2' 'kanjipad' 'ifaroese' 'gtkorphan' 'gnu-smalltalk-el' 'libmed1' 'globus-gram-client-tools' 'geotiff-bin' 'geoclue-gsmloc' 'ganglia-modules-linux' 'groovy' 'libcgi-untaint-perl' 'darkstat' 'python-flup' 'libgeronimo-jta-1.1-spec-java-doc' 'libwind0-heimdal' 'libghc6-bzlib-dev' 'gradle' 'libdrm-ltsq-nouveau2-dbg' 'uwsgi-plugin-probepg' 'tumbler-plugins-extra' 'phpwebcounter-extra' 'perdition-postgresql' 'libsetools-java' 'libpragmatic-perl' 'libmakefile-parser-perl' 'libhocr-dev' 'libguac-dev' 'gstm' 'gmobilemedia' 'debsums' 'libgnome-keyring1.0-cil' 'libwvstreams4.6-extras' 'libfftw3-single3' 'libdom4j-java-doc' 'compiz-plugins-main-dev' 'tryton-modules-all' 'pterm' 'libqmfmessageserver1' 'libpcapnav0' 'libgtkgl2.0-dev' 'libghc-tar-doc' 'libgetopt++-dev' 'libproc-background-perl' 'libcos4-dev' 'libbabeltrace-dev' 'libapache-session-ldap-perl' 'idzebra-2.0-utils' 'hpanel' 'gosa-plugin-sudo-schema' 'libglobus-gass-server-ez2' 'eggdrop' 'ubuntu-wallpapers-natty' 'libghc6-fastcgi-prof' 'firefox-branding' 'libanalitzagui4abi1' 'xsok' 'tunesviewer' 'stone' 'ruby-gelf' 'python-openoffice' 'mrtrix-doc' 'libjgraphx-java-doc' 'libdouble-conversion-dev' 'patchage' 'homebank' 'libmath-random-mt-perl' 'fdpowermon' 'likewise-open5' 'libmono-2.0-1-dbg' 'octave3.2-emacsen' 'ezgo-education' 'gfortran-4.5-doc' 'wims-extra-es' 'sogo-common' 'radare2-vala' 'python-flufl.i18n' 'nload' 'nfswatch' 'libdublincore-record-perl' 'libdawgdic-dev' 'kdm-theme-bespin' 'xsol' 'hal-info' 'libmbt0' 'fonts-oflb-asana-math' 'dkopp' 'libanalitzagui4abi2' 'xserver-xorg-input-evdev-dbg' 'kernel-package' 'libxxf86vm-dev' 'libdb-sql-dev' 'freerdp-dbg' 'cups-pdf' 'txlongpoll' 'python-gksu2' 'libobjc2' 'lib64objc2-dbg' 'zsnes' 'tcpspy' 'liquidsoap-plugin-theora' 'libtemplate-plugin-clickable-email-perl' 'libnet-ph-perl' 'libcapsinetwork0c2a' 'kiten' 'junior-art' 'libpulsedsp' 'libjte1' 'lemon' 'fonts-ipafont-gothic' 'libss2' 'libpam-rsa' 'gobjc-4.6-arm-linux-gnueabi' 'oolite-data-sounds' 'libwbxml2-0' 'libpoldiff1' 'libopencv-highgui-dev' 'libghc-regex-pcre-dev' 'okteta' 'libobjc3' 'unoconv' 'gromacs' 'r-base-html' 'calligra-l10n-ca' 'libtaglib2.1-cil' 'libkdb5-6' 'fonts-tibetan-machine' 'libqt3-mt' 'yorick-av' 'uec-provisioning-server' 'python-sparse' 'minirok' 'root-plugin-hist-histpainter' 'libomniorb4-1-dbg' 'liblog-contextual-perl' 'libghc-download-curl-dev' 'kali' 'python3-decorator' 'drizzle-plugin-perf-dictionary' 'dict-freedict-deu-nld' 'ruby-mixlib-cli' 'libpri1.4' 'libtest-strict-perl' 'libsqliteodbc' 'libobjc4' 'libgtkspell0' 'equivs' 'linux-backports-modules-cw-3.6-3.2.0-40-virtual' 'linux-backports-modules-cw-3.6-3.2.0-35-virtual' 'tachyon' 'nfdump-sflow' 'mcollective-plugins-facts-facter' 'ruby-uuidtools-doc' 'libmousex-types-perl' 'libmina-java-doc' 'libkohana3.1-mod-unittest-php' 'libjglobus-jsse-java' 'libhttp-async-perl' 'libghc-clock-dev' 'libecap2' 'libavl-dev' 'italc-master' 'input-pad' 'grabcd-encode' 'gambas3-examples' 'fyre' 'fcitx-table-erbi' 'fcitx-ui-light' 'enigmail' 'libmodbus5' 'libwnck-3-dev' 'dh-di' 'compiz' 'dbconfig-common' 'webcam' 'xfce4-terminal' 'python-smartpm' 'pykaraoke' 'mupen64plus-video-rice' 'libst1' 'liborange0' 'libghc-pandoc-prof' 'libghc-edit-distance-doc' 'libghc-crypto-numbers-doc' 'pyftpd' 'gnarwl' 'gfortran-4.5-arm-linux-gnueabihf' 'gambas3-gb-pcre' 'fbautostart' 'libcoq-ocaml-dev' 'barry-util' 'miscfiles' 'libxatracker1-dbg' 'libvncserver0-dbg' 'libcommons-dbcp-java-doc' 'language-pack-aa' 'libxdamage1' 'libghc6-digest-dev' 'gstreamer0.10-crystalhd' 'zentyal-samba' 'python-pkginfo-doc' 'libpgapack-serial1' 'libpam-python' 'libakuma-java-doc' 'kde-config-gtk-style' 'cl-reversi' 'python-testtools' 'openvswitch-common' 'speech-dispatcher' 'libqtsvg4-perl' 'openoffice.org-base' 'language-pack-kl-base' 'iconc' 'fonts-kacst-one' 'language-pack-lg-base' 'libxml2-utils' 'linux-tools-lts-quantal' 'python-kitchen' 'cufflinks' 'loggedfs-dbg' 'libspreadsheet-ruby1.8' 'libsoprano-perl' 'libpaq-dev' 'libiksemel-dev' 'libfsoframework-dev' 'libdatetime-tiny-perl' 'nvidia-cuda-dev' 'libboost-random1.46-dev' 'libsphinxbase1' 'grml-shlib' 'gnustep-make' 'festvox-ellpc11k' 'calligra-l10n-da' 'tk8.5-doc' 'wcstools' 'rinput-dev' 'python-nwsserver' 'libwxsmithlib0-dev' 'libwww-cnic-perl' 'libqtbamf-dev' 'libcsoap1' 'libcgi-validop-perl' 'krb5-sync-plugin' 'libopus0' 'gstreamer0.10-dvswitch' 'gss-man' 'libg3d-plugin-gdkpixbuf' 'ditrack' 'dicomscope' 'bzr-cvsps-import' 'floppyd' 'libprelude2' 'cython3-dbg' 'gvfs' 'willowng' 'mgltools-symserv' 'widemargin' 'supertux-data-stable' 'ruby-spreadsheet' 'libscim-dev' 'libp2kmoto0' 'r-other-rot' 'librole-hasmessage-perl' 'libapache2-mod-spamhaus' 'ruby-actionmailer' 'lhapdf-ccwrap-doc' 'chora2' 'libopencore-amrnb0' 'gqview' 'libcgi-session-perl' 'ceilometer-common' 'isdnactivecards' 'python-scipy' 'libxcb-render0-dbg' 'libexiv2-dbg' 'unity-webapps-lastfm-radio' 'plasma-widget-activitymanager' 'php-horde-xml-element' 'libopendap-java-doc' 'libghc-yesod-persistent-dev' 'libghc-hsemail-doc' 'libghc-hscolour-doc' 'libghc-hfuse-doc' 'libghc-hashtables-doc' 'evemu-tools' 'libicu4j-4.4-java' 'cl-puri' 'libcv-dev' 'acheck-rules-fr' 'python-ubuntuone-client' 'puppet-el' 'libufe-xidgetter0' 'libmemcached-tools' 'language-pack-af' 'libgstreamer0.10-dev' 'apparmor-utils' 'gforge-mta-exim4' 'z88-doc' 'xmms2-plugin-xml' 'syslinux-themes-ubuntu-quantal' 'survex' 'plymouth-theme-sabily-text' 'minbif' 'libopenwalnut1-dev' 'libjgraph-java-doc' 'libghc-vte-prof' 'libexception-class-dbi-perl' 'libautobox-list-util-perl' 'kdevelop-php-docs-l10n' 'liblsofui4' 'grub-invaders' 'libgnuradio-qtgui3.6.1' 'globus-proxy-utils' 'fonts-horai-umefont' 'calligra-l10n-de' 'python3-zope.interface-dbg' 'libasm3-java-doc' 'dmraid' 'libattica0.3' 'libapt-inst1.4' 'wcalc' 'swi-prolog-java' 'rakarrack' 'python3-dbusmock' 'parprouted' 'libgtk2-ruby' 'libqtorganizer1' 'libcext-doc' 'libjnr-netdb-java' 'libgtk2-ex-formfactory-perl' 'gmerlin' 'globus-gram-client-dbg' 'cavezofphear' 'bochs-doc' 'analitza-dbg' 'malaga-doc' 'libsnmp1.4-java' 'erlang-docbuilder' 'xwatch' 'service-wrapper' 'planner-doc' 'php-validate' 'pcb-common' 'libsinatra-ruby-doc' 'libjlatexmath-java-doc' 'libjavascript-beautifier-perl' 'libclaw-tween1' 'ko.tex-bin' 'getmail4' 'fastforward' 'fake-hwclock' 'libjs-prototype' 'ltrace' 'libattica0.4' 'texlive-font-utils' 'libapt-inst1.5' 'petsc3.1-doc' 'yahoo2mbox' 'python-scikits-learn' 'python-pyrss2gen' 'tabix' 'ncbi-seg' 'libpgsql-ruby-doc' 'python-etk.docking' 'eclipse-mylyn-context-jdt' 'ncbi-tools-bin' 'libx11-doc' 'libreoffice-common' 'language-pack-be' 'python3-pyatspi' 'patch' 'xserver-xorg-input-synaptics-lts-quantal-dbg' 'mbrola-sw1' 'ubuntustudio-icon-theme' 'ninja-build' 'msgpack-python' 'r-cran-pvclust' 'libunicap2-dev' 'libpadre-plugin-perltidy-perl' 'libghc-authenticate-prof' 'libobjc-4.7-dev-armhf-cross' 'gir1.2-colordgtk-1.0' 'fldigi-dbg' 'fcitx-table-easy-big' 'xdelta3' 'libset-intspan-perl' 'calligra-l10n-bs' 'edos-debcheck' '0ad' 'libwebkitgtk-1.0-common' 'libisoburn-dev' 'libdpkg-dev' 'language-pack-ca' 'mbrola-sw2' 'sord-dbg' 'xcp-xapi' 'ruby-remctl' 'libmimedir0' 'libsmokeknewstuff3-3' 'libjs-jquery-galleriffic' 'libjavassist-java' 'libdist-zilla-plugin-run-perl' 'libcgi-application-plugin-viewcode-perl' 'libbz2-ocaml' 'fretsonfire-songs-sectoid' 'cpp-4.7-powerpc-linux-gnu' 'libgetopt-mixed-perl' 'python-wxgtk2.6' 'wbritish-small' 'libxcb-ewmh-dev' 'librelp-dev' 'libc6-x32' 'language-pack-nan-base' 'language-pack-bg' 'fonts-arphic-bsmi00lp' 'ezgo-games' 'tryton-modules-timesheet' 'sysinfo' 'python-lucene' 'libust-dev' 'libisnativec-java-doc' 'libgtkmm-utils2' 'libghc-mime-types-doc' 'libcrypt-dh-gmp-perl' 'kdevplatform5-libs' 'istgt' 'ayttm' 'python-gnome2-dev' 'php5-dbg' 'language-pack-am' 'libindicator3-7' 'gnome-panel' 'docbook-utils' 'libghc6-http-prof' 'libav-dbg' 'open-vm-tools-dev' 'festvox-en1' 'yaws-mail' 'wx2.8-i18n' 'python-nxt-filer' 'nifti-bin' 'libqpidcommon2-dev' 'libownet-perl' 'libplexus-digest-java' 'liblua5.1-copas0' 'gnomad2' 'fonts-sahadeva' 'aliki-dbg' 'libmozjs185-1.0' 'python-wxgtk2.8' 'libio-socket-ssl-perl' 'language-pack-an' 'libkunitconversion4' 'python-evas-doc' 'tvnamer' 'qpsmtpd' 'liquidsoap-plugin-ogg' 'libxnee-dbg' 'libtioga-ruby1.8' 'libpolyml1' 'libsmokekhtml3' 'libghc-process-extras-dev' 'gpe-su' 'php5-cgi' 'xserver-xorg-video-dummy' 'libbtf1.1.0' 'calligra-l10n-cs' 'ubuntukylin-default-settings' 'sopwith' 'python3-cffi' 'pflogsumm' 'libnetfilter-log1-dbg' 'libghc-options-dev' 'libcimcclient0' 'imp4' 'gobjc++-4.7-multilib-arm-linux-gnueabi' 'librecad' 'ttf-gfs-gazis' 'libdata-dumper-simple-perl' 'xvfb' 'libmono-webbrowser4.0-cil' 'language-pack-da' 'mktemp' 'mono-devel' 'libghc6-regex-tdfa-utf8-dev' 'libghc6-pcre-light-prof' 'netams-web' 'octave-miscellaneous' 'mda-lv2' 'librtf-document-perl' 'libroot-bindings-python5.34' 'ml-nlffigen' 'libmcs1' 'libjim-dev' 'libguestfs-java' 'libcgi-application-extra-plugin-bundle-perl' 'gkdebconf' 'environment-modules' 'kplato' 'alsaplayer-esd' 'nvidia-310-updates-dev' 'libuninameslist0' 'libkms1' 'libgtk-3-bin' 'docbook-xsl-saxon' 'pbuilder' 'openoffice.org-l10n-en-za' 'libstarpumpi0' 'speechd-el-doc-cs' 'scowl' 'r-cran-rcmdr' 'qhimdtransfer' 'pianobar' 'libzeroc-ice3.4-java' 'libslurmdb-perl' 'libimage-size-ruby1.9.1' 'libgtkglextmm-x11-1.2-dev' 'libghc-url-doc' 'libdesktop-agnostic0-dbg' 'libxsettings-client0' 'libgnuradio-comedi3.6.1' 'libwxgtk2.8-dev' 'node-node-expat' 'avw.lv2' 'asis-programs' 'libxcb-xfixes0-dev' 'libprelude2-dbg' 'libcommons-collections3-java-doc' 'language-pack-ar' 'libghc6-uniplate-doc' 'libcomplearn-gomp1' 'yorick-gl' 'tropic-wallpapers' 'swami' 'ruby-text-table' 'python-lunar' 'monodoc-newtonsoft-json-manual' 'python-lunch' 'libxdffileio-dev' 'librime-data-ipa-xsampa' 'libquickfix-ruby1.8' 'libplplot-ada0-dev' 'libplib-doc' 'libwagon-java-doc' 'libhtml-html5-entities-perl' 'libcyrus-imap-perl' 'dispcalgui' 'calligra-l10n-el' 'blubuntu-wallpapers' 'stops' 'libsubunit-dev' 'language-pack-bn' 'language-pack-as' 'icont' 'swaks' 'aide-dynamic' 'python-evas' 'libi18n-java' 'hledger-chart' 'xserver-xorg-video-geode-lts-quantal-dbg' 'tarantool-client-dbg' 'spikeproxy' 'python-tp-netlib' 'overgod' 'lv2vocoder' 'libuim-dev' 'libsx0' 'libstfl-ruby1.9.1' 'libssm-dev' 'libotcl1' 'libnexus0' 'libghc-openpgp-doc' 'libfcgi-ruby1.8' 'libauthen-bitcard-perl' 'libladr4' 'goto-fai' 'gnudoq' 'wzip' 'fglrx-updates-dev' 'x11-xkb-utils' 'language-pack-de' 'language-pack-bo' 'libgssapi-krb5-2' 'host' 'apache2-mpm-event' 'libghc6-sdl-dev' 'xmhtml1-dev' 'trafficserver-plugin-conf-remap' 'p11-kit' 'libz80ex1' 'libjboss-connector-java' 'libghc-hopenpgp-dev' 'libcoq-ocaml' 'jacal' 'libotp0-heimdal' 'gwibber-service-facebook' 'libgpiv-mpi3' 'gambas3-runtime' 'calligra-l10n-fi' 'ganyremote' 'libsecret-1-dev' 'crystalcursors' 'libostyle-dev' 'libumfpack5.4.0' 'language-pack-shs-base' 'docbook-dsssl' 'gir1.2-memphis-0.2' 'libcelt0-0' 'linux-headers-3.2.0-39-virtual' 'beast-mcmc-lib' 'swaml' 'trang' 'procserv' 'python-pykickstart' 'macchanger-gtk' 'liburiparser-dev' 'libipa-hbac0' 'libghc-memotrie-dev' 'libghc-diagrams-core-prof' 'libbio2jack0-dev' 'kde-workspace-randr' 'kdbg' 'indicator-cpufreq' 'firefox-launchpad-plugin' 'ember-media' 'diakonos' 'w3-recs' 'puppet-common' 'libopenexr-dev' 'grub-emu' 'glibc-doc-reference' 'libgfcui-dev' 'vdr-plugin-live' 'tinyeartrainer' 'python-reportbug' 'presage-dbg' 'mailfilter' 'libswingx-java-doc' 'liblua5.1-rings-dev' 'libjs-jquery-ui-theme-ui-lightness' 'libinline-ruby' 'libghc-network-info-prof' 'libgflags2' 'libccss-1-5-dbg' 'fullquottel' 'fonts-sil-gentium' 'libdbus1.0-cil' 'quantum-metadata-agent' 'libgtkspell-dev' 'libcommons-lang-java' 'libcairo-perl' 'language-pack-gnome-mt-base' 'language-pack-br' 'arping' 'iconx' 'libghc6-bzlib-doc' 'xserver-xorg-video-tdfx-lts-quantal' 'tryton-modules-analytic-account' 'translate-docformat' 'srf-doc' 'qtsvg5-examples' 'python-pygccxml' 'python-kajiki' 'publican' 'plasma-widget-cwp' 'libtest-json-perl' 'libqt5sql5-tds' 'lua-svn' 'libmsgpackc2' 'gemdropx' 'paw-common' 'banshee-extension-mirage' 'libgnome-vfsmm-2.6-1c2a' 'openvpn' 'libxcb-record0-dbg' 'libruby1.9.1-dbg' 'language-pack-bs' 'unetbootin' 'python-libsmbios' 'spline' 'newlib-source' 'libtap-parser-sourcehandler-pgtap-perl' 'libmpcdec-dev' 'libgnatprj4.6-dbg' 'libplexus-classworlds2-java' 'kdesdk-misc' 'gosa-plugin-samba' 'kde-runtime-dbg' 'language-pack-kde-or-base' 'libghc6-tokyocabinet-dev' 'ruby-rc4' 'python3-matplotlib-dbg' 'python-pcapy' 'share-like-connect' 'maximus' 'tap-plugins' 'libcityhash0' 'libaudio-moosic-perl' 'kdenlive-dbg' 'palapeli' 'libregexp-common-email-address-perl' 'calligra-l10n-es' 'xserver-xorg-input-evdev-dev' 'thunderbird-couchdb' 'libxml-regexp-perl' 'language-pack-gnome-yo-base' 'language-pack-fa' 'language-pack-az' 'libwww-perl' 'mupen64plus-video-arachnoid' 'odt2txt' 'libsbigudrv-dev' 'libquartz-java' 'libomxil-bellagio0-components-camera' 'libghc-llvm-base-prof' 'dockmanager-daemon' 'calligra-l10n-et' 'browser-plugin-packagekit' 'ubuntu-drivers-common' 'quantum-plugin-linuxbridge' 'ssh-askpass' 'language-pack-ast' 'verbiste-el' 'screenlets-pack-all' 'wyrd' 'mzclient' 'mailagent' 'python-linaro-image-tools' 'liblip2' 'libdecodeqr-examples' 'libballoontip-java' 'hgsvn' 'globus-gram-job-manager-pbs' 'gir1.2-midgard2' 'gambas3-gb-sdl-sound' 'gcc-mingw-w64-base' 'dpkg-sig' 'barrybackup-gui-dbg' 'yelp-xsl' 'python-tornado' 'python-pygments' 'puppetmaster' 'gvfs-backends' 'evolution-couchdb-backend' 'libnux-2.0-dev' 'screenlets-pack-basic' 'rgbpaint' 'r-cran-hdf5' 'python-django-filebrowser' 'mpikmeans-tools' 'libroot-io-xmlparser-dev' 'liborigin0' 'libmoosex-hasdefaults-perl' 'libghc-regex-pcre-doc' 'libclone-fast-perl' 'libqpol-dev' 'torcs' 'inn2' 'mldonkey-server' 'fceux' 'calligra-l10n-gl' 'apcupsd-doc' 'language-pack-cs' 'systemd-shim' 'autopkgtest' 'apt-listchanges' 'liq-contrib' 'libstarpu-contrib0' 'sword-language-pack-ar' 'smuxi-engine-irc' 'python3-kyotocabinet-dbg' 'php-horde-tree' 'r-cran-epir' 'libtest-eol-perl' 'libnss-rainbow2' 'liblua5.1-json' 'libkarma-cil-dev' 'libhttp-ocaml-dev' 'libmoosex-attribute-chained-perl' 'libghc-download-curl-doc' 'plasma-widget-kepas' 'libws-commons-util-java' 'calligra-l10n-fr' 'amiga-fdisk-cross' 'cd-discid' 'wbritish' 'libpam-ssh' 'libglib2.0-0-dbg' 'tao-lifecycle' 'gambas2-gb-xml-xslt' 'opengtl-dev' 'libnet-bluetooth-perl' 'liblog4cpp5-dev' 'libjodreports-java-doc' 'libglw1-mesa-dev' 'libghc-clock-doc' 'libdata-walk-perl' 'libcdk-perl' 'libaccess-modifier-checker-java-doc' 'ruby-haml' 'libsfgcc-4.7-dev-armhf-cross' 'cloog-ppl' 'cernlib-core' 'alpine-pico' 'libxres-dev' 'libgnome2-bin' 'libdigest-hmac-perl' 'language-pack-ga' 'openjdk-7-jdk' 'libopencv-gpu2.3' 'sword-language-pack-de' 'torque-common' 'python-creoleparser' 'nordugrid-arc-gridftpd' 'pidgin-microblog' 'librsvg2-ruby' 'libpmap3.0-dev' 'libpam-tacplus' 'libgroovy1.7.2-java' 'ruby-kramdown' 'ecasound' 'mingw32-binutils' 'vim-dbg' 'python3-imaging-sane' 'account-plugin-sip' 'xfonts-mathml' 'libnss-db' 'liblangtag1' 'libaccounts-qt5-dev' 'language-pack-el' 'language-pack-cv' 'calligra-l10n-ja' 'libghc6-digest-doc' 'libcomplearn1-dbg' 'tetrinet-server' 'ec2-api-tools' 'python-lightblue' 'libvirt-glib-1.0-dev' 'libpathfinder-nss-1' 'libghc-gconf-prof' 'libghc-cipher-rc4-dev' 'libgenders-perl' 'libsiscone-spherical-dev' 'libaacs-dev' 'libwhy-coq' 'howm' 'ruby-diff-lcs' 'python-pymongo-doc' 'libjstl1.1-java' 'libutouch-grail-dev' 'libnl-genl-3-200' 'winbind' 'system-config-audit' 'openoffice.org-help-en-gb' 'linux-image-3.2.0-23-virtual' 'nvidia-cuda-doc' 'libxpathselect-dev' 'libdune-localfunctions-dev' 'libopencv-contrib-dev' 'latexdraw' 'libtaskmanager4abi3' 'moon-buggy' 'libfsobasics0' 'festvox-kdlpc16k' 'dvswitch' 's3dvt' 'librcd-dev' 'libgnome-desktop-2-17' 'libemail-valid-perl' 'language-pack-gd' 'language-pack-fi' 'language-pack-en' 'python-gobject-2' 'libghc6-opengl-dev' 'wzdftpd-back-pgsql' 'ubuntu-business-defaults' 'tryton-modules-product-price-list' 'python-liblinear' 'python-contract' 'pioneers-meta-server' 'php-sabredav' 'nwrite' 'namebench' 'mupen64plus-video-all' 'libvrb0-dev' 'libschroedinger-ocaml' 'libgctp-dev' 'libdesktop-agnostic-cfg-keyfile' 'libtemplate-timer-perl' 'libapertium3-3.1-0-dev' 'ledgersmb' 'gnomecatalog' 'php5-mapscript' 'kate' 's3dx11gate' 'dicoweb' 'libexiv2-dev' 'libxcb-render0-dev' 'libisofs6' 'language-pack-eo' 'language-pack-cy' 'fuse-utils' 'default-jre-headless' 'fusionforge-plugin-scmsvn' 'scim-skk' 'quicktime-utils' 'python-flufl.bounce' 'libtie-dxhash-perl' 'librime-bin' 'liblaf-widget-java' 'libghc-pcap-prof' 'libgconf-bridge0' 'libakonadi-perl' 'lcl-nogui' 'kde-telepathy-text-ui' 'ioquake3' 'kbd-compat' 'clamav-milter' 'libqoauth1' 'language-pack-ha' 'grub-common' 'ttf-unfonts-core' 'libtet1.4.2' 'python-desktopcouch' 'libmrpt-topography0.9' 'linux-headers-3.2.0-36-generic' 'ubiquity-slideshow-ubuntustudio' 'python-flufl.lock' 'ntop-dbg' 'nitpic' 'r-bioc-cummerbund' 'libsofia-sip-ua-glib3' 'libghc-yesod-persistent-doc' 'libgeo-coder-googlev3-perl' 'libclass-accessor-lvalue-perl' 'libeventviews4' 'killer' 'kgraphviewer' 'pocketsphinx-hmm-en-hub4wsj' 'hamster-applet' 'earth3d' 'libboolean-perl' 'lightspark-common' 'libpam-smbpass' 'libnm-gtk-common' 'libatlas3-base' 'libcanberra0-dbg' 'language-pack-dv' 'libghc6-glfw-dev' 'ebox-usersandgroups' 'yorick-spydr' 'xwax' 'tardiff' 'r-cran-tkrplot' 'omnievents' 'nmzmail' 'libroot-tree-dev' 'libopenwalnut1-doc' 'libjama-dev' 'libflann1.7' 'libcontactsdb-dev' 'imview-doc' 'gfortran-mingw-w64' 'analitza-dev' 'libnice-dbg' 'libwebkitgtk-1.0-0' 'libgraphite2-2.0.0' 'album' 'openttd-openmsx' 'minbif-webcam' 'libselinux-ruby1.8' 'libghc-pwstore-fast-prof' 'libexcel-template-perl' 'jodreports-cli' 'fcitx-table-translit' 'frozen-bubble' 'empcommand' 'xtightvncviewer' 'wspanish' 'libgnome2-dbg' 'language-pack-es' 'libghc6-arrows-dev' 'tads2' 'vzquota' 'python-foolscap' 'pysycache-buttons-crapaud' 'libxwiimote1' 'libphone-ui-20110825-dbg' 'liblua50' 'splint' 'libcairo-ocaml' 'kmail' 'junior-doc' 'gvpe' 'libmpfr4-dbg' 'php5-cli' 'language-pack-he' 'language-pack-fo' 'language-pack-et' 'language-pack-it-base' 'language-pack-hy-base' 'listen' 'libghc6-hscolour-dev' 'tads3' 'mbrola-us1' 'uwsgi-plugin-rack-ruby1.9.1' 'r-cran-stabledist' 'python-poppler-dbg' 'xfonts-efont-unicode' 'minimodem' 'mensis' 'r-cran-epitools' 'mkvtoolnix' 'libpam-sss' 'libnet-jabber-bot-perl' 'libosinfo-bin' 'libkeybinder-3.0-0' 'inetutils-syslogd' 'qtbase5-examples-dbg' 'maven-repo-helper' 'libva-glx1' 'language-pack-ia' 'language-pack-eu' 'language-pack-dz' 'libghc6-regex-compat-prof' 'gambas2-gb-report' 'mbrola-us2' 'wicd-cli' 'rygel-2.0-dev' 'pasmo' 'octave-dataframe' 'xfconf' 'libownet-dev' 'liblemonldap-ng-conf-perl' 'libsafe-isa-perl' 'libgwenhywfar-data' 'libfreexl1-dbg' 'htag' 'gir1.2-spice-client-glib-2.0' 'cortado' 'cl-cffi' 'cdargs' 'bibletime-data' 'libactivemq-java' 'libxcb-record0' 'libisoburn-doc' 'libruby1.8' 'language-pack-gl' 'ibus-table-wubi' 'gnutls26-doc' 'apt-doc' 'linux-headers-3.8.0-18-generic' 'ubuntu-orchestra-modules-hadoop' 'xtrs' 'xmame-x' 'mbrola-us3' 'python-pythonmagick' 'python-openstack-common' 'openclonk' 'libspreadsheet-ruby1.9.1' 'libqoauth-dev' 'libpoker-eval-dev' 'libluabridge-ruby' 'libjmac-java' 'libgeo-coordinates-itm-perl' 'ktouch-data' 'ibus-table-quick3' 'erlang-toolbar' 'ssvnc' 'calligra-l10n-hu' 'libmozilla-ldap-perl' 'php5-dev' 'language-pack-tt-base' 'language-pack-fr' 'ogre-samples-data' 'libyate2.2.0' 'libghc6-network-dev' 'linux-backports-modules-net-3.2.0-24-generic-pae' 'sword-language-pack-el' 'libmaven-shared-jar-java-doc' 'libguess-dev' 'libcqrlib2' 'libcoro-perl' 'hime-data' 'libmigemo1' 'apper-dbg' 'python-gnome2-doc' 'libseccomp1' 'libopenvg1-mesa' 'language-pack-id' 'language-pack-hi' 'fglrx-amdcccle-experimental-12' 'virtualbox-guest-utils' 'cl-sql-oracle' 'tttview' 'python-sklearn-lib' 'python-pysnmp4-apps' 'open-axiom-graphics' 'oolite-doc' 'ns3-doc' 'lightdm-webkit-greeter' 'libxnee-dev' 'libopenvasnasl2-dev' 'ruby-ole' 'liblog-dispatchouli-perl' 'ibus-table-quick5' 'funcoeszz' 'fftw-dev' 'dacs-examples' 'ruby-yajl' 'libnet-address-ip-local-perl' 'git-daemon-run' 'cyrus-sasl2-doc' 'gnu-standards' 'rt3.8-apache2' 'vdr-plugin-skinenigmang' 'sword-language-pack-en' 'raster3d' 'libnet-rendezvous-publish-perl' 'libghc-process-extras-doc' 'libcarp-assert-more-perl' 'libboost-random-dev' 'jftp' 'python3-pycangjie' 'gobjc-4.7-multilib-arm-linux-gnueabi' 'lua-filesystem' 'gnuchess' 'drupal6-thm-arthemia' 'debian-kernel-handbook' 'libpam0g-dev' 'language-pack-ja' 'libodbc1' 'root-plugin-hist-hbook' 'msktutil' 'mdbus2' 'libopenmpi-dbg' 'libjifty-plugin-wikitoolbar-perl' 'libgnustep-gui0.20-dbg' 'libghc-system-filepath-dev' 'libghc-options-doc' 'libghc-data-accessor-template-dev' 'libeclipselink-java' 'jvim-doc' 'gprolog-doc' 'libestools2.1-dev' 'calligra-l10n-it' 'libphysfs1' 'libclalsadrv2' 'libmono-system4.0-cil' 'language-pack-ig' 'bacula-traymonitor' 'ser-acc-radius-module' 'piwigo-mysql' 'libghc6-regex-tdfa-utf8-doc' 'liblastfm0' 'xmame-tools' 'xmail-doc' 'randomsound' 'python-socketpool' 'python-zbar' 'perceptualdiff' 'pcp-import-sheet2pcp' 'mythbuntu-lightdm-theme' 'libwraster3' 'libmarc-lint-perl' 'libclanapp-1.0' 'smsclient' 'python-yenc' 'concavity-dbg' 'calligra-l10n-kk' 'libmono-system-configuration-install4.0-cil' 'libjte-dev' 'libjavascriptcoregtk-1.0-0' 'libdrm-intel1-dbg' 'lib64itm1-dbg' 'python3-louis' 'fonts-nanum' 'ogre-samples' 'libmrpt-opengl0.9' 'othman' 'science-neuroscience-cognitive' 'python-zconfig' 'oar-restful-api' 'lxctl' 'linux-headers-3.8.0-19-lowlatency' 'libtest-trap-perl' 'libgtkglextmm-x11-1.2-doc' 'libghc-language-haskell-extract-dev' 'libdoxia-maven-plugin-java' 'libcamomile-ocaml-dev' 'libboost-filesystem1.53-dev' 'ldap2zone' 'libticables2-2' 'deutex' 'libdeps-renderer-dot-perl' 'liblastfm1' 'libsub-uplevel-perl' 'libboost-filesystem1.48-dev' 'linux-backports-modules-net-precise-server' 'typo3-src-4.5' 'python-skimage-lib' 'php-horde-feed' 'octave-biosig' 'logtool' 'libpentaho-reporting-flow-engine-java' 'libparse-pidl-perl' 'libopendbx1-dev' 'libmodule-math-depends-perl' 'libortp-dev' 'libfreenect-demos' 'libfreehep-chartableconverter-plugin-java' 'gkrellm-gkrellmpc' 'gap-online-help' 'apt-p2p' 'libpengine3-dev' 'language-pack-fy' 'info' 'sword-language-pack-es' 'ltsp-cluster-agent-weblive' 'libstarlink-pal-dev' 'libstring-flogger-perl' 'libghc-yesod-routes-prof' 'libdogleg2-dbg' 'lcas-interface' 'gfortran-arm-linux-gnueabi' 'libeval-context-perl' 'allegro4-doc' 'python-openid-doc' 'libxcb-xvmc0-dbg' 'libmono-custommarshalers4.0-cil' 'language-pack-ka' 'language-pack-gu' 'tex-gyre' 'wx2.6-i18n' 'libghc6-sdl-doc' 'libghc6-hsql-sqlite3-prof' 'linux-image-3.2.0-36-lowlatency-pae' 'sword-language-pack-he' 'pyformex-lib' 'mongodb-dev' 'libzbar-dev' 'libxine2-vdr' 'liboce-foundation-dev' 'libghc-newtype-prof' 'libghc-hopenpgp-doc' 'libchromaprint-dev' 'libaqbanking-data' 'kdeedu' 'jigl' 'grafx2' 'stalonetray' 'gwibber' 'libv8-3.8.9.20' 'amarok-doc' 'libaxis-java-doc' 'language-pack-gv' 'latex-xcolor' 'libjsch-java' 'libyadis-ruby1.8' 'nvidia-cuda-gdb' 'swath' 'python-django-extensions' 'pidgin-bot-sentry' 'r-other-bio3d' 'libspring-security-ntlm-2.0-java' 'libmrpt-topography1.0' 'liblouisutdml6' 'libgpewidget-dev' 'libghc-memotrie-doc' 'libscalar-properties-perl' 'libcolorblind-dev' 'libauthen-simple-dbi-perl' 'ikvm' 'icewm-common' 'libhighlight-perl' 'otf-ipaexfont-mincho' 'empire-lafe' 'gnash-common' 'blobwars-data' 'asmail' 'libx32itm1' 'language-pack-hr' 'libgsl0ldbl' 'libvisual-0.4-0' 'libgfcui-doc' 'p7zip-rar' 'lua-mode' 'libmadlib' 'libaccounts-glib-tools' 'gosa-plugin-webdav' 'merkaartor' 'libgtk2-spell-perl' 'ekg2-jabber' 'defendguin-data' 'calligra-l10n-nb' 'python-oops-amqp' 'libxcb-record0-dev' 'doc-linux-de' 'divxenc' 'wally' 'sword-language-pack-fr' 'python-mongoengine' 'portreserve' 'kde-runtime-dev' 'libuu0' 'libykclient3' 'libhivex0-dbg' 'libgnatprj4.6-dev' 'kde-window-manager-gles' 'gcc-4.6-multilib' 'frotz' 'festvox-don' 'fcitx-libs-dev' 'coinor-libosi-dev' 'clinica-common' 'gnustep-gui-runtime' 'language-pack-ht' 'libgtk-3-dev' 'python-apport' 'libghc6-cpphs-dev' 'language-pack-la' 'zabbix-frontend-php' 'science-imageanalysis' 'quelcom' 'pytimechart' 'pypy-dev' 'node-vows' 'libsndobj2c2' 'libhtml-html5-microdata-parser-perl' 'libhash-flatten-perl' 'libdynamite-dev' 'libdnet-dev' 'libcvc3-dev' 'kdelirc' 'kaya' 'xfonts-intl-japanese' 'eekboek' 'libchado-perl' 'anubis' 'openoffice.org-thesaurus-ca' 'language-pack-hu' 'fonts-tlwg-kinnari' 'libexif12' 'libxfixes-dev' 'libghc6-tokyocabinet-doc' 'libghc6-regex-posix-dev' 'pathological' 'libtest-portability-files-perl' 'libslurm23' 'libgraphite2-3-dbg' 'libghc-binary-shared-dev' 'libgettext-activerecord-ruby' 'libdeclarative-contacts' 'libconfig-model-backend-augeas-perl' 'libadios-dev' 'gogoc' 'cron-deja-vu' 'libsieve2-1' 'apper-appsetup' 'libxcb1-dbg' 'virtuoso-opensource-6.1-common' 'libtinfo-dev' 'libdbd-sqlite3-perl' 'language-pack-lb' 'linux-image-3.2.0-33-lowlatency' 'libmotif4-dbg' 'ruby-gio2' 'lzma-alone' 'libtest-file-perl' 'libmaven-bundle-plugin-java' 'libjs-jquery-ui-theme-base' 'libhdfeos0' 'libgnomeuimm-2.6-1c2a' 'gsoap-dbg' 'frown' 'freeciv-server' 'ureadahead' 'language-pack-gnome-br-base' 'libfreerdp1' 'brother-cups-wrapper-ac' 'sdpam' 'proftpd-mod-geoip' 'sanitizer' 'libxneur-dev' 'libstarlink-pal0' 'libreadosm1-dbg' 'libmongodb-perl' 'geany-plugin-shiftcolumn' 'libfsoframework0' 'zh-autoconvert' 'farpd' 'libedac1' 'atomicparsley' 'jmpost' 'gotmail' 'python3-cxx-dev' 'libcanberra-pulse-dbg' 'language-pack-is' 'language-pack-csb' 'imgtex' 'xfce4-mount-plugin' 'sbnc-tcl' 'remmina-plugin-xdmcp' 'ngraph-gtk-doc' 'macutils' 'libsphere0d' 'libhttp-body-perl' 'glurp' 'emelfm2-svg-icons' 'garlic' 'libmysqlcppconn-dev' 'libical-dbg' 'libcib1-dev' 'libadns1' 'language-pack-it' 'language-pack-hy' 'language-pack-kde-ga-base' 'language-pack-crh' 'warzone2100-dbg' 'starfighter' 'python-xdgapp' 'scrot' 'libxerces-c-samples' 'libtqsllib1' 'libopenid4java-java' 'libmoosex-declare-perl' 'liblwp-authen-wsse-perl' 'libjboss-deployers-java' 'libipathverbs-dev' 'lcmaps-plugins-basic-posixenf' 'libh323-1.24.0' 'csmash' 'c-sig' 'lib64stdc++6' 'language-pack-gnome-mr-base' 'language-pack-kk' 'upstart' 'sysv-rc' 'sugar-artwork-0.84' 'libcwd-doc' 'tla-doc' 'searchandrescue' 'libtarantoolsql1' 'libsvn-notify-mirror-perl' 'libjs-jquery-fancybox' 'libsfml-graphics1.6' 'libsocialweb0' 'keytouch-editor' 'zookeeper' 'capistrano' 'sysklogd' 'libdom4j-java' 'language-pack-lg' 'language-pack-kl' 'glibc-doc' 'sugar-artwork-0.90' 'xtux' 'octave-linear-algebra' 'seqan-apps' 'xmbmon' 'libwaei-dev' 'libmaven-repository-builder-java-doc' 'liblog4r-ruby1.8' 'liballegro4.2-dev' 'libmessagecore4' 'halibut' 'ttf-adf-accanthis' 'python-eyed3' 'jackd' 'quantum-plugin-cisco' 'language-pack-km' 'gobi-loader' 'sugar-artwork-0.86' 'webdruid' 'libghc-feed-dev' 'libghc-cipher-rc4-doc' 'libgenome-1.3-0-dev' 'liborlite-mirror-perl' 'kyototycoon' 'xnest' 'libseed-gtk3-dev' 'fprobe' 'libxgks2' 'calligra-l10n-nl' 'python3-imaging' 'libgnome2.0-cil-dev' 'language-pack-li' 'language-pack-kn' 'gpart' 'debconf-i18n' 'b43-fwcutter' 'sugar-artwork-0.92' 'libghc-happstack-ixset-dev' 'mythnews' 'python3-llfuse-dbg' 'libwww-mechanize-ruby-doc' 'librplay-perl' 'libmrpt-opengl1.0' 'libhtml-template-pro-perl' 'libghc-representable-functors-prof' 'libdune-localfunctions-doc' 'libcgi-application-perl' 'libapache-mod-jk-doc' 'gtk-clearlooks-gperfection2-theme' 'elmer-dbg' 'libbotan1.10-dev' 'lcdproc' 'rsyslog-pgsql' 'python-xkit' 'openoffice.org-thesaurus-de' 'language-pack-ko' 'aide-xen' 'sugar-artwork-0.88' 'libghc6-opengl-doc' 'xfswitch-plugin' 'trigger-rally-data' 'qbittorrent-dbg' 'python3-yapsy' 'python-zope.app.onlinehelp' 'pfsview' 'orange' 'libprawn-ruby-common' 'libkyotocabinet16-dbg' 'libghc-alut-prof' 'libcloog-isl-dev' 'ruby-amazon-ec2' 'ikiwiki-hosting-common' 'gmail-notify' 'gcc-mingw-w64-x86-64' 'libjoda-time-java' 'etoolbox' 'avelsieve' 'texlive-lang-danish' 'libexiv2-doc' 'cdebconf' 'tupi-data' 'ttf-kochi-mincho-naga10' 'libsfml-dev' 'libllvm-3.0-ocaml-dev' 'libjhdf4-jni' 'libgmtk1-dbg' 'libghc-hsql-mysql-prof' 'libabiword-2.9-dev' 'ir.lv2' 'gir1.2-anjuta-3.0' 'ucspi-unix' 'ubuntu-settings' 'libutempter-dev' 'libgphoto2-dev-doc' 'language-pack-nb' 'language-pack-mg' 'sqlite3' 'kivio' 'mgltools-opengltk' 'dahdi-firmware-nonfree' 'tinyirc' 'r-cran-reshape2' 'python-myghtyutils' 'phonefsod' 'oidua' 'libxml-rss-feed-perl' 'librdsldap1' 'libmodule-extractuse-perl' 'libgpewidget-data' 'libfprint-dev' 'legacyhuman-theme' 'libvdk2-2c2' 'gir1.2-gupnp-dlna-1.0' 'libocamlgraph-ocaml-dev' 'faucc' 'byacc' 'texlive-lang-croatian' 'libqtdbus4-perl' 'libproxy-cil-dev' 'libnice-dev' 'librtmp0' 'busybox-initramfs' 'libghc6-vector-prof' 'libghc6-glfw-doc' 'libghc6-criterion-prof' 'tap-plugins-doc' 'sugar-artwork-0.96' 'subtle' 'ruby-dust' 'python3-smbc' 'python-torctl' 'libxmlada4.1-dbg' 'libmusicbrainz5-dev' 'libmecab-dev' 'libghc-haskell-src-dev' 'libgeotranz3.1' 'libdeclarative-multimedia' 'kubuntu-active' 'phamm-ldap-vacation' 'dokuwiki' 'checkstyle' 'boinc-app-seti' 'banshee-extension-jamendo' 'ant-contrib-cpptasks' 'xapian-tools' 'libgnome2-dev' 'language-pack-mi' 'language-pack-ks' 'libpt-1.10.10-plugins-oss' 'xbubble' 'uligo' 'python3-pyside.qtxml' 'python-ownet' 'pipewalker' 'mozart-doc' 'libtaoframework-ftgl-cil-dev' 'libmaven-doxia-tools-java-doc' 'libfltk1.3-dbg' 'libaxiom-java' 'libconfig-simple-perl' 'libgeotranz3.2' 'python-sqlitecachec' 'libreoffice-dbg' 'libqimageblitz-perl' 'language-pack-ne' 'language-pack-lo' 'libghc6-arrows-doc' 'gstreamer0.10-sdl' 'mono-profiler' 'libluajit-5.1-dev' 'liblink-grammar4-dev' 'libgeronimo-stax-1.2-spec-java' 'libevent-extra-1.4-2' 'libclass-objecttemplate-perl' 'libbibutils-dev' 'launchtool' 'libjetty8-java-doc' 'gopher' 'gccgo-4.7-arm-linux-gnueabihf' 'libitext5-java' 'v4l-conf' 'fonts-droid' 'language-pack-mk' 'language-pack-ku' 'qfreefax' 'libghc6-hscolour-doc' 'awn-applets-common' 'xcp-squeezed' 'sylfilter' 'sword-language-pack-it' 'network-manager-iodine-gnome' 'librazorqt0' 'libhbalinux-dev' 'libgoocanvasmm-dev' 'libpackage-new-perl' 'libfile-type-perl' 'ldm-edubuntu-theme' 'xneur' 'gadmin-tools' 'ftjam' 'python-xlib' 'amule-dbg' 'alex4' 'powernap-common' 'libsystemd-login-dev' 'libqt4-script' 'language-pack-ml' 'solfege-oss' 'python-forgethtml' 'php-horde-content' 'php-horde-view' 'php-horde-exception' 'pdb2pqr' 'libimage-metadata-jpeg-perl' 'ruby-gpgme' 'libghc-data-lens-dev' 'libdbix-class-schema-loader-perl' 'scrub' 'google-sitemapgen' 'libstdc++6-4.7-dev-powerpc-cross' 'xmms2' 'libxdmcp6-dbg' 'libmono-system-core4.0-cil' 'libdata-section-perl' 'libaprutil1-dbg' 'language-pack-oc' 'language-pack-kw' 'libgxps2' 'xwit' 'v86d' 't-code' 'proftpd-mod-autohost' 'libtest-module-used-perl' 'librime-dev' 'libpathfinder-dev' 'libpam-usb' 'libmoosex-lazyrequire-perl' 'libprefork-perl' 'libaudio-ecasound-perl' 'kup-client' 'interchange' 'gupnp-dlna-tools' 'libgsmsd7' 'ttf-junicode' 'chntpw' 'calligra-l10n-pl' 'network-manager-dbg' 'openoffice.org-thesaurus-cs' 'likewise-open5-netlogon' 'language-pack-mn' 'gir1.2-dbusmenu-gtk3-0.4' 'erlang-runtime-tools' 'libsackpt3' 'libghc6-network-doc' 'virtualbox-ose-guest-dkms' 'ziproxy' 'supercollider' 'python3-notify2' 'libxml-validator-schema-perl' 'libvmime-dev' 'libnfo1-bin' 'lua-expat-dev' 'libdevel-gdb-perl' 'kwwidgets-examples' 'gwhois' 'gauche-dev' 'language-pack-lt' 'language-pack-ky' 'ibritish-insane' 'libav-doc' 'dbus-x11' 'linux-backports-modules-cw-3.3-3.2.0-23-generic' 'tamil-gtk2im' 'python-x2go-doc' 'python-pampy' 'parmetis-test' 'openrocket' 'profnet-snapfun' 'libvirt-ruby1.8' 'libvirt-glib-1.0-0-dbg' 'libplexus-maven-plugin-java-doc' 'libmpikmeans-dbg' 'marble-data' 'libgrib-api-1.9.9' 'libgpiv3-common' 'libghc-html-conduit-prof' 'libflatzebra-dev' 'libclaw-net-dev' 'libbml-dev' 'plasma-scriptengine-javascript' 'indi-apogee' 'contour' 'catfish' 'python-decorator' 'libsamsg4-dev' 'liblua5.1-rrd-dev' 'language-pack-pa' 'python3-speechd' 'libxi6' 'libppl12' 'ttf-sil-abyssinica' 'ca-certificates-java' 'wmmail' 'libcharva1-jni' 'opendnssec-enforcer' 'libsprng2-dev' 'libopenmpi-dev' 'libghc-persistent-prof' 'kjots' 'kde-icons-nuvola' 'kcov' 'libjempbox-java' 'gkermit' 'libfelix-gogo-command-java' 'drizzle-plugin-json-server' 'distccmon-gnome' 'dict-freedict-cro-eng' 'corkscrew' 'ptex-bin' 'libmono-management2.0-cil' 'language-pack-nl' 'language-pack-lv' 'intel-gpu-tools' 'gstreamer0.10-gnomevfs' 'horde-sam' 'scim-uim' 'scalpel' 'ruby-posix-spawn' 'python-flaskext.wtf' 'plymouth-theme-solar' 'libsox1b' 'liblunar-1-0' 'libltcsmpte1' 'libghc-data-accessor-template-doc' 'libghc-system-filepath-doc' 'kanagram-dbg' 'libstdc++6-4.7-dev-armel-cross' 'dict-freedict-deu-por' 'language-pack-mr' 'ubuntu-orchestra-modules-gearman' 'linux-backports-modules-cw-3.4-3.2.0-39-generic-pae' 'libisc83' 'unity-webapps-bbcnews' 'trac-bzr' 'ruby1.8-full' 'python-soya-dbg' 'mesa-utils-extra' 'libqglviewer-dev' 'libnjb-dev' 'libnet-traceroute-pureperl-perl' 'libmodem-vgetty-perl' 'libmkv-dev' 'libjboss-common-java' 'libdbd-sqlite3-ruby1.8' 'glob2-data' 'gdc-4.4' 'otf-yozvox-yozfont-cute' 'libquicktime2' 'claws-mail-html2-viewer' 'autotalent' 'audiocd-kio' 'aspell-eu-es' 'alsaplayer-gtk' 'libmng-dev' 'language-pack-nn' 'language-pack-ms' 'libvorbis0a' 'lhasa' 'account-plugin-generic-oauth' 'libghc6-explicit-exception-dev' 'libace-foxreactor-6.0.1' 'openmpi1.6-checkpoint' 'ng-cjk' 'miro-data' 'libticables-dev' 'liboauth-ruby1.8' 'libnet-upnp-perl' 'liblunar-date-dbg' 'libgmlib-dev' 'libghc-wai-app-static-prof' 'libghc-language-haskell-extract-doc' 'fflas-ffpack-common' 'libecerecom0' 'dizzy' 'speech-dispatcher-dbg' 'libvirt-bin' 'orbit2' 'liblightdm-qt5-2-dev' 'language-pack-mt' 'ant-doc' 'python-sqlite-dbg' 'python-jenkinsapi' 'srtp-utils' 'ruby-romkan' 'libmimelib1-dev' 'libdb4o-doc' 'lfc-dli' 'kephra' 'geany-plugins' 'gdc-4.6' 'wammu' 'fso-gpsd' 'php-net-ftp' 'cairo-dock-plug-ins-data' 'python-subvertpy' 'watershed' 'libxcb-xvmc0-dev' 'libavahi-glib-dev' 'language-pack-sw-base' 'language-pack-tr-base' 'libaqbanking33-plugins' 'libmyth-python' 'sword-dict-strongs-greek' 'libstarlink-pal-doc' 'libjava-xmlbuilder-java-doc' 'libghc-zip-archive-dev' 'libace-foxreactor-6.0.3' 'jing' 'gnuift-doc' 'fuse-posixovl' 'docbook-slides-demo' 'couriergrey' 'coinor-libcoinutils0' 'calligra-l10n-pt' 'bld-tools' 'pyqt4-dev-tools' 'libstdc++6-4.6-dbg' 'libstring-format-perl' 'libextutils-parsexs-perl' 'glance-common' 'compiz-core' 'ssh-contact-service' 'slurm-drmaa-dev' 'ratbox-services-pgsql' 'mysql-proxy' 'libnoise0' 'libnfo1-dbg' 'libghc-llvm-base-dev' 'kst-doc' 'python-smartypants' 'gnuradio' 'g++-4.7-aarch64-linux-gnu' 'dumpasn1' 'libnet1-dbg' 'libexttextcat-dev' 'language-pack-om' 'totem' 'erlang-examples' 'libecj-java-gcj' 'libisc92' 'whereami' 'librtfcomp0' 'liblavjpeg-2.0-0' 'libhupnp-dev' 'libgpewidget-doc' 'libdata-flow-perl' 'libsvg-graph-perl' 'klick' 'fortune-zh' 'offlineimap' 'grub-coreboot' 'wordwarvi-sound' 'unity-webapps-yandexnews' 'unity-webapps-googledocs' 'twatch' 'trovacap-data' 'r-cran-strucchange' 'python-gdata-doc' 'python-abiword' 'libowncloudsync0' 'libmtcp-dev' 'libmlt-data' 'libdune-common-dbg' 'libdns-ruby' 'libboost-program-options1.53-dev' 'jblas-doc' 'libgraphicsmagick3' 'gnunet-common' 'gambas3-gb-net-curl' 'edid-decode' 'bogofilter-common' 'bibtool' 'wdutch' 'libffi-ruby' 'libboost-program-options1.48-dev' 'language-pack-my' 'tagainijisho-common' 'sweep' 'stopmotion' 'tcpreplay' 'profnet-md' 'libtwitter-ruby1.9.1' 'libquartz-java-doc' 'ruby-qt4' 'libpcapnav0-dev' 'libjenkins-java' 'libghc-file-embed-dev' 'libghc-directory-tree-prof' 'libqt5qml5' 'eblook' 'libkgeomap1' 'gchempaint' 'coinor-libosi-doc' 'codegroup' 'libtracker-sparql-0.14-0' 'backup2l' 'libmgl5' 'gir1.2-gexiv2-0.4' 'libgtk-3-doc' 'stroq' 'libghc6-cpphs-doc' 'python3-regex' 'python-glpk' 'pyro-doc' 'pypy-doc' 'liquidsoap-plugin-oss' 'libsofia-sip-ua-dev' 'libodn-ocaml' 'libjansson-dbg' 'libghc-hxt-regex-xmlschema-prof' 'libghc-bytestring-lexing-prof' 'libdbix-class-helpers-perl' 'liballegro-audio5-dev' 'libauthen-radius-perl' 'kmetronome' 'lmemory' 'libgemanx-core0' 'libg3d0' 'asterisk-core-sounds-ru-gsm' 'libxcb1-dev' 'language-pack-pl' 'tao-coslifecycle' 'openclipart-openoffice.org' 'libghc6-regex-posix-doc' 'timidity-daemon' 'tcl-funtools' 'pdi2iso' 'libtsk3-3-dbg' 'libkexiv2-dbg' 'libghc-binary-shared-doc' 'ko.tex-extra-hlfont' 'ibus-table-yawerty' 'harden-remoteaudit' 'libgtk2-imageview-perl' 'doc-linux-hr' 'calligra-l10n-sk' 'libfile-sharedir-perl' 'python-markdown' 'openoffice.org-thesaurus-fr' 'natpmp-utils' 'libimlib2' 'libgudev-1.0-dev' 'libavahi-common-dev' 'language-pack-or' 'hunspell-sv-se' 'gnome-accessibility-themes' 'binfmt-support' 'tao-scheduling' 'linux-backports-modules-cw-3.3-3.2.0-38-generic-pae' 'ebox-samba' 'yorick-curses' 'sword-language-pack-nl' 'science-mathematics-dev' 'python-hippocanvas' 'python-clearsilver' 'libtcltk-ruby1.9.1' 'libsope1' 'libplack-middleware-test-stashwarnings-perl' 'libmlrisctools-smlnj' 'haskell-regex-base-doc' 'libbiosig1-dbg' 'spamoracle' 'libdirac-encoder0' 'fso-specs' 'code-saturne-include' 'calligra-l10n-sl' 'python-gdbm-dbg' 'libgd2-noxpm-dev' 'language-pack-os' 'thin-client-manager-backend' 'libmarkaby-ruby1.8' 'shogun-ruby-modular' 'mrpt-apps' 'liburi-template-perl' 'libshiboken-py3-1.1' 'tarantool' 'libcrypt-unixcrypt-perl' 'laby' 'ffmpegthumbnailer' 'entangle-dbg' 'openoffice.org-calc' 'python-magic' 'libxenstore3.0' 'libppi-perl' 'libical-dev' 'libavutil-dev' 'unace' 'libboost-mpi1.46.1' 'xxkb' 'xoscope' 'v4l2loopback-source' 'slang-pvm' 'rsyncrypto' 'rinse' 'oxygen-molecule' 'libindirect-perl' 'libghc-ami-prof' 'libdebconf-kde-dev' 'bzr-pipeline' 'autorun4linuxcd' 'python-pytest-xdist' 'libhttp-cookies-perl' 'language-pack-sa' 'worker' 'openerp6.1-full' 'libxml-simpleobject-perl' 'libxcomp-dev' 'libsnmp-info-perl' 'libobjc4-armel-cross' 'libghc-ifelse-dev' 'libemos-data' 'libemail-mime-createhtml-perl' 'libdeprecated-ruby1.9.1' 'libguava-java' 'ioping' 'flactag' 'clamassassin' 'ruby-dep-selector' 'swig2.0' 'liblvm2cmd2.02' 'libgssglue1' 'tremulous-doc' 'libstar-parser-perl' 'tanglet' 'systemtap-runtime' 'starvoyager' 'python-libipa-hbac' 'python-pylibmc' 'pleiades' 'python-cogent' 'lilypond-doc-pdf-de' 'libswingworker-java-doc' 'liborcus-0.4-0' 'libbognor-regis-0.6-0' 'igal2' 'idle3-tools' 'gtkperf' 'freemedforms-project' 'cutechess' 'libfile-touch-perl' 'calligra-l10n-ru' 'vim-doc' 'libcommon-sense-perl' 'language-pack-sc' 'lsb-core' 'libghc6-quickcheck1-prof' 'xwpe' 'wicd-daemon' 'roarplaylistd-dbg' 'perl-doc-html' 'nordugrid-arc-ldap-monitor' 'libmlx4-1-dbg' 'libdevel-backtrace-perl' 'libdcerpc-dev' 'libdataobjects-sqlite3-ruby' 'lcmaps-plugins-verify-proxy' 'gkamus' 'festvox-mr-nsk' 'fcitx-module-dbus' 'language-pack-sd' 'language-pack-ps' 'language-pack-fil' 'gir1.2-telepathyglib-0.12' 'mountall' 'xserver-xorg-video-mga-lts-quantal' 'wordwarvi' 'mathgl' 'xfburn' 'libxstr-ocaml-dev' 'libsuikyo-ruby1.8' 'plplot11-driver-cairo' 'libmatchbox-dev' 'libghc-iospec-prof' 'libghc-feed-doc' 'ruby-ecasound' 'ruby-dbd-pg' 'ruby-addressable' 'gtk2-engines-wonderland' 'tinymce' 'verse' 'w3m-img' 'language-pack-se' 'language-pack-pt' 'python3-docutils' 'openjdk-7-jre' 'ltp-misc-test' 'libghc-happstack-ixset-doc' 'unadf' 'python-pypoker-eval' 'plasma-active-data' 'liblablgtkmathview-ocaml' 'libfusefs-ruby' 'libbarry18-dbg' 'gwtp' 'bozohttpd' 'ax25-xtools' 'linux-headers-generic-pae' 'libsvn-perl' 'liblouis-data' 'libavc1394-dev' 'language-pack-ta' 'libgtest-dev' 'tclspice-dev' 'unity-lens-radios' 'redis-server' 'python-exif' 'xfce4-session' 'mokomaze' 'libsp-gxmlcpp1' 'libsoprano-ruby1.8' 'libshell-perl-perl' 'libhttp-exception-perl' 'kyotocabinet-doc' 'hime-tables' 'libevd-0.1-0' 'dpm-srm-server-mysql' 'disper' 'montecarlo-data' 'zoem' '4g8' 'totem-dbg' 'libxkbfile1-dbg' 'libdevhelp-dev' 'isc-dhcp-server' 'libfile-rsyncp-perl' 'xmanpages-ja' 'xfce4-sensors-plugin' 'python3-flufl.password' 'libsfml-doc' 'libfalcon-engine1-dbg' 'libaqbanking34-dbg' 'jirc' 'ipfm' 'fortunes-it-off' 'fcitx-table-translit-ua' 'calligra-l10n-uk' 'python-genshi-doc' 'ttf-bengali-fonts' 'language-pack-kde-cs-base' 'kde-l10n-csb' 'r-cran-epicalc' 'libocamlgraph-ocaml-doc' 'libmodello1.4-java' 'libindigo-dev' 'libghc-hbro-prof' 'libfuzzy2' 'libdianewcanvas2-dev' 'libxmlada4.1-dev' 'lbcd' 'isns-client' 'cpuid' 'calligra-l10n-sv' 'toilet' 'avahi-dnsconfd' 'aptoncd' 'libnl-nf-3-200' 'libnice-doc' 'language-pack-si' 'language-pack-gnome-pa-base' 'libgraphite2-2.0.0-dbg' 'gforge-plugin-scmgit' 'quake3-server' 'python-ftdi' 'libnb-javaparser-java' 'libmusicbrainz5-doc' 'libghc-regex-compat-dev' 'libghc-haskell-src-doc' 'libfssm-ruby1.9.1' 'libcatalyst-actionrole-acl-perl' 'libmpich2-3' 'gosa-plugin-connectivity' 'fp-units-gnome1' 'libfltk1.3-dev' 'libcutter0' 'calligra-l10n-tr' 'nvidia-304-updates' 'libreoffice-dev' 'libgnome2-doc' 'language-pack-wae-base' 'language-pack-te' 'language-pack-ro' 'libgnome-control-center1' 'mbrola-vz1' 'vsdump' 'xfce4-screenshooter' 'swac-get' 'openshot-doc' 'liboif-qml-doc' 'libnumber-fraction-perl' 'libgtk-sharp-beans2.0-cil-dev' 'libghc-zlib-dev' 'libbuffy-dev' 'libboost-timer1.53-dev' 'libboost-timer1.48-dev' 'libglobus-gram-job-manager-callout-error0' 'fonts-ipamj-mincho' 'edict-el' 'cm-super-x11' 'kubuntu-notification-helper' 'alot-doc' 'openoffice.org-thesaurus-hu' 'libxmltok1-dev' 'libmono-system-enterpriseservices4.0-cil' 'language-pack-sk' 'indicator-sync' 'gcc-4.4-doc' 'libwiretap1' 'libsclang1' 'libghc6-hscurses-prof' 'libghc6-gtksourceview2-dev' 'wesnoth-1.10-data' 'treil' 'profbval' 'libuima-adapter-soap-java' 'libtext-format-ruby1.8' 'libsmartcardpp-dev' 'libopenvdb0.104' 'libmosquittopp0-dev' 'libhbalinux2' 'libgsnmp0' 'libdist-zilla-perl' 'libcgi-xml-perl' 'libicebox34' 'ttf-gfs-theokritos' 'clanlib-doc' 'transmission-dbg' 'libmono-system-xaml4.0-cil' 'libconfig-general-perl' 'lbdb' 'language-pack-tg' 'language-pack-sl' 'idanish' 'ant-gcj' 'libccrtp1-1.8-0' 'qtdeclarative5-qtlocation-plugin' 'postfix-cluebringer-webui' 'pixfrogger' 'randomize-lines' 'libwiretap2' 'libterm-slang-perl' 'libsvncpp-dev' 'libqof-dev' 'libgoocanvasmm-doc' 'libghc-hsx-prof' 'libversion-next-perl' 'libcangjie1' 'libapp-cmd-perl' 'libapp-cli-perl' 'kubuntu-settings-active' 'gnuift' 'f2fs-tools-dbg' 'scribus-ng' 'alltray' 'libversion-perl' 'language-pack-th' 'libaprutil1-dev' 'libghc6-data-accessor-prof' 'fglrx-experimental-12' 'linux-image-current-generic' 'xfdesktop4-dbg' 'toppler' 'starfighter-data' 'python-sqlkit-doc' 'python-django-localeurl' 'nitrogen' 'libghc-data-lens-doc' 'libc6-armhf-cross' 'libva-intel-vaapi-driver' 'globus-rls-client-progs' 'gastables' 'expat' 'libnumber-bytes-human-perl' 'ebnetd' 'cl-asdf' 'libv4lconvert0' 'network-manager-dev' 'language-pack-ti' 'bacula-common' 'guile-1.6-slib' 'ubuntu-touch' 'pdf-presenter-console' 'mh-e' 'liquidsoap-plugin-sdl' 'libpgocaml-ocaml-dev' 'liboce-ocaf-lite-dev' 'libtinyxml2-0.0.0' 'libjboss-web-services-java' 'libconfig-model-cursesui-perl' 'kid3' 'junior-games-text' 'libmicroba-java' 'gfal2-doc' 'libgypsy0' 'fonts-johnsmith-induni' 'ekg2-dbg' 'libxfconf-0-2' 'qt4-linguist-tools' 'language-pack-so' 'libghc6-dataenc-dev' 'zpaq' 'stretchplayer-dbg' 'sabily-gdm-themes' 'ripit' 'python-zinnia' 'python-sepolgen' 'php-horde-template' 'parser3' 'med-psychology' 'libroar-plugins-universal' 'libmulticobex1-dev' 'libmpikmeans-dev' 'liblowpan-dev' 'libhtml-lint-perl' 'last-align' 'greenwich' 'globus-xioperf-dbg' 'libglobus-gridmap-callout-error0' 'globus-gram-job-manager-pbs-setup-poll' 'gauche-doc' 'xserver-xorg-input-synaptics' 'language-pack-tk' 'language-pack-ru' 'libc6' 'libnux-3.0-0' 'postgresql-contrib-8.4' 'yaz-illclient' 'wormux-servers' 'stjerm' 'qtdeclarative5-dee-plugin' 'mailping' 'libxosd-dev' 'libterm-ansicolor-ruby' 'libqgsttools-p1' 'libpda-pilot-perl' 'libnet-citadel-perl' 'libparse-cpan-packages-perl' 'flickcurl-utils' 'composite-dbg' 'choqok' 'libvhdio-2.0.90' 'big-cursor' 'python-cupshelpers' 'libnetfilter-conntrack3-dbg' 'liblightdm-qt-2-dev' 'libcommons-vfs-java-doc' 'language-pack-ug' 'language-pack-tl' 'language-pack-sq' 'linux-headers-3.5.0-23-generic' 'linux-headers-3.5.0-18-generic' 'vdr-dbg' 'xviewg' 'oggfwd' 'mhc-utils' 'libstring-similarity-perl' 'libstdc++6-4.7-pic-armhf-cross' 'libsprng2-doc' 'libsemanage-ruby1.8' 'libpocozip9-dbg' 'libmojo-server-fastcgi-perl' 'libleptonica-dev' 'modestmaps-js-doc' 'milkytracker' 'conmux' 'xgraph' 'apitrace-gl-frontend' 'x11proto-xcmisc-dev' 'wswedish' 'python3-dbus-dbg' 'libsmokeqtuitools4-3' 'libapache2-mod-php5' 'language-pack-sr' 'language-pack-rw' 'evolution-data-server-common' 'evolution-exchange-dbg' 'linux-image-3.2.0-39-virtual' 'dvdwizard' 'conserver-server' 'python-tomoe' 'njplot' 'ruby-mechanize' 'libroot-net-dev' 'libromana-perligata-perl' 'libjenkins-winstone-java-doc' 'libgranite0-dbg' 'libjsr166y-java' 'libgmerlin-common' 'libffmpegthumbnailer-dev' 'libassa3.5-5' 'fflas-ffpack-dev-doc' 'dhis-mx-sendmail-engine' 'hugs' 'libqt4-scripttools' 'language-pack-ss' 'libattr1' 'mtasc' 'mu-cite' 'libwt-common' 'librtasevent1' 'libpfs-dev' 'libnjb-doc' 'libnet-z3950-zoom-perl' 'liblunar-date-dev' 'libjifty-plugin-chart-perl' 'libpod-elemental-perlmunger-perl' 'libsoftware-release-perl' 'libjasypt-java-doc' 'hotswap-gui' 'fonts-cwtex-kai' 'docx2txt' 'cairo-dock-plug-ins-dbus-interface-ruby' 'aqsis-data' 'language-pack-ve' 'language-pack-st' 'fonts-lmodern' 'libghc6-explicit-exception-doc' 'projectmanager.app' 'shellinabox' 'libperlbal-perl' 'libjifty-plugin-authentication-facebook-perl' 'libgl-gst' 'liblingua-en-inflect-perl' 'libgraph-perl' 'libjpeg-progs' 'libnvtt2' 'libxp6' 'language-pack-wa' 'language-pack-uk' 'language-pack-bem-base' 'emacs24-common' 'pd-jmmmp' 'oxygen-cursor-theme-extra' 'maxima-src' 'lilypond-doc-pdf-es' 'libwlocate-dev' 'libshhopt1-dev' 'ruby-sdl' 'libmapipp0' 'liblua5.1-lpeg-dev' 'libscope-upper-perl' 'moosic' 'lcab' 'libkdcraw-data' 'grml-debootstrap' 'libproj-dev' 'libstdc++6-4.6-dev' 'fonts-jsmath' 'cuba-partview' 'bluez-btsco' 'samtools' 'libssh-4' 'language-pack-sv' 'perl-doc' 'g++-4.6-multilib-arm-linux-gnueabi' 'virtuoso-nepomuk' 'trac-mercurial' 'ssh-contact' 'shanty' 'nodau' 'super' 'libjs-yui-doc' 'libjarjar-maven-plugin-java-doc' 'libido-0.1-dev' 'libghc-zip-archive-doc' 'libghc-cipher-aes-dev' 'libghc-blaze-builder-enumerator-dev' 'libemail-received-perl' 'libdockapp2' 'interchange-cat-standard' 'deskscribe' 'contextfree' 'libnet1-dev' 'libhx-dev' 'libaudio2' 'language-pack-tr' 'language-pack-sw' 'language-pack-aa-base' 'libevocosm-3.1-1' 'libboost-filesystem1.46.1' 'compiz-fusion-plugins-main' 'xmlsysd' 'unagi' 'sphinxtrain' 'libuima-tools-java' 'libtext-lorem-perl' 'libqtscript4-xmlpatterns' 'libmini18n1' 'libjcm-java' 'libghc-llvm-base-doc' 'libdm0-dev' 'gmerlin-encoders-ffmpeg' 'globus-gram-job-manager-sge' 'apt-btrfs-snapshot' 'libudisks2-dev' 'libopenipmi-dev' 'language-pack-vi' 'language-pack-ts' 'gimp-data' 'xmlto' 'xfonts-thai-vor' 'trac-translatedpages' 'science-highenergy-physics' 'python3-pyside.qtnetwork' 'pictor' 'mythbuntu-diskless-server-standalone' 'libramaze-ruby1.9.1' 'libghc-regex-base-prof' 'libghc-comonads-fd-prof' 'libdune-common-dev' 'libderiving-ocsigen-ocaml-dev' 'libdbus1.0-cil-dev' 'libdata-transformer-perl' 'libdata-stream-bulk-perl' 'langdrill' 'intone' 'inn2-lfs' 'python-notmuch' 'python-passlib' 'openvswitch-switch' 'openoffice.org-thesaurus-ne' 'libhttp-message-perl' 'libgsm1-dbg' 'language-pack-tt' 'linux-image-extra-3.2.0-24-virtual' 'language-pack-la-base' 'python-whoosh-doc' 'python-pygrace' 'python-doublex' 'lilypond-doc-pdf-fr' 'libxr1' 'liblatex-tom-perl' 'libpimcommon4' 'ipip' 'xhtml2ps' 'gir1.2-gnumeric' 'fxload' 'libplack-middleware-session-perl' 'alice' 'gzip' 'libgnome-vfs2.0-cil' 'libxcursor1' 'language-pack-hu-base' 'netrek-client-cow' 'lxmms2' 'libx264-dev' 'libqt5quicktest5' 'libplayerjpeg3.0' 'libopennebula-java' 'liblua5.1-orbit1' 'libjansson-dev' 'libghc-hsql-odbc-prof' 'libghc-file-embed-doc' 'libclass-dbi-plugin-abstractcount-perl' 'kmines' 'imageindex' 'gearman-job-server' 'freemat-data' 'projectm-data' 'libcommons-net1-java' 'perlmagick' 'xmame-sdl' 'viruskiller' 'ttf-levien-typoscript' 'sword-language-pack-ru' 'python-cqmf2' 'mysqmail-postfix-logger' 'libparse-syslog-perl' 'libcgi-compile-perl' 'libkexiv2-dev' 'libcastor-xml-java' 'impose+' 'ewf-tools' 'libchef-ruby' 'libvirt-dev' 'libdbusmenu-jsonloader-dev' 'language-pack-ur' 'gettext-doc' 'libitm1-dbg' 'trend' 'sword-language-pack-tl' 'spl-xml' 'python-xlrd' 'python-dipy-lib' 'logcentral-tools' 'linux-patch-lustre' 'libqedje0a' 'libotpw-dev' 'libnet-twitter-lite-perl' 'kvirc-dbg' 'jparse' 'gsoap-doc' 'gnome-exe-thumbnailer' 'eboard' 'dbview' 'xfonts-encodings' 'pulseaudio-module-raop' 'libtext-csv-perl' 'libxcb-shm0' 'language-pack-wa-base' 'language-pack-uk-base' 'libavahi-common3' 'auth-client-config' 'aide-common' 'libisnativec-5.2-java' 'vftool' 'snort-common-libraries' 'lubuntu-default-session' 'libqxt-designer0' 'liblwt-ssl-ocaml' 'libcolorpicker-java-doc' 'liblog-any-perl' 'libbakery-2.6-1' 'libsfstdc++6-4.7-dev-armhf-cross' 'python-phoneutils' 'python-pymongo-ext' 'python-chardet' 'libgweather-3-dev' 'libclass-load-perl' 'lib64tinfo5' 'python-ibus' 'openoffice.org-help-en-us' 'python3.2-dbg' 'linux-backports-modules-net-3.2.0-24-generic' 'xfce4-hdaps' 'trac-git' 'r-cran-mcmcpack' 'python-parted' 'xmltv' 'libsundials-nvecserial0' 'libsmartcardpp1-dbg' 'libgstreamer-plugins-bad0.10-dev' 'libghc-static-hash-dev' 'htop' 'gimp-ufraw' 'ruby-merb-param-protection' 'ap-utils' 'gnu-efi' 'dh-make' 'oxref' 'libxs2' 'libtime-human-perl' 'libpoe-component-jobqueue-perl' 'libmerb-helpers-ruby' 'libhtsengine-dev' 'libbsd-arc4random-perl' 'libasync-http-client-java-doc' 'libprocesscore4abi1' 'python-imposm' 'fcitx-table-emoji' 'doc-linux-pl' 'dchroot-dsa' 'alien-hunter' 'libgrinvin-graphs-java' 'fp-units-gnome1-2.4.4' 'linux-headers-lbm-3.2.0-30-generic' 'linux-headers-lbm-3.2.0-25-generic' 'libdrm-ltsq-nouveau2' 'lib64asound2-dev' 'xmms2-plugin-xspf' 'ttylog-dbg' 'privoxy' 'spread-phy' 'liborigin2-dev' 'libghc-ifelse-doc' 'libdogleg-dev' 'pdftk' 'gmrun' 'clisp-module-rawsock' 'abrowser' 'texlive-lang-dutch' 'pavumeter' 'libxcb-xtest0' 'language-pack-xh' 'iamerican' 'libgmlib0' 'linux-image-3.2.0-36-generic' 'roarplaylistd-dev' 'python-gmsh' 'openttd-opensfx' 'libvlccore5' 'lambdabot' 'libjgraph-java' 'libmpich2-dev' 'datafreedom-qsfxsl' 'gis-gps' 'fcitx' 'dk-filter' 'gnome' 'cl-cluck' 'beast-doc' 'binutils' 'gobjc-4.4-multilib' 'sword-language-pack-sw' 'nautilus-script-debug' 'libxml-filter-detectws-perl' 'liblucene-queryparser-perl' 'libghc-src-exts-dev' 'libghc-gnutls-dev' 'libelk0-dev' 'libeegdev-dev' 'libclearsilver-perl' 'libset-object-perl' 'kget' 'gnome-applets-data' 'globus-gram-job-manager-fork' 'genisovh' 'libgmlib1' 'auto-install-el' 'anyremote2html' 'lame' 'nvidia-experimental-310-dev' 'python-jinja2-dbg' 'python-egenix-mxurl-doc' 'libxmlunit-java' 'libdevmapper-dev' 'language-pack-wo' 'xfce4-wmdock-plugin' 'x264' 'sword-language-pack-vi' 'sugar-jigsawpuzzle-activity' 'sabily-grub-artwork' 'python-gmpy' 'mp3rename' 'librdf-trinex-functions-perl' 'libmatchbox-doc' 'libghc-yesod-default-prof' 'libescpr-dev' 'fso-gsmd' 'elmer-doc' 'ekg2-xosd' 'gstreamer0.10-plugins-cutter' 'binutils-arm-linux-gnueabi' 'alevt' 'libregexp-java-doc' 'libgee2-dbg' 'language-pack-uz' 'python3-dbus' 'teamviewer' 'xfce4-cellmodem-plugin' 'warzone2100' 'ruby-rack-test' 'python-kzorp' 'plasma-scriptengine-python' 'libslurmdb23' 'libomhacks-dev' 'libhtml-html5-writer-perl' 'libhtml-calendarmonth-perl' 'libcgicc5' 'libgfortran3-dbg-arm64-cross' 'dvdrip' 'sredird' 'libgnomeprint2.2-0' 'libakonadiprotocolinternals1' 'libhessian-java' 'gstreamer1.0-clutter' 'postgresql-plpython-8.4' 'pike7.8-full' 'libthread-queue-any-perl' 'liboce-modeling-dev' 'libplot-perl' 'libghc-data-accessor-mtl-dev' 'libges-0.10-dev' 'libaqbanking34-dev' 'libgnuift0c2a' 'libmudflap0-dbg-powerpc-cross' 'expeyes-clib' 'libreoffice-voikko' 'ant-optional' 'xfce4-clipman' 'realtimebattle' 'qrfcview' 'podbrowser' 'lilypond-doc-pdf-hu' 'librcps0' 'kde-baseapps-data' 'jplayer' 'geda-utils' 'libjortho-freeplane-java' 'fpc-source' 'transmission-cli' 'postgresql-contrib-9.1' 'soprano-daemon' 'libmono-system-dynamic4.0-cil' 'language-pack-yi' 'jlex' 'lintian' 'linux-image-3.8.0-18-generic' 'python-protocols' 'pdfminer-data' 'node-sqlite3' 'libresiprocate-1.8-dev' 'libmixlib-authentication-ruby' 'libghc-network-dev' 'libcgi-ssi-parser-perl' 'gl-117-data' 'fxt-tools' 'enigma-data' 'libxml-libxml-simple-perl' 'anyremote' 'libtest-leaktrace-perl' 'libdjvulibre-text' 'libxinerama-dev' 'ezgo-multimedia' 'sdic-gene95' 'mpi-specs' 'zomg' 'tryton-modules-product-cost-history' 'lighttpd-mod-mysql-vhost' 'uim-chewing' 'libodn-ocaml-dev' 'libhugs-base-bundled' 'libghc-regex-compat-doc' 'libcommons-jci-janino-java' 'libobject-event-perl' 'jlatex209-bin' 'libjetty-java-doc' 'gosa-plugin-ssh' 'hylafax-server' 'balazar' 'libc6-pic' 'landscape-common' 'libxt6' 'teem-doc' 'xml2rfc' 'xmms2-plugin-gvfs' 'penguin-command' 'nginx-common' 'mednafen' 'libschedule-at-perl' 'libqzeitgeist-dbg' 'libplexus-cdc-java' 'libmikmatch-ocaml-dev' 'libgtkhtml-editor-dev' 'libghc-time-compat-dev' 'libghc-zlib-doc' 'meterbridge' 'liblouisxml-bin' 'blackbox' 'asterisk-core-sounds-es-gsm' 'x11proto-xf86dri-dev' 'texlive-lang-hungarian' 'min12xxw' 'libghc6-gtksourceview2-doc' 'sludge-doc' 'mpqc-support' 'lilypond-doc-pdf-it' 'libqgis-dev' 'libp2kmoto-dev' 'lua-lpeg-dev' 'libdbus-java-doc' 'libclutter-imcontext-0.1-0' 'libmusicbrainz-discid-perl' 'policyrcd-script-zg2' 'libsub-exporter-perl' 'gcc-4.7-locales' 'revolution-mkl' 'libcupti-dev' 'ttf-tagbanwa' 'stardict-czech' 'libvanessa-logger-sample' 'libqof-doc' 'libmath-symbolic-perl' 'libghc-xss-sanitize-prof' 'libmoosex-clone-perl' 'libevtlog0' 'tktreectrl' 'language-pack-gnome-bn-base' 'language-pack-gnome-as-base' 'libasn1-8-heimdal' 'gstreamer0.10-plugins-base' 'xemacs21-nomule' 'vdr-plugin-remote' 'tt-rss' 'libkvutils-dev' 'libghc-zeromq-haskell-prof' 'libghc-yesod-json-prof' 'libghc-configurator-prof' 'libboost-context1.53.0' 'libsdl-gfx1.2-dev' 'libglobus-xio-gsi-driver0' 'libfreenect-bin' 'clisp-module-gdbm' 'd-push' 'libhtml-tagset-perl' 'libytnef0' 'language-pack-yo' 'python-keystone' 'desktop-file-utils' 'libcoroipcc-dev' 'libxinerama1' 'alien' 'libzeitgeist-1.0-1' 'unity-china-music-scope' 'qpdfview' 'php-xml-rpc2' 'sidplay' 'lua-zip' 'libghc-xml2html-prof' 'libdigidoc2-dbg' 'libakonadi-kcal4' 'cairo-dock-plug-ins-dbus-interface-vala' 'bsdiff' 'python-gevent-dbg' 'inetutils-inetd' 'libmono-system-windows-forms-datavisualization4.0-cil' 'libaudit0' 'libxv1' 'luasocket-dev' 'libgnome-mag-dev' 'libghc6-dataenc-doc' 'scummvm-data' 'python-django-formfieldset' 'libtest-useallmodules-perl' 'libsnacc-dev' 'libruli4' 'libnarray-miss-ruby1.9.1' 'libbz2-ruby1.8' 'libtorch3c2' 'hledger' 'gnucash-common' 'fonts-kaushanscript' 'cl-sql-postgresql-socket' 'libxcb-xtest0-dbg' 'libslang2-pic' 'libsepol1-dev' 'lib64gomp1-dbg' 'language-pack-gnome-mn-base' 'indicator-power' 'libltdl-dev' 'libaudit1' 'znc-extra' 'vdr-dev' 'therion-viewer' 'synopsis' 'winpdb' 'myproxy-server' 'miredo-server' 'libvcdinfo0' 'monodevelop-monogame' 'libmasonx-processdir-perl' 'lua-filesystem-dev' 'libgtkada2.24.1-dev' 'libghc-yesod-persistent-prof' 'libauthen-dechpwd-perl' 'libafterimage-dev' 'libwww-shorten-perl' 'libnekohtml-java' 'openntpd' 'mpdcon.app' 'fcitx-table-boshiamy' 'fcitx-tools' 'euler-doc' 'scummvm' 'rlwrap' 'alsaplayer-common' 'mono-4.0-gac' 'libtest-number-delta-perl' 'libdatetime-timezone-perl' 'openssh-server' 'libghc6-hdbc-prof' 'voms-server' 'python-zope.lifecycleevent' 'python-faulthandler' 'libxapool-java' 'libgnomeada-dbg' 'jenkins-ssh-cli-auth' 'gir1.2-gtkchamplain-0.12' 'childsplay-alphabet-sounds-ca' 'aspell-de-alt' 'amarok-utils' 'php5-fpm' 'libboost-mpi1.48.0' 'libgradle-jetty-java' 'wulflogger' 'spamassassin-rules-ja' 'simdock' 'qpidd' 'python-soya-doc' 'php-horde-injector' 'mecab-utils' 'libvalidatable-ruby1.8' 'libsubtitleeditor0' 'libqpidclient2' 'oar-server' 'mailutils-common' 'libjboss-webservices-java' 'libgpevtype1-dbg' 'libemail-mime-contenttype-perl' 'libboost-mpi1.53.0' 'libev-perl' 'gpe-mixer' 'googleearth-package' 'libelektra3' 'libclips' 'childsplay-alphabet-sounds-bg' 'argus-client' 'acedb-other' 'libvorbis-dbg' 'libstylebook-java' 'language-pack-gnome-yi-base' 'freeradius' 'ukopp' 'xfce4-places-plugin' 'xzgv' 'libx32mudflap0-dbg' 'libtravel-routing-de-vrr-perl' 'libqmf-dev' 'liblunar-date-doc' 'liblscp6' 'libghc-yesod-auth-oauth-prof' 'libghc-citeproc-hs-dev' 'libcamljava-ocaml-dev' 'libavifile-0.7-common' 'libavifile-0.7-bin' 'libpolarssl0' 'libemail-mime-encodings-perl' 'cpufrequtils' 'pastebinit' 'libxorg-gtest-dev' 'libtry-tiny-perl' 'mdadm' 'console-braille' 'tetex-frogg' 'openjdk-6-source' 'libswing-layout-java-doc' 'libroot-gui-ged5.34' 'libplexus-container-default-java-doc' 'liblrs0d' 'opendnssec-common' 'libghc-maybet-dev' 'libghc-haxml-prof' 'libexml-java' 'libapache2-mod-removeip' 'kdesdk-strigi-plugins' 'libsolidcontrolifaces4abi2' 'libcastor-core-java' 'libgpevtype1' 'fraqtive-dbg' 'libgloox8' 'libace-perl' 'libsyndication4' 'isag' 'librpm-dbg' 'libmono-system-runtime-durableinstancing4.0-cil' 'myspell-de-ch' 'libghc6-primitive-prof' 'ebox-objects' 'telepathy-devel' 'starpu-tools' 'python-empy-doc' 'pure-ftpd-ldap' 'picviz' 'netsurf-common' 'nanoweb-nanoconfig' 'libognl-java-doc' 'libgtksourceview2-2.0-cil' 'libghc-happstack-server-dev' 'ketm' 'gambas3-gb-opengl-glsl' 'libhtml-table-perl' 'libstdc++6-4.6-doc' 'debian-keyring' 'tovid' 'zentyal-squid' 'upgrade-system' 'strigi-client' 'python-zope.app.dependable' 'libterm-sk-perl' 'ruby-term-ansicolor' 'marble-plugins' 'liblocalizer-java-doc' 'libhtml-defang-perl' 'libghc-silently-dev' 'libghc-cipher-aes-doc' 'libghc-blaze-builder-enumerator-doc' 'libfile-mmagic-xs-perl' 'ruby-akonadi' 'gramophone2' 'libnxml0' 'fruit' 'confget' 'libva-dev' 'libnet1-doc' 'libhx-doc' 'myspell-de-de' 'myspell-de-at' 'libslang2' 'libghc6-happstack-server-dev' 'gcc-4.5-source' 'awn-applet-media-icon-applet' 'xzip' 'xserver-xorg-video-geode-dbg' 'python-wsme' 'node-glob' 'libredcloth-ruby' 'liboath0' 'libsvg-tt-graph-perl' 'libhtml-prototype-perl' 'hunt' 'fcitx-table' 'eclipse-mylyn-context-pde' 'eclipse-cdt-jni' 'banshee-extension-awn' 'debconf-kde-helper' 'openoffice.org-thesaurus-ro' 'minissdpd' 'libgsm1-dev' 'libtagsoup-java-doc' 'scute' 'r-doc-pdf' 'prepaid-manager-applet' 'phoneuid' 'python-nfqueue' 'libmath-quaternion-perl' 'libghc-explicit-exception-prof' 'libgcu-dbg' 'libdune-common-doc' 'archmage' 'apcalc-dev' 'virt-viewer' 'python-xmpp' 'openoffice.org-thesaurus-sk' 'libvte-common' 'language-pack-zu' 'vala-0.12-doc' 'cdd-common' 'whichwayisup' 'python-htmltmpl' 'libqapt-dev' 'libjboss-deployment-java' 'libitext1-java' 'libcf-ocaml-dev' 'linux-libc-dev-armhf-cross' 'ippl' 'libgosa-perl' 'glyrc' 'glogic' 'globus-gridftp-server-control-dbg' 'libgatos0' 'camgrab' '389-ds-base-libs-dbg' 'ruby-nokogiri' 'zoph' 'kde-window-manager' 'apport-gtk' 'mrwtoppm' 'zmakebas' 'tarantool-common' 'remote-tty' 'python3-logilab-astng' 'libxfcegui4-dev' 'libtacacs+1' 'libsgml-parser-opensp-perl' 'libois-dev' 'libnb-svnclientadapter-java' 'libmadlib-dbg' 'libjansson-doc' 'libghc-hxt-charproperties-prof' 'libdbix-class-encodedcolumn-perl' 'libvecmath-java' 'gmp-ecm' 'childsplay-alphabet-sounds-de' 'logreq' 'beets-doc' 'amule-emc' 'libmono-microsoft-build-engine4.0-cil' 'libatk-wrapper-java-jni' 'irssi-dev' 'inkscape' 'libxext6' 'libmvel2-java-doc' 'libghc6-openal-dev' 'koffice-l10n-cavalencia' 'starpu-examples' 'perlindex' 'qlandkarte' 'libtest-reporter-perl' 'libsecret-tools' 'libroot-core5.34' 'libmecab-perl' 'libimager-qrcode-perl' 'libdirectory-scratch-structured-perl' 'lcl-units' 'g++-4.5-arm-linux-gnueabi' 'ecl-doc' 'awl-doc' 'libvirt-doc' 'libavahi-ui0' 'libguile-ltdl-1' 'linux-firmware-nonfree' 'shatag' 'pspresent' 'makeself' 'lilypond-doc-pdf-nl' 'libplplot-fortran9' 'kgb-client' 'latex2rtf' 'gir1.2-gee-0.8' 'wl-beta' 'fcitx-frontend-gtk2' 'libblacs-mpi1' 'agda-stdlib' 'texlive-doc-base' 'postgresql-plpython-9.1' 'libgdk-pixbuf2.0-dev' 'libaccount-plugin-1.0-dev' 'gperf' 'debian-policy' 'libgstreamer-plugins-base0.10-0' 'python3.2-dev' 'linux-backports-modules-cw-3.3-3.2.0-39-generic' 'uniutils' 'live-manual-odf' 'libreoffice-report-builder-bin' 'libpugl-dbg' 'libjmdns-java-doc' 'libperlio-via-dynamic-perl' 'libghc-polyparse-prof' 'libgarmin0' 'libccscript3-dev' 'libicegrid34' 'gxtuner' 'fcitx-frontend-gtk3' 'dsyslog-module-postgresql' 'cyrus-clients' 'libvarnishapi1' 'amora-cli' 'openoffice.org-thesaurus-ru' 'libxss-dev' 'libgs-dev' 'libblkid-dev' 'libpdf-writer-ruby' 'gambas2-gb-db-firebird' 'zonecheck' 'xwiimote' 'wizznic' 'mpich2-doc' 'libzemberek-java-doc' 'libstarpu-dev' 'srecord' 'libgmtk-dev' 'libghc-static-hash-doc' 'libgpp4-dev' 'libcatalyst-action-rest-perl' 'psrip' 'gnustep-examples' 'gdcm-doc' 'squashfs-tools-dbg' 'php5-gmp' 'raptor-utils' 'cairo-perf-utils' 'libkadm5clnt7-heimdal' 'xpat2' 'python-zfec' 'python-zope.testbrowser' 'python-pyx-doc' 'pavuk' 'libuchardet-dev' 'liblua5.1-socket-dev' 'libprotobuf-java' 'libghc-postgresql-libpq-dev' 'libghc-cryptohash-dev' 'libexporter-easy-perl' 'libbloom-filter-perl' 'ruby-activeldap-doc' 'kdesdk-scripts' 'libxy3' 'ssl-cert-check' 'rivet-root-converter' 'pyjamas-pyjs' 'wx2.8-headers' 'libvoaacenc-ocaml' 'libtest-http-server-simple-stashwarnings-perl' 'libstemmer-dev' 'libpcsc-perl' 'libopenscap-dev' 'libpam-mysql' 'libghc-mersenne-random-pure64-dev' 'libmoosex-types-perl' 'md5deep' 'jenkins-memory-monitor-doc' 'php-net-imap' 'gpsim-dev' 'foxtrotgps' 'emdebian-grip' 'php5-adodb' 'transmission-common' 'libcg' 'python3-morse-simulator' 'libunicode-stringprep-perl' 'libghc-vector-prof' 'libghc-hspec-expectations-prof' 'kid3-qt' 'gosa-plugin-phpscheduleit' 'otf-yozvox-yozfont-standard-kana' 'openresolv' 'texlive-lang-mongolian' 'libsubunit0' 'libaprutil1' 'vobcopy' 'torque-mom' 'sciplot-dev' 'ruby-prawn-doc' 'pike7.8-fuse' 'libvistaio-dev' 'libteem2-dbg' 'libroot-math-foam-dev' 'libnb-ide14-java' 'mpich-shmem-bin' 'libhawknl-dbg' 'libghc-wai-app-file-cgi-prof' 'libghc-gnutls-doc' 'libghc-src-exts-doc' 'libebml3' 'plasma-active-webbrowser' 'kolab-cyrus-common' 'isync' 'inspircd-dbg' 'xfonts-intl-chinese' 'xserver-xorg-video-sisusb' 'python-json-patch' 'unalz' 'p7zip-full' 'linux-headers-lbm-3.2.0-24-generic-pae' 'libgl1-mesa-dri-lts-quantal-dbg' 'xubuntu-wallpapers' 'vowpal-wabbit' 'proftpd-mod-mysql' 'libomxil-bellagio0-components-videosrc' 'libgenometools0-dev' 'ruby-dataobjects' 'gri-html-doc' 'freeaccount' 'monotone' 'language-pack-ss-base' 'gnome-session' 'ttf-nanum-extra' 'libghc6-csv-prof' 'libgda-4.0-bin' 'awn-applet-battery-applet' 'linux-headers-3.2.0-31-virtual' 'linux-headers-3.2.0-26-virtual' 'yiyantang' 'sugarplum' 'ruby-sdl-dbg' 'openvswitch-datapath-source' 'nvidia-cuda-toolkit' 'm2vrequantiser' 'libnss-sshsock2' 'libjxp-java' 'libdmalloc5' 'goplay' 'gnomekiss' 'libdcmtk2-dev' 'mscompress' 'libksba-dev' 'libgimp2.0-dev' 'initscripts' 'libghc-neither-prof' 'gwibber-service-friendfeed' 'nspluginwrapper' 'tshark' 'sshpass' 'pgpgpg' 'network-config' 'libsymmetrica-dev' 'libghc-data-accessor-mtl-doc' 'libges-0.10-doc' 'libcsv-java-doc' 'latd' 'kannel-dev' 'hp-search-mac' 'gmult' 'kexi' 'cvs2svn' 'achilles' 'gnote' 'libedataserverui-3.0-dev' 'biosdevname' 'ubuntu-gnome-default-settings' 'tau-racy' 'python-xlwt' 'libsocks4' 'libossim-dev' 'libghc-chell-dev' 'late' 'ifmail' 'gnustep-back-dbg' 'libfuntools1' 'libgecode-dev' 'python-slip-dbus' 'python-gupnp-igd' 'dovecot-metadata-plugin' 'childsplay-alphabet-sounds-el' 'aliki' 'libqhull5' 'ss-dev' 'language-pack-fur' 'autotrust' 'libcogl9-dbg' 'linux-headers-3.2.0-24-generic-pae' 'torque-pam' 'testdrive-cli' 'subsurface' 'python-pydoctor' 'node-cli' 'mga-vid-source' 'libserial-dev' 'libremctl1' 'liblablgtksourceview2-ocaml' 'libtest-http-server-simple-perl' 'libghc-network-doc' 'libgcc1-armhf-cross' 'libfftw3-mpi3' 'libzip-ocaml-dev' 'libndr0' 'kraptor' 'db5.3-util' 'rebuildd' 'heimdal-servers' 'apport-kde' 'libnova-0.12-2' 'mgltools-scenario2' 'unity-webapps-cuttherope' 'tuxpaint-stamps-default' 'libqzeitgeist-dev' 'libexplain-dev' 'libdrawtk-dev' 'junior-kde' 'eekboek-gui' 'briquolo-data' 'antlr3' 'defoma' 'language-pack-hne' 'libboost-filesystem1.48.0' 'qtiplot' 'python-gpiv' 'python-dulwich-dbg' 'nodejs-legacy' 'libtext-format-ruby' 'libghc-time-compat-doc' 'libboost-filesystem1.53.0' 'levee' 'libindigo0d' 'glassfish-javaee' 'geoclue-yahoo' 'geoclue-skyhook' 'convirt' 'http-icons' 'boswars' 'libbt' 'python-ubuntuone-devtools' 'libstreamanalyzer-dev' 'gnome-calculator' 'ptunnel' 'pdfcrack' 'librime-data-triungkox3p' 'liboggz2-dbg' 'libjoda-convert-java' 'libhibernate3-java-doc' 'libgit-ruby' 'jenkins-job-builder' 'istanbul' 'mnemo2' 'otf-yozvox-yozfont-new-kana' 'emesene' 'nwchem' 'clisp-module-clx' 'libgtkglext1' 'libxml-writer-string-perl' 'banshee-extension-albumartwriter' 'nagios3-core' 'linux-generic' 'libmono-webmatrix-data4.0-cil' 'libiodbc2-dev' 'libdrm2-dbg' 'python3-commandnotfound' 'bootchart' 'libcupti-doc' 'zorp' 'wmifinfo' 'xmms2-dev' 'libnews-newsrc-perl' 'libspatialite-dev' 'libdancer-plugin-rest-perl' 'kscreen' 'gzrt' 'gpivtools' 'gearhead2' 'itk3' 'libboost-mpi1.49.0' 'fcitx-libs-qt' 'eclipse-mylyn' 'faust' 'chromium-codecs-ffmpeg-extra-dbg' 'bmagic' 'auto-apt' 'libtcnative-1' 'libreoffice-l10n-nso' 'cliff-tablib' 'libvala-0.10-0' 'xserver-xorg-video-geode-lts-quantal' 'mnemosyne-blog' 'libstring-parity-perl' 'siscone-examples' 'libsdl-gfx1.2-doc' 'libplack-middleware-crossorigin-perl' 'libnetsds-perl' 'libnarray-ruby1.9.1-dbg' 'libmosquitto0-dev' 'liblivemedia1' 'liblinphone-dev' 'libgmpada3-dev' 'libclhep2.1' 'libace-inet-ssl-dev' 'gozerbot' 'fcitx-keyboard' 'freewnn-kserver' 'dialign-tx-data' 'libanyevent-irc-perl' 'libtag1-rusxmms' 'libreadline5' 'bacula-common-dbg' 'jackbeat' 'ttf-ipafont-uigothic' 'xsunpinyin' 'screenkey' 'php-codesniffer' 'mysqmail' 'lintian4python' 'opus-tools' 'libmodule-install-trustmetayml-perl' 'liblogservicetoolbase2-dev' 'libio-html-perl' 'libfile-queue-perl' 'kgpg' 'gosa-plugin-squid' 'libmidgard2' 'libsoqt4-20' 'childsplay-alphabet-sounds-es' 'canna' 'alsaplayer-nas' 'libxcb-xtest0-dev' 'gir1.2-gee-1.0' 'fonts-arphic-gbsn00lp' 'libreadline6' 'illuminator-demo' 'awn-applet-webapplet' 'motif-clients' 'xchat-otr' 'rifiuti2' 'pd-vbap' 'maradns-zoneserver' 'librdf-helper-properties-perl' 'libinotify-ocaml' 'libghc-hipmunk-prof' 'libqtfeedback1' 'imgvtopgm' 'libgfortran-4.7-dev-armhf-cross' 'flex-old-doc' 'erlang-pman' 'liblightdm-qt-2-0' 'libiodbc2' 'python-reportlab' 'gir1.2-coglpango-1.0' 'libgcc-4.7-dev' 'ocaml-nox' 'xcrysden-data' 'uwsgi-plugin-psgi' 'qprogram-starter' 'mydumper' 'med-imaging' 'live-config-upstart' 'libu1db-dev' 'libmp3splt0-mp3' 'haskell-regex-posix-doc' 'libghc-optparse-applicative-dev' 'xfdesktop4-data' 'libfreefem++-dev' 'libhdf4-alt-dev' 'libdee-qt4-3' 'fp-units-gnome1-2.6.0' 'libdico1' 'svn-all-fast-export' 'autopostgresqlbackup' 'libgpm-dev' 'libcanberra-gtk3-dev' 'gcc-4.7-plugin-dev' 'graphviz' 'lsb-build-desktop3' 'libstdc++6-4.6-pic-armel-cross' 'libghc6-csv-dev' 'album-data' 'sipcrack' 'python-schooltool.intervention' 'python-guiqwt' 'libodbcinstq4-1' 'liblcmaps-without-gsi-dev' 'libobjenesis-java' 'libint-dbg' 'libghc-sendfile-prof' 'libghc-configfile-prof' 'libghc-algebra-dev' 'libeclipselink-java-doc' 'libdatetime-calendar-discordian-perl' 'libxcb-image0-dev' 'libid3-3.8.3c2a' 'libfile-homedir-perl' 'liblist-moreutils-perl' 'libccolamd2.7.1' 'liblouisxml-dev' 'libvorbis-dev' 'adns-tools' 'fbset' 'linux-backports-modules-hv-3.2.0-38-virtual' 'node-minimatch' 'mlterm-im-scim' 'libsegment-java' 'libopendap-java' 'libaspectr' 'libkitware-mummy-runtime1.0-cil' 'isdneurofile' 'httpry-tools' 'childsplay-alphabet-sounds-fr' 'bashburn' 'babeltrace' 'asciijump' 'alsa-tools-gui' 'libprotoc7' 'latex-cjk-all' 'drizzle-plugin-filtered-replicator' 'xserver-xorg-input-kbd-lts-quantal' 'qutecom' 'python-calabash' 'python-albatross' 'libpam-oath' 'libjsoup-java-doc' 'libghc-citeproc-hs-doc' 'libdatetime-event-cron-perl' 'libspring-aop-java' 'libobjc3-dbg' 'tagua' 'gkrellmd' 'libhfstdc++6-4.7-dev-armel-cross' 'libnetty-java' 'planetpenguin-racer-gimp-dev' 'libcupt2-0' 'bluetile' 'ada-reference-manual-info' 'tk8.5-lib' 'rsyslog-doc' 'libxorg-gtest-doc' 'librpm-dev' 'distcc' 'libghc6-safe-prof' 'linux-headers-3.2.0-23-generic' 'gmp-doc' 'python3-iowait' 'plymouth-theme-fade-in' 'libyaz4-dev' 'libvtk-java' 'libgluegen2-doc' 'libghc-maybet-doc' 'libcsfml-graphics1.6' 'libpstoedit-dev' 'libio-tiecombine-perl' 'pgadmin3' 'gkamus-data' 'libfreenect-dev' 'festvox-czech-machac' 'fcitx-module-kimpanel' 'django-tables' 'libdata-treedumper-perl' 'tcl-tls' 'gstreamer0.10-gnonlin' 'dh-apport' 'python-scour' 'python3-dexml' 'php-horde-controller' 'matita' 'libqmmpui-dev' 'libwww-mechanize-gzip-perl' 'libghc-happstack-server-doc' 'holotz-castle-data' 'google-perftools' 'ettercap-graphical' 'ucspi-tcp' 'libctapimkt0-dev' 'cciss-vol-status' 'amispammer' 'printer-driver-min12xxw' 'libreoffice-l10n-pa-in' 'libnatpmp1' 'libaa1-dbg' 'libkhtml5' 'finch-dev' 'iptables' 'channel-server' 'doc-rfc-experimental' 'yorick-yeti-regex' 'wesnoth-1.10-thot' 'ulatency' 'tesseract-ocr-afr' 'rancid' 'r-cran-lpsolve' 'r-cran-raschsampler' 'lifeograph' 'suikyo-table' 'libprojectm-qt-dev' 'libghc-silently-doc' 'incron' 'gnulib' 'gargoyle-free' 'libpam-fprintd' 'binutils-mingw-w64-x86-64' 'libmpcdec6' 'tomcat7-docs' 'qemu-system-x86' 'python-gpod' 'libswscale-dev' 'language-pack-gnome-ml-base' 'ttf-ubuntu-font-family' 'nfs-common' 'libghc6-happstack-server-doc' 'ogmrip-dirac' 'zentyal-objects' 'snd-gtk-jack' 'puppet-lint' 'polygraph' 'openvpn-auth-radius' 'live-manual-pdf' 'libssreflect-coq' 'softhsm-common' 'libghc-gtksourceview2-prof' 'libemu-dev' 'konquest' 'lincity-ng' 'jkmeter' 'wapua' 'gobjc++-mingw-w64-i686' 'gis-tasks' 'gadmin-proftpd-dbg' 'funtools' 'dsyslog-module-gnutls' 'bzr-stats' 'scalapack-doc' 'avrdude-doc' 'system-config-printer-kde' 'python-simpletal' 'libtest-differences-perl' 'libkdeui5' 'libzrtpcpp-1.4-0' 'kdegames-dbg' 'scanlogd' 'ruby-hivex' 'python-coverage-test-runner' 'netpanzer' 'mumps-test' 'libvirt-ruby' 'libnet-ssh-multi-ruby1.9.1' 'libhtml-calendarmonthsimple-perl' 'libautotrace-dev' 'libactiveldap-ruby' 'hitori' 'guacamole-tomcat' 'gpixpod' 'gambas3-gb-desktop' 'crawl-tiles' 'clam-networkeditor-examples' 'language-pack-kde-mt-base' 'ruby-rvm' 'xmotd' 'literki' 'liquidsoap-plugin-ao' 'proxychains' 'libmadlib-dev' 'libasis2010-dbg' 'inetutils-ftpd' 'libwpd-tools' 'gamgi-doc' 'docvert-openoffice.org' 'dialign' 'libnunit-doc' 'libgladeui-common' 'ubuntu-orchestra-modules-haproxy' 'libghc6-xhtml-prof' 'libghc6-html-dev' 'rt3.8-rtfm' 'phylip-doc' 'python-hijra' 'undbx' 'ruby-ascii85' 'prayer-accountd' 'remember-el' 'libzorp3.9-0' 'liboggplay1-dbg' 'libghc-llvm-prof' 'libexo-common' 'libdbix-xmlmessage-perl' 'libdataquay-dev' 'libavifile-0.7-dev' 'lfc-server-postgres' 'esys-particle' 'crafty' 'grepmail' 'smoke-dev-tools' 'libosp-dev' 'gceph-dbg' 'redis-doc' 'libghc6-openal-doc' 'xpilot-ng-client-sdl' 'ucspi-tcp-ipv6' 'r-cran-fecofin' 'python-gtkmvc-doc' 'planetpenguin-racer-dbg' 'morse-simulator-data' 'mew-beta' 'vpb-utils' 'libshhmsg1' 'libplexus-interactivity-api-java' 'libjenkins-htmlunit-core-js-java' 'libgettext-activerecord-ruby1.9.1' 'libgeo-distance-xs-perl' 'libextutils-f77-perl' 'libevent1-dev' 'kigo' 'libakonadi-kmime4' 'hyde' 'hotswap' 'gpick' 'youtube-dl' 'eancheck' 'docky' 'fakechroot' 'cl-aserve' 'blcr-testsuite' 'aolserver4-xotcl' 'ipxe' 'libghc6-statistics-prof' 'ztclocalagent' 'wesnoth-1.10-music' 'wesnoth-1.10-dm' 'gentle' 'libpugl-dev' 'libghc-sfml-audio-dev' 'libactivemq-java-doc' 'ikarus' 'hitchhiker' 'gwc-dbg' 'libgsmme1c2a' 'grass-dev-doc' 'gosa-plugin-phpscheduleit-schema' 'freeradius-dialupadmin' 'liblinux-lvm-perl' 'desktop-profiles' 'libhttp-daemon-ssl-perl' 'libgdk-pixbuf2.0-doc' 'libopenblas-base' 'php5-common' 'libaccount-plugin-1.0-doc' 'graphviz-dev' 'librsync1' 'python3.2-doc' 'wesnoth-1.10-ei' 'vdpauinfo' 'open-font-design-toolkit' 'node-cssom' 'python-storm' 'libhibernate-commons-annotations-java' 'libghc-system-fileio-dev' 'libghc-hxt-xpath-prof' 'libconfig-scoped-perl' 'libcomedi0' 'libgnuradio-core3.6.1' 'libdballe5' 'fluxbox' 'python-egenix-mxbeebase' 'erlang-base-hipe' 'libghc6-unixutils-dev' 'libghc6-hoauth-dev' 'libawn-dev' 'xserver-xorg-video-radeon-lts-quantal' 'xosview' 'ttf-unfonts-extra' 'python-pytango' 'ppa-purge' 'openwince-include' 'libxml-writer-simple-perl' 'libxenomai1' 'libright-http-connection-ruby1.8' 'libmp3tag-ruby1.9.1' 'libmixlib-config-ruby1.8' 'libgpp4-doc' 'libghc-monad-par-dev' 'jovie' 'libclutter-gst-dev' 'globus-gram-job-manager-scripts' 'libfakechroot' 'classicmenu-indicator' 'yeahconsole' 'wicd-gtk' 'virtuoso-vad-doc' 'sqliteman' 'sbc-tools' 'python-pygraph' 'smcroute' 'nanoblogger' 'libscilab2-java' 'libsanlock-dev' 'libpam-tmpdir' 'libjna-posix-java-doc' 'libgretl1-dev' 'libghc-postgresql-libpq-doc' 'libghc-cryptohash-doc' 'libdoxia-java-doc' 'globus-rls-server' 'geis-tools' 'ganeti2' 'moovida-plugins-bad' 'octave-statistics' 'doctest' 'debian-history' 'composite-data' 'php-imlib' 'postgresql-common' 'libieee1284-3-dev' 'language-pack-hsb' 'libgl1-mesa-glx-lts-quantal-dbg' 'synapse' 'mobile-atlas-creator' 'libghc-mersenne-random-pure64-doc' 'gpsim-doc' 'ecpg-xc' 'latex-cjk-chinese-arphic-bsmi00lp' 'python-netifaces-dbg' 'icinga' 'eject' 'llvm-2.8-dev' 'libghc6-markov-chain-dev' 'linux-backports-modules-hv-3.2.0-40-generic' 'linux-backports-modules-hv-3.2.0-35-generic' 'mono-2.0-service' 'magictouch' 'libwww-wikipedia-perl' 'libunbound2' 'libofx-dev' 'libmail-milter-perl' 'liblocale-maketext-fuzzy-perl' 'libhawknl-dev' 'libalzabo-perl' 'jnettop' 'infinoted-0.5' 'gnumed-server' 'dragonplayer' 'bcfg2-server' 'squid-langpack' 'python-jinja2-doc' 'gforge-common' 'multipath-tools-dbg' 'libtest-distribution-perl' 'libkdesu5' 'libxrandr2' 'firebird2.1-common-doc' 'torus-trooper' 'rivet-user-manual' 'r-cran-sandwich' 'pps-tools' 'postgrey' 'pocketsphinx-hmm-en-tidigits' 'php5-librdf' 'node-eyes' 'libglobus-gsi-sysconfig-dev' 'python-pyside.qtgui' 'libsvga1-dev' 'xmms2-icon' 'eclipse-mylyn-tasks-bugzilla' 'ctn-dev' 'lptools' 'aplus-fsf-dev' 'uuidcdef' 'liblightdm-gobject-1-dev' 'libgl1-mesa-dri-experimental' 'language-pack-kde-fil-base' 'libfarstream-0.1-0' 'libmotif4' 'php-horde-service-weather' 'strongswan-nm' 'libsary-dev' 'libfelix-shell-java-doc' 'libdebug-client-perl' 'libao-ruby' 'childsplay-alphabet-sounds-it' 'banshee-extension-foldersync' 'gnome-icon-theme-yasis' 'php-gettext' 'texlive-lang-vietnamese' 'libxapian22-dbg' 'libdb5.3-java-dev' 'libboost-filesystem1.49.0' 'gir1.2-packagekitglib-1.0' 'dovecot-common' 'graphicsmagick-imagemagick-compat' 'xmoto' 'tesseract-ocr-bel' 'ruby-contest' 'python3-mpi4py-dbg' 'python-slides' 'python-application' 'wxsqlite3-doc' 'libmoosex-types-iso8601-perl' 'libhd-dev' 'libgv-lua' 'haskell-pcre-light-doc' 'libghc-attoparsec-conduit-prof' 'libcommons-csv-java' 'hunspell-de-de-frami' 'hunspell-de-at-frami' 'golly' 'fcitx-table-tamil-remington' 'enscribe' 'codeblocks-dbg' 'ruby-mecab' 'ubuntuone-dev-tools' 'libnet-http-perl' 'libgimp2.0-doc' 'tex-common' 'xfonts-cronyx-koi8u-misc' 'tomcat6-admin' 'tcl-trf' 'volview' 'mathpartir' 'libright-aws-ruby' 'libregexp-debugger-perl' 'libopendbx1-pgsql' 'libtrilead-ssh2-java' 'libmthca-dev' 'libjas-java' 'libmath-gradient-perl' 'libcdio-utils' 'libc-client2007e-dev' 'jscribble' 'jlint-doc' 'hdf4-tools' 'dbench' 'cbios' 'testng-doc' 'libjack-dev' 'libcdb-dev' 'liboauth0' 'debiandoc-sgml-doc' 'libghc6-text-prof' 'libghc6-src-exts-dev' 'libbamf3-0' 'wesnoth-1.10-dw' 'veusz' 'tesseract-ocr-ben' 'swi-prolog-nox' 'scmail' 'php-horde-service-twitter' 'libmagic-ocaml' 'libjs-traverse' 'libghc-threads-dev' 'libghc-chell-doc' 'libgecode-doc' 'libdevel-profile-perl' 'libdatetime-format-sqlite-perl' 'libapache2-mod-geoip' 'jclicmoodle' 'quodlibet' 'dhcpcd-dbus' 'apparix' 'linux-image-3.2.0-37-generic-pae' 'rrdcollect' 'rabbitvcs-gedit' 'python3-ipaddr' 'python-reverend' 'python-presage' 'portsentry' 'octave-time' 'linux-image-lowlatency-pae' 'libserial-doc' 'libroot-hist-spectrum5.34' 'libnes1' 'libghc-quickcheck1-dev' 'libghc-hscurses-dev' 'libghc-dataenc-dev' 'libfuture-perl' 'libcalendar-ocaml-dev' 'libbeansbinding-java' 'gstreamer0.10-pocketsphinx' 'price.app' 'freevo-lirc' 'libjs-jquery-form' 'jmol' 'language-pack-gv-base' 'language-pack-gnome-aa' 'erlang-manpages' 'libbamf3-1' 'gcc-4.6-multilib-arm-linux-gnueabi' 'sun-javadb-client' 'z80asm' 'xmds-doc' 'tcl-vfs' 'r-cran-inline' 'python-grib' 'pdftoipe' 'openexr-viewers' 'libmgl-dev' 'libidn11-java' 'libghc-xhtml-dev' 'kde-workspace-data' 'convlit' 'sushi-plugins' 'dnshistory' 'liblangtag-common' 'libpathplan4' 'scsitools' 'liblaunchpad-integration-3.0-1' 'lmbench-doc' 'sushi' 'pam-pkcs11-dbg' 'openvas-server-dev' 'mon-contrib' 'liboggz2-dev' 'libgnadeodbc2-dev' 'libghc-persistent-postgresql-dev' 'libgdl-3-dbg' 'libdee-qt5-3' 'kiki' 'libqtscript4-network' 'awn-applet-mail' 'linux-image-3.5.0-23-generic' 'linux-image-3.5.0-18-generic' 'simon-doc' 'pingus-data' 'pidgin-nateon' 'petri-foo' 'perlkde-dbg' 'sqlite-doc' 'libmaven-compiler-plugin-java' 'libghc-recaptcha-prof' 'libbfb0-dev' 'gnujump-data' 'glom-utils' 'libestools2.1' 'childsplay-alphabet-sounds-nb' 'backstep' 'kile' 'upower-doc' 'swift' 'libstonithd1-dev' 'language-pack-ug-base' 'language-pack-tl-base' 'ruby1.9.1' 'language-pack-sq-base' 'libmrpt-vision0.9' 'libgda-4.0-dev' 'libima-dbi-contextual-perl' 'gambas2-gb-gtk' 'sapgui-package' 'zpspell' 'r-cran-plotrix' 'pdb2pqr-doc' 'octave-image' 'maliit-keyboard' 'lighttpd-mod-trigger-b4-dl' 'librime-data-jyutping' 'libpam-sshauth' 'liblcas0' 'libdatetime-format-pg-perl' 'jfbterm' 'globus-gass-cache-dbg' 'polyglot' 'qtdeclarative5-friends-plugin' 'cl-uffi' 'cadaver' 'barrydesktop' 'python-fuse' 'kdelibs5-plugins' 'libgtk-vnc-2.0-dev' 'libesmtp6' 'tao-ftrtevent' 'libghc6-harp-dev' 'libtriangle-1.6' 'xcp-fe' 'webgui' 'ruby1.9.3' 'rcs-latex' 'python3-feedparser' 'liquidsoap-plugin-gd' 'libwww-bugzilla-perl' 'librdsserver-dev' 'libnfo1' 'libjsyntaxpane-java' 'libjs-modernizr' 'libjexcelapi-java' 'libghc-pool-conduit-prof' 'liberubis-ruby1.8' 'libconfig-jfdi-perl' 'libcamlimages-ocaml-dev' 'kmess' 'ipcheck' 'instead-data' 'gambas3-gb-db' 'libfile-flock-perl' 'libnifti2' 'coinor-libclp0-dbg' 'libc-icap-mod-urlcheck' 'apt-offline-gui' 'python-gevent-doc' 'libxcb-ewmh1-dev' 'libtest-pod-perl' 'libsecret-common' 'python2.7-dbg' 'libnet1' 'language-pack-gnome-af' 'ivy-doc' 'freerdp-x11' 'fonts-tlwg-loma' 'lacheck' 'xfonts-cronyx-cp1251-misc' 'wicd-kde' 'xfce4-mixer' 'python-schooltool.cando' 'python-modestmaps' 'pyro-gui' 'libpostgresql-ocaml' 'libclass-dbi-plugin-type-perl' 'imagination' 'libsysadm-install-perl' 'libofetion1' 'gbgoffice' 'python-urllib3' 'libqt4-script-dbg' 'libnss3-1d' 'gambas2-gb-gui' 'atari800' 'xgalaga' 'virt-top' 'silicon-theme' 'science-linguistics' 'python-pyme-doc' 'pycocuma' 'libpion-net-dev' 'libmonitoring-livestatus-class-perl' 'libghc-pandoc-types-prof' 'libfgetdata2' 'lib64gfortran3-dbg-powerpc-cross' 'g15daemon' 'frame-tools' 'libetpan15' 'python-twisted-bin' 'python-pylibacl-dbg' 'libmono-system-web-mvc2.0-cil' 'libtiff5-dev' 'libcurl3-nss' 'ttf-kacst' 'db5.1-util' 'libmumps-ptscotch-4.9.2' 'beid-tools' 'open-axiom-graphics-data' 'lua-posix-dev' 'liblua5.1-oocairo-dev' 'libint-dev' 'libghc-tokyocabinet-dev' 'libghc-optparse-applicative-doc' 'libdataobjects-postgres-ruby' 'kde-workspace-bin' 'hime-qt4-immodule' 'libcommons-jxpath-java' 'fonts-kouzan-mouhitsu' 'e2ps' 'abinit-doc' 'uno-libs3-dbg' 'libxtst-dev' 'ibus-table-yong' 'libmudflap0-4.7-dev' 'piwigo' 'libghc6-polyparse-dev' 'libghc6-csv-doc' 'xserver-xorg-input-synaptics-dev-lts-quantal' 'tovidgui' 'timidity-el' 'python-commandnotfound' 'libtest-www-mechanize-cgiapp-perl' 'libnhgri-blastall-perl' 'libghc-unix-compat-prof' 'libghc-strict-prof' 'libghc-base-unicode-symbols-prof' 'libghc-algebra-doc' 'libchamplain-doc' 'heimdall-flash' 'ubuntu-edu-tertiary' 'postgresql-8.4' 'python-acoustid' 'vim-gtk' 'pulseaudio-utils-dbg' 'libmono-wcf3.0-cil' 'libdmapsharing-3.0-dev' 'language-pack-gnome-be' 'gstreamer0.10-tools' 'gir1.2-totem-plparser-1.0' 'libterm-size-perl' 'torrus-apache2' 'tesseract-ocr-cat' 'python-gluon' 'powerdebug' 'node-eio' 'monajat-screenlet' 'libterm-visual-perl' 'libstore-opaque-perl' 'libapache2-mod-apreq2' 'libqapt2-runtime' 'frontaccounting' 'fcitx-sunpinyin' 'fai-server' 'lcov' 'claws-mail-clamd-plugin' 'libjs-jquery-cookie' 'amule-adunanza-daemon' 'language-pack-gnome-ca' 'appmenu-gtk3' 'qtcreator-plugin-ubuntu' 'phoneui-apps' 'mplinuxman' 'mach' 'liboscpack-dbg' 'libtnt-dev' 'libhdate-perl' 'ftp.app' 'libnm-gtk-dev' 'language-pack-gnome-bg' 'librsvg2-common' 'libavahi-core7' 'libxjavadoc-java' 'libmenu-cache1' 'tinymux' 'libacovea-dev' 'saods9-data' 'qasmixer' 'pentium-builder' 'maria' 'lua-rex-tre-dev' 'ruby-svn' 'librest-application-perl' 'libghc-hxt-xslt-dev' 'libflickcurl-dev' 'freetable' 'libfreenect-doc' 'freecad' 'ruby-rspec-core' 'ntfs-3g' 'maas' 'libxorg-gtest-data' 'libaa1-dev' 'language-pack-gnome-am' 'fontforge-extras' 'chkrootkit' 'libcelt-dev' 'sudoku' 'python-mpltoolkits.basemap-data' 'python-pyproj' 'php-xml-dtd' 'mpdcron' 'libmenu-cache2' 'ruby-exif' 'libmudflap0-dbg-armel-cross' 'gaiksaurus' 'frogr-data' 'freemedforms-emr-doc-en' 'childsplay-alphabet-sounds-nl' 'asclock-themes' 'amarok-help-de' 'libglademm-2.4-1c2a' 'language-pack-kde-zh-hans-base' 'language-pack-gnome-an' 'python-gtk2' 'lsb-release' 'squirrelmail-secure-login' 'sockstat' 'ruby-unf' 'root-plugin-gui-qt' 'plasma-widget-runcommand' 'madlib-doc' 'libsparskit2.0' 'libsdl-ruby1.9.1' 'libqt5xmlpatterns5-dev' 'ogre-1.8-doc' 'libghc-gstreamer-dev' 'libhtml-tokeparser-simple-perl' 'libregistry0' 'xscreensaver-data' 'lincity' 'jenkins-common' 'gentoo' 'php-services-json' 'bwm-ng' 'bluez-tools' 'aephea' 'python-kombu-doc' 'libmono-webbrowser2.0-cil' 'liblvm2-dev' 'heartbeat-dev' 'gnupg-doc' 'dpatch' 'dconf-tools' 'libtao-qtresource-2.0.1' 'smuxi-frontend-gnome-irc' 'scim-clutter-immodule' 'qlandkartegt-garmin' 'python-z3c.template' 'python-grip' 'libtest-expect-perl' 'libsnappy1.0.3-java' 'libgda-5.0-common' 'libextlib-ruby1.9.1' 'libclass-dbi-plugin-pager-perl' 'king' 'jquery-jplayer-bluemonday' 'guitarix' 'gauche' 'gammaray-dbg' 'php-geshi' 'libcppcutter-dev' 'coinor-libosi0' 'libpulse-mainloop-glib0-dbg' 'libnl-cli-3-200' 'language-pack-gnome-da' 'indicator-printers' 'freeglut3' 'nailgun' 'libwavefront-standalone3.0-dev' 'libtrang-java' 'libmokoui2-vala' 'liblog-dispatch-array-perl' 'libghc-uri-dev' 'libfeedparser-ruby1.8' 'libexodusii5' 'libcrypt-dh-perl' 'libboost-graph-parallel1.53-dev' 'libboost-graph-parallel1.48-dev' 'libasis2010-dev' 'libarray-compare-perl' 'libguard-perl' 'kde-workspace-dbg' 'libcolord-gtk1' 'libdieharder3' 'libgjs0c' 'xfonts-cyrillic' 'source-highlight' 'indicator-session-gtk2' 'utouch-geis-tools' 'susv2' 'zinnia-utils' 'zephyr-server-krb5' 'xfce4-clipman-plugin' 'ulogd-pgsql' 'scamper' 'qttools5-private-dev' 'pxlib-dev' 'phasex-dbg' 'lua-dbi-postgresql' 'libxml-validate-perl' 'libtap-formatter-html-perl' 'libsource-highlight-qt4-3' 'libphp-cloudfusion' 'liboggplay1-dev' 'libtest-longstring-perl' 'libghc-hjsmin-prof' 'libcheck-isa-perl' 'lfsck' 'kde-telepathy-call-ui-dbg' 'ulogd' 'telnet-ssl' 'csladspa' 'airport-utils' 'sgmltools-lite' 'ocfs2-tools-dev' 'libgoocanvas3' 'libexempi-dev' 'language-pack-gnome-ar' 'john' 'friends-dispatcher' 'libpload-dev' 'libghc6-html-doc' 'liblaunchpad-integration-dev' 'susv3' 'xbattbar' 'mediawiki-extensions-math' 'libsyntax-keyword-gather-perl' 'libpacketdump3-dev' 'libplexus-interpolation-java' 'libnova-0.14-0' 'cuneiform' 'granite-demo' 'fgfs-scenery-base' 'ttf-adf-switzera' 'python3-polib' 'liblircclient-dev' 'language-pack-gnome-bn' 'language-pack-gnome-as' 'libsvg-ruby1.8' 'liballegro4.2' 'linux-backports-modules-cw-3.6-3.2.0-38-virtual' 'worker-data' 'qemu-slof' 'primrose' 'libsage2' 'libsvnkit-java' 'libdancer-session-memcached-perl' 'libbognor-regis-dev' 'kmymoney' 'ibus-cangjie' 'gpxviewer' 'genparse' 'geneweb' 'canto' 'aspell-ar-large' 'rubygems-doc' 'libpoppler-cpp-dev' 'libclass-singleton-perl' 'language-pack-gnome-de' 'language-pack-gnome-bo' 'evolution-couchdb' 'webmagick' 'sepia' 'poppassd' 'plt-scheme' 'libmrpt-vision1.0' 'libghc-sfml-audio-doc' 'libghc-monad-logger-prof' 'libghc-math-functions-dev' 'gnunet-gtk-dbg' 'libpacklib1-dev' 'blacs-pvm-test' 'libsuil-0-0' 'language-pack-kde-br-base' 'graphviz-doc' 'gpgsm' 'keyutils' 'zatacka' 'tclcsound' 'ruby-rails-i18n' 'qdbm-util' 'plasma-widget-searchmoid' 'openscad-dbg' 'mudlet' 'libsunflow-java-doc' 'libj2ssh-java-doc' 'libghc-system-fileio-doc' 'libghc-hsql-postgresql-dev' 'libghc-hopenpgp-prof' 'tuxmath' 'geoclue-gpsd' 'floatbg' 'python-optcomplete' 'libkernlib1-dev' 'liballegro4.4' 'x-ttcidfont-conf' 'language-pack-gnome-ne-base' 'language-pack-gnome-lo-base' 'libghc6-unixutils-doc' 'libghc6-hoauth-doc' 'libawn-doc' 'gobjc++-4.6-arm-linux-gnueabihf' 'tcos-tftp-dhcp' 'ruby-hike' 'python-zope.broken' 'mpdtoys' 'libtime-stopwatch-perl' 'libjs-jquery-ui-theme-dot-luv' 'libghc-monad-par-doc' 'libgdf-dev' 'libdb4.3-ruby1.8' 'python-keybinder' 'fte-terminal' 'freemedforms-emr-doc-fr' 'freedink' 'dvi2ps-fontdata-n2a' 'dpkg-www' 'buxon' 'biber' 'python3-problem-report' 'python-pygresql-dbg' 'libmail-box-perl' 'libclutter-gst-doc' 'language-pack-gnome-br' 'libfarstream-0.2-2' 'libjboss-buildmagic-java' 'libghc6-pango-dev' 'gambas2-gb-sdl-sound' 'xserver-xorg-input-joystick-dev-lts-quantal' 'spotlighter' 'radare-common' 'python-zope.app.content' 'pinpoint' 'php5-ming' 'libsqljet-java' 'libio-prompter-perl' 'libflickr-api-perl' 'libdeclarative-feedback' 'libcurses-ocaml' 'libsfml-network1.6' 'lcrt' 'kino' 'php-file' 'clojure1.2' 'weblint-perl' 'akonadi-backend-postgresql' 'libsndfile1' 'libcppunit-subunit-dev' 'language-pack-kde-mr-base' 'language-pack-gnome-bs' 'libvala-0.12-0' 'clojure1.3' 'reniced' 'opendrim-lmp-sensors' 'libzookeeper-java' 'libsmltk0' 'libpostscriptbarcode' 'libmpich-mpd1.0gf' 'libghc-parsec2-prof' 'libxmltv-perl' 'libnet-sslglue-perl' 'drupal6-mod-ldap-integration' 'cdcover' 'aurora' 'libphp-phpmailer' 'catdoc' 'linux-firmware' 'language-pack-gnome-wo-base' 'llvm-2.8-doc' 'libghc6-markov-chain-doc' 'fuzzyocr3' 'libcloog-isl3' 'vtkdata' 'passenger-doc' 'libpango1-ruby1.8' 'libofx-doc' 'libnfs1' 'libmixlib-authentication-ruby1.8' 'libhugetlbfs-dev' 'libarpack++2c2a' 'libace-ssl-dev' 'kdepimlibs-kio-plugins' 'hlbrw' 'librsskit0' 'grabc' 'freecdb' 'feel++-apps' 'libgnomeprintui2.2-0' 'clojure1.4' 'libsys-hostname-long-perl' 'libgdk-pixbuf2.0-0-dbg' 'language-pack-gnome-fa' 'language-pack-gnome-az' 'gnupg2' 'libllvm-2.8-ocaml-dev' 'xserver-common-lts-quantal' 'tesseract-ocr-ara' 'musescore-soundfont-gm' 'libzorpll3.9-1-dbg' 'libtimblserver2-dev' 'libglobus-gsi-sysconfig-doc' 'libghc-memotrie-prof' 'libghc-asn1-data-dev' 'libconfig-json-perl' 'fonts-yozvox-yozfont-antique' 'dict-freedict-afr-deu' 'dicom3tools' 'ctn-doc' 'crossbuild-essential-powerpc' 'libcloog-isl4' 'aplus-fsf-doc' 'pidentd' 'texlive-doc-cs+sk' 'liblightdm-gobject-1-doc' 'libnumber-compare-perl' 'amarok-help-en' 'libbamf0' 'sshguard' 'sphinx3-hmm-en-rm1' 'ruby-grib-dbg' 'python-corepywrap-dbg' 'pandora' 'ocamlduce-base' 'libow-perl' 'libmp4-info-perl' 'libitpp7-dbg' 'libghc-largeword-prof' 'libghc-gio-dev' 'libencode-hanextra-perl' 'libb-perlreq-perl' 'libmoosex-types-path-class-perl' 'libapache2-mod-ldap-userdir' 'libgcc1-powerpc-cross' 'isns' 'ifile' 'codeblocks-dev' 'ncbi-tools-x11' 'texlive-pictures' 'libsmokeqtxmlpatterns4-3' 'libmx4j-java' 'libwww-google-auth-clientlogin-perl' 'xfonts-nexus' 'unbound-host' 'tty-clock' 'lxsession-dbg' 'liquidsoap-plugin-gavl' 'libhd-doc' 'libcipux-rpc-client-perl' 'libtemplate-plugin-latex-perl' 'kmousetool' 'jsdoc-toolkit' 'okular' 'gccgo-4.7-powerpc-linux-gnu' 'libjackson-json-java' 'libsnmp-session-perl' 'libglobus-gass-transfer2' 'liblist-allutils-perl' 'abiword-dbg' 'thunderbird-locale-pt-br' 'shogun-elwms-static' 'language-pack-gnome-cs' 'libaspell15' 'libvtkgdcm2.0' 'libghc6-vty-dev' 'libghc6-hjavascript-prof' 'libnunit2.5-cil' 'linux-backports-modules-cw-3.5-3.2.0-37-virtual' 'tesseract-ocr-dan' 'tesseract-ocr-ces' 'qemuctl' 'libsvnqt-dev' 'libelementary-bin' 'libdatetime-format-db2-perl' 'libcli-dev' 'libarccommon1' 'ksnakeduel' 'gnubg' 'geany-plugin-macro' 'libpetal-utils-perl' 'cdcat' 'libxmmsclient-glib1' 'a7xpg' 'libipmiconsole2' 'ocaml-compiler-libs' 'libghc6-src-exts-doc' 'python-opster' 'python-albatross-common' 'mcollective-plugins-stomputil' 'libstdc++6-4.5-dbg-armel-cross' 'seed-doc' 'libjson-ruby' 'libghc-threads-doc' 'libdatetime-astro-sunrise-perl' 'libcommons-lang3-java' 'libapq3.2.0-dbg' 'libapache2-mod-authn-yubikey' 'libspring-jms-java' 'libortp8' 'ruby-classifier' 'hepmc-user-manual' 'globus-usage-dbg' 'fso-usaged-dbg' 'fonts-dancingscript' 'libode1' 'bisonc++' 'libarccommon2' 'libboost-program-options-dev' 'language-pack-gnome-ga' 'libghc6-unixutils-prof' 'libsublime5' 'guile-db' 'ruby-vmc' 'science-tasks' 'python-mrjob' 'plasma-widget-drop2ftp' 'oss4-dkms' 'rmail' 'libvtkgdcm2.2' 'libmudflap0-armel-cross' 'libghc-quickcheck1-doc' 'libghc-hscurses-doc' 'libghc-dataenc-doc' 'libcalendar-ocaml-doc' 'lemonldap-ng-doc' 'libincidenceeditorsng4-mobile' 'childsplay-alphabet-sounds-pt' 'python-jinja2' 'optipng' 'postgresql-9.1' 'gnunet' 'language-pack-gnome-el' 'language-pack-gnome-cv' 'bind9-doc' 'kernel-patch-wrr' 'libsocl-contrib-1.0' 'welcome2l' 'snd-gtk-pulse' 'scid-data' 'r-cran-runit' 'libghc-executable-path-prof' 'libghc-xhtml-doc' 'libdune-common-2.2.0' 'libdatetime-format-dbi-perl' 'libgdl-3-dev' 'libsublime6' 'g15mpd' 'dict-freedict-tur-deu' 'grace' 'amarok-help-es' 'dmidecode' 'libghc6-deepseq-dev' 'texstudio-dbg' 'qemubuilder' 'mitools' 'libusb-ruby1.8' 'pgplot5' 'libounit-ocaml-dev' 'liboop-dbg' 'libghc-persistent-postgresql-doc' 'libclassworlds-java' 'plasma-active-default-settings' 'libtext-wikicreole-perl' 'freewnn-common' 'libefreet1' 'dico-dev' 'amarok-help-et' 'ubuntu-wallpapers-raring' 'language-pack-gnome-gd' 'language-pack-gnome-fi' 'language-pack-gnome-en' 'libghc6-hunit-dev' 'pdfedit' 'linux-backports-modules-cw-3.6-3.2.0-40-generic' 'linux-backports-modules-cw-3.6-3.2.0-35-generic' 'iriverter' 'zita-resampler' 'yhsm-yubikey-ksm' 'wmaloader' 'shake' 'python-passfd' 'projectm-pulseaudio' 'libntrack-qt4-dev' 'libmp3splt0-ogg' 'ktoblzcheck' 'libkateinterfaces4' 'julius' 'pfb2t1c2pfb' 'bucardo' 'python-paste' 'libbusiness-isbn-perl' 'language-pack-mai' 'language-pack-gnome-eo' 'language-pack-gnome-cy' 'ubuntu-orchestra-common' 'libgda-4.0-doc' 'libkvutils4' 'synthv1' 'qt3d5-private-dev' 'python-sparse-examples' 'python-sourcecodegen' 'python-pipeline' 'pfstmo' 'mkvtoolnix-gui' 'ruby-usb' 'libpostscript-simple-perl' 'lua-wsapi-fcgi-dev' 'libjs-jquery-ui-theme-le-frog' 'jwchat' 'libgcc1-dbg-arm64-cross' 'fonts-kalapi' 'dns323-firmware-tools' 'modemmanager' 'python2.7-dev' 'libalgorithm-c3-perl' 'language-pack-gnome-ha' 'hfsplus' 'docutils-common' 'vrflash' 'libghc6-syb-with-class-dev' 'libghc6-harp-doc' 'wormux' 'slapos-node-unofficial' 'python-pyamf-dbg' 'python-fudge' 'ptscotch-dbg' 'psi-plus-sounds' 'user-mode-linux' 'node-jake' 'mpb-doc' 'liece' 'libmatroska5' 'liblingua-pt-stemmer-perl' 'libcamlimages-ocaml-doc' 'libamazonec2-ruby' 'gnome-gmail-notifier' 'sylseg-sk' 'ttf-sil-doulos' 'expeyes-doc-en' 'childsplay-alphabet-sounds-ro' 'liblistaller-glib0' 'amarok-help-fr' 'xserver-xorg-video-radeon' 'totem-mozilla' 'thunderbird-gnome-support-dbg' 'urlview' 'libreoffice-style-tango' 'libmono-system-identitymodel-selectors4.0-cil' 'language-pack-gnome-dv' 'dovecot-ldap' 'science-astronomy' 'ruby-bcrypt' 'mswatch' 'pixelmed-java' 'libmerb-assets-ruby1.8' 'libghc-darcs-dev' 'libfilesystem-ruby' 'libelementary-dbg' 'libdataobjects-sqlite3-ruby1.8' 'libchart-gnuplot-perl' 'gozerbot-plugins' 'geogebra-gnome' 'python-galleryremote' 'fcitx-table-wubi' 'e2wm' 'oftc-hybrid' 'ada-reference-manual-html' 'pinentry-qt4' 'libow-php5' 'udhcpc' 'libboost-thread1.49-dev' 'libgupnp-igd-1.0-4' 'bin86' 'libgradle-osgi-java' 'python-venusian' 'python-deap-doc' 'proofgeneral-coq' 'openafs-modules-source' 'mago' 'xarchiver' 'libwww-mechanize-ruby' 'libroot-graf3d-eve-dev' 'libpion-net-doc' 'libghc-conduit-dev' 'libopencore-amrwb0' 'gedit-r-plugin' 'freefem++' 'drizzle-plugin-simple-user-policy' 'udhcpd' 'childsplay-alphabet-sounds-sl' 'archmbox' 'libqscintilla2-translations' 'language-pack-gnome-es' 'libwpd-0.9-9' 'gir1.2-accounts-1.0' 'language-pack-fy-base' 'devhelp' 'libghc6-utility-ht-prof' 'k9copy-dbg' 'ebox-squid' 'valac-0.14-dbg' 'openmsx-catapult' 'luciole' 'ruby-tzinfo' 'libsimple-http-java' 'libquantum-entanglement-perl' 'libpassword-ruby' 'libmkv0' 'liblua5.1-sql-postgres-2' 'libio-all-lwp-perl' 'libghc-tokyocabinet-doc' 'libghc-ghc-paths-dev' 'krecipes-data' 'fwknop-client' 'sqwebmail' 'check-mk-agent-logwatch' 'libnet-irc-perl' 'libxtst-doc' 'monodoc-webkit-manual' 'pcscd' 'language-pack-gnome-he' 'language-pack-gnome-fo' 'language-pack-gnome-et' 'libghc6-polyparse-doc' 'libghc6-gtk-dev' 'libnode-step' 'cytadela-data' 'xshisen' 'weather-util-data' 'ruby-graphviz' 'python3-postgresql' 'php-horde-util' 'open-axiom-databases' 'live-debconfig' 'libxine2-all-plugins' 'libmikmatch-ocaml' 'libmath-vector-real-perl' 'libghc-stm-prof' 'libmsn0.3' 'glmemperf-data' 'eclipse-emf-examples' 'dlz-ldap-enum' 'clinica-plugins' 'node-jsconfig' 'amanda-client' 'texlive-lang-czechslovak' 'python3-pyqt4.phonon-dbg' 'libboost-iostreams1.49-dev' 'language-pack-gnome-ia' 'language-pack-gnome-eu' 'language-pack-gnome-dz' 'libmng1' 'libunwind7' 'gnunet-qt' 'virtuoso-opensource-6.1-bin' 'python-zope.i18n' 'python-rackspace-cloudfiles' 'prayer-templates' 'nethack-lisp' 'liquidsoap-plugin-lo' 'liboscpack-dev' 'libmethod-alias-perl' 'gnat-mingw-w64' 'libaspectj-java-doc' 'language-pack-so-base' 'language-pack-gnome-gl' 'kerneloops-daemon' 'djplay' 'picon-users' 'python3-zope.testrunner' 'python-flexmock' 'nautilus-gtkhash' 'uim-latin' 'librdf-acl-perl' 'liblua5.1-copas-dev' 'libtie-refhash-weak-perl' 'libimage-librsvg-perl' 'libghc-shakespeare-js-dev' 'libghc-data-inttrie-prof' 'libcml-smlnj' 'libio-capture-perl' 'liballegro5.0' 'gir1.2-ganv-1.0' 'conspy' 'childsplay-alphabet-sounds-ru' 'xfonts-bitmap-mule' 'python3-dbus.mainloop.qt' 'libunwind8' 'libdconf-dbus-1-dbg' 'language-pack-gnome-fr' 'texpower-manual' 'xmms2-plugin-html' 'unity-scope-sumo' 'tesseract-ocr-chr' 'python3-pyside.qtwebkit' 'monav-preprocessor' 'libroot-net-bonjour5.34' 'libjs-mathjax-doc' 'libitext-java-gcj' 'libghc-hxt-xslt-doc' 'libghc-hledger-lib-dev' 'libdataquay0' 'libdevil1c2' 'xscreensaver-data-extra' 'kdevelop-php-dbg' 'git-flow' 'libopenthreads14' 'fcitx-table-amharic' 'libswt-gnome-gtk-3-jni' 'python-pastedeploy' 'language-pack-gnome-id' 'language-pack-gnome-hi' 'python-cairo' 'w3m-el' 'gobjc-4.6-arm-linux-gnueabihf' 'xserver-xorg-input-mouse-lts-quantal' 'linux-backports-modules-cw-3.5-3.2.0-34-generic' 'wesnoth-1.10-nr' 'vde2-cryptcab' 'rsstail' 'rivet' 'rakudo' 'plasma-widget-fortunoid' 'tomahawk-dbg' 'libgoogle-glog-dev' 'libghc-glut-dev' 'libghc-byteorder-dev' 'libgeo-google-mapobject-perl' 'libflorist2011-dev' 'libatombus-perl' 'jigzo-data' 'gstreamer1.0-libav-dbg' 'libnjb5' 'gcipher' 'activiz.net-doc' 'hpijs-ppds' 'nagios-plugins-common' 'rblcheck' 'libgtk2.0-0' 'velvet-example' 'sendxmpp' 'rrootage' 'quixote1-doc' 'python-pyke-doc' 'python-libtiff' 'node-get' 'lwatch' 'libsigx-2.0-dev' 'libohai-ruby' 'liboasis-ocaml' 'libghc-gstreamer-doc' 'gammaray-dev' 'expeyes-doc-fr' 'libconfig-auto-perl' 'cyclist' 'ruby-mixlib-log' 'libnih1' 'libmono-system-management4.0-cil' 'libmono-system2.0-cil' 'language-pack-gnome-ja' 'libghc6-markov-chain-prof' 'ike-qtgui' 'python-elements' 'ovito-doc' 'libsub-prototype-perl' 'libsnmp-ruby' 'librb-inotify-ruby1.8' 'libpgf6-dbg' 'liblttng-ctl0' 'libglobus-xio-dev' 'libglobus-xio-popen-driver-dev' 'libghc-hdbc-odbc-dev' 'kde-workspace-dev' 'libthepeg-dev' 'python-libtorrent' 'libxatracker-dev' 'libprotobuf-dev' 'libenchant-dev' 'language-pack-gnome-ig' 'gir1.2-accountplugin-1.0' 'python-httplib2' 'liblrm2' 'ogre-samples-dbg' 'libghc6-strict-concurrency-dev' 'unity-2d-places' 'v4l2loopback-utils' 'qmpdclient' 'libxmlada-doc' 'libsyslog-ocaml' 'libpam-slurm' 'libscalapack-mpi-dev' 'libghc-uri-doc' 'libghc-ghc-syb-utils-dev' 'libxml-feed-perl' 'guile-gnome2-gnome-ui' 'mimedefang' 'libgnuradio-vocoder3.6.1' 'calligrawords-data' 'libxdamage1-dbg' 'libreoffice-gtk' 'libcogl-pango12' 'gir1.2-peas-1.0' 'db5.1-doc' 'stardict-plugin' 'ruby-rails-2.3' 'r-cran-spatial' 'python-pecan' 'libtaoframework-openal1.1-cil' 'libstemmer0d-dbg' 'liblwt-glib-ocaml-dev' 'libghc-keys-prof' 'libuniversal-moniker-perl' 'konversation-data' 'libgnuradio-video-sdl3.6.1' 'gettext-kde' 'funnyboat' 'libpion-common-4.0' 'libgetopt-long-descriptive-perl' 'dpsyco-lib' 'childsplay-alphabet-sounds-sv' 'subversion-tools' 'pdksh' 'amd64-microcode' 'libprocps0' 'libdri2-dbg' 'make' 'libghc6-pcre-light-dev' 'rocksndiamonds' 'ogmrip-profiles' 'proofgeneral-doc' 'photoprint' 'petri-foo-dbg' 'logcentral' 'libvala-0.20-0-dbg' 'libopen4-ruby1.8' 'libmsgpack-ruby1.8' 'libcsfml-system1.6' 'kuiviewer' 'edac-utils' 'caret' 'anyremote-data' 'xserver-xorg-video-intel-dbg' 'linuxdoc-tools-latex' 'libxalan2-java-doc' 'libdb5.3-java-gcj' 'libanthy-dev' 'language-pack-gnome-fy' 'libhangul1' 'linux-backports-modules-cw-3.5-3.2.0-37-generic-pae' 'libglapi-mesa-lts-quantal-dbg' 'usermode' 'sbackup-gtk' 'proftpd-mod-msg' 'netgen-doc' 'nbibtex' 'mucous' 'mediatomb-common' 'liblhasa-dev' 'libghc-hs-bibutils-dev' 'libbind-confparser-perl' 'libauthen-krb5-simple-perl' 'kmag' 'gstreamer0.10-hplugins' 'gnunet-gtk-dev' 'libfile-nfslock-perl' 'cutter-gtk-support' 'language-pack-gnome-ka' 'language-pack-gnome-gu' 'openoffice.org-starter-guide' 'libghc6-unix-compat-dev' 'root-plugin-gui-sessionviewer' 'pylucene' 'mosquitto' 'libxml-xupdate-libxml-perl' 'libmath-calculus-differentiate-perl' 'libkdeui4-perl' 'haskell-src-exts-doc' 'libghc-math-functions-doc' 'libcollection2' 'libactivemq-protobuf-java-doc' 'kamailio-berkeley-bin' 'rxvt-unicode-256color' 'liblwp-protocol-socks-perl' 'dvb-apps' 'libclaw-configuration-file1' 'auto-multiple-choice-doc' 'apt-move' 'libafpclient0' 'swift-container' 'python3-crypto-dbg' 'language-pack-gnome-gv' 'grads' 'libctemplate0' 'trac-icalviewplugin' 'maki' 'libghc-hsql-postgresql-doc' 'libpantomime1.2' 'syslinux-themes-debian' 'empire-hub' 'libnusoap-php' 'rhythmbox-plugin-magnatune' 'libreoffice-wiki-publisher' 'libdri2-1' 'language-pack-gnome-hr' 'libmatio0-dbg' 'gambas2-gb-db-postgresql' 'linux-image-3.2.0-31-virtual' 'linux-image-3.2.0-26-virtual' 'libcuneiform-dev' 'tcl8.6-dev' 'storebackup' 'python-gamera.toolkits.greekocr' 'octave-bim' 'libtest-command-perl' 'serdi' 'libobrowser-ocaml-dev' 'libkohana3.1-mod-database-php' 'libxrd-parser-perl' 'ruby-gtksourceview2' 'libglm-dev' 'libaudio-musepack-perl' 'gtkguitune' 'gobjc++-4.5-arm-linux-gnueabihf' 'dlume' 'cl-salza' 'amarok-help-it' 'nut-server' 'netcat-openbsd' 'pulseaudio-esound-compat' 'libkutils4' 'libghc6-pango-doc' 'indicator-datetime-gtk2' 'libjlapack-java' 'libfame-dev' 'virtuoso-vad-rdfmappers' 'transmission-remote-cli' 'root-plugin-hist-spectrumpainter' 'r-cran-rmysql' 'python3-bitarray' 'python-nlopt' 'pyracerz' 'proxytunnel' 'pbundler' 'libobt0' 'libgnome2-canvas-perl' 'libeigenbase-farrago-java' 'libcrimson-java-doc' 'ldtp' 'libctemplate2' 'kerneltop' 'kate-data' 'itop' 'halevt' 'fotowall' 'dvdbackup' 'colorgcc' 'amide' 'libidn11-dev' 'language-pack-gnome-ht' 'libgdal1-1.7.0' 'language-pack-gnome-la' 'ubuntume-gdm-themes' 'phlipple-data' 'monster-masher' 'logtop' 'libwbxml2-utils' 'libtext-ocaml' 'libtest-corpus-audio-mpd-perl' 'libgdchart-gd2-noxpm-dev' 'libcatalyst-devel-perl' 'libpstoedit0c2a' 'kdetoys-dbg' 'libzita-convolver3' 'gitolite' 'maven2' 'dh-lisp' 'mbmon' 'klogd' 'language-pack-gnome-hu' 'augeas-lenses' 'libjboss-xnio-base-java' 'fusionforge-plugin-projectlabels' 'fusionforge-plugin-extratabs' 'cpp-4.6-arm-linux-gnueabi' 'linux-headers-3.2.0-39-generic' 'tesseract-ocr-deu' 'libtar-dev' 'librg-utils-perl' 'libmodule-install-doap-perl' 'libmbt0-dev' 'libkokyu-dev' 'libglobus-ftp-client-dev' 'libghc-newtype-dev' 'libjboss-j2ee-java' 'python-lhapdf' 'libterm-progressbar-perl' 'ebox-printers' 'cecilia' 'language-pack-gnome-lb' 'language-pack-gnome-am-base' 'kde-baseapps-bin' 'heimdal-dbg' 'gstreamer1.0-x' 'xcircuit' 'upnp-inspector' 'python-freenect' 'python-cubictemp' 'planets' 'phpgacl' 'parser3-mysql' 'nepomuk-core-dbg' 'navi2ch' 'tesseract-ocr-dev' 'libsidl1.4.0-java' 'libphash0-dev' 'liblog4cpp-doc' 'libghc-asn1-data-doc' 'libjs-of-ocaml-dev' 'python-ckanclient' 'bibledit-xiphos' 'libgtkhtml3.14-19' 'browser-plugin-libreoffice' 'libnux-4.0-common' 'ipxe-qemu' 'gnome-system-log' 'mame' 'synce-gnomevfs' 'python3-circuits' 'python-constraint' 'python-jpylyzer' 'libvideo-ivtv-perl' 'libmlt4' 'libmaliit-glib0-dbg' 'libgnomeprintui2.2-common' 'libghc-gio-doc' 'tk-html3' 'libsfstdc++6-4.7-dbg-armhf-cross' 'gnugk' 'libglobus-gss-assist3' 'ccontrol' 'talkd' '389-ds' 'qt5-default' 'openvpn-blacklist' 'language-pack-gnome-is' 'libgsf-1-114' 'example-content' 'libpadre-plugin-xml-perl' 'liblua5.1-wsapi-doc' 'subdownloader' 'rivet-plugins' 'pxsl-tools' 'postgresql-9.1-ip4r' 'mana' 'libopencsg1-dbg' 'ntrack-module-libnl-0' 'libmeep-mpich2-6' 'libmecab-jni' 'libhttp-parser-perl' 'libmlt5' 'kdepim-kresources' 'libofa0' 'claws-mail-themes' 'network-manager-openvpn' 'libtiffxx5' 'ncurses-bin' 'language-pack-gnome-it' 'language-pack-gnome-hy' 'gstreamer0.10-gnonlin-dbg' 'libpolkit-agent-1-0' 'docbook' 'yate-openh323' 'libghc6-vty-doc' 'linux-backports-modules-cw-3.4-3.2.0-36-generic-pae' 'premail' 'python-xpyb' 'python-zope.principalregistry' 'oathtool' 'lottanzb' 'wireshark-common' 'libphp-jabber' 'libghc-primes-prof' 'libghc-data-accessor-mtl-prof' 'libmumps-scotch-dev' 'libdist-zilla-localetextdomain-perl' 'libdata-validate-ip-perl' 'libapq3.2.0-dev' 'mgetty' 'gramps' 'drizzle-plugin-js' 'directvnc' 'courier-authlib-mysql' 'compartment' 'childsplay-alphabet-sounds-en-gb' 'compface' 'libconfig-file-perl' 'libxcb-screensaver0' 'libelf-dev' 'language-pack-gnome-kk' 'zvbi' 'ebox-services' 'qtsmbstatus-client' 'php-horde-stream-filter' 'pathfinder-utils' 'mpdscribble' 'libtheora-ocaml-dev' 'libswiften-dev' 'libssreflect-ocaml' 'libopenraw-dev' 'libjna-posix-java' 'libirc-utils-perl' 'libghc-persistent-dev' 'libcmph-dev' 'libmpeg2-4' 'coinor-libosi0-dbg' 'libreoffice-kde' 'language-pack-kde-pa-base' 'language-pack-gnome-lg' 'language-pack-gnome-kl' 'gimp-dbg' 'libgfortran3-dbg' 'openoffice.org-l10n-af' 'usbprog-gui' 'octave-dbg' 'monodevelop' 'librostlab-blast-doc' 'libonig-dev' 'libgupnp-dlna-2.0-dbg' 'libgnelib-dev' 'libbiojava1.7-java' 'taktuk' 'libjeuclid-core-java' 'gkrellm-ibam' 'scanmem' 'otf-ipaexfont' 'dvhtool' 'courier-authdaemon' 'gnugo' 'ats-lang-anairiats' 'libpangomm-1.4-dbg' 'language-pack-gnome-xh-base' 'language-pack-gnome-km' 'gsfonts' 'bacula-sd-sqlite3-dbg' 'premake' 'norsnet' 'lubuntu-software-center' 'libvecmath-java-doc' 'libsofia-sip-ua0' 'liboop-dev' 'liboauth-php' 'libnet-ssh2-ruby1.8' 'libhtml-entities-numbered-perl' 'libmopac7-1gf' 'libghc-hxt-regex-xmlschema-dev' 'libghc-hsp-prof' 'libgdl-3-doc' 'libcgi-cookie-splitter-perl' 'tcl-vtk' 'spectrum-roms' 'friends-identica' 'language-pack-gnome-li' 'language-pack-gnome-kn' 'libghc6-deepseq-doc' 'drizzle-plugin-mysql-protocol' 'python-vm-builder' 'pypy-lib' 'plasma-runner-kopete' 'liquidsoap-plugin-flac' 'libmnl0' 'libgtkgl2.0-1' 'libfxscintilla19' 'libcxgb3-1-dbg' 'libdigest-jhash-perl' 'libbsearch-ruby' 'kde-baseapps-dbg' 'gprompter-dbg' 'libkxl0' 'forked-daapd' 'didjvu' 'dico-doc' 'adonthell-data' 'language-pack-nan' 'language-pack-gnome-ko' 'libkrosscore4' 'gcj-4.7-base' 'ttf-nanum' 'libghc6-midi-prof' 'libghc6-hunit-doc' 'xfonts-thai-poonlap' 'qsource-highlight' 'libtasn1-6-dbg' 'liblunar-1-dev' 'libjansi-native-java' 'figtoipe' 'libeval0' 'drupal6-mod-pingback' 'asr-manpages' 'apf-client' 'network-manager-kde' 'catdvi' 'libghc6-hscurses-dev' 'warzone2100-data' 'trac-wikiprint' 'sinntp' 'scilab-scimax' 'python-cqpid' 'maude' 'libsmokektexteditor3' 'libjs-jquery-mobile-docs' 'libindigo-java' 'libeb-ruby1.8' 'libclansdl-1.0' 'gnome-extra-icons' 'python2.7-doc' 'libxcb-xprint0-dbg' 'language-pack-gnome-nb' 'language-pack-gnome-mg' 'libghc6-syb-with-class-doc' 'openoffice.org-l10n-ca' 'trimage' 'ruby-polyglot' 'python-django-mailer' 'mm3d' 'libghc-blaze-markup-prof' 'libelementary-dev' 'libcodemodel-java-doc' 'gpe-timesheet' 'defendguin' 'gir1.2-panelapplet-4.0' 'libeigen2-dev' 'libpod-simple-perl' 'libmono-system-net4.0-cil' 'libmono-i18n4.0-all' 'libxkbfile1' 'libbz2-dev' 'file-roller' 'thin-client-manager-gnome' 'libfparser-dev' 'openoffice.org-l10n-bg' 'linux-image-3.2.0-23-generic' 'softhsm-dbg' 'rawstudio' 'netdisco-backend' 'ruby-vte' 'shishi-common' 'librubberband-dev' 'libghc-darcs-doc' 'ink-generator' 'libcrypt-cbc-perl' 'thin-client-config-agent' 'qt4-qmlviewer' 'language-pack-gnome-mi' 'language-pack-gnome-ks' 'geoip-bin' 'plymouth' 'ceph-fs-common-dbg' 'wmpinboard' 'vzctl' 'libuim7-dbg' 'python-nibabel-doc' 'node-traverse' 'libsqlexpr-ocaml' 'libmodule-extract-use-perl' 'libjs-jquery-ui-theme-start' 'libinotify-ruby1.8' 'libgnomecups1.0-dev' 'libghc-hsql-odbc-dev' 'libghc-conduit-doc' 'libdb5.3-tcl' 'ktuberling' 'libgnustep-gui-dev' 'tclthread' 'boxbackup-server' 'python-gobject-dbg' 'readpst' 'libgdiplus' 'language-pack-gnome-ne' 'language-pack-gnome-lo' 'gforge-web-apache' 'linux-backports-modules-cw-3.4-3.2.0-40-virtual' 'linux-backports-modules-cw-3.4-3.2.0-35-virtual' 'linux-backports-modules-cw-3.3-3.2.0-40-generic-pae' 'linux-backports-modules-cw-3.3-3.2.0-35-generic-pae' 'zssh' 'tesseract-ocr-aze' 'sqlline' 'sbackup-plugins-fuse' 'python-svipc' 'python-pyramid-zcml' 'libtarantoolrpl1-dbg' 'libmms-dev' 'liblua5.1-bitop0' 'liblrs-dev' 'libkolab-dev' 'libjaula-dev' 'ruby-hmac' 'libgpepimc-dev' 'libghc-ghc-paths-doc' 'ruby-fssm' 'libexpect-perl' 'gobjc++-4.4-arm-linux-gnueabi' 'gnome-wine-icon-theme' 'libmpd-dev' 'fastjet-doc' 'bowtie2' 'amarok-help-nl' 'language-pack-gnome-mk' 'language-pack-gnome-ku' 'libghc6-gtk-doc' 'python-albatross-doc' 'openscad' 'readseq' 'libhepmcinterface8-dev' 'missingh-doc' 'libgfshare-bin' 'knavalbattle' 'ircd-hybrid' 'harminv' 'josm' 'gccgo-4.7' 'comixcursors-lefthanded-opaque' 'bibledit-bibletime' 'libqt5sql5-sqlite' 'language-pack-gnome-ml' 'libmpc2' 'hmake' 'openoffice.org-l10n-da' 'vttest' 'xsynth-dssi' 'rsplib-dbg' 'ruby-rails-3.2' 'python-quickly.widgets' 'oce-draw' 'movabletype-plugin-core' 'mccs' 'ruby-text-format' 'libpng-sixlegs-java-doc' 'libpdf-create-perl' 'libc6-dev-arm64-cross' 'conduit' 'ruby-rspec-mocks' 'librelp0' 'libgles1-mesa' 'libdconf-dbus-1-dev' 'language-pack-gnome-oc' 'language-pack-gnome-kw' 'loop-aes-utils' 'libopenais-dev' 'librubilicious-ruby1.8' 'umlet' 'simpleid-store-dynalogin' 'ruby-orm-adapter' 'python-swauth' 'monodoc-gnome-keyring-manual' 'libvanessa-adt1' 'libtokyocabinet-perl' 'libroot-gui5.34' 'libmapistore-dev' 'libghc-shakespeare-js-doc' 'libghc-datetime-prof' 'libcvs-perl' 'libccfits-dev' 'ffado-dbus-server' 'alt-key' 'language-pack-gnome-mn' 'hostname' 'openoffice.org-l10n-ar' 'kde-l10n-mai' 'vamp-examples' 'screenie-qt' 'tango-db' 'python-zope.dottedname' 'phpunit' 'predictnls' 'mecab-jumandic' 'mcdp' 'liquidsoap-plugin-soundtouch' 'libgsm-tools' 'libghc-hledger-lib-doc' 'libgensec0' 'libdata-phrasebook-loader-yaml-perl' 'libcgi-xmlapplication-perl' 'libghc-haxml-dev' 'libvala-0.14-0' 'libisl10' 'freeciv-client-xaw3d' 'dlocate' 'cutils' 'audiopreview' 'libmms0' 'ntfs-3g-dbg' 'libx32ncurses5-dev' 'libopenobex1' 'libspeexdsp1' 'language-pack-gnome-lt' 'language-pack-gnome-ky' 'beidgui' 'openoffice.org-l10n-bn' 'openoffice.org-l10n-as' 'app-install-data-commercial' 'mgltools-dejavu' 'python-zope.cachedescriptors' 'libkolabxml-dev' 'libio-detect-perl' 'libgoogle-glog-doc' 'libghc-glut-doc' 'libghc-byteorder-doc' 'gobjc-4.5-arm-linux-gnueabihf' 'libgts-0.7-5' 'libmpd1' 'fonts-samyak-orya' 'pandoc' 'le-dico-de-rene-cougnenc' 'libtidy-dev' 'libconfig++-dbg' 'language-pack-gnome-pa' 'compiz-gnome' 'openoffice.org-l10n-de' 'xmlformat-perl' 'uqwk-spool' 'simplyhtml-doc' 'scala-library' 'nagzilla' 'mp3check' 'libthunar-vfs-1-2' 'libstarlink-ast-err0' 'libsigx-2.0-doc' 'libblitz0ldbl' 'libfile-readbackwards-perl' 'libminc2-1' 'libpod-plainer-perl' 'libneon27-gnutls' 'language-pack-gnome-nl' 'language-pack-gnome-lv' 'exult-studio' 'brother-lpr-drivers-bh7' 'webfs' 'tesseract-ocr-bul' 'ranger' 'r-cran-tseries' 'openwalnut-modules' 'monajat-mod' 'mirrorkit' 'printfilters-ppd' 'liquidsoap-plugin-xmlplaylist' 'libreadosm1' 'libpcre++-dev' 'libkml-dev' 'libjenkins-plugin-parent-java' 'libgnuplot-ruby' 'libglobus-xio-doc' 'libghc-hdbc-odbc-doc' 'libfsplib-dev' 'libcam-pdf-perl' 'kturtle' 'libhugetlbfs-tests' 'hime-dev' 'gnuit' 'epson-escpr' 'libnotify0.4-cil' 'python-zeitgeist' 'language-pack-gnome-mr' 'nautilus-sendto' 'less' 'libghc6-strict-concurrency-doc' 'xflr5-doc' 'performous-tools' 'ltsp-cluster-lbagent' 'libxsettings-client-dev' 'ucommon-utils' 'libmaven-compiler-plugin-java-doc' 'liblingua-identify-perl' 'libhmsbeagle1' 'libghc-ghc-syb-utils-doc' 'libdmtx-dev' 'libalien-sdl-dev-perl' 'oprofile' 'jove' 'libglobus-gsi-credential1' 'flexc++' 'libnet-amazon-s3-perl' 'libffms2-2' 'llvm-3.2-runtime' 'libdri2-dev' 'language-pack-gnome-nn' 'language-pack-gnome-ms' 'language-pack-mhr' 'libpaper1' 'gambas2-gb-opengl' 'openoffice.org-l10n-br' 'python-zope.testrunner' 'ocl-icd-dbg' 'libjboss-microcontainer-java' 'libiptcdata0' 'libgfshare-dbg' 'libcastor-ddlgen-java' 'pwauth' 'gauche-gl' 'libstdc++6-4.7-dev-armhf-cross' 'libfreehdl0-dev' 'libmiglayout-java' 'transmission-gtk' 'php5-sybase' 'libcanberra-dev' 'language-pack-gnome-mt' 'language-pack-th-base' 'libghc6-pcre-light-doc' 'fusionforge-plugin-scmhg' 'openoffice.org-l10n-bs' 'sphinx-voxforge-hmm-en' 'python-pyside.qtwebkit' 'python-pypy.translator.sandbox' 'pd-ext13' 'oneliner-el' 'mason' 'libsemweb1.0-cil' 'libqdaccolib0.7' 'libhamlib++-dev' 'libexpect-php5' 'libdevel-findref-perl' 'libcorelinuxc2a' 'libbiniou-ocaml-dev' 'libhiredis0.10' 'gmpc-data' 'etherpuppet' 'courier-maildrop' 'blubuntu-session-splashes' 'xserver-xorg-video-mach64-dbg' 'ri1.8' 'likewise-open-gui' 'gkrellm' 'libltdl7' 'libvideo-info-perl' 'qtdeclarative5-qtquick2-plugin' 'python-traitsgui' 'python-sendfile-dbg' 'libtie-array-sorted-perl' 'libghc-hs-bibutils-doc' 'libgeronimo-jpa-2.0-spec-java' 'libdpkg-ruby1.8' 'libcgi-uploader-perl' 'ippl-dbg' 'freemedforms-theme' 'criticalmass' 'cdecl' 'battery-stats' 'python-logilab-astng' 'libsnappy1' 'libghc6-unix-compat-doc' 'fossology-scheduler-single' 'openoffice.org-l10n-fa' 'xcfa-dbg' 'turnserver' 'verilator' 'php-net-ipv4' 'packeth' 'octave-common' 'librsyntaxtextarea-java-doc' 'libpgsql-ruby1.8' 'libparsetree-ruby1.8' 'libomnithread3c2-dbg' 'libnewmat10-dev' 'libmupen64plus2' 'libghc-hxt-xpath-dev' 'libghc-distributive-dev' 'libdapl-dev' 'libhash-moreutils-perl' 'ktimer' 'cairo-dock-plug-ins-dbus-interface-python' 'aaphoto' 'language-pack-gnome-om' 'hardening-includes' 'enscript' 'libboost1.46-all-dev' 'libmtj-java' 'scrobble-cli' 'tcl-xpa' 'owfs-dbg' 'libjs-jquery-easing' 'libpetal-perl' 'gstreamer0.10-chromaprint' 'gjacktransport' 'gimp-dds' 'libmpeg3-1' 'libkwnn0' 'dapl2-utils' 'cdi2iso' 'bitpim' 'libball1.4' 'aufs-tools' 'openjdk-7-jre-lib' 'libvisual-0.4-plugins' 'libgnome-keyring0-dbg' 'libnepomukquery4a' 'libmagic1' 'cl-clg' 'linux-backports-modules-cw-3.3-3.2.0-33-generic-pae' 'dynagen' 'broadcom-sta-source' 'zynadd' 'tryton-modules-google-maps' 'tcl8.6-doc' 'songwrite' 'ruby-full' 'rdtool-elisp' 'php-net-ipv6' 'oar-web-status' 'ngorca' 'mhddfs' 'libzeroc-ice-ruby1.8' 'libocamlbricks-ocaml-dev' 'libglm-doc' 'httptunnel' 'gobjc++-4.4-arm-linux-gnueabihf' 'flowscan-cuflow' 'arptables' 'gpointing-device-settings' 'python-rdflib' 'php5-odbc' 'libwebkit1.1-cil' 'language-pack-nds' 'language-pack-gnome-my' 'apache2-prefork-dev' 'openoffice.org-l10n-cs' 'libcufft4' 'linux-backports-modules-cw-3.4-3.2.0-32-generic' 'tomatoes-data' 'tcpslice' 'qesteidutil-dbg' 'liquidsoap-plugin-dssi' 'libkohana3.1-mod-userguide-php' 'libfeel++-dbg' 'libc3p0-java-doc' 'imageinfo' 'libgwrap-runtime2' 'gambas3-gb-cairo' 'firebird-dev' 'eclipse-gef-doc' 'libafflib0' 'python-kde4' 'libspice-server-dev' 'gsfonts-x11' 'fossology-web' 'firebird2.1-examples' 'val-and-rick-data' 'luola-data' 'libxml-generator-perl' 'libsfgomp1-dbg-armhf-cross' 'libroot-graf2d-postscript5.34' 'libmapscript-ruby1.9.1' 'libdcerpc-server0' 'libdata-dumper-concise-perl' 'libbetter-appframework-java' 'libatk1-ruby1.8-dbg' 'libplotmm0' 'ebumeter-doc' 'dphys-swapfile' 'dbeacon' 'courier-pop-ssl' 'cortina' 'python-markupsafe-dbg' 'language-pack-gnome-pl' 'heimdal-dev' 'dselect' 'libghc6-haskell-src-prof' 'drush-make' 'openoffice.org-l10n-ga' 'libgles1-mesa-dev-lts-quantal' 'xubuntu-icon-theme' 'startactive-data' 'qemu-guest-agent' 'pgn2web' 'libtomcrypt-dev' 'libosinfo-1.0-dev' 'libmokoui2-dev' 'oggz-tools' 'ruby-ihelp' 'libglobus-ftp-client-doc' 'libghc-path-pieces-dev' 'libghc-newtype-doc' 'libcothreads-ocaml-dev' 'libcamltemplate-ocaml' 'libaccessors-perl' 'lcmaps-plugins-voms' 'nepomuk-core-dev' 'ttf-droid' 'coqide' 'aeolus' 'libeasymock-java-doc' 'language-pack-gnome-or' 'cdtool' 'texinfo' 'apt-watch' 'maildir-bulletin' 'libllvm2.8' 'libbeidlibopensc2-dbg' 'openoffice.org-l10n-el' 'wesnoth-1.10-l' 'vectoroids' 'tictactoe-ng' 'python-zhpy' 'python-xmltv' 'r-bioc-biocgenerics' 'lprng-doc' 'libscscp-doc' 'libpam-ocaml' 'libjs-of-ocaml-doc' 'libghc-monad-logger-dev' 'php-letodms-lucene' 'libxstream-java' 'librmail-ruby1.8' 'liberuby' 'dict-freedict-tur-eng' 'config-manager' 'uudeview' 'gnome-panel-data' 'amarok-help-pt' 'libppi-html-perl' 'language-pack-gnome-os' 'libssl1.0.0' 'yakuake' 'undertaker-el' 'nexuiz' 'libtest-script-run-perl' 'libopenturns-dbg' 'libnet-sip-perl' 'libllvm2.9' 'libghc-xml-hamlet-dev' 'gplanarity' 'cvs2html' 'walinuxagent' 'libgstreamer0.10-0-dbg' 'libghc6-parsec2-prof' 'openoffice.org-l10n-fi' 'quickplot' 'python-zope.login' 'lua-curses' 'libokular-ruby' 'libcrypt-des-ede3-perl' 'scim-kmfl-imengine' 'kteatime' 'grass-dev' 'libglobus-callout0' 'gir1.2-gst-rtsp-server-0.10' 'freecol' 'libblktapctl0' 'alsaplayer-oss' 'language-pack-gnome-sa' 'bamf-dbg' 'scim-bridge-client-gtk' 'awn-applet-feeds' 'openoffice.org-l10n-eo' 'openoffice.org-l10n-cy' 'unhide' 'pocketsphinx-hmm-tidigits' 'overgod-data' 'omniorb-doc' 'nexuiz-music' 'libglc-dev' 'libghc-test-framework-prof' 'klone' 'gtk2-engines-qtcurve' 'gnome-shell-common' 'geda-gschem' 'ufc-doc' 'libdshconfig1' 'ario-common' 'remmina' 'libdbus-c++-bin' 'glance-api' 'exult' 'vzdump' 'saods9-blt' 'python-lazyarray' 'pd-motex' 'oxygen-icon-theme-complete' 'minidisc-utils' 'python-pdfrw' 'libnet6-1.3-0-dbg' 'libgupnp-dlna-2.0-dev' 'libghc-persistent-doc' 'freesweep' 'drupal6-mod-tagadelic' 'libgnomedesktop2.20-cil' 'maas-dhcp' 'libpangomm-1.4-dev' 'libgdata-common' 'libcurl4-openssl-dev' 'language-pack-gnome-sc' 'libbcpg-java' 'empathy-common' 'jppy' 'libnb-platform12-java' 'wps2odt' 'r-cran-ftrading' 'python3-dkim' 'php-http-upload' 'openpref' 'libwww-mechanize-ruby1.8' 'libsexp-processor-ruby' 'librdsclient-dev' 'libocpf0' 'libobjc4-armhf-cross' 'libgnelib-doc' 'libdata-formvalidator-constraints-datetime-perl' 'libkyotocabinet-dev' 'kindleclip' 'cl-awk' 'bombardier' 'php5-suhosin' 'strigi-daemon' 'language-pack-gnome-sd' 'language-pack-gnome-ps' 'setcd' 'winwrangler' 'nordugrid-arc-cache-service' 'metacam' 'libtuxcap4.0-dbg' 'librelaxng-datatype-java' 'liboop-doc' 'libidzebra-2.0-mod-text' 'libghc-hxt-regex-xmlschema-doc' 'libgdcm2-dev' 'gir1.2-spice-client-gtk-2.0' 'gff2ps' 'ssh-askpass-gnome' 'ruby-setup' 'language-pack-gnome-se' 'language-pack-gnome-pt' 'language-pack-gnome-ca-base' 'tao-cosconcurrency' 'libxine1-xvdr' 'libghc6-mtl-dev' 'python-gtop' 'openoffice.org-l10n-es' 'lib64objc2' 'linux-backports-modules-cw-3.3-3.2.0-31-generic' 'linux-backports-modules-cw-3.3-3.2.0-26-generic' 'titantools' 'madfuload' 'inform-docs' 'xcp-xe' 'solarwolf' 'python-pyalsa' 'licq' 'libtasn1-6-dev' 'libsugarext-data' 'libsoap-wsdl-perl' 'libpam-yubico' 'libgdal-ruby1.8' 'libbusiness-onlinepayment-openecho-perl' 'klog' 'gambas3-gb-vb' 'ttf-jura' 'liboctave-dev' 'deejayd-gstreamer' 'xserver-xorg-video-cirrus' 'language-pack-gnome-ta' 'openoffice.org-l10n-he' 'openoffice.org-l10n-et' 'wesnoth-music' 'python3-authres' 'mmpong-gl' 'minlog' 'libparallel-forkmanager-perl' 'liblunar-1-doc' 'libghc-primes-dev' 'libcpan-perl-releases-perl' 'libamrita2-ruby' 'knemo' 'guile-pg' 'granule' 'lib64objc3' 'geany-plugin-addons' 'dictem' 'deejayd' 'bidiv' 'sgml-base-doc' 'libxcb-xprint0-dev' 'libmono-data-tds4.0-cil' 'language-pack-kde-bn-base' 'language-pack-kde-as-base' 'texinfo-doc-nonfree' 'libghc6-midi-dev' 'libghc6-hscurses-doc' 'openoffice.org-l10n-eu' 'openoffice.org-l10n-dz' 'wmppp.app' 'sagcad' 'python-pyamf-doc' 'opennebula-common' 'libsvn-hooks-perl' 'libreoffice-subsequentcheckbase' 'libpomp0' 'libpithub-perl' 'libblitz-doc' 'libjodconverter-java' 'libinsighttoolkit4-dev' 'gtk2-engines-nodoka' 'gimmix' 'libnids1.21' 'boinc-client' 'banshee-extension-radiostationfetcher' 'libreoffice-report-builder' 'libqtuitools4-perl' 'libqt5opengl5' 'lib64objc4' 'hplip-dbg' 'libghc6-sha-prof' 'openoffice.org-l10n-gl' 'w2do' 'sdf-doc' 'mecab' 'libsvncpp3' 'liblavfile-2.0-0' 'libghc-semigroups-prof' 'libeigen2-doc' 'ketm-data' 'hgview-common' 'sound-juicer' 'exrtools' 'libg3d-plugins' 'cedar-backup2' 'libboolstuff-0.1-0' 'liblinear-tools' 'language-pack-gnome-si' 'libpoppler-glib8' 'libace-tmcast-6.0.1' 'openoffice.org-l10n-fr' 'zabbix-proxy-sqlite3' 'xtide-coastline' 'w3af' 'tcl-memchan-dev' 'pureadmin' 'mumble-server-web' 'openslide-tools' 'libvala-0.20-0' 'libqt53d5' 'libgnomecups1.0-1' 'libdir-self-perl' 'libokularcore2abi1' 'ikiwiki-hosting-web' 'libsparkline-php' 'ibus-table-quick-classic' 'gcc-4.7-aarch64-linux-gnu' 'exaile-plugin-moodbar' 'convmv' 'amarok-help-ru' 'acpitool-dbg' 'python-cherrypy' 'python-gobject-dev' 'qt4-qtconfig' 'libdbus-c++-dbg' 'language-pack-gnome-te' 'language-pack-gnome-ro' 'language-pack-kde-mn-base' 'xserver-xorg-video-intel' 'hwdata' 'python3-gi-cairo' 'gnupg' 'openoffice.org-l10n-id' 't1lib-bin' 'sdpnetstat' 'php-timer' 'libstarpufft-1.0' 'siscone-doc-pdf' 'libplayercore3.0' 'libpadre-plugin-autoformat-perl' 'libghc-hsql-odbc-doc' 'libanyevent-connection-perl' 'hol88-doc' 'ettercap-common' 'thunderbird-locale-pt-pt' 'libpisync1' 'libbit-vector-perl' 'language-pack-gnome-sk' 'linux-image-extra-3.8.0-7-generic' 'smuxi-engine-xmpp' 'python-zope.index' 'python-u1db' 'pymissile' 'python-debianbts' 'mtink' 'ml-lex' 'swi-prolog' 'libjaula-doc' 'libclean-crypto-java' 'libccrtp-dev' 'libauthen-simple-perl' 'ruby-activeresource' 'libace-tmcast-6.0.3' 'libgpgme++2' 'libjetty8-extra-java' 'ibus-table-ipa-x-sampa' 'gnat-gps-common' 'gadfly' 'fweb-doc' 'libevas1' 'coinor-libvol-dev' 'python-urlgrabber' 'maas-cli' 'libgutenprintui2-dev' 'libavahi-gobject-dev' 'language-pack-gnome-tg' 'language-pack-gnome-sl' 'dictfmt' 'nag2' 'openoffice.org-l10n-ja' 'libegl1-mesa-drivers-lts-quantal-dbg' 'selinux' 'rubberband-vamp' 'python-zope.app.error' 'python-simpleparse' 'partclone' 'quitcount' 'libvdeplug2' 'libslang2-modules' 'libghc-async-prof' 'libgnu-regexp-java' 'ibus-googlepinyin' 'libconfigreader-perl' 'libedje1' 'aclock.app' 'libtk-img' 'python-glance-doc' 'nvidia-settings-experimental-304' 'libmono-i18n4.0-cil' 'language-pack-gnome-th' 'hplip-data' 'libgdl-3-2' 'jajuk' 'ebox-firewall' 'xsensors' 'razorqt-power' 'python-pyside' 'libunicode-map8-perl' 'libcore-ocaml' 'libbusiness-tax-vat-validation-perl' 'libclass-dbi-perl' 'libatlas-cpp-0.6-dev' 'kuvert' 'qapt-deb-installer' 'hamfax' 'php-mail-mimedecode' 'declarative-plasmoids' 'dbskkd-cdb' 'bibus' 'python-webtest' 'nvidia-settings-experimental-310' 'language-pack-gnome-ti' 'python-gobject' 'erlang-base' 'cmake-qt-gui' 'redeclipse-server-dbg' 'zziplib-bin' 'simplecommeubuntu' 'sendemail' 'scilab-jims' 'libroot-math-mathmore5.34' 'libmono-addins-msbuild-cil-dev' 'libkibi0' 'libccfits-doc' 'kdepasswd' 'jfugue' 'rosegarden' 'libui-dialog-perl' 'freecad-dev' 'configure-debian' 'amarok-help-uk' 'ntfs-3g-dev' 'lftp' 'language-pack-gnome-so' 'pnputils' 'libghc6-vte-dev' 'science-chemistry' 'ruby-fftw3-dbg' 'python-pwquality' 'maven' 'mana-dbg' 'librsplib-dev' 'libplexus-digest-java-doc' 'libnetapp-perl' 'libllvm3.0' 'libghc-haxml-doc' 'libcommons-configuration-java' 'libcatalyst-manual-perl' 'libb-utils-perl' 'kdevelop-php-l10n' 'emdebian-crush' 'ttf-denemo' 'coinor-libipopt1' 'canna-utils' 'amarok-help-sv' 'libsdl-image1.2' 'nvidia-173-dev' 'libconfig++-dev' 'language-pack-gnome-tk' 'language-pack-gnome-ru' 'libsunpinyin3' 'erlang-public-key' 'failmalloc' 'awn-applet-media-control' 'cedarview-graphics-drivers' 'libkwineffects1abi3' 'sword-text-gerlut1545' 'pcb-gtk' 'openhpi-plugin-oa-soap' 'opendrim-lmp-battery' 'ocrodjvu' 'mythbuntu-default-settings' 'libxine1-console' 'libwebservice-youtube-perl' 'libroot-math-matrix-dev' 'libroot-tree-treeplayer5.34' 'libref-array-dev' 'libpythonqt2-dev' 'libopencv-videostab2.4' 'libnews-nntpclient-perl' 'libllvm3.1' 'libgoocanvasmm-1.0-5' 'libkxml2-java' 'libjnr-posix-java' 'firmware-tools-cli' 'dh-metainit' 'claws-mail-mailmbox-plugin' 'bambam' 'asterisk-core-sounds-ru-g722' 'libgdl-3-5' 'upstart-monitor' 'language-pack-gnome-ug' 'language-pack-gnome-tl' 'language-pack-gnome-sq' 'libgnomevfs2-common' 'cluster-glue-dev' 'gambas2-gb-settings' 'openoffice.org-l10n-ka' 'openoffice.org-l10n-gu' 'abs-guide' 'tesseract-ocr-ell' 'python-pygraphviz-dbg' 'pidgin-privacy-please' 'mgetty-voice' 'libroot-montecarlo-vmc5.34' 'libdataobjects-ruby1.8' 'libnetcdf6' 'libvtk5.8-qt4' 'libscope-guard-perl' 'l2tp-ipsec-vpn-daemon' 'koan' 'oxygen-cursor-theme' 'libkwineffects1abi4' 'kmix' 'hugin-tools' 'gnome-shell-dbg' 'blacs-pvm-dev' 'apt-offline' 'python-gtk2-dbg' 'libxklavier-dev' 'libllvm3.2' 'libgnujaf-java' 'language-pack-gnome-sr' 'language-pack-gnome-rw' 'zescrow-client' 'liblockfile1' 'xfonts-bolkhov-cp1251-misc' 'shapetools' 'quantum-plugin-nec-agent' 'pysycache-i18n' 'pidgin-gmchess' 'nova-baremetal' 'mbot' 'libwraster3-dev' 'libpycaml-ocaml-dev' 'libnfs-dev' 'libregexp-reggrp-perl' 'liballegro-image5-dev' 'libconfig-any-perl' 'kdeartwork' 'dballe-common' 'libglobus-gram-client3' 'bowtie' 'apt-cacher-ng' 'qemu-system-ppc' 'libnautilus-extension-dev' 'liblcms2-utils' 'openoffice.org-l10n-hr' 'w3cam' 'zsync' 'ruby-grib' 'ocl-icd-dev' 'matlab-support' 'libxsettings-client-doc' 'libgfshare-dev' 'libfinance-streamer-perl' 'libelektra-cpp0' 'libace-htbp-dev' 'kwalify' 'installation-guide-armel' 'docdiff' 'alsamixergui' 'texlive-plain-extra' 'libxmlrpc-c++4-dev' 'libdotconf1.0' 'language-pack-gnome-ve' 'language-pack-gnome-st' 'language-pack-gnome-mai-base' 'java-wrappers' 'libindicator-messages-status-provider1' 'gambas2-gb-compress' 'openoffice.org-l10n-in' 'perforate' 'libnb-absolutelayout-java' 'libmaven-resources-plugin-java-doc' 'libmail-sender-perl' 'libfauhdli-dev' 'libdb-file-lock-perl' 'libaudio-scrobbler-perl' 'python-qt4reactor' 'libilmbase-dev' 'libcanberra-doc' 'language-pack-gnome-wa' 'language-pack-gnome-uk' 'libpwquality1' 'cinder-backup' 'libbotan-1.8.13' 'uwsgi-plugin-syslog' 'testdrive-gtk' 'nova-api-metadata' 'msmtp' 'monodoc-taoframework-manual' 'liquidwar-data' 'libschroedinger-ocaml-dev' 'libpgsql-ruby' 'lua-bitop' 'liblouisxml1' 'libbrailleutils-java-doc' 'libapache2-request-perl' 'jenkins-memory-monitor' 'g2ipmsg' 'libsdl-mixer1.2-dev' 'fileschanged' 'elscreen' 'eclipse-cdt' 'libwps-dev' 'libshout3-dev' 'language-pack-gnome-sv' 'openoffice.org-l10n-hu' 'weathermap4rrd' 'vdr-plugin-femon' 'spring-engine' 'ripperx' 'proftpd-mod-ldap' 'libportsmf-dev' 'libopenslide-dev' 'libmerb-core-ruby' 'libmad-ocaml-dev' 'libguichan-dev' 'libgtk2-ex-entry-pango-perl' 'libflac-ocaml-dev' 'libcrypt-dsa-perl' 'libagg-dev' 'kon2' 'php-net-ldap' 'openstreetmap-map-icons-classic' 'tesseract-ocr-eng' 'freevial' 'libjam-java' 'cloud-initramfs-rescuevol' 'nova-compute' 'language-pack-gnome-tr' 'language-pack-gnome-sw' 'installation-guide-powerpc' 'libperl4-corelibs-perl' 'dejagnu' 'ghostscript-cups' 'gambas2-gb-net' 'xmms2-plugin-icymetaint' 'sbcl-doc' 'vclt-tools' 'quantlib-python' 'parole-dev' 'openvas-plugins-base' 'libtaoframework-devil-cil-dev' 'libinnodb-dbg' 'libgraph-writer-graphviz-perl' 'libghc-hxt-xpath-doc' 'libghc-authenticate-oauth-prof' 'libghc-distributive-doc' 'libdiet-admin2.8' 'kmtrace' 'fs2ram' 'fonts-lohit-beng-bengali' 'dragbox' 'advene' 'texlive-lang-other' 'atftpd' 'language-pack-gnome-vi' 'language-pack-gnome-ts' 'libcommandline-ruby-doc' 'libboost-system1.46.1' 'wordnet-grind' 'vim-rails' 'python-validictory-doc' 'beast-mcmc' 'libsscm3' 'libqmfconsole2' 'libplexus-ant-factory-java' 'kmfl-keyboards-mywin' 'globus-gram-job-manager-scripts-doc' 'libmp3-tag-perl' 'dossizola' 'curves' 'dmtcp' 'libbarry18' 'liblcms-utils' 'libdb5.3-sql' 'language-pack-gnome-tt' 'mawk' 'libogg0' 'language-pack-ja-base' 'wdiff' 'netapplet' 'teeworlds' 'ofono-phonesim' 'ruby-gtksourceview2-dbg' 'libfeel++-dev' 'webkit-image-gtk' 'gobjc-arm-linux-gnueabihf' 'libdmtx0a' 'comixcursors' 'lsb-cxx' 'linux-image-extra-virtual' 'libv4l-dev' 'grub-legacy-ec2' 'gir1.2-farstream-0.1' 'openoffice.org-l10n-it' 'libfaac0' 'warmux-dbg' 'speechd-el' 'python-django-auth-ldap-doc' 'parchive' 'luasseq' 'liquidsoap-plugin-samplerate' 'libpam-openafs-kaserver' 'libghc-utf8-light-prof' 'libghc-numbers-prof' 'libdiscover-dev' 'libaopalliance-java-doc' 'freefem' 'dvi2ps-fontdata-ja' 'drizzle-dbg' 'banshee-extension-zeitgeistdataprovider' 'language-pack-pap' 'gir1.2-farstream-0.2' 'tagcloud' 'ruby-rqrcode' 'libmodule-starter-perl' 'libghc-wai-eventsource-prof' 'libexo-helpers' 'libapache-mime4j-java' 'libthrift-java' 'expeyes' 'expand-region-el' 'libbuffy-perl' 'libsvrcore0' 'libmetacity-private0' 'language-pack-gnome-ur' 'language-pack-sk-base' 'kmod' 'libbeidlibopensc2-dev' 'tumiki-fighters' 'tesseract-ocr-enm' 'python-protobuf.socketrpc' 'plymouth-theme-lubuntu-logo' 'libnss-mysql-bg' 'libmsn0.3-dbg' 'libmokoui2-doc' 'libgv-tcl' 'libghc-syb-with-class-prof' 'libghc-path-pieces-doc' 'haskell-hscurses-doc' 'libdate-hijri-perl' 'libclass-mix-perl' 'libdata-streamserializer-perl' 'libmessagecomposer4' 'python-wokkel' 'libmusicbrainz3-6' 'python-ferari' 'ttf-adf-verana' 'cl-speech-dispatcher' 'dzedit' 'banshee-extension-lcd' 'libkontactinterface4' 'libsane-dbg' 'jppy-jpilot-plugins' 'openoffice.org-l10n-km' 'tesseract-ocr-fin' 'r-cran-fassets' 'qgis-sqlanywhere1.7.5' 'nicotine' 'linthesia' 'libquazip0' 'libjenkins-commons-jexl-java' 'libharfbuzz-bin' 'libghc-pcre-light-prof' 'libghc-monad-logger-doc' 'libghc-gd-prof' 'libopenturns-dev' 'librobert-hooke-clojure' 'gwaterfall' 'gpe-clock' 'gir1.2-spice-client-gtk-3.0' 'carto' 'archipel-agent-hypervisor-geolocalization' 'swig-doc' 'pdnsd' 'fillmore' 'kcm-gtk' 'smlsharp' 'remuco-okular' 'rbot-doc' 'mcollective-plugins-nettest' 'libtango-tools' 'libigraph0-dev' 'libghc-xml-hamlet-doc' 'ldap-account-manager-lamdaemon' 'gap-prim-groups' 'eb-doc' 'csound-utils' 'azr3-jack' 'libgnat-4.6' 'openprinting-ppds-extra' 'gstreamer0.10-gnonlin-doc' 'libavdevice53' 'libcomplearn-ruby' 'openoffice.org-l10n-ko' 'vigor' 'unbound-anchor' 'scottfree' 'libwtdbosqlite33' 'libibcm1' 'libghc-parallel-dev' 'libaugeas-ruby1.9.1' 'ruby-gtk2' 'jamin' 'ipython3-qtconsole' 'glusterfs-client' 'grass-doc' 'gfortran-4.7-aarch64-linux-gnu' 'freediams-doc-en' 'chemtool' 'ccd2iso' 'tomcat7-user' 'libpcap-dev' 'libibus-1.0-0' 'libwtdbosqlite29' 'libgecodeflatzinc30' 'libkwinactiveeffects1abi3' 'uwsgi-plugin-jvm-openjdk-6' 'spotweb' 'libtexttools3-dev' 'libobject-destroyer-perl' 'libbrlapi-java' 'ruby-albino' 'gtkhash-common' 'ftools-fv' 'festlex-oald' 'aiksaurus' 'mono-gmcs' 'libsmokeqtopengl4-3' 'libjaxen-java' 'language-pack-gnome-xh' 'busybox' 'openoffice.org-l10n-nb' 'libdrm-dev-lts-quantal' 'octave-doc' 'neverball-dbg' 'mingetty' 'libsub-current-perl' 'libopenvdb-dev' 'libisl-dbg' 'labyrinth' 'libkwinactiveeffects1abi4' 'gfortran-4.4-multilib' 'eiskaltdcpp-qt-data' 'mutter' 'blahtexml' 'libfaad2' 'aspell-af' 'linux-headers-virtual' 'libpangomm-1.4-doc' 'gnomine' 'build-essential' 'libucil-docs' 'vagalume' 'opengl-4.2-man-doc' 'ogamesim' 'ndiswrapper-utils-1.9' 'libpcscada0.7.1' 'libghc-persistent-sqlite-dev' 'libghc-data-default-prof' 'libcrypto++-dev' 'libjson-any-perl' 'liballegro-acodec5-dev' 'libkst2core2' 'gobjc++-4.7-powerpc-linux-gnu' 'globus-core' 'gaim-hotkeys' 'libgecodeflatzinc32' 'el-get' 'ctsim-help' 'kde-l10n-nds' 'ubuntu-wallpapers-quantal' 'qemu-common' 'libcompress-raw-bzip2-perl' 'libvala-0.16-0' 'libunity-common' 'libsaxon-java-doc' 'gsl-ref-html' 'language-pack-gnome-wo' 'linux-image-extra-3.8.0-12-generic' 'myunity' 'linux-backports-modules-net-3.2.0-40-virtual' 'linux-backports-modules-net-3.2.0-35-virtual' 'xfce4-dict' 'swh-lv2' 'sssd-tools' 'scolily' 'rtirq-init' 'libtest-pod-content-perl' 'libstdc++6-arm64-cross' 'librtasevent-dev' 'libqwt-dev' 'libasedrive-serial' 'ruby-directory-watcher' 'fonts-baekmuk' 'liba52-0.7.4' 'coderay' 'calligrastage' 'librdmacm-dev' 'libqt5sql5-odbc' 'libmdds-dev' 'language-pack-gnome-uz' 'mailavenger' 'libyaml-tiny-perl' 'consolekit' 'libyadis-ruby' 'libghc6-mtl-doc' 'awn-applet-common-folder' 'openoffice.org-l10n-ne' 'gnuvd' 'sup-mail' 'r-cran-gtools' 'mupen64plus-ui-console-dbg' 'lowpan-test-tools' 'libwnn6-dev' 'libqxt-berkeley0' 'libopenwsman1' 'libkdecore4-perl' 'libgavl1-dbg' 'homebank-data' 'libxine1' 'gambas3-gb-form-mdi' 'pidgin-blinklight' 'erlang-bear' 'python-indicate' 'grass' 'libdrizzledmessage-dev' 'apertium-en-ca' 'python3-pyxattr-dbg' 'libtest-pod-coverage-perl' 'libxkbfile-dev' 'libcss-minifier-xs-perl' 'openoffice.org-l10n-mk' 'openoffice.org-l10n-ku' 'linux-headers-lbm-3.2.0-36-virtual' 'linux-headers-3.5.0-26-generic' 'flashplugin-downloader' 'xsystem35' 'ruby-kde4-dbg' 'pocketsphinx-hmm-wsj1' 'libxine2' 'libsyncml2-dbg' 'libsqlite3-mod-blobtoxy' 'libjboss-classloader-java' 'libghc-primes-doc' 'libghc-hsx-dev' 'libarchive-ar-perl' 'libalut-dev' 'kobodeluxe-data' 'amule-adunanza-utils' 'sysfsutils' 'qemu-user-static' 'xutils-dev' 'libnet-libidn-perl' 'libghc6-midi-doc' 'libggiwmh0-dev' 'openoffice.org-l10n-ml' 'mariadb-client-core-10.0' 'qtmobility-examples' 'python-libssh2' 'pidgin-mra-dbg' 'libxml-simple-ruby' 'libsubtitleeditor-dev' 'libplayercore3.0-dev' 'libghc-haskeline-prof' 'libghc-crypto-conduit-dev' 'gfortran-mingw-w64-x86-64' 'libgldi3' 'aspell-ca' 'python-apt-common' 'apsfilter' 'ncurses-doc' 'language-pack-gnome-yi' 'empathy-dbg' 'kompozer' 'openoffice.org-l10n-oc' 'darkice' 'wesnoth-1.10-core' 'targetcli' 'rkhunter' 'node-ini' 'nexuiz-server' 'python-mididings' 'meep' 'libsteptalk0' 'libserial0' 'librime-data-double-pinyin' 'libghc-network-conduit-prof' 'libghc-bindings-libzip-prof' 'libf95getdata2' 'kubuntu-active-default-settings' 'gdb64' 'diatheke' 'cyrus-admin-2.2' 'libsmpeg0' 'bookletimposer' 'aspell-bg' 'wordnet-sense-index' 'thunderbird-locale-sv-se' 'python-cinderclient' 'libjtds-java' 'libexcalibur-logkit-java-doc' 'libdbus-c++-dev' 'libdb5.3-stl' ) diff --git a/common/.oh-my-zsh/cache/DEBS_installed b/common/.oh-my-zsh/cache/DEBS_installed deleted file mode 100644 index 1188f8a..0000000 --- a/common/.oh-my-zsh/cache/DEBS_installed +++ /dev/null @@ -1 +0,0 @@ -_deb_packages_cache_installed=( '3dchess' 'a2ps' 'aa3d' 'aajm' 'aaphoto' 'abiword' 'abiword-common' 'abiword-plugin-grammar' 'abiword-plugin-mathview' 'accountsservice' 'acl' 'acpi' 'acpi-fakekey' 'acpi-support' 'acpi-support-base' 'acpid' 'adduser' 'aha' 'aisleriot' 'akonadi-backend-mysql' 'akonadi-server' 'akregator' 'alacarte' 'alsa-base' 'alsa-utils' 'anacron' 'ant' 'ant-optional' 'anthy' 'anthy-common' 'antiword' 'antlr3' 'apg' 'app-install-data' 'apper' 'apper-data' 'apt' 'apt-file' 'apt-listchanges' 'apt-utils' 'apt-xapian-index' 'aptdaemon' 'aptdaemon-data' 'aptitude' 'aptitude-common' 'arandr' 'arj' 'ark' 'aspell' 'aspell-en' 'aspell-es' 'aspell-fr' 'aspell-nl' 'aspell-sv' 'at' 'at-spi2-core' 'autoconf' 'automake' 'autopoint' 'autotools-dev' 'avahi-autoipd' 'avahi-daemon' 'base-files' 'base-passwd' 'bash' 'bash-completion' 'bc' 'beneath-a-steel-sky' 'bind9' 'bind9-doc' 'bind9-host' 'bind9utils' 'binfmt-support' 'binutils' 'bitlbee' 'bitlbee-common' 'bitlbee-plugin-otr' 'blender' 'blt' 'bluetooth' 'bluez' 'bluez-alsa:i386' 'bluez-cups' 'bluez-gstreamer' 'braindump' 'brasero' 'brasero-cdrkit' 'brasero-common' 'bridge-utils' 'brltty' 'brltty-espeak' 'brutalchess' 'bsd-mailx' 'bsdmainutils' 'bsdutils' 'build-essential' 'buildapp' 'busybox' 'bzip2' 'ca-certificates' 'ca-certificates-java' 'caca-utils' 'calligra' 'calligra-data' 'calligra-libs' 'calligraflow' 'calligraflow-data' 'calligraplan' 'calligrasheets' 'calligrastage' 'calligrawords' 'calligrawords-data' 'caribou' 'caribou-antler' 'cdparanoia' 'cdrdao' 'cheese' 'cheese-common' 'chktex' 'cicero' 'cli-common' 'clisp' 'cm-super' 'cm-super-minimal' 'cmus' 'cmus-plugin-ffmpeg' 'colord' 'colordiff' 'colorgcc' 'colormake' 'console-braille' 'console-setup' 'console-setup-linux' 'console-tools' 'consolekit' 'context' 'context-modules' 'coreutils' 'cowsay' 'cpio' 'cpp' 'cpp-4.7' 'crda' 'cron' 'cryptsetup-bin' 'cuneiform' 'cuneiform-common' 'cups' 'cups-bsd' 'cups-client' 'cups-common' 'cups-filters' 'cups-pk-helper' 'cups-ppdc' 'curl' 'cvs' 'cvsps' 'dash' 'db5.1-util' 'dbus' 'dbus-x11' 'dc' 'dconf-gsettings-backend:i386' 'dconf-service' 'dconf-tools' 'dctrl-tools' 'debconf' 'debconf-i18n' 'debhelper' 'debian-archive-keyring' 'debian-builder' 'debian-faq' 'debian-keyring' 'debian-policy' 'debianutils' 'debootstrap' 'default-jdk' 'default-jre' 'default-jre-headless' 'desktop-base' 'desktop-file-utils' 'developers-reference-fr' 'devscripts' 'dia' 'dia-common' 'dia-gnome' 'dia-libs' 'dialog' 'dict-bouvier' 'dict-de-en' 'dict-devil' 'dict-elements' 'dict-foldoc' 'dict-freedict-afr-deu' 'dict-freedict-cro-eng' 'dict-freedict-cze-eng' 'dict-freedict-dan-eng' 'dict-freedict-deu-eng' 'dict-freedict-deu-fra' 'dict-freedict-deu-ita' 'dict-freedict-deu-nld' 'dict-freedict-deu-por' 'dict-freedict-eng-ara' 'dict-freedict-eng-cro' 'dict-freedict-eng-cze' 'dict-freedict-eng-deu' 'dict-freedict-eng-fra' 'dict-freedict-eng-hin' 'dict-freedict-eng-hun' 'dict-freedict-eng-iri' 'dict-freedict-eng-ita' 'dict-freedict-eng-lat' 'dict-freedict-eng-nld' 'dict-freedict-eng-por' 'dict-freedict-eng-rom' 'dict-freedict-eng-rus' 'dict-freedict-eng-scr' 'dict-freedict-eng-spa' 'dict-freedict-eng-swa' 'dict-freedict-eng-swe' 'dict-freedict-eng-tur' 'dict-freedict-eng-wel' 'dict-freedict-fra-deu' 'dict-freedict-fra-eng' 'dict-freedict-fra-nld' 'dict-freedict-gla-deu' 'dict-freedict-hin-eng' 'dict-freedict-hun-eng' 'dict-freedict-iri-eng' 'dict-freedict-ita-deu' 'dict-freedict-ita-eng' 'dict-freedict-jpn-deu' 'dict-freedict-lat-deu' 'dict-freedict-lat-eng' 'dict-freedict-nld-deu' 'dict-freedict-nld-eng' 'dict-freedict-nld-fra' 'dict-freedict-por-deu' 'dict-freedict-por-eng' 'dict-freedict-scr-eng' 'dict-freedict-slo-eng' 'dict-freedict-spa-eng' 'dict-freedict-swa-eng' 'dict-freedict-swe-eng' 'dict-freedict-tur-deu' 'dict-freedict-tur-eng' 'dict-freedict-wel-eng' 'dict-gazetteer2k' 'dict-gazetteer2k-counties' 'dict-gazetteer2k-places' 'dict-gazetteer2k-zips' 'dict-gcide' 'dict-jargon' 'dict-moby-thesaurus' 'dict-stardic' 'dict-vera' 'dict-wn' 'dict-xdict' 'dictd' 'dictionaries-common' 'dictzip' 'diffstat' 'diffutils' 'discover' 'discover-data' 'distro-info-data' 'django-ajax-selects' 'django-filter' 'django-tables' 'djvulibre-bin' 'dlint' 'dmidecode' 'dmsetup' 'dnsmasq-base' 'dnsutils' 'doc-debian' 'doc-debian-es' 'doc-debian-fr' 'doc-linux-fr-text' 'docbook-xml' 'docbook-xsl' 'docutils-common' 'docutils-doc' 'dolphin' 'dosfstools' 'dots' 'dovecot-core' 'dovecot-imapd' 'dovecot-pop3d' 'dpkg' 'dpkg-awk' 'dpkg-cross' 'dpkg-dev' 'dpkg-repack' 'dpkg-ruby' 'dpkg-sig' 'dput' 'dragonplayer' 'dreamchess' 'dreamchess-data' 'dvd+rw-tools' 'dvdauthor' 'dvidvi' 'dvipng' 'e2fslibs:i386' 'e2fsprogs' 'eboard' 'eboard-extras-pack1' 'ebtables' 'ed' 'edict' 'eject' 'elasticsearch' 'elinks' 'elinks-data' 'emacs' 'emacs23' 'emacs23-bin-common' 'emacs23-common' 'emacsen-common' 'empathy' 'empathy-common' 'enchant' 'eog' 'epdfview' 'equivs' 'esound-common' 'espeak' 'espeak-data:i386' 'eterm' 'evince' 'evince-common' 'evolution' 'evolution-common' 'evolution-data-server' 'evolution-data-server-common' 'evolution-plugins' 'evolution-webcal' 'exfalso' 'exim4' 'exim4-base' 'exim4-config' 'exim4-daemon-light' 'exo-utils' 'exuberant-ctags' 'fakeroot' 'famfamfam-flag-png' 'fbterm' 'festival' 'festival-freebsoft-utils' 'festlex-cmu' 'festlex-poslex' 'festvox-kallpc16k' 'feynmf' 'fgetty' 'figlet' 'file' 'file-roller' 'findutils' 'finger' 'firmware-realtek' 'fizmo' 'fizmo-common' 'fizmo-ncursesw' 'flashplugin-nonfree' 'flight-of-the-amazon-queen' 'fluid-soundfont-gm' 'fluid-soundfont-gs' 'folks-common' 'fontconfig' 'fontconfig-config' 'fonts-cantarell' 'fonts-comfortaa' 'fonts-droid' 'fonts-freefont-otf' 'fonts-freefont-ttf' 'fonts-gfs-artemisia' 'fonts-gfs-baskerville' 'fonts-gfs-bodoni-classic' 'fonts-gfs-complutum' 'fonts-gfs-didot' 'fonts-gfs-didot-classic' 'fonts-gfs-gazis' 'fonts-gfs-neohellenic' 'fonts-gfs-olga' 'fonts-gfs-porson' 'fonts-gfs-solomos' 'fonts-gfs-theokritos' 'fonts-hosny-amiri' 'fonts-inconsolata' 'fonts-ipaexfont-gothic' 'fonts-ipaexfont-mincho' 'fonts-ipafont' 'fonts-ipafont-gothic' 'fonts-ipafont-mincho' 'fonts-junicode' 'fonts-liberation' 'fonts-linuxlibertine' 'fonts-lmodern' 'fonts-lyx' 'fonts-oflb-asana-math' 'fonts-opensymbol' 'fonts-sil-gentium' 'fonts-sil-gentium-basic' 'fonts-stix' 'fonts-texgyre' 'fonts-vlgothic' 'foomatic-db-compressed-ppds' 'foomatic-db-engine' 'foomatic-filters' 'fop' 'fragmaster' 'freepats' 'freespacenotifier' 'frotz' 'ftp' 'fuse' 'fuse-utils' 'fuseiso' 'g++' 'g++-4.7' 'gajim' 'galculator' 'gaphor' 'gawk' 'gcalctool' 'gcc' 'gcc-4.7' 'gcc-4.7-base:i386' 'gconf-service' 'gconf2' 'gconf2-common' 'gcr' 'gdebi' 'gdebi-core' 'gdm3' 'gedit' 'gedit-common' 'gedit-plugins' 'genisoimage' 'geoclue' 'geoclue-hostip' 'geoclue-localnet' 'geoclue-manual' 'geoclue-yahoo' 'geoip-database' 'gettext' 'gettext-base' 'ghostscript' 'ghostscript-cups' 'gimp' 'gimp-data' 'gimp-data-extras' 'gimp-help-common' 'gimp-help-sv' 'gir1.2-accountsservice-1.0' 'gir1.2-atk-1.0' 'gir1.2-atspi-2.0' 'gir1.2-caribou-1.0' 'gir1.2-clutter-1.0' 'gir1.2-clutter-gst-1.0' 'gir1.2-cogl-1.0' 'gir1.2-coglpango-1.0' 'gir1.2-evince-3.0' 'gir1.2-folks-0.6' 'gir1.2-freedesktop' 'gir1.2-gck-1' 'gir1.2-gconf-2.0' 'gir1.2-gcr-3' 'gir1.2-gdesktopenums-3.0' 'gir1.2-gdkpixbuf-2.0' 'gir1.2-gee-1.0' 'gir1.2-gkbd-3.0' 'gir1.2-glib-2.0' 'gir1.2-gmenu-3.0' 'gir1.2-gnomebluetooth-1.0' 'gir1.2-gst-plugins-base-0.10' 'gir1.2-gstreamer-0.10' 'gir1.2-gtk-3.0' 'gir1.2-gtkclutter-1.0' 'gir1.2-gtksource-3.0' 'gir1.2-gucharmap-2.90' 'gir1.2-json-1.0' 'gir1.2-mutter-3.0' 'gir1.2-networkmanager-1.0' 'gir1.2-panelapplet-4.0' 'gir1.2-pango-1.0' 'gir1.2-peas-1.0' 'gir1.2-polkit-1.0' 'gir1.2-soup-2.4' 'gir1.2-telepathyglib-0.12' 'gir1.2-telepathylogger-0.2' 'gir1.2-totem-1.0' 'gir1.2-totem-plparser-1.0' 'gir1.2-upowerglib-1.0' 'gir1.2-vte-2.90' 'gir1.2-wnck-3.0' 'gir1.2-xkl-1.0' 'git' 'git-all' 'git-arch' 'git-cvs' 'git-daemon-run' 'git-doc' 'git-el' 'git-email' 'git-gui' 'git-man' 'git-svn' 'gitk' 'gitweb' 'gjiten' 'gjs' 'gkbd-capplet' 'gksu' 'glchess' 'glib-networking:i386' 'glib-networking-common' 'glib-networking-services' 'glines' 'gmpc' 'gmpc-data' 'gmpc-plugins' 'gmrun' 'gnect' 'gnibbles' 'gnobots2' 'gnome-accessibility-themes' 'gnome-applets' 'gnome-applets-data' 'gnome-bluetooth' 'gnome-contacts' 'gnome-control-center' 'gnome-control-center-data' 'gnome-desktop3-data' 'gnome-dictionary' 'gnome-games-data' 'gnome-games-extra-data' 'gnome-icon-theme' 'gnome-icon-theme-symbolic' 'gnome-js-common' 'gnome-keyring' 'gnome-mag' 'gnome-media' 'gnome-menus' 'gnome-mime-data' 'gnome-mud' 'gnome-online-accounts' 'gnome-orca' 'gnome-panel' 'gnome-panel-data' 'gnome-power-manager' 'gnome-screensaver' 'gnome-session' 'gnome-session-bin' 'gnome-session-common' 'gnome-session-fallback' 'gnome-settings-daemon' 'gnome-shell' 'gnome-shell-common' 'gnome-sushi' 'gnome-system-monitor' 'gnome-terminal' 'gnome-terminal-data' 'gnome-themes-standard' 'gnome-themes-standard-data' 'gnome-user-guide' 'gnome-video-effects' 'gnuchess' 'gnuchess-book' 'gnugo' 'gnumeric' 'gnumeric-common' 'gnumeric-plugins-extra' 'gnupg' 'gnupg-agent' 'gnupg2' 'gnuplot' 'gnuplot-nox' 'gnushogi' 'gocr' 'google-gadgets-common' 'google-gadgets-gst' 'google-gadgets-qt' 'gpgv' 'gpicview' 'gpm' 'grep' 'groff' 'groff-base' 'growisofs' 'grub-common' 'grub-pc' 'grub-pc-bin' 'grub2-common' 'gscan2pdf' 'gsetroot' 'gsettings-desktop-schemas' 'gsfonts' 'gsfonts-x11' 'gstreamer0.10-alsa:i386' 'gstreamer0.10-chromaprint' 'gstreamer0.10-ffmpeg:i386' 'gstreamer0.10-gconf:i386' 'gstreamer0.10-nice:i386' 'gstreamer0.10-plugins-bad:i386' 'gstreamer0.10-plugins-base:i386' 'gstreamer0.10-plugins-good:i386' 'gstreamer0.10-plugins-ugly:i386' 'gstreamer0.10-pulseaudio:i386' 'gstreamer0.10-x:i386' 'gstreamer1.0-plugins-bad:i386' 'gstreamer1.0-plugins-base:i386' 'gstreamer1.0-plugins-good:i386' 'gstreamer1.0-plugins-ugly:i386' 'gstreamer1.0-x:i386' 'gtk2-engines:i386' 'gtk2-engines-xfce' 'guile-2.0-libs' 'gvfs:i386' 'gvfs-backends' 'gvfs-bin' 'gvfs-common' 'gvfs-daemons' 'gvfs-fuse' 'gvfs-libs:i386' 'gwenview' 'gzip' 'hardening-includes' 'hddtemp' 'hdparm' 'hicolor-icon-theme' 'host' 'hostapd' 'hostname' 'hp-ppd' 'hpijs' 'hplip' 'hplip-data' 'htdig' 'html2text' 'hunspell-en-us' 'hunspell-fr' 'hunspell-sv-se' 'hwdata' 'hyphen-en-us' 'iamerican' 'ibritish' 'ibus' 'ibus-anthy' 'ibus-clutter:i386' 'ibus-gtk:i386' 'ibus-gtk3:i386' 'ibus-m17n' 'ibus-mozc' 'ibus-pinyin' 'ibus-pinyin-db-open-phrase' 'ibus-qt4' 'ibus-skk' 'ibus-tegaki' 'icecast2' 'icedove' 'icedove-l10n-ja' 'icedtea-6-jre-cacao:i386' 'icedtea-6-jre-jamvm:i386' 'icedtea-7-jre-cacao:i386' 'icedtea-7-jre-jamvm:i386' 'icedtea-netx:i386' 'icedtea-netx-common' 'iceweasel' 'iceweasel-l10n-af' 'iceweasel-l10n-ak' 'iceweasel-l10n-all' 'iceweasel-l10n-ar' 'iceweasel-l10n-as' 'iceweasel-l10n-ast' 'iceweasel-l10n-be' 'iceweasel-l10n-bg' 'iceweasel-l10n-bn-bd' 'iceweasel-l10n-bn-in' 'iceweasel-l10n-br' 'iceweasel-l10n-bs' 'iceweasel-l10n-ca' 'iceweasel-l10n-cs' 'iceweasel-l10n-csb' 'iceweasel-l10n-cy' 'iceweasel-l10n-da' 'iceweasel-l10n-de' 'iceweasel-l10n-el' 'iceweasel-l10n-en-gb' 'iceweasel-l10n-en-za' 'iceweasel-l10n-eo' 'iceweasel-l10n-es-ar' 'iceweasel-l10n-es-cl' 'iceweasel-l10n-es-es' 'iceweasel-l10n-es-mx' 'iceweasel-l10n-et' 'iceweasel-l10n-eu' 'iceweasel-l10n-fa' 'iceweasel-l10n-fi' 'iceweasel-l10n-fr' 'iceweasel-l10n-fy-nl' 'iceweasel-l10n-ga-ie' 'iceweasel-l10n-gd' 'iceweasel-l10n-gl' 'iceweasel-l10n-gu-in' 'iceweasel-l10n-he' 'iceweasel-l10n-hi-in' 'iceweasel-l10n-hr' 'iceweasel-l10n-hu' 'iceweasel-l10n-hy-am' 'iceweasel-l10n-id' 'iceweasel-l10n-is' 'iceweasel-l10n-it' 'iceweasel-l10n-ja' 'iceweasel-l10n-kk' 'iceweasel-l10n-kn' 'iceweasel-l10n-ko' 'iceweasel-l10n-ku' 'iceweasel-l10n-lg' 'iceweasel-l10n-lt' 'iceweasel-l10n-lv' 'iceweasel-l10n-mai' 'iceweasel-l10n-mk' 'iceweasel-l10n-ml' 'iceweasel-l10n-mr' 'iceweasel-l10n-nb-no' 'iceweasel-l10n-nl' 'iceweasel-l10n-nn-no' 'iceweasel-l10n-nso' 'iceweasel-l10n-or' 'iceweasel-l10n-pa-in' 'iceweasel-l10n-pl' 'iceweasel-l10n-pt-br' 'iceweasel-l10n-pt-pt' 'iceweasel-l10n-rm' 'iceweasel-l10n-ro' 'iceweasel-l10n-ru' 'iceweasel-l10n-si' 'iceweasel-l10n-sk' 'iceweasel-l10n-sl' 'iceweasel-l10n-son' 'iceweasel-l10n-sq' 'iceweasel-l10n-sr' 'iceweasel-l10n-sv-se' 'iceweasel-l10n-ta' 'iceweasel-l10n-ta-lk' 'iceweasel-l10n-te' 'iceweasel-l10n-th' 'iceweasel-l10n-tr' 'iceweasel-l10n-uk' 'iceweasel-l10n-vi' 'iceweasel-l10n-zh-cn' 'iceweasel-l10n-zh-tw' 'iceweasel-l10n-zu' 'idutch' 'ienglish-common' 'ifrench-gut' 'ifupdown' 'im-config' 'imagemagick' 'imagemagick-common' 'info' 'initramfs-tools' 'initscripts' 'inkscape' 'insserv' 'install-info' 'installation-report' 'intltool-debian' 'iproute' 'iptables' 'iputils-ping' 'ipython' 'ipython3' 'ipython3-qtconsole' 'irssi' 'irssi-plugin-otr' 'irssi-scripts' 'isc-dhcp-client' 'isc-dhcp-common' 'isc-dhcp-server' 'iso-codes' 'ispanish' 'ispell' 'iswedish' 'iw' 'java-common' 'java-wrappers' 'javahelp2' 'javascript-common' 'jovie' 'juk' 'jython' 'k3b' 'k3b-data' 'k3b-i18n' 'kaccessible' 'kaddressbook' 'kakasi' 'kakasi-dic' 'kamera' 'kanjidic' 'karbon' 'kasumi' 'kate' 'kate-data' 'katepart' 'kcalc' 'kde-baseapps' 'kde-baseapps-bin' 'kde-baseapps-data' 'kde-icons-mono' 'kde-l10n-engb' 'kde-l10n-es' 'kde-l10n-fr' 'kde-l10n-ja' 'kde-l10n-nl' 'kde-l10n-sv' 'kde-plasma-desktop' 'kde-runtime' 'kde-runtime-data' 'kde-standard' 'kde-style-oxygen' 'kde-wallpapers' 'kde-wallpapers-default' 'kde-window-manager' 'kde-workspace' 'kde-workspace-bin' 'kde-workspace-data' 'kde-workspace-kgreet-plugins' 'kdeaccessibility' 'kdebase-runtime' 'kdelibs-bin' 'kdelibs5-data' 'kdelibs5-plugins' 'kdepasswd' 'kdepim-runtime' 'kdepimlibs-kio-plugins' 'kdeplasma-addons' 'kdesudo' 'kdm' 'kdoctools' 'kernel-package' 'kexi' 'keyboard-configuration' 'kfind' 'khelpcenter4' 'kigo' 'kinfocenter' 'kiten' 'klibc-utils' 'klipper' 'kmag' 'kmail' 'kmenuedit' 'kmix' 'kmod' 'kmousetool' 'kmouth' 'knotes' 'ko.tex-extra-hlfont' 'koffice' 'konq-plugins' 'konqueror' 'konqueror-nsplugins' 'konsole' 'kopete' 'korganizer' 'krb5-locales' 'krita' 'krita-data' 'kscreensaver' 'kscreensaver-xsavers' 'ksnapshot' 'ksysguard' 'ksysguardd' 'kthesaurus' 'kwalletmanager' 'kwrite' 'lacheck' 'laptop-detect' 'latex-beamer' 'latex-cjk-all' 'latex-cjk-chinese' 'latex-cjk-chinese-arphic-bkai00mp' 'latex-cjk-chinese-arphic-bsmi00lp' 'latex-cjk-chinese-arphic-gbsn00lp' 'latex-cjk-chinese-arphic-gkai00mp' 'latex-cjk-common' 'latex-cjk-japanese' 'latex-cjk-japanese-wadalab' 'latex-cjk-korean' 'latex-cjk-thai' 'latex-fonts-thai-tlwg' 'latex-sanskrit' 'latex-xcolor' 'latexdiff' 'latexmk' 'lcdf-typetools' 'leafpad' 'less' 'liba52-0.7.4' 'libaa-bin' 'libaa1:i386' 'libaacs0:i386' 'libabiword-2.9:i386' 'libaccountsservice0' 'libacl1:i386' 'libaio1:i386' 'libakonadi-contact4' 'libakonadi-kabc4' 'libakonadi-kcal4' 'libakonadi-kde4' 'libakonadi-kmime4' 'libakonadiprotocolinternals1' 'libalgorithm-c3-perl' 'libalgorithm-diff-perl' 'libalgorithm-diff-xs-perl' 'libalgorithm-merge-perl' 'libamd2.2.0' 'libanthy0:i386' 'libantlr-java' 'libao-common' 'libao4' 'libapache-pom-java' 'libapr1' 'libaprutil1' 'libapt-inst1.5:i386' 'libapt-pkg-perl' 'libapt-pkg4.12:i386' 'libarchive-zip-perl' 'libarchive12:i386' 'libart-2.0-2:i386' 'libasm3-java' 'libasound2:i386' 'libasound2-plugins:i386' 'libaspell15' 'libasprintf-dev:i386' 'libasprintf0c2:i386' 'libass4:i386' 'libassuan0:i386' 'libast2' 'libasyncns0:i386' 'libatasmart4:i386' 'libatk-adaptor:i386' 'libatk-adaptor-data' 'libatk-bridge2.0-0:i386' 'libatk-wrapper-java' 'libatk-wrapper-java-jni:i386' 'libatk1.0-0:i386' 'libatk1.0-data' 'libatk1.0-dev' 'libatkmm-1.6-1' 'libatspi1.0-0' 'libatspi2.0-0:i386' 'libattica0' 'libattr1:i386' 'libaudio-mpd-common-perl' 'libaudio-mpd-perl' 'libaudio2:i386' 'libaudiofile1:i386' 'libaudit0' 'libauthen-sasl-perl' 'libautobox-perl' 'libavahi-client3:i386' 'libavahi-common-data:i386' 'libavahi-common3:i386' 'libavahi-core7:i386' 'libavahi-glib1:i386' 'libavahi-gobject0:i386' 'libavalon-framework-java' 'libavc1394-0:i386' 'libavcodec53:i386' 'libavdevice53:i386' 'libavformat53:i386' 'libavutil51:i386' 'libb-hooks-endofscope-perl' 'libbabl-0.1-0:i386' 'libbackport-util-concurrent-java' 'libbatik-java' 'libbind9-80' 'libblas3' 'libblas3gf' 'libblkid1:i386' 'libbluetooth3:i386' 'libbluray1:i386' 'libbonobo2-0' 'libbonobo2-common' 'libbonoboui2-0' 'libbonoboui2-common' 'libboost-dev' 'libboost-filesystem1.49.0' 'libboost-iostreams1.49.0' 'libboost-program-options1.49.0' 'libboost-system1.49.0' 'libboost-thread1.49.0' 'libboost1.49-dev' 'libbrasero-media3-1' 'libbrlapi0.5:i386' 'libbsd0:i386' 'libbsf-java' 'libburn4' 'libbz2-1.0:i386' 'libc-bin' 'libc-dev-bin' 'libc6:i386' 'libc6-dev:i386' 'libc6-i686:i386' 'libcaca0:i386' 'libcairo-gobject2:i386' 'libcairo-perl' 'libcairo-script-interpreter2:i386' 'libcairo2:i386' 'libcairo2-dev' 'libcairomm-1.0-1' 'libcamel-1.2-33' 'libcanberra-gtk-module:i386' 'libcanberra-gtk0:i386' 'libcanberra-gtk3-0:i386' 'libcanberra-gtk3-module:i386' 'libcanberra0:i386' 'libcap-ng0' 'libcap2:i386' 'libcap2-bin' 'libcaribou-common' 'libcaribou0:i386' 'libcarp-clan-perl' 'libccid' 'libcdaudio1' 'libcddb2' 'libcdio-cdda1' 'libcdio-paranoia1' 'libcdio13' 'libcdparanoia0:i386' 'libchamplain-0.12-0:i386' 'libchamplain-gtk-0.12-0:i386' 'libcheese-gtk21:i386' 'libcheese3:i386' 'libchromaprint0:i386' 'libck-connector0:i386' 'libclass-accessor-perl' 'libclass-c3-perl' 'libclass-c3-xs-perl' 'libclass-inspector-perl' 'libclass-isa-perl' 'libclass-load-perl' 'libclass-load-xs-perl' 'libcln6' 'libclone-perl' 'libclucene0ldbl' 'libclutter-1.0-0:i386' 'libclutter-1.0-common' 'libclutter-gst-1.0-0:i386' 'libclutter-gtk-1.0-0:i386' 'libclutter-imcontext-0.1-0:i386' 'libclutter-imcontext-0.1-bin' 'libcluttergesture-0.0.2-0:i386' 'libcmis-0.2-0' 'libcogl-common' 'libcogl-pango0:i386' 'libcogl9:i386' 'libcolamd2.7.1' 'libcolorblind0' 'libcolord1:i386' 'libcomerr2:i386' 'libcommon-sense-perl' 'libcommons-beanutils-java' 'libcommons-cli-java' 'libcommons-codec-java' 'libcommons-collections3-java' 'libcommons-compress-java' 'libcommons-digester-java' 'libcommons-io-java' 'libcommons-lang-java' 'libcommons-logging-java' 'libcommons-parent-java' 'libconfig-auto-perl' 'libconfig-file-perl' 'libconfig-general-perl' 'libconfig-inifiles-perl' 'libconsole' 'libconstantine-java' 'libconvert-binhex-perl' 'libcpufreq0' 'libcroco3:i386' 'libcrypt-ssleay-perl' 'libcryptsetup4' 'libcrystalhd3:i386' 'libcuneiform0:i386' 'libcups2:i386' 'libcupscgi1:i386' 'libcupsdriver1:i386' 'libcupsfilters1:i386' 'libcupsimage2:i386' 'libcupsmime1:i386' 'libcupsppdc1:i386' 'libcurl3:i386' 'libcurl3-gnutls:i386' 'libcwidget3' 'libdaemon0' 'libdata-optlist-perl' 'libdatrie1:i386' 'libdb-java' 'libdb-je-java' 'libdb5.1:i386' 'libdb5.1-java' 'libdb5.1-java-jni:i386' 'libdbd-sqlite3-perl' 'libdbi-perl' 'libdbus-1-3:i386' 'libdbus-glib-1-2:i386' 'libdbus-glib1.0-cil' 'libdbus1.0-cil' 'libdbusmenu-glib4:i386' 'libdbusmenu-qt2' 'libdc1394-22:i386' 'libdca0' 'libdconf0:i386' 'libdebconf-kde0' 'libdebian-dpkgcross-perl' 'libdevel-globaldestruction-perl' 'libdevel-partialdump-perl' 'libdevmapper-event1.02.1:i386' 'libdevmapper1.02.1:i386' 'libdigest-hmac-perl' 'libdirac-decoder0:i386' 'libdirac-encoder0:i386' 'libdirectfb-1.2-9:i386' 'libdiscid0:i386' 'libdiscover2' 'libdistro-info-perl' 'libdjvulibre-text' 'libdjvulibre21' 'libdlrestrictions1' 'libdmtx0a:i386' 'libdns88' 'libdom4j-java' 'libdotconf1.0' 'libdpkg-perl' 'libdrm-intel1:i386' 'libdrm-nouveau1a:i386' 'libdrm-radeon1:i386' 'libdrm2:i386' 'libdv4:i386' 'libdvbpsi7' 'libdvdnav4' 'libdvdread4' 'libebackend-1.2-2' 'libebml3:i386' 'libebook-1.2-13' 'libecal-1.2-11' 'libedata-book-1.2-13' 'libedata-cal-1.2-15' 'libedataserver-1.2-16' 'libedataserverui-3.0-1' 'libedit2:i386' 'libelf1:i386' 'libemail-valid-perl' 'libenca0' 'libenchant1c2a' 'libencode-locale-perl' 'libepc-1.0-3' 'libepc-common' 'libepc-ui-1.0-3' 'libept1.4.12' 'liberror-perl' 'libescpr1:i386' 'libesd0:i386' 'libespeak1:i386' 'libestools2.1:i386' 'libeval-closure-perl' 'libevdocument3-4' 'libevent-2.0-5:i386' 'libevolution' 'libevview3-3' 'libexempi3:i386' 'libexif12:i386' 'libexiv2-12' 'libexo-1-0:i386' 'libexo-common' 'libexo-helpers:i386' 'libexpat1:i386' 'libexpat1-dev' 'libexporter-lite-perl' 'libexttextcat-data' 'libexttextcat0' 'libextutils-depends-perl' 'libextutils-pkgconfig-perl' 'libfaad2:i386' 'libfam0' 'libfarstream-0.1-0:i386' 'libfcgi-perl' 'libffcall1' 'libffi5:i386' 'libffi6:i386' 'libfftw3-3:i386' 'libfile-basedir-perl' 'libfile-copy-recursive-perl' 'libfile-desktopentry-perl' 'libfile-fcntllock-perl' 'libfile-homedir-perl' 'libfile-listing-perl' 'libfile-mimeinfo-perl' 'libfile-which-perl' 'libflac++6:i386' 'libflac8:i386' 'libflite1:i386' 'libfluidsynth1:i386' 'libfm-data' 'libfm-gtk-bin' 'libfm-gtk1' 'libfm1' 'libfolks-eds25' 'libfolks-telepathy25' 'libfolks25' 'libfont-afm-perl' 'libfont-ttf-perl' 'libfontconfig1:i386' 'libfontconfig1-dev' 'libfontenc1:i386' 'libfop-java' 'libfreetype6:i386' 'libfreetype6-dev' 'libfribidi0:i386' 'libfs6:i386' 'libfsplib0' 'libfuse2:i386' 'libgadu3' 'libgail-3-0:i386' 'libgail-common:i386' 'libgail18:i386' 'libgarcon-1-0' 'libgarcon-common' 'libgc1c2' 'libgcc1:i386' 'libgck-1-0' 'libgconf-2-4:i386' 'libgconf2-4:i386' 'libgconf2.0-cil' 'libgcr-3-1' 'libgcr-3-common' 'libgcroots0' 'libgcrypt11:i386' 'libgd2-xpm:i386' 'libgdata-common' 'libgdata13' 'libgdbm3:i386' 'libgdict-1.0-6' 'libgdict-common' 'libgdiplus' 'libgdk-pixbuf2.0-0:i386' 'libgdk-pixbuf2.0-common' 'libgdk-pixbuf2.0-dev' 'libgdome2-0' 'libgdome2-cpp-smart0c2a' 'libgdu0' 'libgee2:i386' 'libgegl-0.2-0:i386' 'libgeoclue0' 'libgeocode-glib0' 'libgeoip1:i386' 'libgetopt-euclid-perl' 'libgettextpo-dev:i386' 'libgettextpo0:i386' 'libgexiv2-1' 'libgfortran3:i386' 'libggadget-1.0-0b:i386' 'libggadget-qt-1.0-0b:i386' 'libgif4' 'libgimp2.0' 'libgirepository-1.0-1' 'libgjs0b' 'libgksu2-0' 'libgl1-mesa-dev' 'libgl1-mesa-dri:i386' 'libgl1-mesa-glx:i386' 'libglade2-0' 'libglapi-mesa:i386' 'libgle3' 'libglew1.7:i386' 'libglib-perl' 'libglib2.0-0:i386' 'libglib2.0-bin' 'libglib2.0-cil' 'libglib2.0-data' 'libglib2.0-dev' 'libglibmm-2.4-1c2a:i386' 'libglu1-mesa:i386' 'libglu1-mesa-dev' 'libgme0' 'libgmime-2.6-0' 'libgmime2.6-cil' 'libgmp10:i386' 'libgnet2.0-0' 'libgnome-bluetooth10' 'libgnome-desktop-2-17' 'libgnome-desktop-3-2' 'libgnome-keyring-common' 'libgnome-keyring0:i386' 'libgnome-mag2' 'libgnome-media-profiles-3.0-0' 'libgnome-menu-3-0' 'libgnome2-0' 'libgnome2-common' 'libgnomecanvas2-0' 'libgnomecanvas2-common' 'libgnomekbd-common' 'libgnomekbd7' 'libgnomeui-0' 'libgnomeui-common' 'libgnomevfs2-0' 'libgnomevfs2-common' 'libgnomevfs2-extra' 'libgnutls26:i386' 'libgoa-1.0-0:i386' 'libgoa-1.0-common' 'libgoffice-0.8-8' 'libgoffice-0.8-8-common' 'libgomp1:i386' 'libgoo-canvas-perl' 'libgoocanvas-common' 'libgoocanvas3' 'libgpg-error0:i386' 'libgpgme++2' 'libgpgme11' 'libgphoto2-2:i386' 'libgphoto2-l10n' 'libgphoto2-port0:i386' 'libgpm2:i386' 'libgpod-common' 'libgpod4:i386' 'libgps20:i386' 'libgraphicsmagick++3' 'libgraphicsmagick3' 'libgraphite2-2.0.0' 'libgraphite3' 'libgs9' 'libgs9-common' 'libgsasl7' 'libgsf-1-114' 'libgsf-1-common' 'libgsl0ldbl' 'libgsm1:i386' 'libgssapi-krb5-2:i386' 'libgssdp-1.0-3' 'libgssglue1:i386' 'libgstreamer-plugins-bad0.10-0:i386' 'libgstreamer-plugins-bad1.0-0:i386' 'libgstreamer-plugins-base0.10-0:i386' 'libgstreamer-plugins-base1.0-0:i386' 'libgstreamer0.10-0:i386' 'libgstreamer1.0-0:i386' 'libgtk-3-0:i386' 'libgtk-3-bin' 'libgtk-3-common' 'libgtk-3-dev' 'libgtk2-ex-podviewer-perl' 'libgtk2-ex-simple-list-perl' 'libgtk2-imageview-perl' 'libgtk2-perl' 'libgtk2.0-0:i386' 'libgtk2.0-bin' 'libgtk2.0-cil' 'libgtk2.0-common' 'libgtkhtml-4.0-0' 'libgtkhtml-4.0-common' 'libgtkhtml-editor-4.0-0' 'libgtkimageview0' 'libgtkmathview0c2a' 'libgtkmm-2.4-1c2a' 'libgtkmm-3.0-1:i386' 'libgtksourceview-3.0-0:i386' 'libgtksourceview-3.0-common' 'libgtksourceview2.0-0' 'libgtksourceview2.0-common' 'libgtkspell0' 'libgtop2-7' 'libgtop2-common' 'libguava-java' 'libgucharmap-2-90-7' 'libgudev-1.0-0:i386' 'libgupnp-1.0-4' 'libgupnp-igd-1.0-4:i386' 'libgusb2' 'libgutenprint2' 'libgweather-3-0' 'libgweather-common' 'libgxps2:i386' 'libhal-storage1' 'libhal1' 'libhpmud0' 'libhsqldb-java' 'libhtml-form-perl' 'libhtml-format-perl' 'libhtml-parser-perl' 'libhtml-tagset-perl' 'libhtml-template-perl' 'libhtml-tree-perl' 'libhttp-cookies-perl' 'libhttp-daemon-perl' 'libhttp-date-perl' 'libhttp-message-perl' 'libhttp-negotiate-perl' 'libhunspell-1.3-0:i386' 'libhyphen0' 'libibus-1.0-0:i386' 'libibus-qt1' 'libical0' 'libice-dev:i386' 'libice6:i386' 'libicu48:i386' 'libicu4j-java' 'libid3tag0' 'libidl0' 'libidn11:i386' 'libiec61883-0' 'libieee1284-3:i386' 'libijs-0.35' 'libilmbase6:i386' 'libimlib2' 'libimobiledevice2' 'libindicate-gtk3' 'libindicate5' 'libio-pty-perl' 'libio-socket-inet6-perl' 'libio-socket-ip-perl' 'libio-socket-ssl-perl' 'libio-string-perl' 'libio-stringy-perl' 'libiodbc2' 'libipc-run-perl' 'libipc-shareable-perl' 'libiptcdata0' 'libisc84' 'libisccc80' 'libisccfg82' 'libiso9660-8' 'libisofs6' 'libisorelax-java' 'libitm1:i386' 'libiw30:i386' 'libjack-jackd2-0:i386' 'libjaffl-java' 'libjansson4:i386' 'libjasper1:i386' 'libjavascriptcoregtk-1.0-0' 'libjavascriptcoregtk-3.0-0' 'libjaxen-java' 'libjaxme-java' 'libjaxp1.3-java' 'libjazzy-java' 'libjbig0:i386' 'libjbig2dec0' 'libjdom1-java' 'libjeuclid-core-java' 'libjffi-java' 'libjffi-jni' 'libjim0debian2:i386' 'libjing-java' 'libjline-java' 'libjnr-netdb-java' 'libjnr-posix-java' 'libjnr-x86asm-java' 'libjodconverter-java' 'libjpeg-progs' 'libjpeg8:i386' 'libjs-jquery' 'libjs-jquery-cookie' 'libjs-jquery-ui' 'libjs-sphinxdoc' 'libjs-underscore' 'libjson-glib-1.0-0:i386' 'libjson-perl' 'libjson-xs-perl' 'libjson0:i386' 'libjsr305-java' 'libjte1' 'libjtidy-java' 'libk3b6' 'libk3b6-extracodecs' 'libk5crypto3:i386' 'libkabc4' 'libkactivities-bin' 'libkactivities6' 'libkakasi2' 'libkate1' 'libkateinterfaces4' 'libkatepartinterfaces4' 'libkcal4' 'libkcalcore4' 'libkcalutils4' 'libkcddb4' 'libkcmutils4' 'libkdcraw-data' 'libkdcraw20' 'libkde3support4' 'libkdeclarative5' 'libkdecorations4' 'libkdecore5' 'libkdegames5a' 'libkdepim4' 'libkdesu5' 'libkdeui5' 'libkdewebkit5' 'libkdnssd4' 'libkemoticons4' 'libkephal4abi1' 'libkexiv2-10' 'libkexiv2-data' 'libkeybinder0' 'libkeyutils1:i386' 'libkfile4' 'libkholidays4' 'libkhtml5' 'libkidletime4' 'libkimap4' 'libkimproxy4' 'libkio5' 'libkipi-data' 'libkipi8' 'libkiten4abi1' 'libkjsapi4' 'libkjsembed4' 'libkldap4' 'libkleo4' 'libklibc' 'libkmediaplayer4' 'libkmime4' 'libkmod2:i386' 'libknewstuff2-4' 'libknewstuff3-4' 'libknotifyconfig4' 'libkntlm4' 'libkonq-common' 'libkonq5-templates' 'libkonq5abi1' 'libkonqsidebarplugin4a' 'libkontactinterface4' 'libkopete4' 'libkparts4' 'libkpathsea6' 'libkpgp4' 'libkpimidentities4' 'libkpimtextedit4' 'libkpimutils4' 'libkprintutils4' 'libkpty4' 'libkrb5-3:i386' 'libkrb5support0:i386' 'libkresources4' 'libkrosscore4' 'libkrossui4' 'libksba8:i386' 'libkscreensaver5' 'libksgrd4' 'libksieve4' 'libksignalplotter4' 'libktexteditor4' 'libktnef4' 'libkunitconversion4' 'libkutils4' 'libkwineffects1abi3' 'libkwinglutils1' 'libkworkspace4abi1' 'liblapack3' 'liblapack3gf' 'liblcms1:i386' 'liblcms2-2:i386' 'libldap-2.4-2:i386' 'liblensfun-data' 'liblensfun0' 'liblept3' 'liblightdm-gobject-1-0' 'liblinear-tools' 'liblinear1' 'liblink-grammar4' 'liblircclient0' 'liblist-moreutils-perl' 'liblivetribe-jsr223-java' 'liblocale-gettext-perl' 'liblockfile-bin' 'liblockfile1:i386' 'liblog-dispatch-perl' 'liblog-log4perl-perl' 'liblog4j1.2-java' 'libloudmouth1-0' 'liblouis-data' 'liblouis2:i386' 'liblouisxml-bin' 'liblouisxml-data' 'liblouisxml1:i386' 'liblqr-1-0:i386' 'libltdl7:i386' 'liblua5.1-0:i386' 'liblua5.1-rex-pcre0' 'liblua5.1-sql-sqlite3-2' 'liblucene2-java' 'liblvm2app2.2:i386' 'liblwp-mediatypes-perl' 'liblwp-protocol-https-perl' 'liblwres80' 'liblzma5:i386' 'liblzo2-2:i386' 'libm17n-0' 'libmaa3' 'libmad0' 'libmagic1:i386' 'libmagick++5:i386' 'libmagickcore5:i386' 'libmagickcore5-extra:i386' 'libmagickwand5:i386' 'libmail-sendmail-perl' 'libmail-spf-perl' 'libmailtools-perl' 'libmailtransport4' 'libmarblewidget13' 'libmatroska5:i386' 'libmeanwhile1' 'libmediastreamer1:i386' 'libmenu-cache1' 'libmessagecore4' 'libmessagelist4' 'libmetacity-private0a' 'libmhash2' 'libmicroblog4' 'libmikmod2:i386' 'libmime-tools-perl' 'libmimelib4' 'libmimic0' 'libmission-control-plugins0' 'libmms0:i386' 'libmng1:i386' 'libmodplug1' 'libmodule-implementation-perl' 'libmodule-runtime-perl' 'libmono-addins-gui0.2-cil' 'libmono-addins0.2-cil' 'libmono-cairo4.0-cil' 'libmono-corlib4.0-cil' 'libmono-i18n-west4.0-cil' 'libmono-i18n4.0-cil' 'libmono-posix4.0-cil' 'libmono-security4.0-cil' 'libmono-sharpzip4.84-cil' 'libmono-system-configuration4.0-cil' 'libmono-system-core4.0-cil' 'libmono-system-drawing4.0-cil' 'libmono-system-security4.0-cil' 'libmono-system-xml4.0-cil' 'libmono-system4.0-cil' 'libmoose-autobox-perl' 'libmoose-perl' 'libmoosex-has-sugar-perl' 'libmoosex-semiaffordanceaccessor-perl' 'libmoosex-types-perl' 'libmount1' 'libmozjs10d' 'libmozjs185-1.0' 'libmp3lame0:i386' 'libmpc2:i386' 'libmpcdec6:i386' 'libmpd1' 'libmpdclient2' 'libmpeg2-4:i386' 'libmpfr4:i386' 'libmpg123-0:i386' 'libmro-compat-perl' 'libmsn0.3' 'libmtdev1:i386' 'libmtp-common' 'libmtp-runtime' 'libmtp9:i386' 'libmusicbrainz3-6' 'libmusicbrainz5-0:i386' 'libmutter0' 'libmx-1.0-2:i386' 'libmx-bin' 'libmx-common' 'libmxml1' 'libmysqlclient18:i386' 'libmythes-1.2-0' 'libnamespace-autoclean-perl' 'libnamespace-clean-perl' 'libnautilus-extension1a' 'libncurses5:i386' 'libncurses5-dev' 'libncursesw5:i386' 'libneko0' 'libneon27-gnutls' 'libnepomuk4' 'libnepomukquery4a' 'libnepomukutils4' 'libnet-daemon-perl' 'libnet-dbus-perl' 'libnet-dns-perl' 'libnet-domain-tld-perl' 'libnet-http-perl' 'libnet-ip-perl' 'libnet-smtp-ssl-perl' 'libnet-ssleay-perl' 'libnetaddr-ip-perl' 'libnetfilter-conntrack3:i386' 'libnetpbm10' 'libnettle4:i386' 'libnewt0.52' 'libnfnetlink0' 'libnfsidmap2:i386' 'libnice10:i386' 'libnl-3-200:i386' 'libnl-genl-3-200:i386' 'libnl-route-3-200:i386' 'libnm-glib-vpn1' 'libnm-glib4' 'libnm-gtk-common' 'libnm-gtk0' 'libnm-util2' 'libnotify-bin' 'libnotify4:i386' 'libnspr4:i386' 'libnspr4-0d:i386' 'libnss-lwres' 'libnss-mdns' 'libnss3:i386' 'libnss3-1d:i386' 'libntlm0' 'libntrack-qt4-1' 'libntrack0' 'liboauth0:i386' 'libobrender27' 'libobt0' 'libofa0' 'libogg0:i386' 'libokularcore1' 'libonig2' 'libopenal-data' 'libopenal1:i386' 'libopencc1:i386' 'libopencore-amrnb0:i386' 'libopencore-amrwb0:i386' 'libopenexr6:i386' 'libopenjpeg2:i386' 'libopenobex1' 'libopenraw1:i386' 'libopus0' 'liborbit2' 'liborc-0.4-0:i386' 'libortp8:i386' 'libossp-uuid-perl' 'libossp-uuid16' 'libotf0' 'libotr2' 'libots0' 'libp11-kit0:i386' 'libpackage-deprecationmanager-perl' 'libpackage-stash-perl' 'libpackage-stash-xs-perl' 'libpackagekit-glib2-14:i386' 'libpackagekit-qt2-2:i386' 'libpam-cap:i386' 'libpam-ck-connector:i386' 'libpam-gnome-keyring' 'libpam-modules:i386' 'libpam-modules-bin' 'libpam-pkcs11' 'libpam-runtime' 'libpam0g:i386' 'libpanel-applet-4-0' 'libpango-perl' 'libpango1.0-0:i386' 'libpango1.0-dev' 'libpangomm-1.4-1' 'libpaper-utils' 'libpaper1:i386' 'libparams-classify-perl' 'libparams-util-perl' 'libparams-validate-perl' 'libparse-debcontrol-perl' 'libparse-debianchangelog-perl' 'libparted0debian1:i386' 'libpcap0.8:i386' 'libpci3:i386' 'libpciaccess0:i386' 'libpcre3:i386' 'libpcre3-dev' 'libpcrecpp0:i386' 'libpcsc-perl' 'libpcsclite1:i386' 'libpdf-api2-perl' 'libpeas-1.0-0' 'libpeas-common' 'libperl5.14' 'libperl6-junction-perl' 'libpgm-5.1-0' 'libphonon4:i386' 'libpipeline1:i386' 'libpixman-1-0:i386' 'libpixman-1-dev' 'libpkcs11-helper1:i386' 'libplasma-geolocation-interface4' 'libplasma3' 'libplasmaclock4abi3' 'libplasmagenericshell4' 'libplist1' 'libplot2c2' 'libplrpc-perl' 'libpng12-0:i386' 'libpng12-dev' 'libpodofo0.9.0' 'libpolkit-agent-1-0:i386' 'libpolkit-backend-1-0:i386' 'libpolkit-gobject-1-0:i386' 'libpolkit-qt-1-1' 'libpoppler-glib8:i386' 'libpoppler-qt4-3:i386' 'libpoppler19:i386' 'libpopt0:i386' 'libportaudio2:i386' 'libportmidi0' 'libpostproc52:i386' 'libpq5' 'libprison0:i386' 'libproc-daemon-perl' 'libproc-processtable-perl' 'libprocesscore4abi1' 'libprocessui4a' 'libprocps0:i386' 'libprotobuf7' 'libproxy0:i386' 'libpst4:i386' 'libpstoedit0c2a' 'libptexenc1' 'libpth20' 'libpthread-stubs0:i386' 'libpthread-stubs0-dev:i386' 'libpulse-mainloop-glib0:i386' 'libpulse0:i386' 'libpurple-bin' 'libpurple0' 'libpyside-py3-1.1:i386' 'libpyside1.1:i386' 'libpython2.6' 'libpython2.7' 'libpython3.2' 'libqalculate5:i386' 'libqalculate5-data' 'libqca2:i386' 'libqca2-plugin-ossl:i386' 'libqdbm14' 'libqgpgme1' 'libqimageblitz4' 'libqrencode3:i386' 'libqt4-dbus:i386' 'libqt4-declarative:i386' 'libqt4-designer:i386' 'libqt4-dev' 'libqt4-dev-bin' 'libqt4-help:i386' 'libqt4-network:i386' 'libqt4-opengl:i386' 'libqt4-opengl-dev' 'libqt4-qt3support:i386' 'libqt4-script:i386' 'libqt4-scripttools:i386' 'libqt4-sql:i386' 'libqt4-sql-mysql:i386' 'libqt4-sql-sqlite:i386' 'libqt4-svg:i386' 'libqt4-test:i386' 'libqt4-xml:i386' 'libqt4-xmlpatterns:i386' 'libqtassistantclient4:i386' 'libqtcore4:i386' 'libqtcore4-perl' 'libqtgui4:i386' 'libqtgui4-perl' 'libqtlocation1:i386' 'libqtruby4shared2' 'libqtwebkit-dev' 'libqtwebkit4:i386' 'libquadmath0:i386' 'libquvi-scripts' 'libquvi7:i386' 'libraptor2-0' 'librarian0' 'librasqal3' 'libraw1394-11:i386' 'libraw5:i386' 'librdf0' 'libreadline-java' 'libreadline5:i386' 'libreadline6:i386' 'libreadonly-perl' 'libreadonly-xs-perl' 'libregexp-assemble-perl' 'libregexp-java' 'libreoffice' 'libreoffice-base' 'libreoffice-base-core' 'libreoffice-calc' 'libreoffice-common' 'libreoffice-core' 'libreoffice-draw' 'libreoffice-emailmerge' 'libreoffice-evolution' 'libreoffice-filter-binfilter' 'libreoffice-filter-mobiledev' 'libreoffice-gnome' 'libreoffice-gtk' 'libreoffice-help-en-gb' 'libreoffice-help-en-us' 'libreoffice-help-es' 'libreoffice-help-fr' 'libreoffice-help-ja' 'libreoffice-help-nl' 'libreoffice-help-sv' 'libreoffice-impress' 'libreoffice-java-common' 'libreoffice-kde' 'libreoffice-l10n-en-gb' 'libreoffice-l10n-es' 'libreoffice-l10n-fr' 'libreoffice-l10n-ja' 'libreoffice-l10n-nl' 'libreoffice-l10n-sv' 'libreoffice-math' 'libreoffice-report-builder-bin' 'libreoffice-style-galaxy' 'libreoffice-style-oxygen' 'libreoffice-style-tango' 'libreoffice-writer' 'libresid-builder0c2a' 'librest-0.7-0:i386' 'librest-extras-0.7-0:i386' 'librhino-java' 'librpm3' 'librpmbuild3' 'librpmio3' 'librpmsign1' 'librsvg2-2:i386' 'librsvg2-common:i386' 'librtmp0:i386' 'libruby1.8' 'libruby1.9.1' 'libsamplerate0:i386' 'libsane:i386' 'libsane-common' 'libsane-extras:i386' 'libsane-extras-common' 'libsane-hpaio' 'libsane-perl' 'libsasl2-2:i386' 'libsasl2-modules:i386' 'libsaxon-java' 'libsaxonb-java' 'libschroedinger-1.0-0:i386' 'libscope-guard-perl' 'libsdl-image1.2:i386' 'libsdl-mixer1.2:i386' 'libsdl-sound1.2:i386' 'libsdl-ttf2.0-0:i386' 'libsdl1.2debian:i386' 'libseed-gtk3-0' 'libselinux1:i386' 'libsemanage-common' 'libsemanage1:i386' 'libsensors4:i386' 'libsepol1:i386' 'libserf1:i386' 'libservlet2.5-java' 'libset-intspan-perl' 'libsgutils2-2' 'libshiboken-py3-1.1:i386' 'libshiboken1.1:i386' 'libshout3:i386' 'libsidplay1' 'libsidplay2' 'libsidutils0' 'libsigc++-2.0-0c2a:i386' 'libsigsegv2' 'libskk-common' 'libskk0:i386' 'libslang2:i386' 'libslf4j-java' 'libslp1' 'libslv2-9' 'libsm-dev:i386' 'libsm6:i386' 'libsmbclient:i386' 'libsmokebase3' 'libsmokekdecore4-3' 'libsmokekdeui4-3' 'libsmokekfile3' 'libsmokekhtml3' 'libsmokekio3' 'libsmokeknewstuff2-3' 'libsmokeknewstuff3-3' 'libsmokekparts3' 'libsmokektexteditor3' 'libsmokekutils3' 'libsmokenepomuk3' 'libsmokeplasma3' 'libsmokeqtcore4-3' 'libsmokeqtdbus4-3' 'libsmokeqtgui4-3' 'libsmokeqtnetwork4-3' 'libsmokeqtopengl4-3' 'libsmokeqtsql4-3' 'libsmokeqtsvg4-3' 'libsmokeqtwebkit4-3' 'libsmokeqtxml4-3' 'libsmokesolid3' 'libsmpeg0:i386' 'libsndfile1:i386' 'libsnmp-base' 'libsnmp15' 'libsoap-lite-perl' 'libsocialweb-client2:i386' 'libsocialweb-common' 'libsocialweb-service' 'libsocialweb0:i386' 'libsocket-perl' 'libsocket6-perl' 'libsolid4' 'libsolidcontrol4abi2' 'libsolidcontrolifaces4abi2' 'libsonic0:i386' 'libsoprano4' 'libsoundtouch0:i386' 'libsoup-gnome2.4-1:i386' 'libsoup2.4-1:i386' 'libsox-fmt-alsa' 'libsox-fmt-base' 'libsox2' 'libspandsp2' 'libspectre1:i386' 'libspeechd2' 'libspeex1:i386' 'libspeexdsp1:i386' 'libspnav0' 'libsqlite0' 'libsqlite3-0:i386' 'libsrtp0' 'libss2:i386' 'libssh-4:i386' 'libssh2-1:i386' 'libssl-dev' 'libssl-doc' 'libssl1.0.0:i386' 'libstartup-notification0' 'libstdc++6:i386' 'libstdc++6-4.7-dev' 'libstlport4.6ldbl' 'libstreamanalyzer0' 'libstreams0' 'libstring-formatter-perl' 'libstringtemplate-java' 'libsub-exporter-perl' 'libsub-exporter-progressive-perl' 'libsub-identify-perl' 'libsub-install-perl' 'libsub-name-perl' 'libsvm-tools' 'libsvn-perl' 'libsvn1:i386' 'libswitch-perl' 'libswscale2:i386' 'libsyndication4' 'libsys-hostname-long-perl' 'libsystemd-daemon0:i386' 'libsystemd-login0:i386' 'libt1-5' 'libtag1-vanilla:i386' 'libtag1c2a:i386' 'libtagc0:i386' 'libtalloc2:i386' 'libtar0' 'libtask-weaken-perl' 'libtaskmanager4abi3' 'libtasn1-3:i386' 'libtdb1:i386' 'libtelepathy-farstream2:i386' 'libtelepathy-glib0:i386' 'libtelepathy-logger2:i386' 'libterm-readkey-perl' 'libtesseract3' 'libtext-charwidth-perl' 'libtext-iconv-perl' 'libtext-wrapi18n-perl' 'libthai-data' 'libthai0:i386' 'libtheora0:i386' 'libthreadweaver4' 'libthunar-vfs-1-2' 'libthunar-vfs-1-common' 'libthunarx-2-0' 'libtidy-0.99-0' 'libtie-ixhash-perl' 'libtiff-tools' 'libtiff4:i386' 'libtiff5:i386' 'libtimedate-perl' 'libtinfo-dev:i386' 'libtinfo5:i386' 'libtirpc1:i386' 'libtokyocabinet9:i386' 'libtotem-plparser17' 'libtotem0' 'libtracker-extract-0.14-0' 'libtracker-miner-0.14-0' 'libtracker-sparql-0.14-0' 'libtre5:i386' 'libtry-tiny-perl' 'libts-0.0-0:i386' 'libttspico-data' 'libttspico-dev' 'libttspico-utils' 'libttspico0:i386' 'libtumbler-1-0' 'libtwolame0' 'libudev0:i386' 'libuim-custom2:i386' 'libuim-data' 'libuim-scm0:i386' 'libuim8:i386' 'libumfpack5.4.0' 'libunique-1.0-0' 'libunique-3.0-0' 'libunistring0:i386' 'libupnp6' 'libupower-glib1' 'liburi-perl' 'libusb-0.1-4:i386' 'libusb-1.0-0:i386' 'libusbmuxd1' 'libustr-1.0-1:i386' 'libutempter0' 'libuuid-perl' 'libuuid1:i386' 'libv4l-0:i386' 'libv4lconvert0:i386' 'libva-x11-1:i386' 'libva1:i386' 'libvariable-magic-perl' 'libvcdinfo0' 'libvdpau1:i386' 'libvirtodbc0' 'libvisio-0.0-0' 'libvisual-0.4-0:i386' 'libvisual-0.4-plugins:i386' 'libvlc5' 'libvlccore5' 'libvo-aacenc0:i386' 'libvo-amrwbenc0:i386' 'libvoikko1' 'libvorbis0a:i386' 'libvorbisenc2:i386' 'libvorbisfile3:i386' 'libvpx1:i386' 'libvte-2.90-9' 'libvte-2.90-common' 'libvte-common' 'libvte9' 'libwacom-common' 'libwacom2:i386' 'libwavpack1:i386' 'libwayland-dev' 'libwayland0:i386' 'libwayland0-dbg' 'libwbclient0:i386' 'libweather-ion6' 'libwebkitgtk-1.0-0' 'libwebkitgtk-1.0-common' 'libwebkitgtk-3.0-0' 'libwebkitgtk-3.0-common' 'libwebp2:i386' 'libwildmidi-config' 'libwildmidi1:i386' 'libwmf-bin' 'libwmf0.2-7:i386' 'libwnck-3-0' 'libwnck-3-common' 'libwnck-common' 'libwnck22' 'libwpd-0.9-9' 'libwpg-0.2-2' 'libwps-0.2-2' 'libwrap0:i386' 'libwriter2latex-java' 'libwv-1.2-4:i386' 'libwww-perl' 'libwww-robotrules-perl' 'libx11-6:i386' 'libx11-data' 'libx11-dev:i386' 'libx11-doc' 'libx11-protocol-perl' 'libx11-xcb1:i386' 'libx264-123:i386' 'libx86-1:i386' 'libxalan2-java' 'libxapian22' 'libxau-dev:i386' 'libxau6:i386' 'libxaw7:i386' 'libxcb-composite0:i386' 'libxcb-dri2-0:i386' 'libxcb-glx0:i386' 'libxcb-keysyms1:i386' 'libxcb-randr0:i386' 'libxcb-render0:i386' 'libxcb-render0-dev:i386' 'libxcb-shape0:i386' 'libxcb-shm0:i386' 'libxcb-shm0-dev:i386' 'libxcb-util0:i386' 'libxcb-xfixes0:i386' 'libxcb-xv0:i386' 'libxcb1:i386' 'libxcb1-dev:i386' 'libxcomposite-dev' 'libxcomposite1:i386' 'libxcursor-dev:i386' 'libxcursor1:i386' 'libxdamage-dev' 'libxdamage1:i386' 'libxdelta2' 'libxdmcp-dev:i386' 'libxdmcp6:i386' 'libxerces2-java' 'libxext-dev:i386' 'libxext6:i386' 'libxfce4ui-1-0' 'libxfce4util-bin' 'libxfce4util-common' 'libxfce4util4' 'libxfcegui4-4' 'libxfconf-0-2' 'libxfixes-dev' 'libxfixes3:i386' 'libxfont1' 'libxft-dev' 'libxft2:i386' 'libxi-dev' 'libxi6:i386' 'libxinerama-dev:i386' 'libxinerama1:i386' 'libxkbfile1:i386' 'libxklavier16' 'libxml-commons-external-java' 'libxml-commons-resolver1.1-java' 'libxml-namespacesupport-perl' 'libxml-parser-perl' 'libxml-sax-base-perl' 'libxml-sax-expat-perl' 'libxml-sax-perl' 'libxml-simple-perl' 'libxml-twig-perl' 'libxml-xpathengine-perl' 'libxml2:i386' 'libxml2-utils' 'libxmlgraphics-commons-java' 'libxmmsclient-glib1' 'libxmmsclient6' 'libxmu6:i386' 'libxmuu1:i386' 'libxom-java' 'libxpm4:i386' 'libxpp2-java' 'libxpp3-java' 'libxrandr-dev' 'libxrandr2:i386' 'libxrender-dev:i386' 'libxrender1:i386' 'libxres1:i386' 'libxslt1.1:i386' 'libxss1:i386' 'libxstream-java' 'libxt-dev:i386' 'libxt6:i386' 'libxtables9' 'libxtst6:i386' 'libxv1:i386' 'libxvidcore4:i386' 'libxvmc1' 'libxxf86dga1:i386' 'libxxf86vm1:i386' 'libxz-java' 'libyajl2' 'libyaml-0-2:i386' 'libyaml-libyaml-perl' 'libyaml-perl' 'libyelp0' 'libzbar0' 'libzephyr4' 'libzinnia0' 'libzmq1:i386' 'libzvbi-common' 'libzvbi0:i386' 'lightdm' 'lightdm-gtk-greeter' 'link-grammar-dictionaries-en' 'links' 'lintian' 'linux-base' 'linux-headers-3.7.0-rc6-20121120' 'linux-image-3.2.0-4-686-pae' 'linux-image-3.7.0-rc6-20121120' 'linux-image-686-pae' 'linux-libc-dev:i386' 'lm-sensors' 'lmodern' 'locales' 'locales-all' 'lockfile-progs' 'login' 'logrotate' 'lp-solve' 'lsb-base' 'lsb-release' 'lsof' 'lua-rex-pcre:i386' 'lua-sql-sqlite3:i386' 'luatex' 'lv' 'lwresd' 'lxappearance' 'lxde' 'lxde-common' 'lxde-core' 'lxde-icon-theme' 'lxinput' 'lxlauncher' 'lxmenu-data' 'lxmusic' 'lxpanel' 'lxpolkit' 'lxrandr' 'lxsession' 'lxsession-edit' 'lxshortcut' 'lxtask' 'lxterminal' 'lynx' 'lynx-cur' 'm-tx' 'm17n-contrib' 'm17n-db' 'm4' 'mahjongg' 'mailagent' 'maint-guide-fr' 'make' 'man-db' 'manpages' 'manpages-dev' 'manpages-es' 'manpages-fr' 'manpages-fr-extra' 'manpages-ja' 'manpages-ja-dev' 'marble-data' 'marble-plugins' 'markdown' 'mawk' 'mbrola' 'mbrola-en1' 'mbrola-fr1' 'mbrola-fr4' 'mbrola-sw1' 'mbrola-sw2' 'mbrola-us1' 'mbrola-us2' 'mbrola-us3' 'media-player-info' 'meld' 'menu' 'menu-l10n' 'menu-xdg' 'mercurial' 'mercurial-buildpackage' 'mercurial-common' 'mercurial-server' 'mesa-common-dev' 'mesa-utils' 'metacity' 'metacity-common' 'midori' 'mime-support' 'mlocate' 'mobile-broadband-provider-info' 'modemmanager' 'module-init-tools' 'mongodb' 'mongodb-clients' 'mongodb-dev' 'mongodb-server' 'mono-4.0-gac' 'mono-gac' 'mono-runtime' 'mount' 'mousepad' 'mousetweaks' 'mozc-data' 'mozc-server' 'mozc-utils-gui' 'mpd' 'mpdscribble' 'mpdtoys' 'mplayer2' 'mscompress' 'msmtp' 'mudlet' 'multiarch-support' 'musescore-soundfont-gm' 'musixtex' 'mutt' 'mutt-patched' 'mutter-common' 'mypaint' 'mypaint-data' 'myspell-bg' 'myspell-ca' 'myspell-cs' 'myspell-de-de' 'myspell-el-gr' 'myspell-en-gb' 'myspell-eo' 'myspell-es' 'myspell-et' 'myspell-he' 'myspell-hu' 'myspell-it' 'myspell-ku' 'myspell-lt' 'myspell-lv' 'myspell-nb' 'myspell-nl' 'myspell-nn' 'myspell-pl' 'myspell-pt-br' 'myspell-pt-pt' 'myspell-ru' 'myspell-sk' 'myspell-sl' 'myspell-sv-se' 'myspell-uk' 'mysql-common' 'mysql-server-core-5.5' 'mythes-en-us' 'mythes-fr' 'nano' 'natbraille' 'nautilus' 'nautilus-data' 'nautilus-sendto' 'nautilus-sendto-empathy' 'ncmpc' 'ncmpc-lyrics' 'ncmpcpp' 'ncurses-base' 'ncurses-bin' 'ncurses-term' 'neko' 'net-tools' 'netbase' 'netcat-traditional' 'netpbm' 'network-manager' 'network-manager-gnome' 'network-manager-kde' 'network-manager-openvpn' 'network-manager-pptp' 'network-manager-vpnc' 'nfs-common' 'nginx-common' 'nginx-naxsi' 'nitrogen' 'nkf' 'nmap' 'notification-daemon' 'ntfs-3g' 'ntpdate' 'ntrack-module-libnl-0' 'obconf' 'obex-data-server' 'obexd-client' 'ocrad' 'odbcinst' 'odbcinst1debian2:i386' 'offlineimap' 'ofono' 'okular' 'openbox' 'openbox-themes' 'openjdk-6-jdk:i386' 'openjdk-6-jre:i386' 'openjdk-6-jre-headless:i386' 'openjdk-6-jre-lib' 'openjdk-7-jdk:i386' 'openjdk-7-jre:i386' 'openjdk-7-jre-headless:i386' 'openjdk-7-jre-lib' 'openoffice.org-java-common' 'openprinting-ppds' 'opensc' 'openssh-blacklist' 'openssh-blacklist-extra' 'openssh-client' 'openssh-server' 'openssl' 'openssl-blacklist' 'openssl-blacklist-extra' 'openvpn' 'orage' 'os-prober' 'oss-compat' 'otf-freefont' 'oxygen-icon-theme' 'oxygencursors' 'p7zip-full' 'p7zip-rar' 'packagekit' 'packagekit-backend-aptcc' 'packagekit-tools' 'passwd' 'patch' 'patchutils' 'pbuilder' 'pbzip2' 'pciutils' 'pcmanfm' 'pcmciautils' 'pcsc-tools' 'pcscd' 'pdf2djvu' 'pennmush' 'pennmush-common' 'pennmush-i18n' 'perl' 'perl-base' 'perl-modules' 'perlmagick' 'pfb2t1c2pfb' 'pgf' 'phonon:i386' 'phonon-backend-vlc' 'php5-cli' 'php5-common' 'pidgin-data' 'pinentry-gtk2' 'pinyin-database' 'pkg-config' 'plasma-containments-addons' 'plasma-dataengines-addons' 'plasma-dataengines-workspace' 'plasma-desktop' 'plasma-desktopthemes-artwork' 'plasma-runners-addons' 'plasma-scriptengine-googlegadgets' 'plasma-scriptengine-javascript' 'plasma-scriptengine-python' 'plasma-scriptengine-ruby' 'plasma-scriptengine-superkaramba' 'plasma-scriptengine-webkit' 'plasma-scriptengines' 'plasma-wallpapers-addons' 'plasma-widget-folderview' 'plasma-widget-lancelot' 'plasma-widget-networkmanagement' 'plasma-widget-uim' 'plasma-widgets-addons' 'plasma-widgets-workspace' 'pm-utils' 'pmx' 'po-debconf' 'policykit-1' 'policykit-1-gnome' 'polkit-kde-1' 'poppler-data' 'poppler-utils' 'postgresql' 'postgresql-9.1' 'postgresql-client-9.1' 'postgresql-client-common' 'postgresql-common' 'postgresql-contrib' 'postgresql-contrib-9.1' 'postgresql-doc' 'postgresql-doc-9.1' 'powermgmt-base' 'powertop' 'ppp' 'pppoe' 'pppoeconf' 'pptp-linux' 'preview-latex-style' 'printer-driver-all' 'printer-driver-c2050' 'printer-driver-c2esp' 'printer-driver-cjet' 'printer-driver-escpr' 'printer-driver-foo2zjs' 'printer-driver-gutenprint' 'printer-driver-hpcups' 'printer-driver-hpijs' 'printer-driver-m2300w' 'printer-driver-min12xxw' 'printer-driver-pnm2ppa' 'printer-driver-postscript-hp' 'printer-driver-ptouch' 'printer-driver-pxljr' 'printer-driver-sag-gdi' 'printer-driver-splix' 'pristine-tar' 'procmail' 'procps' 'prosper' 'ps2eps' 'psmisc' 'pstoedit' 'psutils' 'purifyeps' 'pxlib1' 'pychess' 'pyflakes' 'pylint' 'pypy' 'pypy-dev' 'pypy-lib' 'python' 'python-aiml' 'python-all' 'python-amqplib' 'python-anyjson' 'python-apt' 'python-apt-common' 'python-aptdaemon' 'python-aptdaemon.gtk3widgets' 'python-beautifulsoup' 'python-brlapi' 'python-bson' 'python-bson-ext' 'python-cairo' 'python-cddb' 'python-celery' 'python-chardet' 'python-cl' 'python-configobj' 'python-crypto' 'python-cups' 'python-cupshelpers' 'python-dateutil' 'python-dbus' 'python-dbus-dev' 'python-debian' 'python-debianbts' 'python-decorator' 'python-defer' 'python-django' 'python-django-app-plugins' 'python-django-auth-ldap' 'python-django-celery' 'python-django-classy-tags' 'python-django-contact-form' 'python-django-countries' 'python-django-dajaxice' 'python-django-evolution' 'python-django-extensions' 'python-django-extra-views' 'python-django-feincms' 'python-django-filebrowser' 'python-django-genshi' 'python-django-haystack' 'python-django-lint' 'python-django-localeurl' 'python-django-markupfield' 'python-django-mptt' 'python-django-nose' 'python-django-notification' 'python-django-pagination' 'python-django-picklefield' 'python-django-pipeline' 'python-django-registration' 'python-django-rosetta' 'python-django-sekizai' 'python-django-shorturls' 'python-django-social-auth' 'python-django-south' 'python-django-tagging' 'python-django-tinymce' 'python-django-treebeard' 'python-django-uwsgi-admin' 'python-django-voting' 'python-django-websocket' 'python-docutils' 'python-egenix-mxdatetime' 'python-egenix-mxtools' 'python-enchant' 'python-espeak' 'python-etk.docking' 'python-factory-boy' 'python-feedparser' 'python-fpconst' 'python-gaphas' 'python-gconf' 'python-genetic' 'python-genshi' 'python-gevent' 'python-gi' 'python-gi-cairo' 'python-glade2' 'python-gnome2' 'python-gnomedesktop' 'python-gnupginterface' 'python-gobject' 'python-gobject-2' 'python-gpod' 'python-greenlet' 'python-gridfs' 'python-gst0.10' 'python-gtk2' 'python-gtksourceview2' 'python-httplib2' 'python-ibus' 'python-imaging' 'python-imaging-sane' 'python-indicate' 'python-jinja2' 'python-kde4' 'python-kombu' 'python-ldap' 'python-libxml2' 'python-logilab-astng' 'python-logilab-common' 'python-louis' 'python-lxml' 'python-magic' 'python-mailer' 'python-markdown' 'python-markupsafe' 'python-memcache' 'python-mimeparse' 'python-minimal' 'python-mmkeys' 'python-mock' 'python-mongoengine' 'python-musicbrainz2' 'python-mutagen' 'python-nose' 'python-notify' 'python-numpy' 'python-oauth2' 'python-oauthlib' 'python-openid' 'python-openssl' 'python-packagekit' 'python-pdfrw' 'python-pexpect' 'python-pip' 'python-pkg-resources' 'python-polib' 'python-psycopg2' 'python-pyasn1' 'python-pyatspi' 'python-pyatspi2' 'python-pycurl' 'python-pygame' 'python-pygments' 'python-pyinotify' 'python-pymongo' 'python-pymongo-ext' 'python-pyorbit' 'python-pyparsing' 'python-pyside' 'python-pyside.phonon' 'python-pyside.qtcore' 'python-pyside.qtdeclarative' 'python-pyside.qtgui' 'python-pyside.qthelp' 'python-pyside.qtnetwork' 'python-pyside.qtopengl' 'python-pyside.qtscript' 'python-pyside.qtsql' 'python-pyside.qtsvg' 'python-pyside.qttest' 'python-pyside.qtuitools' 'python-pyside.qtwebkit' 'python-pyside.qtxml' 'python-qt4' 'python-qt4-dbus' 'python-qt4-phonon' 'python-rdflib' 'python-renderpm' 'python-renpy' 'python-reportbug' 'python-reportlab' 'python-reportlab-accel' 'python-requests' 'python-roman' 'python-rsvg' 'python-selenium' 'python-setuptools' 'python-setuptools-git' 'python-simplegeneric' 'python-simplejson' 'python-sip' 'python-six' 'python-soappy' 'python-software-properties' 'python-speechd' 'python-sphinx' 'python-sqlite' 'python-stdeb' 'python-subversion' 'python-support' 'python-tastypie' 'python-tegaki' 'python-tegaki-gtk' 'python-textile' 'python-tidylib' 'python-tk' 'python-uno' 'python-utidylib' 'python-virtualenv' 'python-whoosh' 'python-xapian' 'python-xdg' 'python-yaml' 'python-zinnia' 'python-zope.component' 'python-zope.event' 'python-zope.hookable' 'python-zope.interface' 'python2.6' 'python2.6-minimal' 'python2.7' 'python2.7-minimal' 'python3' 'python3-all' 'python3-apt' 'python3-chardet' 'python3-debian' 'python3-decorator' 'python3-dev' 'python3-docutils' 'python3-enchant' 'python3-gi' 'python3-gtkspellcheck' 'python3-jinja2' 'python3-lxml' 'python3-markdown' 'python3-markupsafe' 'python3-minimal' 'python3-pip' 'python3-pkg-resources' 'python3-psycopg2' 'python3-pygments' 'python3-pyqt4' 'python3-pyside' 'python3-pyside.phonon' 'python3-pyside.qtcore' 'python3-pyside.qtdeclarative' 'python3-pyside.qtgui' 'python3-pyside.qthelp' 'python3-pyside.qtnetwork' 'python3-pyside.qtopengl' 'python3-pyside.qtscript' 'python3-pyside.qtsql' 'python3-pyside.qtsvg' 'python3-pyside.qttest' 'python3-pyside.qtuitools' 'python3-pyside.qtwebkit' 'python3-pyside.qtxml' 'python3-roman' 'python3-setuptools' 'python3-setuptools-git' 'python3-simplegeneric' 'python3-sip' 'python3-six' 'python3-sphinx' 'python3-yaml' 'python3-zmq' 'python3.2' 'python3.2-dev' 'python3.2-minimal' 'qdbus' 'qt4-designer' 'qt4-dev-tools' 'qt4-doc' 'qt4-linguist-tools' 'qt4-qmake' 'qtads' 'quilt' 'quodlibet' 'quodlibet-plugins' 'radeontool' 'radvd' 'rarian-compat' 're2c' 'readline-common' 'renpy' 'reportbug' 'retext' 'retext-wpgen' 'rfkill' 'rhino' 'ristretto' 'rkhunter' 'rpcbind' 'rpm' 'rpm-common' 'rpm2cpio' 'rst2pdf' 'rsync' 'rsyslog' 'ruby' 'ruby-debian' 'ruby-kde4' 'ruby-plasma' 'ruby-qt4' 'ruby-qt4-webkit' 'ruby1.8' 'ruby1.9.1' 'runit' 'sa-exim' 'samba-common' 'samba-common-bin' 'sane' 'sane-utils' 'sbcl' 'scribus' 'scribus-template' 'scummvm' 'scummvm-data' 'seabios' 'seahorse' 'sed' 'sensible-utils' 'sgml-base' 'sgml-data' 'shared-desktop-ontologies' 'shared-mime-info' 'shotwell' 'shotwell-common' 'simple-scan' 'skkdic' 'smbclient' 'software-properties-common' 'software-properties-gtk' 'soprano-daemon' 'sound-icons' 'sound-juicer' 'sound-theme-freedesktop' 'sox' 'sozi' 'spamassassin' 'spamc' 'speech-dispatcher' 'speech-dispatcher-festival' 'sphinx-common' 'sphinx-doc' 'spidermonkey-bin' 'squeeze' 'ssl-cert' 'stardict' 'stardict-common' 'stardict-gnome' 'stardict-plugin' 'stardict-plugin-espeak' 'stardict-plugin-festival' 'stardict-tools' 'stardict-xmlittre' 'strace' 'subversion' 'subversion-tools' 'sudo' 'svn2cl' 'swath' 'sweeper' 'swell-foop' 'synaptic' 'system-config-printer' 'system-config-printer-udev' 'system-tools-backends' 'systemsettings' 'sysv-rc' 'sysvinit' 'sysvinit-utils' 't1utils' 'tagainijisho' 'tagainijisho-common' 'tagainijisho-dic-de' 'tagainijisho-dic-en' 'tagainijisho-dic-es' 'tagainijisho-dic-fr' 'tagainijisho-dic-it' 'tagainijisho-dic-pt' 'tagainijisho-dic-ru' 'tagainijisho-dic-th' 'tagainijisho-dic-tr' 'tango-icon-theme' 'tar' 'task-british-desktop' 'task-british-kde-desktop' 'task-database-server' 'task-desktop' 'task-dns-server' 'task-dutch' 'task-dutch-desktop' 'task-dutch-kde-desktop' 'task-english' 'task-french' 'task-french-desktop' 'task-french-kde-desktop' 'task-japanese' 'task-japanese-desktop' 'task-japanese-gnome-desktop' 'task-japanese-kde-desktop' 'task-kde-desktop' 'task-laptop' 'task-lxde-desktop' 'task-mail-server' 'task-print-server' 'task-spanish' 'task-spanish-desktop' 'task-spanish-kde-desktop' 'task-ssh-server' 'task-swedish' 'task-swedish-desktop' 'task-swedish-kde-desktop' 'task-xfce-desktop' 'tasksel' 'tasksel-data' 'tcl' 'tcl8.5' 'tcpd' 'tegaki-zinnia-japanese' 'telepathy-gabble' 'telepathy-haze' 'telepathy-logger' 'telepathy-mission-control-5' 'telepathy-ring' 'telepathy-salut' 'telnet' 'tesseract-ocr' 'tesseract-ocr-deu' 'tesseract-ocr-eng' 'tesseract-ocr-equ' 'tesseract-ocr-fra' 'tesseract-ocr-jpn' 'tesseract-ocr-osd' 'tesseract-ocr-spa' 'tesseract-ocr-swe' 'tex-common' 'tex-gyre' 'tex4ht' 'tex4ht-common' 'texinfo' 'texlive-base' 'texlive-bibtex-extra' 'texlive-binaries' 'texlive-common' 'texlive-doc-ar' 'texlive-doc-base' 'texlive-doc-bg' 'texlive-doc-cs+sk' 'texlive-doc-de' 'texlive-doc-en' 'texlive-doc-es' 'texlive-doc-fi' 'texlive-doc-fr' 'texlive-doc-it' 'texlive-doc-ja' 'texlive-doc-ko' 'texlive-doc-mn' 'texlive-doc-nl' 'texlive-doc-pl' 'texlive-doc-pt' 'texlive-doc-rs' 'texlive-doc-ru' 'texlive-doc-si' 'texlive-doc-th' 'texlive-doc-tr' 'texlive-doc-uk' 'texlive-doc-vi' 'texlive-doc-zh' 'texlive-extra-utils' 'texlive-font-utils' 'texlive-fonts-extra' 'texlive-fonts-extra-doc' 'texlive-fonts-recommended' 'texlive-fonts-recommended-doc' 'texlive-formats-extra' 'texlive-full' 'texlive-games' 'texlive-generic-extra' 'texlive-generic-recommended' 'texlive-humanities' 'texlive-humanities-doc' 'texlive-lang-african' 'texlive-lang-arabic' 'texlive-lang-armenian' 'texlive-lang-cjk' 'texlive-lang-croatian' 'texlive-lang-cyrillic' 'texlive-lang-czechslovak' 'texlive-lang-danish' 'texlive-lang-dutch' 'texlive-lang-english' 'texlive-lang-finnish' 'texlive-lang-french' 'texlive-lang-german' 'texlive-lang-greek' 'texlive-lang-hebrew' 'texlive-lang-hungarian' 'texlive-lang-indic' 'texlive-lang-italian' 'texlive-lang-latin' 'texlive-lang-latvian' 'texlive-lang-lithuanian' 'texlive-lang-mongolian' 'texlive-lang-norwegian' 'texlive-lang-other' 'texlive-lang-polish' 'texlive-lang-portuguese' 'texlive-lang-spanish' 'texlive-lang-swedish' 'texlive-lang-tibetan' 'texlive-lang-vietnamese' 'texlive-latex-base' 'texlive-latex-base-doc' 'texlive-latex-extra' 'texlive-latex-extra-doc' 'texlive-latex-recommended' 'texlive-latex-recommended-doc' 'texlive-luatex' 'texlive-math-extra' 'texlive-metapost' 'texlive-metapost-doc' 'texlive-music' 'texlive-omega' 'texlive-pictures' 'texlive-pictures-doc' 'texlive-plain-extra' 'texlive-pstricks' 'texlive-pstricks-doc' 'texlive-publishers' 'texlive-publishers-doc' 'texlive-science' 'texlive-science-doc' 'texlive-xetex' 'tf' 'thailatex' 'thunar' 'thunar-archive-plugin' 'thunar-data' 'thunar-media-tags-plugin' 'thunar-volman' 'time' 'timidity' 'timidity-daemon' 'tint2' 'tinymce' 'tinymux' 'tipa' 'tk' 'tk8.5' 'tla' 'tla-doc' 'tmux' 'toilet' 'toilet-fonts' 'tomboy' 'totem' 'totem-common' 'totem-plugins' 'traceroute' 'tracker' 'tracker-extract' 'tracker-gui' 'tracker-miner-fs' 'tracker-utils' 'transfig' 'tripwire' 'tsconf' 'ttf-dejavu' 'ttf-dejavu-core' 'ttf-dejavu-extra' 'ttf-freefont' 'ttf-liberation' 'ttf-marvosym' 'ttf-sil-gentium-basic' 'ttf-unifont' 'tumbler' 'tumbler-common' 'tzdata' 'tzdata-java' 'ucf' 'udev' 'udisks' 'ufraw-batch' 'uim' 'uim-anthy' 'uim-applet-gnome' 'uim-common' 'uim-fep' 'uim-gtk2.0' 'uim-gtk3' 'uim-mozc:i386' 'uim-qt' 'uim-utils' 'uim-xim' 'uligo' 'unadf' 'unattended-upgrades' 'unhide' 'unhide.rb' 'unifont' 'uno-libs3' 'unpaper' 'unzip' 'update-inetd' 'update-notifier-common' 'update-notifier-kde' 'upower' 'ure' 'usb-modeswitch' 'usb-modeswitch-data' 'usbmuxd' 'usbutils' 'util-linux' 'util-linux-locales' 'uwsgi-core' 'uwsgi-plugin-python' 'vbetool' 'vcdimager' 'vera' 'vim-addon-manager' 'vim-common' 'vim-nox' 'vim-rails' 'vim-runtime' 'vim-scripts' 'vim-syntax-gtk' 'vim-tiny' 'virtuoso-minimal' 'virtuoso-opensource-6.1-bin' 'virtuoso-opensource-6.1-common' 'vlc' 'vlc-data' 'vlc-nox' 'vlc-plugin-fluidsynth' 'vlc-plugin-notify' 'vlc-plugin-pulse' 'voikko-fi' 'vpnc' 'w3m' 'wamerican' 'wdiff' 'wdutch' 'wfrench' 'wget' 'whiptail' 'whois' 'wireless-regdb' 'wireless-tools' 'wodim' 'wpasupplicant' 'writer2latex' 'wspanish' 'wswedish' 'wwwconfig-common' 'x11-apps' 'x11-common' 'x11-session-utils' 'x11-utils' 'x11-xfs-utils' 'x11-xkb-utils' 'x11-xserver-utils' 'x11proto-composite-dev' 'x11proto-core-dev' 'x11proto-damage-dev' 'x11proto-fixes-dev' 'x11proto-input-dev' 'x11proto-kb-dev' 'x11proto-randr-dev' 'x11proto-render-dev' 'x11proto-xext-dev' 'x11proto-xinerama-dev' 'xarchiver' 'xauth' 'xaw3dg:i386' 'xbitmaps' 'xbrlapi' 'xcowsay' 'xdelta' 'xdg-user-dirs' 'xdg-utils' 'xfburn' 'xfce-keyboard-shortcuts' 'xfce4' 'xfce4-appfinder' 'xfce4-artwork' 'xfce4-battery-plugin' 'xfce4-clipman' 'xfce4-clipman-plugin' 'xfce4-cpufreq-plugin' 'xfce4-cpugraph-plugin' 'xfce4-datetime-plugin' 'xfce4-dict' 'xfce4-diskperf-plugin' 'xfce4-fsguard-plugin' 'xfce4-genmon-plugin' 'xfce4-goodies' 'xfce4-mailwatch-plugin' 'xfce4-mixer' 'xfce4-mount-plugin' 'xfce4-netload-plugin' 'xfce4-notes' 'xfce4-notes-plugin' 'xfce4-notifyd' 'xfce4-panel' 'xfce4-places-plugin' 'xfce4-power-manager' 'xfce4-power-manager-data' 'xfce4-quicklauncher-plugin' 'xfce4-screenshooter' 'xfce4-sensors-plugin' 'xfce4-session' 'xfce4-settings' 'xfce4-smartbookmark-plugin' 'xfce4-systemload-plugin' 'xfce4-taskmanager' 'xfce4-terminal' 'xfce4-timer-plugin' 'xfce4-utils' 'xfce4-verve-plugin' 'xfce4-volumed' 'xfce4-wavelan-plugin' 'xfce4-weather-plugin' 'xfce4-xkb-plugin' 'xfconf' 'xfdesktop4' 'xfdesktop4-data' 'xfonts-100dpi' 'xfonts-75dpi' 'xfonts-base' 'xfonts-encodings' 'xfonts-intl-european' 'xfonts-mathml' 'xfonts-scalable' 'xfonts-unifont' 'xfonts-utils' 'xfprint4' 'xfwm4' 'xfwm4-themes' 'xindy' 'xindy-rules' 'xinit' 'xinput' 'xkb-data' 'xml-core' 'xmms2-core' 'xmms2-plugin-alsa' 'xmms2-plugin-id3v2' 'xmms2-plugin-mad' 'xmms2-plugin-vorbis' 'xorg' 'xorg-docs-core' 'xorg-sgml-doctools' 'xsane' 'xsane-common' 'xscreensaver' 'xscreensaver-data' 'xscreensaver-data-extra' 'xscreensaver-gl' 'xscreensaver-gl-extra' 'xscreensaver-screensaver-bsod' 'xserver-common' 'xserver-xephyr' 'xserver-xorg' 'xserver-xorg-core' 'xserver-xorg-input-all' 'xserver-xorg-input-evdev' 'xserver-xorg-input-synaptics' 'xserver-xorg-input-wacom' 'xserver-xorg-video-all' 'xserver-xorg-video-apm' 'xserver-xorg-video-ark' 'xserver-xorg-video-ati' 'xserver-xorg-video-chips' 'xserver-xorg-video-cirrus' 'xserver-xorg-video-fbdev' 'xserver-xorg-video-geode' 'xserver-xorg-video-i128' 'xserver-xorg-video-i740' 'xserver-xorg-video-intel' 'xserver-xorg-video-mach64' 'xserver-xorg-video-mga' 'xserver-xorg-video-neomagic' 'xserver-xorg-video-nouveau' 'xserver-xorg-video-openchrome' 'xserver-xorg-video-r128' 'xserver-xorg-video-radeon' 'xserver-xorg-video-rendition' 'xserver-xorg-video-s3' 'xserver-xorg-video-s3virge' 'xserver-xorg-video-savage' 'xserver-xorg-video-siliconmotion' 'xserver-xorg-video-sis' 'xserver-xorg-video-sisusb' 'xserver-xorg-video-tdfx' 'xserver-xorg-video-trident' 'xserver-xorg-video-tseng' 'xserver-xorg-video-vesa' 'xserver-xorg-video-vmware' 'xserver-xorg-video-voodoo' 'xshogi' 'xsltproc' 'xterm' 'xtrans-dev' 'xul-ext-adblock-plus' 'xul-ext-mozvoikko' 'xul-ext-noscript' 'xulrunner-10.0' 'xz-utils' 'yelp' 'yelp-xsl' 'zenity' 'zenity-common' 'zip' 'zlib1g:i386' 'zlib1g-dev:i386' 'zsh' ) diff --git a/common/.oh-my-zsh/cache/svn-add-args b/common/.oh-my-zsh/cache/svn-add-args deleted file mode 100644 index 3b17d27..0000000 --- a/common/.oh-my-zsh/cache/svn-add-args +++ /dev/null @@ -1 +0,0 @@ -args=( '--targets:arg:' '(--non-recursive)-N' '(-N)--non-recursive' '--depth:arg:' '(--quiet)-q' '(-q)--quiet' '--force' '--no-ignore' '--auto-props' '--no-auto-props' '--parents' '--username:arg:' '--password:arg:' '--no-auth-cache' '--non-interactive' '--trust-server-cert' '--config-dir:arg:' '--config-option:arg:' ) diff --git a/common/.oh-my-zsh/cache/svn-add-usage b/common/.oh-my-zsh/cache/svn-add-usage deleted file mode 100644 index c95f7ed..0000000 --- a/common/.oh-my-zsh/cache/svn-add-usage +++ /dev/null @@ -1 +0,0 @@ -usage='usage: add PATH...' diff --git a/common/.oh-my-zsh/cache/svn-cmds b/common/.oh-my-zsh/cache/svn-cmds deleted file mode 100644 index 103ceef..0000000 --- a/common/.oh-my-zsh/cache/svn-cmds +++ /dev/null @@ -1 +0,0 @@ -_svn_cmds=( 'status' ':status:stat:st:' 'merge' ':merge:' 'help' ':help:?:h:' 'switch' ':switch:sw:' 'propdel' ':propdel:pdel:pd:' 'move' ':move:mv:rename:ren:' 'cleanup' ':cleanup:' 'unlock' ':unlock:' 'resolved' ':resolved:' 'export' ':export:' 'copy' ':copy:cp:' 'revert' ':revert:' 'resolve' ':resolve:' 'mergeinfo' ':mergeinfo:' 'import' ':import:' 'diff' ':diff:di:' 'propedit' ':propedit:pedit:pe:' 'commit' ':commit:ci:' 'propset' ':propset:pset:ps:' 'mkdir' ':mkdir:' 'update' ':update:up:' 'proplist' ':proplist:plist:pl:' 'lock' ':lock:' 'blame' ':blame:praise:annotate:ann:' 'checkout' ':checkout:co:' 'add' ':add:' 'propget' ':propget:pget:pg:' 'delete' ':delete:del:remove:rm:' 'info' ':info:' 'changelist' ':changelist:cl:' 'log' ':log:' 'list' ':list:ls:' 'cat' ':cat:' ) diff --git a/common/.oh-my-zsh/cache/svn-copy-args b/common/.oh-my-zsh/cache/svn-copy-args deleted file mode 100644 index b7af617..0000000 --- a/common/.oh-my-zsh/cache/svn-copy-args +++ /dev/null @@ -1 +0,0 @@ -args=( '(--revision)-r:arg:' '(-r)--revision:arg:' '(--quiet)-q' '(-q)--quiet' '--ignore-externals' '--parents' '(--message)-m:arg:' '(-m)--message:arg:' '(--file)-F:arg:' '(-F)--file:arg:' '--force-log' '--editor-cmd:arg:' '--encoding:arg:' '--with-revprop:arg:' '--username:arg:' '--password:arg:' '--no-auth-cache' '--non-interactive' '--trust-server-cert' '--config-dir:arg:' '--config-option:arg:' ) diff --git a/common/.oh-my-zsh/cache/svn-copy-usage b/common/.oh-my-zsh/cache/svn-copy-usage deleted file mode 100644 index 035083c..0000000 --- a/common/.oh-my-zsh/cache/svn-copy-usage +++ /dev/null @@ -1 +0,0 @@ -usage='usage: copy SRC[@REV]... DST' diff --git a/common/.oh-my-zsh/cache/svn-propset-args b/common/.oh-my-zsh/cache/svn-propset-args deleted file mode 100644 index ab415e8..0000000 --- a/common/.oh-my-zsh/cache/svn-propset-args +++ /dev/null @@ -1 +0,0 @@ -args=( '(--file)-F:arg:' '(-F)--file:arg:' '--encoding:arg:' '(--quiet)-q' '(-q)--quiet' '(--revision)-r:arg:' '(-r)--revision:arg:' '--targets:arg:' '(--recursive)-R' '(-R)--recursive' '--depth:arg:' '--revprop' '--force' '*--cl:change list:_svn_changelists' '*--changelist:change list:_svn_changelists' '--username:arg:' '--password:arg:' '--no-auth-cache' '--non-interactive' '--trust-server-cert' '--config-dir:arg:' '--config-option:arg:' ) diff --git a/common/.oh-my-zsh/cache/svn-propset-usage b/common/.oh-my-zsh/cache/svn-propset-usage deleted file mode 100644 index c377b77..0000000 --- a/common/.oh-my-zsh/cache/svn-propset-usage +++ /dev/null @@ -1 +0,0 @@ -usage='usage: 1. propset PROPNAME PROPVAL PATH...' diff --git a/common/.oh-my-zsh/cache/svn-resolve-args b/common/.oh-my-zsh/cache/svn-resolve-args deleted file mode 100644 index 99c31ad..0000000 --- a/common/.oh-my-zsh/cache/svn-resolve-args +++ /dev/null @@ -1 +0,0 @@ -args=( '--targets:arg:' '(--recursive)-R' '(-R)--recursive' '--depth:arg:' '(--quiet)-q' '(-q)--quiet' '--accept:arg:' '--username:arg:' '--password:arg:' '--no-auth-cache' '--non-interactive' '--trust-server-cert' '--config-dir:arg:' '--config-option:arg:' ) diff --git a/common/.oh-my-zsh/cache/svn-resolve-usage b/common/.oh-my-zsh/cache/svn-resolve-usage deleted file mode 100644 index e44f4d5..0000000 --- a/common/.oh-my-zsh/cache/svn-resolve-usage +++ /dev/null @@ -1 +0,0 @@ -usage='usage: resolve --accept=ARG [PATH...]' diff --git a/common/.oh-my-zsh/cache/svn-resolved-args b/common/.oh-my-zsh/cache/svn-resolved-args deleted file mode 100644 index 55b6c8f..0000000 --- a/common/.oh-my-zsh/cache/svn-resolved-args +++ /dev/null @@ -1 +0,0 @@ -args=( '--targets:arg:' '(--recursive)-R' '(-R)--recursive' '--depth:arg:' '(--quiet)-q' '(-q)--quiet' '--username:arg:' '--password:arg:' '--no-auth-cache' '--non-interactive' '--trust-server-cert' '--config-dir:arg:' '--config-option:arg:' ) diff --git a/common/.oh-my-zsh/cache/svn-resolved-usage b/common/.oh-my-zsh/cache/svn-resolved-usage deleted file mode 100644 index f4fcbd9..0000000 --- a/common/.oh-my-zsh/cache/svn-resolved-usage +++ /dev/null @@ -1 +0,0 @@ -usage='usage: resolved PATH...' diff --git a/common/.oh-my-zsh/custom/example.zsh b/common/.oh-my-zsh/custom/example.zsh deleted file mode 100644 index 28ffcae..0000000 --- a/common/.oh-my-zsh/custom/example.zsh +++ /dev/null @@ -1,5 +0,0 @@ -# Add yourself some shortcuts to projects you often work on -# Example: -# -# brainstormr=/Users/robbyrussell/Projects/development/planetargon/brainstormr -# \ No newline at end of file diff --git a/common/.oh-my-zsh/custom/example/example.plugin.zsh b/common/.oh-my-zsh/custom/example/example.plugin.zsh deleted file mode 100644 index 406f274..0000000 --- a/common/.oh-my-zsh/custom/example/example.plugin.zsh +++ /dev/null @@ -1,2 +0,0 @@ -# Add your own custom plugins in the custom/plugins directory. Plugins placed -# here will override ones with the same name in the main plugins directory. diff --git a/common/.oh-my-zsh/lib/aliases.zsh b/common/.oh-my-zsh/lib/aliases.zsh deleted file mode 100644 index 2b58c4f..0000000 --- a/common/.oh-my-zsh/lib/aliases.zsh +++ /dev/null @@ -1,26 +0,0 @@ -# Push and pop directories on directory stack -alias pu='pushd' -alias po='popd' - -# Basic directory operations -alias ...='cd ../..' -alias -- -='cd -' - -# Super user -alias _='sudo' -alias please='sudo' - -#alias g='grep -in' - -# Show history -alias history='fc -l 1' - -# List direcory contents -alias lsa='ls -lah' -#alias l='ls -la' -alias ll='ls -l' -alias la='ls -lA' -alias sl=ls # often screw this up - -alias afind='ack-grep -il' - diff --git a/common/.oh-my-zsh/lib/completion.zsh b/common/.oh-my-zsh/lib/completion.zsh deleted file mode 100644 index e0cdcf6..0000000 --- a/common/.oh-my-zsh/lib/completion.zsh +++ /dev/null @@ -1,75 +0,0 @@ -# fixme - the load process here seems a bit bizarre - -unsetopt menu_complete # do not autoselect the first completion entry -unsetopt flowcontrol -setopt auto_menu # show completion menu on succesive tab press -setopt complete_in_word -setopt always_to_end - -WORDCHARS='' - -zmodload -i zsh/complist - -## case-insensitive (all),partial-word and then substring completion -if [ "x$CASE_SENSITIVE" = "xtrue" ]; then - zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' - unset CASE_SENSITIVE -else - zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' -fi - -zstyle ':completion:*' list-colors '' - -# should this be in keybindings? -bindkey -M menuselect '^o' accept-and-infer-next-history - -zstyle ':completion:*:*:*:*:*' menu select -zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01' -zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm -w -w" - -# disable named-directories autocompletion -zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-directories -cdpath=(.) - -# use /etc/hosts and known_hosts for hostname completion -[ -r /etc/ssh/ssh_known_hosts ] && _global_ssh_hosts=(${${${${(f)"$( /dev/null) || \ - ref=$(git rev-parse --short HEAD 2> /dev/null) || return - echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX" -} - - -# Checks if working tree is dirty -parse_git_dirty() { - local SUBMODULE_SYNTAX='' - local GIT_STATUS='' - local CLEAN_MESSAGE='nothing to commit (working directory clean)' - if [[ "$(git config --get oh-my-zsh.hide-status)" != "1" ]]; then - if [[ $POST_1_7_2_GIT -gt 0 ]]; then - SUBMODULE_SYNTAX="--ignore-submodules=dirty" - fi - if [[ "$DISABLE_UNTRACKED_FILES_DIRTY" != "true" ]]; then - GIT_STATUS=$(git status -s ${SUBMODULE_SYNTAX} 2> /dev/null | tail -n1) - else - GIT_STATUS=$(git status -s ${SUBMODULE_SYNTAX} -uno 2> /dev/null | tail -n1) - fi - if [[ -n $(git status -s ${SUBMODULE_SYNTAX} -uno 2> /dev/null) ]]; then - echo "$ZSH_THEME_GIT_PROMPT_DIRTY" - else - echo "$ZSH_THEME_GIT_PROMPT_CLEAN" - fi - else - echo "$ZSH_THEME_GIT_PROMPT_CLEAN" - fi -} - -# get the difference between the local and remote branches -git_remote_status() { - remote=${$(git rev-parse --verify ${hook_com[branch]}@{upstream} --symbolic-full-name 2>/dev/null)/refs\/remotes\/} - if [[ -n ${remote} ]] ; then - ahead=$(git rev-list ${hook_com[branch]}@{upstream}..HEAD 2>/dev/null | wc -l) - behind=$(git rev-list HEAD..${hook_com[branch]}@{upstream} 2>/dev/null | wc -l) - - if [ $ahead -eq 0 ] && [ $behind -gt 0 ] - then - echo "$ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE" - elif [ $ahead -gt 0 ] && [ $behind -eq 0 ] - then - echo "$ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE" - elif [ $ahead -gt 0 ] && [ $behind -gt 0 ] - then - echo "$ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE" - fi - fi -} - -# Checks if there are commits ahead from remote -function git_prompt_ahead() { - if $(echo "$(git log origin/$(current_branch)..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then - echo "$ZSH_THEME_GIT_PROMPT_AHEAD" - fi -} - -# Formats prompt string for current git commit short SHA -function git_prompt_short_sha() { - SHA=$(git rev-parse --short HEAD 2> /dev/null) && echo "$ZSH_THEME_GIT_PROMPT_SHA_BEFORE$SHA$ZSH_THEME_GIT_PROMPT_SHA_AFTER" -} - -# Formats prompt string for current git commit long SHA -function git_prompt_long_sha() { - SHA=$(git rev-parse HEAD 2> /dev/null) && echo "$ZSH_THEME_GIT_PROMPT_SHA_BEFORE$SHA$ZSH_THEME_GIT_PROMPT_SHA_AFTER" -} - -# Get the status of the working tree -git_prompt_status() { - INDEX=$(git status --porcelain -b 2> /dev/null) - STATUS="" - if $(echo "$INDEX" | grep -E '^\?\? ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS" - fi - if $(echo "$INDEX" | grep '^A ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_ADDED$STATUS" - elif $(echo "$INDEX" | grep '^M ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_ADDED$STATUS" - fi - if $(echo "$INDEX" | grep '^ M ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" - elif $(echo "$INDEX" | grep '^AM ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" - elif $(echo "$INDEX" | grep '^ T ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" - fi - if $(echo "$INDEX" | grep '^R ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_RENAMED$STATUS" - fi - if $(echo "$INDEX" | grep '^ D ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS" - elif $(echo "$INDEX" | grep '^D ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS" - elif $(echo "$INDEX" | grep '^AD ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS" - fi - if $(git rev-parse --verify refs/stash >/dev/null 2>&1); then - STATUS="$ZSH_THEME_GIT_PROMPT_STASHED$STATUS" - fi - if $(echo "$INDEX" | grep '^UU ' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS" - fi - if $(echo "$INDEX" | grep '^## .*ahead' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_AHEAD$STATUS" - fi - if $(echo "$INDEX" | grep '^## .*behind' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_BEHIND$STATUS" - fi - if $(echo "$INDEX" | grep '^## .*diverged' &> /dev/null); then - STATUS="$ZSH_THEME_GIT_PROMPT_DIVERGED$STATUS" - fi - echo $STATUS -} - -#compare the provided version of git to the version installed and on path -#prints 1 if input version <= installed version -#prints -1 otherwise -function git_compare_version() { - local INPUT_GIT_VERSION=$1; - local INSTALLED_GIT_VERSION - INPUT_GIT_VERSION=(${(s/./)INPUT_GIT_VERSION}); - INSTALLED_GIT_VERSION=($(git --version 2>/dev/null)); - INSTALLED_GIT_VERSION=(${(s/./)INSTALLED_GIT_VERSION[3]}); - - for i in {1..3}; do - if [[ $INSTALLED_GIT_VERSION[$i] -lt $INPUT_GIT_VERSION[$i] ]]; then - echo -1 - return 0 - fi - done - echo 1 -} - -#this is unlikely to change so make it all statically assigned -POST_1_7_2_GIT=$(git_compare_version "1.7.2") -#clean up the namespace slightly by removing the checker function -unset -f git_compare_version - - diff --git a/common/.oh-my-zsh/lib/grep.zsh b/common/.oh-my-zsh/lib/grep.zsh deleted file mode 100644 index 93c4270..0000000 --- a/common/.oh-my-zsh/lib/grep.zsh +++ /dev/null @@ -1,6 +0,0 @@ -# -# Color grep results -# Examples: http://rubyurl.com/ZXv -# -export GREP_OPTIONS='--color=auto' -export GREP_COLOR='1;32' \ No newline at end of file diff --git a/common/.oh-my-zsh/lib/history.zsh b/common/.oh-my-zsh/lib/history.zsh deleted file mode 100644 index 6559451..0000000 --- a/common/.oh-my-zsh/lib/history.zsh +++ /dev/null @@ -1,15 +0,0 @@ -## Command history configuration -if [ -z $HISTFILE ]; then - HISTFILE=$HOME/.zsh_history -fi -HISTSIZE=10000 -SAVEHIST=10000 - -setopt append_history -setopt extended_history -setopt hist_expire_dups_first -setopt hist_ignore_dups # ignore duplication command history list -setopt hist_ignore_space -setopt hist_verify -setopt inc_append_history -setopt share_history # share command history data diff --git a/common/.oh-my-zsh/lib/key-bindings.zsh b/common/.oh-my-zsh/lib/key-bindings.zsh deleted file mode 100644 index 5f499f3..0000000 --- a/common/.oh-my-zsh/lib/key-bindings.zsh +++ /dev/null @@ -1,50 +0,0 @@ -# TODO: Explain what some of this does.. - -bindkey -e -bindkey '\ew' kill-region -bindkey -s '\el' "ls\n" -bindkey '^r' history-incremental-search-backward -bindkey "^[[5~" up-line-or-history -bindkey "^[[6~" down-line-or-history - -# make search up and down work, so partially type and hit up/down to find relevant stuff -bindkey '^[[A' up-line-or-search -bindkey '^[[B' down-line-or-search - -bindkey "^[[H" beginning-of-line -bindkey "^[[1~" beginning-of-line -bindkey "^[OH" beginning-of-line -bindkey "^[[F" end-of-line -bindkey "^[[4~" end-of-line -bindkey "^[OF" end-of-line -bindkey ' ' magic-space # also do history expansion on space - -bindkey "^[[1;5C" forward-word -bindkey "^[[1;5D" backward-word - -bindkey '^[[Z' reverse-menu-complete - -# Make the delete key (or Fn + Delete on the Mac) work instead of outputting a ~ -bindkey '^?' backward-delete-char -bindkey "^[[3~" delete-char -bindkey "^[3;5~" delete-char -bindkey "\e[3~" delete-char - -# consider emacs keybindings: - -#bindkey -e ## emacs key bindings -# -#bindkey '^[[A' up-line-or-search -#bindkey '^[[B' down-line-or-search -#bindkey '^[^[[C' emacs-forward-word -#bindkey '^[^[[D' emacs-backward-word -# -#bindkey -s '^X^Z' '%-^M' -#bindkey '^[e' expand-cmd-path -#bindkey '^[^I' reverse-menu-complete -#bindkey '^X^N' accept-and-infer-next-history -#bindkey '^W' kill-region -#bindkey '^I' complete-word -## Fix weird sequence that rxvt produces -#bindkey -s '^[[Z' '\t' -# diff --git a/common/.oh-my-zsh/lib/misc.zsh b/common/.oh-my-zsh/lib/misc.zsh deleted file mode 100644 index a8678b8..0000000 --- a/common/.oh-my-zsh/lib/misc.zsh +++ /dev/null @@ -1,15 +0,0 @@ -## smart urls -autoload -U url-quote-magic -zle -N self-insert url-quote-magic - -## file rename magick -bindkey "^[m" copy-prev-shell-word - -## jobs -setopt long_list_jobs - -## pager -export PAGER="less" -export LESS="-R" - -export LC_CTYPE=$LANG diff --git a/common/.oh-my-zsh/lib/rbenv.zsh b/common/.oh-my-zsh/lib/rbenv.zsh deleted file mode 100644 index a8b6c32..0000000 --- a/common/.oh-my-zsh/lib/rbenv.zsh +++ /dev/null @@ -1,2 +0,0 @@ -# using the rbenv plugin will override this with a real implementation -function rbenv_prompt_info() {} diff --git a/common/.oh-my-zsh/lib/rvm.zsh b/common/.oh-my-zsh/lib/rvm.zsh deleted file mode 100644 index e8744e6..0000000 --- a/common/.oh-my-zsh/lib/rvm.zsh +++ /dev/null @@ -1,8 +0,0 @@ -# get the name of the ruby version -function rvm_prompt_info() { - [ -f $HOME/.rvm/bin/rvm-prompt ] || return - local rvm_prompt - rvm_prompt=$($HOME/.rvm/bin/rvm-prompt ${ZSH_THEME_RVM_PROMPT_OPTIONS} 2>/dev/null) - [[ "${rvm_prompt}x" == "x" ]] && return - echo "${ZSH_THEME_RVM_PROMPT_PREFIX:=(}${rvm_prompt}${ZSH_THEME_RVM_PROMPT_SUFFIX:=)}" -} diff --git a/common/.oh-my-zsh/lib/spectrum.zsh b/common/.oh-my-zsh/lib/spectrum.zsh deleted file mode 100644 index 2fdf537..0000000 --- a/common/.oh-my-zsh/lib/spectrum.zsh +++ /dev/null @@ -1,28 +0,0 @@ -#! /bin/zsh -# A script to make using 256 colors in zsh less painful. -# P.C. Shyamshankar -# Copied from http://github.com/sykora/etc/blob/master/zsh/functions/spectrum/ - -typeset -Ag FX FG BG - -FX=( - reset "%{%}" - bold "%{%}" no-bold "%{%}" - italic "%{%}" no-italic "%{%}" - underline "%{%}" no-underline "%{%}" - blink "%{%}" no-blink "%{%}" - reverse "%{%}" no-reverse "%{%}" -) - -for color in {000..255}; do - FG[$color]="%{[38;5;${color}m%}" - BG[$color]="%{[48;5;${color}m%}" -done - -# Show all 256 colors with color number -function spectrum_ls() { - for code in {000..255}; do - print -P -- "$code: %F{$code}Test%f" - done -} - diff --git a/common/.oh-my-zsh/lib/termsupport.zsh b/common/.oh-my-zsh/lib/termsupport.zsh deleted file mode 100644 index e3828da..0000000 --- a/common/.oh-my-zsh/lib/termsupport.zsh +++ /dev/null @@ -1,35 +0,0 @@ -#usage: title short_tab_title looooooooooooooooooooooggggggg_windows_title -#http://www.faqs.org/docs/Linux-mini/Xterm-Title.html#ss3.1 -#Fully support screen, iterm, and probably most modern xterm and rxvt -#Limited support for Apple Terminal (Terminal can't set window or tab separately) -function title { - if [[ "$DISABLE_AUTO_TITLE" == "true" ]] || [[ "$EMACS" == *term* ]]; then - return - fi - if [[ "$TERM" == screen* ]]; then - print -Pn "\ek$1:q\e\\" #set screen hardstatus, usually truncated at 20 chars - elif [[ "$TERM" == xterm* ]] || [[ $TERM == rxvt* ]] || [[ $TERM == ansi ]] || [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then - print -Pn "\e]2;$2:q\a" #set window name - print -Pn "\e]1;$1:q\a" #set icon (=tab) name (will override window name on broken terminal) - fi -} - -ZSH_THEME_TERM_TAB_TITLE_IDLE="%15<..<%~%<<" #15 char left truncated PWD -ZSH_THEME_TERM_TITLE_IDLE="%n@%m: %~" - -#Appears when you have the prompt -function omz_termsupport_precmd { - title $ZSH_THEME_TERM_TAB_TITLE_IDLE $ZSH_THEME_TERM_TITLE_IDLE -} - -#Appears at the beginning of (and during) of command execution -function omz_termsupport_preexec { - emulate -L zsh - setopt extended_glob - local CMD=${1[(wr)^(*=*|sudo|ssh|rake|-*)]} #cmd name only, or if this is sudo or ssh, the next cmd - title "$CMD" "%100>...>${2:gs/%/%%}%<<" -} - -autoload -U add-zsh-hook -add-zsh-hook precmd omz_termsupport_precmd -add-zsh-hook preexec omz_termsupport_preexec diff --git a/common/.oh-my-zsh/lib/theme-and-appearance.zsh b/common/.oh-my-zsh/lib/theme-and-appearance.zsh deleted file mode 100644 index 2677615..0000000 --- a/common/.oh-my-zsh/lib/theme-and-appearance.zsh +++ /dev/null @@ -1,42 +0,0 @@ -# ls colors -autoload colors; colors; -export LSCOLORS="Gxfxcxdxbxegedabagacad" -#export LS_COLORS - -# Enable ls colors -if [ "$DISABLE_LS_COLORS" != "true" ] -then - # Find the option for using colors in ls, depending on the version: Linux or BSD - if [[ "$(uname -s)" == "NetBSD" ]]; then - # On NetBSD, test if "gls" (GNU ls) is installed (this one supports colors); - # otherwise, leave ls as is, because NetBSD's ls doesn't support -G - gls --color -d . &>/dev/null 2>&1 && alias ls='gls --color=tty' - else - ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G' - fi -fi - -#setopt no_beep -setopt auto_cd -setopt multios -setopt cdablevarS - -if [[ x$WINDOW != x ]] -then - SCREEN_NO="%B$WINDOW%b " -else - SCREEN_NO="" -fi - -# Apply theming defaults -PS1="%n@%m:%~%# " - -# git theming default: Variables for theming the git info prompt -ZSH_THEME_GIT_PROMPT_PREFIX="git:(" # Prefix at the very beginning of the prompt, before the branch name -ZSH_THEME_GIT_PROMPT_SUFFIX=")" # At the very end of the prompt -ZSH_THEME_GIT_PROMPT_DIRTY="*" # Text to display if the branch is dirty -ZSH_THEME_GIT_PROMPT_CLEAN="" # Text to display if the branch is clean - -# Setup the prompt with pretty colors -setopt prompt_subst - diff --git a/common/.oh-my-zsh/log/.easter-egg b/common/.oh-my-zsh/log/.easter-egg deleted file mode 100644 index 2533149..0000000 --- a/common/.oh-my-zsh/log/.easter-egg +++ /dev/null @@ -1,4 +0,0 @@ -This file is only here so that Git will keep a log directory as .gitignore is ignoring all the log files within it. - -feel free to add love notes for people here. - diff --git a/common/.oh-my-zsh/oh-my-zsh.sh b/common/.oh-my-zsh/oh-my-zsh.sh deleted file mode 100644 index 93c10e3..0000000 --- a/common/.oh-my-zsh/oh-my-zsh.sh +++ /dev/null @@ -1,83 +0,0 @@ -# Check for updates on initial load... -if [ "$DISABLE_AUTO_UPDATE" != "true" ] -then - /usr/bin/env ZSH=$ZSH DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT zsh $ZSH/tools/check_for_upgrade.sh -fi - -# Initializes Oh My Zsh - -# add a function path -fpath=($ZSH/functions $ZSH/completions $fpath) - -# Load all of the config files in ~/oh-my-zsh that end in .zsh -# TIP: Add files you don't want in git to .gitignore -for config_file ($ZSH/lib/*.zsh); do - source $config_file -done - -# Set ZSH_CUSTOM to the path where your custom config files -# and plugins exists, or else we will use the default custom/ -if [[ -z "$ZSH_CUSTOM" ]]; then - ZSH_CUSTOM="$ZSH/custom" -fi - - -is_plugin() { - local base_dir=$1 - local name=$2 - test -f $base_dir/plugins/$name/$name.plugin.zsh \ - || test -f $base_dir/plugins/$name/_$name -} -# Add all defined plugins to fpath. This must be done -# before running compinit. -for plugin ($plugins); do - if is_plugin $ZSH_CUSTOM $plugin; then - fpath=($ZSH_CUSTOM/plugins/$plugin $fpath) - elif is_plugin $ZSH $plugin; then - fpath=($ZSH/plugins/$plugin $fpath) - fi -done - -# Load and run compinit -autoload -U compinit -compinit -i - - -# Load all of the plugins that were defined in ~/.zshrc -for plugin ($plugins); do - if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then - source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh - elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then - source $ZSH/plugins/$plugin/$plugin.plugin.zsh - fi -done - -# Load all of your custom configurations from custom/ -for config_file ($ZSH_CUSTOM/*.zsh(N)); do - source $config_file -done -unset config_file - -# Load the theme -if [ "$ZSH_THEME" = "random" ] -then - themes=($ZSH/themes/*zsh-theme) - N=${#themes[@]} - ((N=(RANDOM%N)+1)) - RANDOM_THEME=${themes[$N]} - source "$RANDOM_THEME" - echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..." -else - if [ ! "$ZSH_THEME" = "" ] - then - if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ] - then - source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" - elif [ -f "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" ] - then - source "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" - else - source "$ZSH/themes/$ZSH_THEME.zsh-theme" - fi - fi -fi diff --git a/common/.oh-my-zsh/plugins/ant/ant.plugin.zsh b/common/.oh-my-zsh/plugins/ant/ant.plugin.zsh deleted file mode 100644 index 45f2b06..0000000 --- a/common/.oh-my-zsh/plugins/ant/ant.plugin.zsh +++ /dev/null @@ -1,16 +0,0 @@ -_ant_does_target_list_need_generating () { - [ ! -f .ant_targets ] && return 0; - [ .ant_targets -nt build.xml ] && return 0; - return 1; -} - -_ant () { - if [ -f build.xml ]; then - if _ant_does_target_list_need_generating; then - sed -n '/ .ant_targets - fi - compadd `cat .ant_targets` - fi -} - -compdef _ant ant diff --git a/common/.oh-my-zsh/plugins/apache2-macports/apache2-macports.plugin.zsh b/common/.oh-my-zsh/plugins/apache2-macports/apache2-macports.plugin.zsh deleted file mode 100644 index 1caa4cf..0000000 --- a/common/.oh-my-zsh/plugins/apache2-macports/apache2-macports.plugin.zsh +++ /dev/null @@ -1,6 +0,0 @@ -# commands to control local apache2 server installation -# paths are for osx installation via macports - -alias apache2start='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper start' -alias apache2stop='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper stop' -alias apache2restart='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart' diff --git a/common/.oh-my-zsh/plugins/archlinux/archlinux.plugin.zsh b/common/.oh-my-zsh/plugins/archlinux/archlinux.plugin.zsh deleted file mode 100644 index bffe965..0000000 --- a/common/.oh-my-zsh/plugins/archlinux/archlinux.plugin.zsh +++ /dev/null @@ -1,95 +0,0 @@ -# Archlinux zsh aliases and functions -# Usage is also described at https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins - -# Look for yaourt, and add some useful functions if we have it. -if [[ -x `which yaourt` ]]; then - upgrade () { - yaourt -Syu - } - alias yaconf='yaourt -C' # Fix all configuration files with vimdiff - # Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips - alias yaupg='yaourt -Syua' # Synchronize with repositories before upgrading packages (AUR packages too) that are out of date on the local system. - alias yasu='yaourt --sucre' # Same as yaupg, but without confirmation - alias yain='yaourt -S' # Install specific package(s) from the repositories - alias yains='yaourt -U' # Install specific package not from the repositories but from a file - alias yare='yaourt -R' # Remove the specified package(s), retaining its configuration(s) and required dependencies - alias yarem='yaourt -Rns' # Remove the specified package(s), its configuration(s) and unneeded dependencies - alias yarep='yaourt -Si' # Display information about a given package in the repositories - alias yareps='yaourt -Ss' # Search for package(s) in the repositories - alias yaloc='yaourt -Qi' # Display information about a given package in the local database - alias yalocs='yaourt -Qs' # Search for package(s) in the local database - alias yalst='yaourt -Qe' # List installed packages, even those installed from AUR (they're tagged as "local") - alias yaorph='yaourt -Qtd' # Remove orphans using yaourt - # Additional yaourt alias examples - if [[ -x `which abs` ]]; then - alias yaupd='yaourt -Sy && sudo abs' # Update and refresh the local package and ABS databases against repositories - else - alias yaupd='yaourt -Sy' # Update and refresh the local package and ABS databases against repositories - fi - alias yainsd='yaourt -S --asdeps' # Install given package(s) as dependencies of another package - alias yamir='yaourt -Syy' # Force refresh of all package lists after updating /etc/pacman.d/mirrorlist -else - upgrade() { - sudo pacman -Syu - } -fi - -# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips -alias pacupg='sudo pacman -Syu' # Synchronize with repositories before upgrading packages that are out of date on the local system. -alias pacin='sudo pacman -S' # Install specific package(s) from the repositories -alias pacins='sudo pacman -U' # Install specific package not from the repositories but from a file -alias pacre='sudo pacman -R' # Remove the specified package(s), retaining its configuration(s) and required dependencies -alias pacrem='sudo pacman -Rns' # Remove the specified package(s), its configuration(s) and unneeded dependencies -alias pacrep='pacman -Si' # Display information about a given package in the repositories -alias pacreps='pacman -Ss' # Search for package(s) in the repositories -alias pacloc='pacman -Qi' # Display information about a given package in the local database -alias paclocs='pacman -Qs' # Search for package(s) in the local database -# Additional pacman alias examples -if [[ -x `which abs` ]]; then - alias pacupd='sudo pacman -Sy && sudo abs' # Update and refresh the local package and ABS databases against repositories -else - alias pacupd='sudo pacman -Sy' # Update and refresh the local package and ABS databases against repositories -fi -alias pacinsd='sudo pacman -S --asdeps' # Install given package(s) as dependencies of another package -alias pacmir='sudo pacman -Syy' # Force refresh of all package lists after updating /etc/pacman.d/mirrorlist - -# https://bbs.archlinux.org/viewtopic.php?id=93683 -paclist() { - sudo pacman -Qei $(pacman -Qu|cut -d" " -f 1)|awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}' -} - -alias paclsorphans='sudo pacman -Qdt' -alias pacrmorphans='sudo pacman -Rs $(pacman -Qtdq)' - -pacdisowned() { - tmp=${TMPDIR-/tmp}/pacman-disowned-$UID-$$ - db=$tmp/db - fs=$tmp/fs - - mkdir "$tmp" - trap 'rm -rf "$tmp"' EXIT - - pacman -Qlq | sort -u > "$db" - - find /bin /etc /lib /sbin /usr \ - ! -name lost+found \ - \( -type d -printf '%p/\n' -o -print \) | sort > "$fs" - - comm -23 "$fs" "$db" -} - -pacmanallkeys() { - # Get all keys for developers and trusted users - curl https://www.archlinux.org/{developers,trustedusers}/ | - awk -F\" '(/pgp.mit.edu/) {sub(/.*search=0x/,"");print $1}' | - xargs sudo pacman-key --recv-keys -} - -pacmansignkeys() { - for key in $*; do - sudo pacman-key --recv-keys $key - sudo pacman-key --lsign-key $key - printf 'trust\n3\n' | sudo gpg --homedir /etc/pacman.d/gnupg \ - --no-permission-warning --command-fd 0 --edit-key $key - done -} diff --git a/common/.oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh b/common/.oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh deleted file mode 100644 index ca56669..0000000 --- a/common/.oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh +++ /dev/null @@ -1,18 +0,0 @@ -# The use_env call below is a reusable command to activate/create a new Python -# virtualenv, requiring only a single declarative line of code in your .env files. -# It only performs an action if the requested virtualenv is not the current one. -use_env() { - typeset venv - venv="$1" - if [[ "${VIRTUAL_ENV:t}" != "$venv" ]]; then - if workon | grep -q "$venv"; then - workon "$venv" - else - echo -n "Create virtualenv $venv now? (Yn) " - read answer - if [[ "$answer" == "Y" ]]; then - mkvirtualenv "$venv" - fi - fi - fi -} diff --git a/common/.oh-my-zsh/plugins/autojump/autojump.plugin.zsh b/common/.oh-my-zsh/plugins/autojump/autojump.plugin.zsh deleted file mode 100644 index 3894ccd..0000000 --- a/common/.oh-my-zsh/plugins/autojump/autojump.plugin.zsh +++ /dev/null @@ -1,13 +0,0 @@ -if [ $commands[autojump] ]; then # check if autojump is installed - if [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package - . /usr/share/autojump/autojump.zsh - elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation - . /etc/profile.d/autojump.zsh - elif [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation - . $HOME/.autojump/etc/profile.d/autojump.zsh - elif [ -f /opt/local/etc/profile.d/autojump.zsh ]; then # mac os x with ports - . /opt/local/etc/profile.d/autojump.zsh - elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump.zsh ]; then # mac os x with brew - . `brew --prefix`/etc/autojump.zsh - fi -fi diff --git a/common/.oh-my-zsh/plugins/battery/battery.plugin.zsh b/common/.oh-my-zsh/plugins/battery/battery.plugin.zsh deleted file mode 100644 index 66bf46d..0000000 --- a/common/.oh-my-zsh/plugins/battery/battery.plugin.zsh +++ /dev/null @@ -1,82 +0,0 @@ -########################################### -# Battery plugin for oh-my-zsh # -# Original Author: Peter hoeg (peterhoeg) # -# Email: peter@speartail.com # -########################################### -# Author: Sean Jones (neuralsandwich) # -# Email: neuralsandwich@gmail.com # -# Modified to add support for Apple Mac # -########################################### - -if [[ $(uname) == "Darwin" ]] ; then - - function battery_pct() { - typeset -F maxcapacity=$(ioreg -rc "AppleSmartBattery"| grep '^.*"MaxCapacity"\ =\ ' | sed -e 's/^.*"MaxCapacity"\ =\ //') - typeset -F currentcapacity=$(ioreg -rc "AppleSmartBattery"| grep '^.*"CurrentCapacity"\ =\ ' | sed -e 's/^.*CurrentCapacity"\ =\ //') - integer i=$(((currentcapacity/maxcapacity) * 100)) - echo $i - } - - function battery_pct_remaining() { - if [[ $(ioreg -rc AppleSmartBattery | grep -c '^.*"ExternalConnected"\ =\ No') -eq 1 ]] ; then - battery_pct - else - echo "External Power" - fi - } - - function battery_time_remaining() { - if [[ $(ioreg -rc AppleSmartBattery | grep -c '^.*"ExternalConnected"\ =\ No') -eq 1 ]] ; then - timeremaining=$(ioreg -rc "AppleSmartBattery"| grep '^.*"AvgTimeToEmpty"\ =\ ' | sed -e 's/^.*"AvgTimeToEmpty"\ =\ //') - echo "~$((timeremaining / 60)):$((timeremaining % 60))" - else - echo "∞" - fi - } - - function battery_pct_prompt () { - if [[ $(ioreg -rc AppleSmartBattery | grep -c '^.*"ExternalConnected"\ =\ No') -eq 1 ]] ; then - b=$(battery_pct_remaining) - if [ $b -gt 50 ] ; then - color='green' - elif [ $b -gt 20 ] ; then - color='yellow' - else - color='red' - fi - echo "%{$fg[$color]%}[$(battery_pct_remaining)%%]%{$reset_color%}" - else - echo "∞" - fi - } - -elif [[ $(uname) == "Linux" ]] ; then - - function battery_pct_remaining() { - if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then - echo "$(acpi | cut -f2 -d ',' | tr -cd '[:digit:]')" - fi - } - - function battery_time_remaining() { - if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then - echo $(acpi | cut -f3 -d ',') - fi - } - - function battery_pct_prompt() { - b=$(battery_pct_remaining) - if [[ $(acpi 2&>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then - if [ $b -gt 50 ] ; then - color='green' - elif [ $b -gt 20 ] ; then - color='yellow' - else - color='red' - fi - echo "%{$fg[$color]%}[$(battery_pct_remaining)%%]%{$reset_color%}" - else - echo "∞" - fi - } -fi diff --git a/common/.oh-my-zsh/plugins/bower/_bower b/common/.oh-my-zsh/plugins/bower/_bower deleted file mode 100755 index ae0ca4a..0000000 --- a/common/.oh-my-zsh/plugins/bower/_bower +++ /dev/null @@ -1,58 +0,0 @@ - - -# Credits to npm's awesome completion utility. -# -# Bower completion script, based on npm completion script. - -###-begin-bower-completion-### -# -# Installation: bower completion >> ~/.bashrc (or ~/.zshrc) -# Or, maybe: bower completion > /usr/local/etc/bash_completion.d/bower -# - -COMP_WORDBREAKS=${COMP_WORDBREAKS/=/} -COMP_WORDBREAKS=${COMP_WORDBREAKS/@/} -export COMP_WORDBREAKS - -if type complete &>/dev/null; then - _bower_completion () { - local si="$IFS" - IFS=$'\n' COMPREPLY=($(COMP_CWORD="$COMP_CWORD" \ - COMP_LINE="$COMP_LINE" \ - COMP_POINT="$COMP_POINT" \ - bower completion -- "${COMP_WORDS[@]}" \ - 2>/dev/null)) || return $? - IFS="$si" - } - complete -F _bower_completion bower -elif type compdef &>/dev/null; then - _bower_completion() { - si=$IFS - compadd -- $(COMP_CWORD=$((CURRENT-1)) \ - COMP_LINE=$BUFFER \ - COMP_POINT=0 \ - bower completion -- "${words[@]}" \ - 2>/dev/null) - IFS=$si - } - compdef _bower_completion bower -elif type compctl &>/dev/null; then - _bower_completion () { - local cword line point words si - read -Ac words - read -cn cword - let cword-=1 - read -l line - read -ln point - si="$IFS" - IFS=$'\n' reply=($(COMP_CWORD="$cword" \ - COMP_LINE="$line" \ - COMP_POINT="$point" \ - bower completion -- "${words[@]}" \ - 2>/dev/null)) || return $? - IFS="$si" - } - compctl -K _bower_completion bower -fi -###-end-bower-completion-### - diff --git a/common/.oh-my-zsh/plugins/bower/bower.plugin.zsh b/common/.oh-my-zsh/plugins/bower/bower.plugin.zsh deleted file mode 100644 index ed9c048..0000000 --- a/common/.oh-my-zsh/plugins/bower/bower.plugin.zsh +++ /dev/null @@ -1,38 +0,0 @@ -alias bi="bower install" -alias bl="bower list" -alias bs="bower search" - -bower_package_list='' - -_bower () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=(${=$(bower help | grep help | sed -e 's/,//g')}) - _describe -t commands 'bower' subcommands - ;; - - (options) - case $line[1] in - - (install) - if [ -z "$bower_package_list" ];then - bower_package_list=$(bower search | awk 'NR > 2' | cut -d '-' -f 2 | cut -d ' ' -f 2 | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g") - fi - compadd "$@" $(echo $bower_package_list) - ;; - esac - ;; - esac -} - -compdef _bower bower diff --git a/common/.oh-my-zsh/plugins/brew/_brew b/common/.oh-my-zsh/plugins/brew/_brew deleted file mode 100644 index e43ba29..0000000 --- a/common/.oh-my-zsh/plugins/brew/_brew +++ /dev/null @@ -1,81 +0,0 @@ -#compdef brew -#autoload - -# imported from the latest homebrew contributions - -_brew_all_formulae() { - formulae=(`brew search`) -} - -_brew_installed_formulae() { - installed_formulae=(`brew list`) -} - -local -a _1st_arguments -_1st_arguments=( - 'cat:display formula file for a formula' - 'cleanup:uninstall unused and old versions of packages' - 'create:create a new formula' - 'deps:list dependencies and dependants of a formula' - 'doctor:audits your installation for common issues' - 'edit:edit a formula' - 'home:visit the homepage of a formula or the brew project' - 'info:information about a formula' - 'install:install a formula' - 'link:link a formula' - 'list:list files in a formula or not-installed formulae' - 'log:git commit log for a formula' - 'missing:check all installed formuale for missing dependencies.' - 'outdated:list formulas for which a newer version is available' - 'prune:remove dead links' - 'remove:remove a formula' - 'search:search for a formula (/regex/ or string)' - 'server:start a local web app that lets you browse formulae (requires Sinatra)' - 'unlink:unlink a formula' - 'update:freshen up links' - 'upgrade:upgrade outdated formulae' - 'uses:show formulas which depend on a formula' - 'versions:show all available formula versions' -) - -local expl -local -a formulae installed_formulae - -_arguments \ - '(-v)-v[verbose]' \ - '(--cellar)--cellar[brew cellar]' \ - '(--config)--config[brew configuration]' \ - '(--env)--env[brew environment]' \ - '(--repository)--repository[brew repository]' \ - '(--version)--version[version information]' \ - '(--prefix)--prefix[where brew lives on this system]' \ - '(--cache)--cache[brew cache]' \ - '*:: :->subcmds' && return 0 - -if (( CURRENT == 1 )); then - _describe -t commands "brew subcommand" _1st_arguments - return -fi - -case "$words[1]" in - search|-S) - _arguments \ - '(--macports)--macports[search the macports repository]' \ - '(--fink)--fink[search the fink repository]' ;; - list|ls) - _arguments \ - '(--unbrewed)--unbrewed[files in brew --prefix not controlled by brew]' \ - '(--versions)--versions[list all installed versions of a formula]' \ - '1: :->forms' && return 0 - - if [[ "$state" == forms ]]; then - _brew_installed_formulae - _wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae - fi ;; - install|home|homepage|log|info|abv|uses|cat|deps|edit|options|versions) - _brew_all_formulae - _wanted formulae expl 'all formulae' compadd -a formulae ;; - remove|rm|uninstall|unlink|cleanup|link|ln) - _brew_installed_formulae - _wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae ;; -esac diff --git a/common/.oh-my-zsh/plugins/brew/brew.plugin.zsh b/common/.oh-my-zsh/plugins/brew/brew.plugin.zsh deleted file mode 100644 index c2e9588..0000000 --- a/common/.oh-my-zsh/plugins/brew/brew.plugin.zsh +++ /dev/null @@ -1 +0,0 @@ -alias brews='brew list -1' diff --git a/common/.oh-my-zsh/plugins/bundler/_bundler b/common/.oh-my-zsh/plugins/bundler/_bundler deleted file mode 100644 index 2ec3a5f..0000000 --- a/common/.oh-my-zsh/plugins/bundler/_bundler +++ /dev/null @@ -1,91 +0,0 @@ -#compdef bundle - -local curcontext="$curcontext" state line _gems _opts ret=1 - -_arguments -C -A "-v" -A "--version" \ - '(- 1 *)'{-v,--version}'[display version information]' \ - '1: :->cmds' \ - '*:: :->args' && ret=0 - -case $state in - cmds) - _values "bundle command" \ - "install[Install the gems specified by the Gemfile or Gemfile.lock]" \ - "update[Update dependencies to their latest versions]" \ - "package[Package the .gem files required by your application]" \ - "exec[Execute a script in the context of the current bundle]" \ - "config[Specify and read configuration options for bundler]" \ - "check[Determine whether the requirements for your application are installed]" \ - "list[Show all of the gems in the current bundle]" \ - "show[Show the source location of a particular gem in the bundle]" \ - "console[Start an IRB session in the context of the current bundle]" \ - "open[Open an installed gem in the editor]" \ - "viz[Generate a visual representation of your dependencies]" \ - "init[Generate a simple Gemfile, placed in the current directory]" \ - "gem[Create a simple gem, suitable for development with bundler]" \ - "clean[Cleans up unused gems in your bundler directory]" \ - "help[Describe available tasks or one specific task]" - ret=0 - ;; - args) - case $line[1] in - help) - _values 'commands' \ - 'install' \ - 'update' \ - 'package' \ - 'exec' \ - 'config' \ - 'check' \ - 'list' \ - 'show' \ - 'console' \ - 'open' \ - 'viz' \ - 'init' \ - 'gem' \ - 'help' && ret=0 - ;; - install) - _arguments \ - '(--no-color)--no-color[disable colorization in output]' \ - '(--local)--local[do not attempt to connect to rubygems.org]' \ - '(--quiet)--quiet[only output warnings and errors]' \ - '(--gemfile)--gemfile=-[use the specified gemfile instead of Gemfile]:gemfile' \ - '(--system)--system[install to the system location]' \ - '(--deployment)--deployment[install using defaults tuned for deployment environments]' \ - '(--frozen)--frozen[do not allow the Gemfile.lock to be updated after this install]' \ - '(--path)--path=-[specify a different path than the system default]:path:_files' \ - '(--binstubs)--binstubs=-[generate bin stubs for bundled gems to ./bin]:directory:_files' \ - '(--without)--without=-[exclude gems that are part of the specified named group]:groups' - ret=0 - ;; - exec) - _normal && ret=0 - ;; - clean) - _arguments \ - '(--force)--force[forces clean even if --path is not set]' \ - '(--dry-run)--dry-run[only print out changes, do not actually clean gems]' \ - '(--no-color)--no-color[Disable colorization in output]' \ - '(--verbose)--verbose[Enable verbose output mode]' - ret=0 - ;; - (open|show) - _gems=( $(bundle show 2> /dev/null | sed -e '/^ \*/!d; s/^ \* \([^ ]*\) .*/\1/') ) - if [[ $_gems != "" ]]; then - _values 'gems' $_gems && ret=0 - fi - ;; - *) - _opts=( $(bundle help $line[1] | sed -e '/^ \[-/!d; s/^ \[\(-[^=]*\)=.*/\1/') ) - _opts+=( $(bundle help $line[1] | sed -e '/^ -/!d; s/^ \(-.\), \[\(-[^=]*\)=.*/\1 \2/') ) - if [[ $_opts != "" ]]; then - _values 'options' $_opts && ret=0 - fi - ;; - esac - ;; -esac - -return ret diff --git a/common/.oh-my-zsh/plugins/bundler/bundler.plugin.zsh b/common/.oh-my-zsh/plugins/bundler/bundler.plugin.zsh deleted file mode 100644 index 9446aaf..0000000 --- a/common/.oh-my-zsh/plugins/bundler/bundler.plugin.zsh +++ /dev/null @@ -1,44 +0,0 @@ -alias be="bundle exec" -alias bi="bundle install" -alias bl="bundle list" -alias bp="bundle package" -alias bo="bundle open" -alias bu="bundle update" - -# The following is based on https://github.com/gma/bundler-exec - -bundled_commands=(annotate cap capify cucumber foreman guard jekyll middleman nanoc rackup rainbows rake rspec ruby shotgun spec spin spork thin thor unicorn unicorn_rails puma) - -## Functions - -_bundler-installed() { - which bundle > /dev/null 2>&1 -} - -_within-bundled-project() { - local check_dir=$PWD - while [ $check_dir != "/" ]; do - [ -f "$check_dir/Gemfile" ] && return - check_dir="$(dirname $check_dir)" - done - false -} - -_run-with-bundler() { - if _bundler-installed && _within-bundled-project; then - bundle exec $@ - else - $@ - fi -} - -## Main program -for cmd in $bundled_commands; do - eval "function unbundled_$cmd () { $cmd \$@ }" - eval "function bundled_$cmd () { _run-with-bundler $cmd \$@}" - alias $cmd=bundled_$cmd - - if which _$cmd > /dev/null 2>&1; then - compdef _$cmd bundled_$cmd=$cmd - fi -done diff --git a/common/.oh-my-zsh/plugins/bwana/bwana.plugin.zsh b/common/.oh-my-zsh/plugins/bwana/bwana.plugin.zsh deleted file mode 100644 index 455da86..0000000 --- a/common/.oh-my-zsh/plugins/bwana/bwana.plugin.zsh +++ /dev/null @@ -1,13 +0,0 @@ -# -# Requires http://www.bruji.com/bwana/ -# -if [[ -e /Applications/Bwana.app ]] || - ( system_profiler -detailLevel mini SPApplicationsDataType | grep -q Bwana ) -then - function man() { - open "man:$1" - } -else - echo "Bwana lets you read man files in Safari through a man: URI scheme" - echo "To use it within Zsh, install it from http://www.bruji.com/bwana/" -fi diff --git a/common/.oh-my-zsh/plugins/cake/cake.plugin.zsh b/common/.oh-my-zsh/plugins/cake/cake.plugin.zsh deleted file mode 100644 index 44cc474..0000000 --- a/common/.oh-my-zsh/plugins/cake/cake.plugin.zsh +++ /dev/null @@ -1,33 +0,0 @@ -# Set this to 1 if you want to cache the tasks -_cake_cache_task_list=1 - -# Cache filename -_cake_task_cache_file='.cake_task_cache' - -_cake_get_target_list () { - cake | grep '^cake ' | sed -e "s/cake \([^ ]*\) .*/\1/" | grep -v '^$' -} - -_cake_does_target_list_need_generating () { - - if [ ${_cake_cache_task_list} -eq 0 ]; then - return 1; - fi - - [ ! -f ${_cake_task_cache_file} ] && return 0; - [ ${_cake_task_cache_file} -nt Cakefile ] && return 0; - return 1; -} - -_cake () { - if [ -f Cakefile ]; then - if _cake_does_target_list_need_generating; then - _cake_get_target_list > ${_cake_task_cache_file} - compadd `cat ${_cake_task_cache_file}` - else - compadd `_cake_get_target_list` - fi - fi -} - -compdef _cake cake diff --git a/common/.oh-my-zsh/plugins/capistrano/_capistrano b/common/.oh-my-zsh/plugins/capistrano/_capistrano deleted file mode 100644 index 1002dad..0000000 --- a/common/.oh-my-zsh/plugins/capistrano/_capistrano +++ /dev/null @@ -1,10 +0,0 @@ -#compdef cap -#autoload - -if [[ -f config/deploy.rb || -f Capfile ]]; then - if [[ ! -f .cap_tasks~ || config/deploy.rb -nt .cap_tasks~ ]]; then - echo "\nGenerating .cap_tasks~..." > /dev/stderr - cap --tasks | grep '#' | cut -d " " -f 2 > .cap_tasks~ - fi - compadd `cat .cap_tasks~` -fi diff --git a/common/.oh-my-zsh/plugins/cloudapp/cloudapp.plugin.zsh b/common/.oh-my-zsh/plugins/cloudapp/cloudapp.plugin.zsh deleted file mode 100644 index 99252f6..0000000 --- a/common/.oh-my-zsh/plugins/cloudapp/cloudapp.plugin.zsh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/zsh -alias cloudapp=$ZSH/plugins/cloudapp/cloudapp.rb diff --git a/common/.oh-my-zsh/plugins/cloudapp/cloudapp.rb b/common/.oh-my-zsh/plugins/cloudapp/cloudapp.rb deleted file mode 100755 index a11cfdb..0000000 --- a/common/.oh-my-zsh/plugins/cloudapp/cloudapp.rb +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env ruby -# -# cloudapp -# Zach Holman / @holman -# -# Uploads a file from the command line to CloudApp, drops it into your -# clipboard (on a Mac, at least). -# -# Example: -# -# cloudapp drunk-blake.png -# -# This requires Aaron Russell's cloudapp_api gem: -# -# gem install cloudapp_api -# -# Requires you set your CloudApp credentials in ~/.cloudapp as a simple file of: -# -# email -# password - -require 'rubygems' -begin - require 'cloudapp_api' -rescue LoadError - puts "You need to install cloudapp_api: gem install cloudapp_api" - exit!(1) -end - -config_file = "#{ENV['HOME']}/.cloudapp" -unless File.exist?(config_file) - puts "You need to type your email and password (one per line) into "+ - "`~/.cloudapp`" - exit!(1) -end - -email,password = File.read(config_file).split("\n") - -class HTTParty::Response - # Apparently HTTPOK.ok? IS NOT OKAY WTFFFFFFFFFFUUUUUUUUUUUUUU - # LETS MONKEY PATCH IT I FEEL OKAY ABOUT IT - def ok? ; true end -end - -if ARGV[0].nil? - puts "You need to specify a file to upload." - exit!(1) -end - -CloudApp.authenticate(email,password) -url = CloudApp::Item.create(:upload, {:file => ARGV[0]}).url - -# Say it for good measure. -puts "Uploaded to #{url}." - -# Get the embed link. -url = "#{url}/#{ARGV[0].split('/').last}" - -# Copy it to your (Mac's) clipboard. -`echo '#{url}' | tr -d "\n" | pbcopy` diff --git a/common/.oh-my-zsh/plugins/coffee/_coffee b/common/.oh-my-zsh/plugins/coffee/_coffee deleted file mode 100644 index 5c8eb9a..0000000 --- a/common/.oh-my-zsh/plugins/coffee/_coffee +++ /dev/null @@ -1,71 +0,0 @@ -#compdef coffee -# ------------------------------------------------------------------------------ -# Copyright (c) 2011 Github zsh-users - http://github.com/zsh-users -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# * Neither the name of the zsh-users nor the -# names of its contributors may be used to endorse or promote products -# derived from this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -# DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY -# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# ------------------------------------------------------------------------------ -# Description -# ----------- -# -# Completion script for Coffee.js v0.6.11 (http://coffeejs.org) -# -# ------------------------------------------------------------------------------ -# Authors -# ------- -# -# * Mario Fernandez (https://github.com/sirech) -# -# ------------------------------------------------------------------------------ - -local curcontext="$curcontext" state line ret=1 -typeset -A opt_args - -_arguments -C \ - '(- *)'{-h,--help}'[display this help message]' \ - '(- *)'{-v,--version}'[display the version number]' \ - '(-b --bare)'{-b,--bare}'[compile without a top-level function wrapper]' \ - '(-e --eval)'{-e,--eval}'[pass a string from the command line as input]:Inline Script' \ - '(-i --interactive)'{-i,--interactive}'[run an interactive CoffeeScript REPL]' \ - '(-j --join)'{-j,--join}'[concatenate the source CoffeeScript before compiling]:Destination JS file:_files -g "*.js"' \ - '(-l --lint)'{-l,--lint}'[pipe the compiled JavaScript through JavaScript Lint]' \ - '(--nodejs)--nodejs[pass options directly to the "node" binary]' \ - '(-c --compile)'{-c,--compile}'[compile to JavaScript and save as .js files]' \ - '(-o --output)'{-o,--output}'[set the output directory for compiled JavaScript]:Output Directory:_files -/' \ - '(-n -t -p)'{-n,--nodes}'[print out the parse tree that the parser produces]' \ - '(-n -t -p)'{-p,--print}'[print out the compiled JavaScript]' \ - '(-n -t -p)'{-t,--tokens}'[print out the tokens that the lexer/rewriter produce]' \ - '(-r --require)'{-r,--require}'[require a library before executing your script]:library' \ - '(-s --stdio)'{-s,--stdio}'[listen for and compile scripts over stdio]' \ - '(-w --watch)'{-w,--watch}'[watch scripts for changes and rerun commands]' \ - '*:script or directory:_files' && ret=0 - -return ret - -# Local Variables: -# mode: Shell-Script -# sh-indentation: 2 -# indent-tabs-mode: nil -# sh-basic-offset: 2 -# End: -# vim: ft=zsh sw=2 ts=2 et diff --git a/common/.oh-my-zsh/plugins/colemak/colemak-less b/common/.oh-my-zsh/plugins/colemak/colemak-less deleted file mode 100644 index e4ca4fa..0000000 --- a/common/.oh-my-zsh/plugins/colemak/colemak-less +++ /dev/null @@ -1,6 +0,0 @@ -n forw-line -e back-line -k repeat-search -\ek repeat-search-all -K reverse-search -\eK reverse-search-all diff --git a/common/.oh-my-zsh/plugins/colemak/colemak.plugin.zsh b/common/.oh-my-zsh/plugins/colemak/colemak.plugin.zsh deleted file mode 100644 index 34d42c2..0000000 --- a/common/.oh-my-zsh/plugins/colemak/colemak.plugin.zsh +++ /dev/null @@ -1,22 +0,0 @@ -# ctrl-j newline -bindkey '^n' accept-line -bindkey -a '^n' accept-line - -# another rotation to match qwerty -bindkey -a 'n' down-line-or-history -bindkey -a 'e' up-line-or-history -bindkey -a 'i' vi-forward-char - -# make qwerty -bindkey -a 'k' vi-repeat-search -bindkey -a 'K' vi-rev-repeat-search -bindkey -a 'u' vi-insert -bindkey -a 'U' vi-insert-bol -bindkey -a 'l' vi-undo-change -bindkey -a 'N' vi-join - -# spare -bindkey -a 'j' vi-forward-word-end -bindkey -a 'J' vi-forward-blank-word-end - -lesskey $ZSH_CUSTOM/plugins/colemak/colemak-less diff --git a/common/.oh-my-zsh/plugins/colored-man/colored-man.plugin.zsh b/common/.oh-my-zsh/plugins/colored-man/colored-man.plugin.zsh deleted file mode 100644 index 5605628..0000000 --- a/common/.oh-my-zsh/plugins/colored-man/colored-man.plugin.zsh +++ /dev/null @@ -1,11 +0,0 @@ -man() { - env \ - LESS_TERMCAP_mb=$(printf "\e[1;31m") \ - LESS_TERMCAP_md=$(printf "\e[1;31m") \ - LESS_TERMCAP_me=$(printf "\e[0m") \ - LESS_TERMCAP_se=$(printf "\e[0m") \ - LESS_TERMCAP_so=$(printf "\e[1;44;33m") \ - LESS_TERMCAP_ue=$(printf "\e[0m") \ - LESS_TERMCAP_us=$(printf "\e[1;32m") \ - man "$@" -} diff --git a/common/.oh-my-zsh/plugins/colorize/colorize.plugin.zsh b/common/.oh-my-zsh/plugins/colorize/colorize.plugin.zsh deleted file mode 100644 index 0696607..0000000 --- a/common/.oh-my-zsh/plugins/colorize/colorize.plugin.zsh +++ /dev/null @@ -1,28 +0,0 @@ -# Plugin for highligthing file content -# Plugin highlights file content based on the filename extension. -# If no highlighting method supported for given extension then it tries -# guess it by looking for file content. - -alias colorize='colorize_via_pygmentize' - -colorize_via_pygmentize() { - if [ ! -x $(which pygmentize) ]; then - echo package \'pygmentize\' is not installed! - exit -1 - fi - - if [ $# -eq 0 ]; then - pygmentize -g $@ - fi - - for FNAME in $@ - do - filename=$(basename "$FNAME") - lexer=`pygmentize -N \"$filename\"` - if [ "Z$lexer" != "Ztext" ]; then - pygmentize -l $lexer "$FNAME" - else - pygmentize -g "$FNAME" - fi - done -} \ No newline at end of file diff --git a/common/.oh-my-zsh/plugins/command-not-found/command-not-found.plugin.zsh b/common/.oh-my-zsh/plugins/command-not-found/command-not-found.plugin.zsh deleted file mode 100644 index f3d7ec2..0000000 --- a/common/.oh-my-zsh/plugins/command-not-found/command-not-found.plugin.zsh +++ /dev/null @@ -1,9 +0,0 @@ -# Uses the command-not-found package zsh support -# as seen in http://www.porcheron.info/command-not-found-for-zsh/ -# this is installed in Ubuntu - -[[ -e /etc/zsh_command_not_found ]] && source /etc/zsh_command_not_found - -# Arch Linux command-not-found support, you must have package pkgfile installed -# https://wiki.archlinux.org/index.php/Pkgfile#.22Command_not_found.22_hook -[[ -e /usr/share/doc/pkgfile/command-not-found.zsh ]] && source /usr/share/doc/pkgfile/command-not-found.zsh diff --git a/common/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh b/common/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh deleted file mode 100644 index 38f1b39..0000000 --- a/common/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh +++ /dev/null @@ -1,20 +0,0 @@ -# ------------------------------------------------------------------------------ -# FILE: compleat.plugin.zsh -# DESCRIPTION: oh-my-zsh plugin file. -# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com) -# VERSION: 1.0.0 -# ------------------------------------------------------------------------------ - -if (( ${+commands[compleat]} )); then - local prefix="${commands[compleat]:h:h}" - local setup="${prefix}/share/compleat-1.0/compleat_setup" - - if [[ -f "$setup" ]]; then - if ! bashcompinit >/dev/null 2>&1; then - autoload -U bashcompinit - bashcompinit -i - fi - - source "$setup" - fi -fi diff --git a/common/.oh-my-zsh/plugins/composer/composer.plugin.zsh b/common/.oh-my-zsh/plugins/composer/composer.plugin.zsh deleted file mode 100644 index 2d15575..0000000 --- a/common/.oh-my-zsh/plugins/composer/composer.plugin.zsh +++ /dev/null @@ -1,32 +0,0 @@ -# ------------------------------------------------------------------------------ -# FILE: composer.plugin.zsh -# DESCRIPTION: oh-my-zsh composer plugin file. -# AUTHOR: Daniel Gomes (me@danielcsgomes.com) -# VERSION: 1.0.0 -# ------------------------------------------------------------------------------ - -# Composer basic command completion -_composer_get_command_list () { - composer --no-ansi | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }' -} - -_composer () { - if [ -f composer.json ]; then - compadd `_composer_get_command_list` - else - compadd create-project init search selfupdate show - fi -} - -compdef _composer composer - -# Aliases -alias c='composer' -alias csu='composer self-update' -alias cu='composer update' -alias ci='composer install' -alias ccp='composer create-project' -alias cdu='composer dump-autoload' - -# install composer in the current directory -alias cget='curl -s https://getcomposer.org/installer | php' diff --git a/common/.oh-my-zsh/plugins/copydir/copydir.plugin.zsh b/common/.oh-my-zsh/plugins/copydir/copydir.plugin.zsh deleted file mode 100644 index 37bb5e0..0000000 --- a/common/.oh-my-zsh/plugins/copydir/copydir.plugin.zsh +++ /dev/null @@ -1,3 +0,0 @@ -function copydir { - pwd | tr -d "\r\n" | pbcopy -} \ No newline at end of file diff --git a/common/.oh-my-zsh/plugins/copyfile/copyfile.plugin.zsh b/common/.oh-my-zsh/plugins/copyfile/copyfile.plugin.zsh deleted file mode 100644 index 944a903..0000000 --- a/common/.oh-my-zsh/plugins/copyfile/copyfile.plugin.zsh +++ /dev/null @@ -1,5 +0,0 @@ -function copyfile { - [[ "$#" != 1 ]] && return 1 - local file_to_copy=$1 - cat $file_to_copy | pbcopy -} diff --git a/common/.oh-my-zsh/plugins/cp/cp.plugin.zsh b/common/.oh-my-zsh/plugins/cp/cp.plugin.zsh deleted file mode 100644 index 7355a99..0000000 --- a/common/.oh-my-zsh/plugins/cp/cp.plugin.zsh +++ /dev/null @@ -1,14 +0,0 @@ -#Show progress while file is copying - -# Rsync options are: -# -p - preserve permissions -# -o - preserve owner -# -g - preserve group -# -h - output in human-readable format -# --progress - display progress -# -b - instead of just overwriting an existing file, save the original -# --backup-dir=/tmp/rsync - move backup copies to "/tmp/rsync" -# -e /dev/null - only work on local files -# -- - everything after this is an argument, even if it looks like an option - -alias cpv="rsync -poghb --backup-dir=/tmp/rsync -e /dev/null --progress --" diff --git a/common/.oh-my-zsh/plugins/cpanm/_cpanm b/common/.oh-my-zsh/plugins/cpanm/_cpanm deleted file mode 100644 index 58451d3..0000000 --- a/common/.oh-my-zsh/plugins/cpanm/_cpanm +++ /dev/null @@ -1,67 +0,0 @@ -#compdef cpanm - -## -# cpanminus Z Shell completion script -## -# -# Current supported cpanm version: 1.4000 (Tue Mar 8 01:00:49 PST 2011) -# -# The latest code is always located at: -# https://github.com/rshhh/cpanminus/blob/master/etc/_cpanm -# - -local arguments curcontext="$curcontext" -typeset -A opt_args - - -arguments=( - -# Commands -# '(--install -i)'{--install,-i}'[Installs the modules]' - '(- :)--self-upgrade[Upgrades itself]' - '(- :)--info[Displays distribution info on CPAN]' - '(--installdeps)--installdeps[Only install dependencies]' - '(--look)--look[Download/unpack the distribution and then open the directory with your shell]' - '(- :)'{--help,-h}'[Displays help information]' - '(- :)'{--version,-V}'[Displays software version]' - -# Options - {--force,-f}'[Force install]' - {--notest,-n}'[Do not run unit tests]' - {--sudo,-S}'[sudo to run install commands]' - '(-v --verbose --quiet -q)'{--verbose,-v}'[Turns on chatty output]' - '(-q --quiet --verbose -v)'{--quiet,-q}'[Turns off all output]' - {--local-lib,-l}'[Specify the install base to install modules]' - {--local-lib-contained,-L}'[Specify the install base to install all non-core modules]' - '--mirror[Specify the base URL for the mirror (e.g. http://cpan.cpantesters.org/)]:URLs:_urls' - '--mirror-only[Use the mirror\''s index file instead of the CPAN Meta DB]' - '--prompt[Prompt when configure/build/test fails]' - '--reinstall[Reinstall the distribution even if you already have the latest version installed]' - '--interactive[Turn on interactive configure]' - - '--scandeps[Scan the depencencies of given modules and output the tree in a text format]' - '--format[Specify what format to display the scanned dependency tree]:scandeps format:(tree json yaml dists)' - - '--save-dists[Specify the optional directory path to copy downloaded tarballs]' -# '--uninst-shadows[Uninstalls the shadow files of the distribution that you\''re installing]' - - '--auto-cleanup[Number of days that cpanm\''s work directories expire in. Defaults to 7]' - '(--no-man-pages)--man-pages[Generates man pages for executables (man1) and libraries (man3)]' - '(--man-pages)--no-man-pages[Do not generate man pages]' - - - # Note: Normally with "--lwp", "--wget" and "--curl" options set to true (which is the default) cpanm tries LWP, - # Wget, cURL and HTTP::Tiny (in that order) and uses the first one available. - # (So that the exclusions are not enabled here for the completion) - '(--lwp)--lwp[Use LWP module to download stuff]' - '(--wget)--wget[Use GNU Wget (if available) to download stuff]' - '(--curl)--curl[Use cURL (if available) to download stuff]' - -# Other completions - '*:Local directory or archive:_files -/ -g "*.(tar.gz|tgz|tar.bz2|zip)(-.)"' - # '*::args: _normal' # this looks for default files (any files) -) -_arguments -s $arguments \ - && return 0 - -return 1 diff --git a/common/.oh-my-zsh/plugins/debian/debian.plugin.zsh b/common/.oh-my-zsh/plugins/debian/debian.plugin.zsh deleted file mode 100644 index 55b90e3..0000000 --- a/common/.oh-my-zsh/plugins/debian/debian.plugin.zsh +++ /dev/null @@ -1,186 +0,0 @@ -# Authors: -# https://github.com/AlexBio -# https://github.com/dbb -# -# Debian-related zsh aliases and functions for zsh - -# Use aptitude if installed, or apt-get if not. -# You can just set apt_pref='apt-get' to override it. -if [[ -e $( which aptitude 2>&1 ) ]]; then - apt_pref='aptitude' -else - apt_pref='apt-get' -fi - -# Use sudo by default if it's installed -if [[ -e $( which sudo 2>&1 ) ]]; then - use_sudo=1 -fi - -# Aliases ################################################################### -# These are for more obscure uses of apt-get and aptitude that aren't covered -# below. -alias ag='apt-get' -alias ap='aptitude' - -# Some self-explanatory aliases -alias acs="apt-cache search" -alias aps='aptitude search' -alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \ - --no-gui --disable-columns search" # search package - -# apt-file -alias afs='apt-file search --regexp' - - -# These are apt-get only -alias asrc='apt-get source' -alias app='apt-cache policy' - -# superuser operations ###################################################### -if [[ $use_sudo -eq 1 ]]; then -# commands using sudo ####### - alias aac='sudo $apt_pref autoclean' - alias abd='sudo $apt_pref build-dep' - alias ac='sudo $apt_pref clean' - alias ad='sudo $apt_pref update' - alias adg='sudo $apt_pref update && sudo $apt_pref upgrade' - alias adu='sudo $apt_pref update && sudo $apt_pref dist-upgrade' - alias afu='sudo apt-file update' - alias ag='sudo $apt_pref upgrade' - alias ai='sudo $apt_pref install' - # Install all packages given on the command line while using only the first word of each line: - # acs ... | ail - alias ail="sed -e 's/ */ /g' -e 's/ *//' | cut -s -d ' ' -f 1 | "' xargs sudo $apt_pref install' - alias ap='sudo $apt_pref purge' - alias ar='sudo $apt_pref remove' - - # apt-get only - alias ads='sudo $apt_pref dselect-upgrade' - - # Install all .deb files in the current directory. - # Warning: you will need to put the glob in single quotes if you use: - # glob_subst - alias dia='sudo dpkg -i ./*.deb' - alias di='sudo dpkg -i' - - # Remove ALL kernel images and headers EXCEPT the one in use - alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) \ - ?not(~n`uname -r`))' - - -# commands using su ######### -else - alias aac='su -ls \'$apt_pref autoclean\' root' - abd() { - cmd="su -lc '$apt_pref build-dep $@' root" - print "$cmd" - eval "$cmd" - } - alias ac='su -ls \'$apt_pref clean\' root' - alias ad='su -lc \'$apt_pref update\' root' - alias adg='su -lc \'$apt_pref update && aptitude safe-upgrade\' root' - alias adu='su -lc \'$apt_pref update && aptitude dist-upgrade\' root' - alias afu='su -lc "apt-file update"' - alias ag='su -lc \'$apt_pref safe-upgrade\' root' - ai() { - cmd="su -lc 'aptitude -P install $@' root" - print "$cmd" - eval "$cmd" - } - ap() { - cmd="su -lc '$apt_pref -P purge $@' root" - print "$cmd" - eval "$cmd" - } - ar() { - cmd="su -lc '$apt_pref -P remove $@' root" - print "$cmd" - eval "$cmd" - } - - # Install all .deb files in the current directory - # Assumes glob_subst is off - alias dia='su -lc "dpkg -i ./*.deb" root' - alias di='su -lc "dpkg -i" root' - - # Remove ALL kernel images and headers EXCEPT the one in use - alias kclean='su -lc '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) \ - ?not(~n`uname -r`))'\'' root' -fi - - -# Misc. ##################################################################### -# print all installed packages -alias allpkgs='aptitude search -F "%p" --disable-columns ~i' - -# Create a basic .deb package -alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc' - - -# Functions ################################################################# -# create a simple script that can be used to 'duplicate' a system -apt-copy() { - print '#!/bin/sh'"\n" > apt-copy.sh - - cmd='$apt_pref install' - - for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; { - cmd="${cmd} ${p}" - } - - print $cmd "\n" >> apt-copy.sh - - chmod +x apt-copy.sh -} - -# Prints apt history -# Usage: -# apt-history install -# apt-history upgrade -# apt-history remove -# apt-history rollback -# apt-history list -# Based On: http://linuxcommando.blogspot.com/2008/08/how-to-show-apt-log-history.html -apt-history () { - case "$1" in - install) - zgrep --no-filename 'install ' $(ls -rt /var/log/dpkg*) - ;; - upgrade|remove) - zgrep --no-filename $1 $(ls -rt /var/log/dpkg*) - ;; - rollback) - zgrep --no-filename upgrade $(ls -rt /var/log/dpkg*) | \ - grep "$2" -A10000000 | \ - grep "$3" -B10000000 | \ - awk '{print $4"="$5}' - ;; - list) - zcat $(ls -rt /var/log/dpkg*) - ;; - *) - echo "Parameters:" - echo " install - Lists all packages that have been installed." - echo " upgrade - Lists all packages that have been upgraded." - echo " remove - Lists all packages that have been removed." - echo " rollback - Lists rollback information." - echo " list - Lists all contains of dpkg logs." - ;; - esac -} - -# Kernel-package building shortcut -kerndeb () { - # temporarily unset MAKEFLAGS ( '-j3' will fail ) - MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' ) - print '$MAKEFLAGS set to '"'$MAKEFLAGS'" - appendage='-custom' # this shows up in $ (uname -r ) - revision=$(date +"%Y%m%d") # this shows up in the .deb file name - - make-kpkg clean - - time fakeroot make-kpkg --append-to-version "$appendage" --revision \ - "$revision" kernel_image kernel_headers -} - diff --git a/common/.oh-my-zsh/plugins/dircycle/dircycle.plugin.zsh b/common/.oh-my-zsh/plugins/dircycle/dircycle.plugin.zsh deleted file mode 100644 index 46a0ab2..0000000 --- a/common/.oh-my-zsh/plugins/dircycle/dircycle.plugin.zsh +++ /dev/null @@ -1,10 +0,0 @@ -## -# dircycle plugin: enables cycling through the directory -# stack using Ctrl+Shift+Left/Right - -eval "insert-cycledleft () { zle push-line; LBUFFER='pushd -q +1'; zle accept-line }" -zle -N insert-cycledleft -bindkey "\e[1;6D" insert-cycledleft -eval "insert-cycledright () { zle push-line; LBUFFER='pushd -q -0'; zle accept-line }" -zle -N insert-cycledright -bindkey "\e[1;6C" insert-cycledright diff --git a/common/.oh-my-zsh/plugins/dirpersist/dirpersist.plugin.zsh b/common/.oh-my-zsh/plugins/dirpersist/dirpersist.plugin.zsh deleted file mode 100644 index 0f6d9f4..0000000 --- a/common/.oh-my-zsh/plugins/dirpersist/dirpersist.plugin.zsh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/zsh -# -# Make the dirstack more persistant -# -# Add dirpersist to $plugins in ~/.zshrc to load -# - -# $zdirstore is the file used to persist the stack -zdirstore=~/.zdirstore - -dirpersistinstall () { - if grep 'dirpersiststore' ~/.zlogout > /dev/null; then - else - if read -q \?"Would you like to set up your .zlogout file for use with dirspersist? (y/n) "; then - echo "# Store dirs stack\n# See $ZSH/plugins/dirspersist.plugin.zsh\ndirpersiststore" >> ~/.zlogout - else - echo "If you don't want this message to appear, remove dirspersist from \$plugins" - fi - fi -} - -dirpersiststore () { - dirs -p | perl -e 'foreach (reverse ) {chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"}' > $zdirstore -} - -dirpersistrestore () { - if [ -f $zdirstore ]; then - source $zdirstore - fi -} - -DIRSTACKSIZE=10 -setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups - -dirpersistinstall -dirpersistrestore - -# Make popd changes permanent without having to wait for logout -alias popd="popd;dirpersiststore" diff --git a/common/.oh-my-zsh/plugins/django/django.plugin.zsh b/common/.oh-my-zsh/plugins/django/django.plugin.zsh deleted file mode 100644 index 9d898ed..0000000 --- a/common/.oh-my-zsh/plugins/django/django.plugin.zsh +++ /dev/null @@ -1,238 +0,0 @@ -#compdef manage.py - -typeset -ga nul_args -nul_args=( - '--settings=-[the Python path to a settings module.]:file:_files' - '--pythonpath=-[a directory to add to the Python path.]::directory:_directories' - '--traceback[print traceback on exception.]' - "--version[show program's version number and exit.]" - {-h,--help}'[show this help message and exit.]' -) - -_managepy-adminindex(){ - _arguments -s : \ - $nul_args \ - '*::directory:_directories' && ret=0 -} - -_managepy-createcachetable(){ - _arguments -s : \ - $nul_args && ret=0 -} - -_managepy-collectstatic(){ - _arguments -s : \ - '--link=-[Create a symbolic link to each file instead of copying.]:' \ - '--noinput=-[Do NOT prompt the user for input of any kind.]:' \ - '--no-post-process=-[Do NOT post process collected files.]:' \ - '--ignore=-[Ignore files or directories matching this glob-style pattern. Use multiple times to ignore more.]:' \ - '--dry-run=-[Do everything except modify the filesystem.]:' \ - '--clear=-[Clear the existing files using the storage before trying to copy or link the original file.]:' \ - '--link=-[Create a symbolic link to each file instead of copying.]:' \ - '--no-default-ignore=-[Do not ignore the common private glob-style patterns "CVS", ".*" and "*~".]:' \ - $nul_args && ret=0 -} - -_managepy-dbshell(){ - _arguments -s : \ - $nul_args && ret=0 -} - -_managepy-diffsettings(){ - _arguments -s : \ - $nul_args && ret=0 -} - -_managepy-dumpdata(){ - _arguments -s : \ - '--format=-[specifies the output serialization format for fixtures.]:format:(json yaml xml)' \ - '--indent=-[specifies the indent level to use when pretty-printing output.]:' \ - $nul_args \ - '*::appname:_applist' && ret=0 -} - -_managepy-flush(){ - _arguments -s : \ - '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ - '--noinput[tells Django to NOT prompt the user for input of any kind.]' \ - $nul_args && ret=0 -} - -_managepy-help(){ - _arguments -s : \ - '*:command:_managepy_cmds' \ - $nul_args && ret=0 -} - -_managepy_cmds(){ - local line - local -a cmd - _call_program help-command ./manage.py help \ - |& sed -n '/^ /s/[(), ]/ /gp' \ - | while read -A line; do cmd=($line $cmd) done - _describe -t managepy-command 'manage.py command' cmd -} - -_managepy-inspectdb(){ - _arguments -s : \ - $nul_args && ret=0 -} - -_managepy-loaddata(){ - _arguments -s : \ - '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ - '*::file:_files' \ - $nul_args && ret=0 -} - -_managepy-reset(){ - _arguments -s : \ - '--noinput[tells Django to NOT prompt the user for input of any kind.]' \ - '*::appname:_applist' \ - $nul_args && ret=0 -} - -_managepy-runfcgi(){ - local state - - local fcgi_opts - fcgi_opts=( - 'protocol[fcgi, scgi, ajp, ... (default fcgi)]:protocol:(fcgi scgi ajp)' - 'host[hostname to listen on..]:' - 'port[port to listen on.]:' - 'socket[UNIX socket to listen on.]::file:_files' - 'method[prefork or threaded (default prefork)]:method:(prefork threaded)' - 'maxrequests[number of requests a child handles before it is killed and a new child is forked (0 = no limit).]:' - 'maxspare[max number of spare processes / threads.]:' - 'minspare[min number of spare processes / threads.]:' - 'maxchildren[hard limit number of processes / threads.]:' - 'daemonize[whether to detach from terminal.]:boolean:(False True)' - 'pidfile[write the spawned process-id to this file.]:file:_files' - 'workdir[change to this directory when daemonizing.]:directory:_files' - 'outlog[write stdout to this file.]:file:_files' - 'errlog[write stderr to this file.]:file:_files' - ) - - _arguments -s : \ - $nul_args \ - '*: :_values "FCGI Setting" $fcgi_opts' && ret=0 -} - -_managepy-runserver(){ - _arguments -s : \ - '--noreload[tells Django to NOT use the auto-reloader.]' \ - '--adminmedia[specifies the directory from which to serve admin media.]:directory:_files' \ - $nul_args && ret=0 -} - -_managepy-shell(){ - _arguments -s : \ - '--plain[tells Django to use plain Python, not IPython.]' \ - $nul_args && ret=0 -} - -_managepy-sql(){} -_managepy-sqlall(){} -_managepy-sqlclear(){} -_managepy-sqlcustom(){} -_managepy-sqlflush(){} -_managepy-sqlindexes(){} -_managepy-sqlinitialdata(){} -_managepy-sqlreset(){} -_managepy-sqlsequencereset(){} -_managepy-startapp(){} - -_managepy-syncdb() { - _arguments -s : \ - '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ - '--noinput[tells Django to NOT prompt the user for input of any kind.]' \ - $nul_args && ret=0 -} - -_managepy-test() { - _arguments -s : \ - '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ - '--noinput[tells Django to NOT prompt the user for input of any kind.]' \ - '*::appname:_applist' \ - $nul_args && ret=0 -} - -_managepy-testserver() { - _arguments -s : \ - '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ - '--addrport=-[port number or ipaddr:port to run the server on.]' \ - '*::fixture:_files' \ - $nul_args && ret=0 -} - -_managepy-validate() { - _arguments -s : \ - $nul_args && ret=0 -} - -_managepy-commands() { - local -a commands - - commands=( - 'adminindex:prints the admin-index template snippet for the given app name(s).' - 'createcachetable:creates the table needed to use the SQL cache backend.' - 'collectstatic:Collect static files in a single location.' - 'dbshell:runs the command-line client for the current DATABASE_ENGINE.' - "diffsettings:displays differences between the current settings.py and Django's default settings." - 'dumpdata:Output the contents of the database as a fixture of the given format.' - 'flush:Executes ``sqlflush`` on the current database.' - 'help:manage.py help.' - 'inspectdb:Introspects the database tables in the given database and outputs a Django model module.' - 'loaddata:Installs the named fixture(s) in the database.' - 'reset:Executes ``sqlreset`` for the given app(s) in the current database.' - 'runfcgi:Run this project as a fastcgi (or some other protocol supported by flup) application,' - 'runserver:Starts a lightweight Web server for development.' - 'shell:Runs a Python interactive interpreter.' - 'sql:Prints the CREATE TABLE SQL statements for the given app name(s).' - 'sqlall:Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s).' - 'sqlclear:Prints the DROP TABLE SQL statements for the given app name(s).' - 'sqlcustom:Prints the custom table modifying SQL statements for the given app name(s).' - 'sqlflush:Returns a list of the SQL statements required to return all tables in the database to the state they were in just after they were installed.' - 'sqlindexes:Prints the CREATE INDEX SQL statements for the given model module name(s).' - "sqlinitialdata:RENAMED: see 'sqlcustom'" - 'sqlreset:Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given app name(s).' - 'sqlsequencereset:Prints the SQL statements for resetting sequences for the given app name(s).' - "startapp:Creates a Django app directory structure for the given app name in this project's directory." - "syncdb:Create the database tables for all apps in INSTALLED_APPS whose tables haven't already been created." - 'test:Runs the test suite for the specified applications, or the entire site if no apps are specified.' - 'testserver:Runs a development server with data from the given fixture(s).' - 'validate:Validates all installed models.' - ) - - _describe -t commands 'manage.py command' commands && ret=0 -} - -_applist() { - local line - local -a apps - _call_program help-command "python -c \"import os.path as op, re, django.conf, sys;\\ - bn=op.basename(op.abspath(op.curdir));[sys\\ - .stdout.write(str(re.sub(r'^%s\.(.*?)$' % - bn, r'\1', i)) + '\n') for i in django.conf.settings.\\ - INSTALLED_APPS if re.match(r'^%s' % bn, i)]\"" \ - | while read -A line; do apps=($line $apps) done - _values 'Application' $apps && ret=0 -} - -_managepy() { - local curcontext=$curcontext ret=1 - - if ((CURRENT == 2)); then - _managepy-commands - else - shift words - (( CURRENT -- )) - curcontext="${curcontext%:*:*}:managepy-$words[1]:" - _call_function ret _managepy-$words[1] - fi -} - -compdef _managepy manage.py -compdef _managepy django -compdef _managepy django-admin.py -compdef _managepy django-manage diff --git a/common/.oh-my-zsh/plugins/emoji-clock/emoji-clock.plugin.zsh b/common/.oh-my-zsh/plugins/emoji-clock/emoji-clock.plugin.zsh deleted file mode 100644 index 7351a02..0000000 --- a/common/.oh-my-zsh/plugins/emoji-clock/emoji-clock.plugin.zsh +++ /dev/null @@ -1,29 +0,0 @@ -# ------------------------------------------------------------------------------ -# FILE: emoji-clock.plugin.zsh -# DESCRIPTION: The current time with half hour accuracy as an emoji symbol. -# Inspired by Andre Torrez' "Put A Burger In Your Shell" -# http://notes.torrez.org/2013/04/put-a-burger-in-your-shell.html -# AUTHOR: Alexis Hildebrandt (afh[at]surryhill.net) -# VERSION: 1.0.0 -# ----------------------------------------------------------------------------- - -function emoji-clock() { - hour=$(date '+%I') - minutes=$(date '+%M') - case $hour in - 01) clock="🕐"; [ $minutes -ge 30 ] && clock="🕜";; - 02) clock="🕑"; [ $minutes -ge 30 ] && clock="🕝";; - 03) clock="🕒"; [ $minutes -ge 30 ] && clock="🕞";; - 04) clock="🕓"; [ $minutes -ge 30 ] && clock="🕟";; - 05) clock="🕔"; [ $minutes -ge 30 ] && clock="🕠";; - 06) clock="🕕"; [ $minutes -ge 30 ] && clock="🕡";; - 07) clock="🕖"; [ $minutes -ge 30 ] && clock="🕢";; - 08) clock="🕗"; [ $minutes -ge 30 ] && clock="🕣";; - 09) clock="🕘"; [ $minutes -ge 30 ] && clock="🕤";; - 10) clock="🕙"; [ $minutes -ge 30 ] && clock="🕥";; - 11) clock="🕚"; [ $minutes -ge 30 ] && clock="🕦";; - 12) clock="🕛"; [ $minutes -ge 30 ] && clock="🕧";; - *) clock="⌛";; - esac - echo $clock -} diff --git a/common/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh b/common/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh deleted file mode 100644 index 4dbd1b4..0000000 --- a/common/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh +++ /dev/null @@ -1,4 +0,0 @@ -encode64(){ echo -n $1 | base64 } -decode64(){ echo -n $1 | base64 --decode } -alias e64=encode64 -alias d64=decode64 diff --git a/common/.oh-my-zsh/plugins/extract/_extract b/common/.oh-my-zsh/plugins/extract/_extract deleted file mode 100644 index dca8909..0000000 --- a/common/.oh-my-zsh/plugins/extract/_extract +++ /dev/null @@ -1,8 +0,0 @@ -#compdef extract -#autoload - -_arguments \ - '(-r --remove)'{-r,--remove}'[Remove archive.]' \ - "*::archive file:_files -g '(#i)*.(tar|tgz|tbz|tbz2|txz|tlz|gz|bz2|xz|lzma|Z|zip|rar|7z|deb)(-.)'" && return 0 - - diff --git a/common/.oh-my-zsh/plugins/extract/extract.plugin.zsh b/common/.oh-my-zsh/plugins/extract/extract.plugin.zsh deleted file mode 100644 index 23e86c5..0000000 --- a/common/.oh-my-zsh/plugins/extract/extract.plugin.zsh +++ /dev/null @@ -1,80 +0,0 @@ -# ------------------------------------------------------------------------------ -# FILE: extract.plugin.zsh -# DESCRIPTION: oh-my-zsh plugin file. -# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com) -# VERSION: 1.0.1 -# ------------------------------------------------------------------------------ - - -function extract() { - local remove_archive - local success - local file_name - local extract_dir - - if (( $# == 0 )); then - echo "Usage: extract [-option] [file ...]" - echo - echo Options: - echo " -r, --remove Remove archive." - echo - echo "Report bugs to ." - fi - - remove_archive=1 - if [[ "$1" == "-r" ]] || [[ "$1" == "--remove" ]]; then - remove_archive=0 - shift - fi - - while (( $# > 0 )); do - if [[ ! -f "$1" ]]; then - echo "extract: '$1' is not a valid file" 1>&2 - shift - continue - fi - - success=0 - file_name="$( basename "$1" )" - extract_dir="$( echo "$file_name" | sed "s/\.${1##*.}//g" )" - case "$1" in - (*.tar.gz|*.tgz) tar xvzf "$1" ;; - (*.tar.bz2|*.tbz|*.tbz2) tar xvjf "$1" ;; - (*.tar.xz|*.txz) tar --xz --help &> /dev/null \ - && tar --xz -xvf "$1" \ - || xzcat "$1" | tar xvf - ;; - (*.tar.zma|*.tlz) tar --lzma --help &> /dev/null \ - && tar --lzma -xvf "$1" \ - || lzcat "$1" | tar xvf - ;; - (*.tar) tar xvf "$1" ;; - (*.gz) gunzip "$1" ;; - (*.bz2) bunzip2 "$1" ;; - (*.xz) unxz "$1" ;; - (*.lzma) unlzma "$1" ;; - (*.Z) uncompress "$1" ;; - (*.zip) unzip "$1" -d $extract_dir ;; - (*.rar) unrar x -ad "$1" ;; - (*.7z) 7za x "$1" ;; - (*.deb) - mkdir -p "$extract_dir/control" - mkdir -p "$extract_dir/data" - cd "$extract_dir"; ar vx "../${1}" > /dev/null - cd control; tar xzvf ../control.tar.gz - cd ../data; tar xzvf ../data.tar.gz - cd ..; rm *.tar.gz debian-binary - cd .. - ;; - (*) - echo "extract: '$1' cannot be extracted" 1>&2 - success=1 - ;; - esac - - (( success = $success > 0 ? $success : $? )) - (( $success == 0 )) && (( $remove_archive == 0 )) && rm "$1" - shift - done -} - -alias x=extract - diff --git a/common/.oh-my-zsh/plugins/fabric/_fab b/common/.oh-my-zsh/plugins/fabric/_fab deleted file mode 100644 index 9628e12..0000000 --- a/common/.oh-my-zsh/plugins/fabric/_fab +++ /dev/null @@ -1,60 +0,0 @@ -#compdef fab -#autoload - -local curcontext=$curcontext state line -declare -A opt_args - -declare target_list -target_list=(`fab --shortlist 2>/dev/null`) - -_targets() { - _describe -t commands "fabric targets" target_list -} - -output_levels=( - 'status: Status messages, i.e. noting when Fabric is done running, if the user used a keyboard interrupt, or when servers are disconnected from. These messages are almost always relevant and rarely verbose.' - 'aborts: Abort messages. Like status messages, these should really only be turned off when using Fabric as a library, and possibly not even then. Note that even if this output group is turned off, aborts will still occur – there just won’t be any output about why Fabric aborted!' - 'warnings: Warning messages. These are often turned off when one expects a given operation to fail, such as when using grep to test existence of text in a file. If paired with setting env.warn_only to True, this can result in fully silent warnings when remote programs fail. As with aborts, this setting does not control actual warning behavior, only whether warning messages are printed or hidden.' - 'running: Printouts of commands being executed or files transferred, e.g. [myserver] run: ls /var/www. Also controls printing of tasks being run, e.g. [myserver] Executing task ''foo''.' - 'stdout: Local, or remote, stdout, i.e. non-error output from commands.' - 'stderr: Local, or remote, stderr, i.e. error-related output from commands.' - 'user: User-generated output, i.e. local output printed by fabfile code via use of the fastprint or puts functions.' -) - -_arguments -w -S -C \ - '(-)'{-h,--help}'[show this help message and exit]: :->noargs' \ - '(-)'{-V,--version}'[show program''s version number and exit]: :->noargs' \ - '(-)--list[print list of possible commands and exit]: :->noargs' \ - '(-)--shortlist[print non-verbose list of possible commands and exit]: :->noargs' \ - '(--reject-unknown-hosts)--reject-unknown-hosts[reject unknown hosts]' \ - '(--no-pty)--no-pty[do not use pseudo-terminal in run/sudo]' \ - "(-d+ --display=-)"{-d+,--display=-}"[print detailed info about a given command]: :_targets" \ - '(-D --disable-known-hosts)'{-D,--disable-known-hosts}'[do not load user known_hosts file]' \ - '(-r --reject-unknown-hosts)'{-r,--reject-unknown-hosts}'[reject unknown hosts]' \ - '(-u+ --user=-)'{-u+,--user=-}'[username to use when connecting to remote hosts]: :' \ - '(-p+ --password=-)'{-p+,--password=-}'[password for use with authentication and/or sudo]: :' \ - '(-H+ --hosts=-)'{-H+,--hosts=-}'[comma separated list of hosts to operate on]: :' \ - '(-R+ --roles=-)'{-R+,--roles=-}'[comma separated list of roles to operate on]: :' \ - '(-a --no-agent)'{-a,--no-agent}'[don''t use the running SSH agent]' \ - '(-k --no-keys)'{-k,--no-keys}'[don''t load private key files from ~/.ssh/]' \ - '(-w --warn-only)'{-w,--warn-only}'[warn instead of abort, when commands fail]' \ - '-i+[path to SSH private key file. May be repeated]: :_files' \ - "(-f+ --fabfile=)"{-f+,--fabfile=}"[Python module file to import]: :_files -g *.py" \ - '(-c+ --config=-)'{-c+,--config=-}'[specify location of config file to use]: :_files' \ - '(-s+ --shell=-)'{-s+,--shell=-}'[specify a new shell, defaults to ''/bin/bash -l -c'']: :' \ - '(--hide=-)--hide=-[comma-separated list of output levels to hide]: :->levels' \ - '(--show=-)--show=-[comma-separated list of output levels to show]: :->levels' \ - '*::: :->subcmds' && return 0 - -if [[ CURRENT -ge 1 ]]; then - case $state in - noargs) - _message "nothing to complete";; - levels) - _describe -t commands "output levels" output_levels;; - *) - _targets;; - esac - - return -fi diff --git a/common/.oh-my-zsh/plugins/fabric/fabric.plugin.zsh b/common/.oh-my-zsh/plugins/fabric/fabric.plugin.zsh deleted file mode 100644 index aca4113..0000000 --- a/common/.oh-my-zsh/plugins/fabric/fabric.plugin.zsh +++ /dev/null @@ -1 +0,0 @@ -# DECLARION: This plugin was created by vhbit. What I did is just making a portal from https://github.com/vhbit/fabric-zsh-autocomplete. diff --git a/common/.oh-my-zsh/plugins/fasd/fasd.plugin.zsh b/common/.oh-my-zsh/plugins/fasd/fasd.plugin.zsh deleted file mode 100644 index d42584f..0000000 --- a/common/.oh-my-zsh/plugins/fasd/fasd.plugin.zsh +++ /dev/null @@ -1,6 +0,0 @@ -if [ $commands[fasd] ]; then # check if fasd is installed - eval "$(fasd --init auto)" - alias v='f -e vim' - alias o='a -e open' -fi - diff --git a/common/.oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh b/common/.oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh deleted file mode 100644 index 4f04560..0000000 --- a/common/.oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh +++ /dev/null @@ -1,6 +0,0 @@ -# start fbterm automatically in /dev/tty* - -if [[ $(tty|grep -o '/dev/tty') = /dev/tty ]] ; then - fbterm - exit -fi diff --git a/common/.oh-my-zsh/plugins/forklift/forklift.plugin.zsh b/common/.oh-my-zsh/plugins/forklift/forklift.plugin.zsh deleted file mode 100644 index 056069d..0000000 --- a/common/.oh-my-zsh/plugins/forklift/forklift.plugin.zsh +++ /dev/null @@ -1,44 +0,0 @@ -# Open folder in ForkLift.app from console -# Author: Adam Strzelecki nanoant.com, modified by Bodo Tasche bitboxer.de -# -# Usage: -# fl [] -# -# Opens specified directory or current working directory in ForkLift.app -# -# Notes: -# It assumes Shift+Cmd+G launches go to folder panel and Cmd+N opens new -# app window. -# -# https://gist.github.com/3313481 -function fl { - if [ ! -z "$1" ]; then - DIR=$1 - if [ ! -d "$DIR" ]; then - DIR=$(dirname $DIR) - fi - if [ "$DIR" != "." ]; then - PWD=`cd "$DIR";pwd` - fi - fi - osascript 2>&1 1>/dev/null <cmds' \ - '*: :->args' && ret=0 - -case $state in - cmds) - cmds=( - "version:Prints Gas's version" - "use:Uses author" - "show:Shows your current user" - "list:Lists your authors" - "import:Imports current user to gasconfig" - "help:Describe available tasks or one specific task" - "delete:Deletes author" - "add:Adds author to gasconfig" - ) - _describe -t commands 'gas command' cmds && ret=0 - ;; - args) - case $line[1] in - (use|delete) - _values -S , 'authors' $(cat ~/.gas | sed -n -e 's/^\[\(.*\)\]/\1/p') && ret=0 - ;; - esac - ;; -esac - -return ret diff --git a/common/.oh-my-zsh/plugins/gem/_gem b/common/.oh-my-zsh/plugins/gem/_gem deleted file mode 100644 index 83cba40..0000000 --- a/common/.oh-my-zsh/plugins/gem/_gem +++ /dev/null @@ -1,64 +0,0 @@ -#compdef gem -#autoload - -# gem zsh completion, based on homebrew completion - -_gem_installed() { - installed_gems=(`gem list --local --no-versions`) -} - -local -a _1st_arguments -_1st_arguments=( - 'cert:Manage RubyGems certificates and signing settings' - 'check:Check installed gems' - 'cleanup:Clean up old versions of installed gems in the local repository' - 'contents:Display the contents of the installed gems' - 'dependency:Show the dependencies of an installed gem' - 'environment:Display information about the RubyGems environment' - 'fetch:Download a gem and place it in the current directory' - 'generate_index:Generates the index files for a gem server directory' - 'help:Provide help on the `gem` command' - 'install:Install a gem into the local repository' - 'list:Display gems whose name starts with STRING' - 'lock:Generate a lockdown list of gems' - 'mirror:Mirror a gem repository' - 'outdated:Display all gems that need updates' - 'owner:Manage gem owners on RubyGems.org.' - 'pristine:Restores installed gems to pristine condition from files located in the gem cache' - 'push:Push a gem up to RubyGems.org' - 'query:Query gem information in local or remote repositories' - 'rdoc:Generates RDoc for pre-installed gems' - 'search:Display all gems whose name contains STRING' - 'server:Documentation and gem repository HTTP server' - 'sources:Manage the sources and cache file RubyGems uses to search for gems' - 'specification:Display gem specification (in yaml)' - 'stale:List gems along with access times' - 'uninstall:Uninstall gems from the local repository' - 'unpack:Unpack an installed gem to the current directory' - 'update:Update the named gems (or all installed gems) in the local repository' - 'which:Find the location of a library file you can require' -) - -local expl -local -a gems installed_gems - -_arguments \ - '(-v --version)'{-v,--version}'[show version]' \ - '(-h --help)'{-h,--help}'[show help]' \ - '*:: :->subcmds' && return 0 - -if (( CURRENT == 1 )); then - _describe -t commands "gem subcommand" _1st_arguments - return -fi - -case "$words[1]" in - list) - if [[ "$state" == forms ]]; then - _gem_installed - _requested installed_gems expl 'installed gems' compadd -a installed_gems - fi ;; - uninstall|update) - _gem_installed - _wanted installed_gems expl 'installed gems' compadd -a installed_gems ;; -esac diff --git a/common/.oh-my-zsh/plugins/git-extras/git-extras.plugin.zsh b/common/.oh-my-zsh/plugins/git-extras/git-extras.plugin.zsh deleted file mode 100644 index 8419166..0000000 --- a/common/.oh-my-zsh/plugins/git-extras/git-extras.plugin.zsh +++ /dev/null @@ -1,285 +0,0 @@ -#compdef git -# ------------------------------------------------------------------------------ -# Description -# ----------- -# -# Completion script for git-extras (http://github.com/visionmedia/git-extras). -# -# ------------------------------------------------------------------------------ -# Authors -# ------- -# -# * Alexis GRIMALDI (https://github.com/agrimaldi) -# -# ------------------------------------------------------------------------------ -# Inspirations -# ----------- -# -# * git-extras (http://github.com/visionmedia/git-extras) -# * git-flow-completion (http://github.com/bobthecow/git-flow-completion) -# -# ------------------------------------------------------------------------------ - - -__git_command_successful () { - if (( ${#pipestatus:#0} > 0 )); then - _message 'not a git repository' - return 1 - fi - return 0 -} - - -__git_tag_names() { - local expl - declare -a tag_names - tag_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/tags 2>/dev/null)"}#refs/tags/}) - __git_command_successful || return - _wanted tag-names expl tag-name compadd $* - $tag_names -} - - -__git_branch_names() { - local expl - declare -a branch_names - branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) - __git_command_successful || return - _wanted branch-names expl branch-name compadd $* - $branch_names -} - - -__git_feature_branch_names() { - local expl - declare -a branch_names - branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads/feature 2>/dev/null)"}#refs/heads/feature/}) - __git_command_successful || return - _wanted branch-names expl branch-name compadd $* - $branch_names -} - - -__git_refactor_branch_names() { - local expl - declare -a branch_names - branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads/refactor 2>/dev/null)"}#refs/heads/refactor/}) - __git_command_successful || return - _wanted branch-names expl branch-name compadd $* - $branch_names -} - - -__git_bug_branch_names() { - local expl - declare -a branch_names - branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads/bug 2>/dev/null)"}#refs/heads/bug/}) - __git_command_successful || return - _wanted branch-names expl branch-name compadd $* - $branch_names -} - - -__git_submodule_names() { - local expl - declare -a submodule_names - submodule_names=(${(f)"$(_call_program branchrefs git submodule status | awk '{print $2}')"}) - __git_command_successful || return - _wanted submodule-names expl submodule-name compadd $* - $submodule_names -} - - -__git_author_names() { - local expl - declare -a author_names - author_names=(${(f)"$(_call_program branchrefs git log --format='%aN' | sort -u)"}) - __git_command_successful || return - _wanted author-names expl author-name compadd $* - $author_names -} - - -_git-changelog() { - _arguments \ - '(-l --list)'{-l,--list}'[list commits]' \ -} - - -_git-effort() { - _arguments \ - '--above[ignore file with less than x commits]' \ -} - - -_git-contrib() { - _arguments \ - ':author:__git_author_names' -} - - -_git-count() { - _arguments \ - '--all[detailed commit count]' -} - - -_git-delete-branch() { - _arguments \ - ':branch-name:__git_branch_names' -} - - -_git-delete-submodule() { - _arguments \ - ':submodule-name:__git_submodule_names' -} - - -_git-delete-tag() { - _arguments \ - ':tag-name:__git_tag_names' -} - - -_git-extras() { - local curcontext=$curcontext state line ret=1 - declare -A opt_args - - _arguments -C \ - ': :->command' \ - '*:: :->option-or-argument' && ret=0 - - case $state in - (command) - declare -a commands - commands=( - 'update:update git-extras' - ) - _describe -t commands command commands && ret=0 - ;; - esac - - _arguments \ - '(-v --version)'{-v,--version}'[show current version]' \ -} - - -_git-graft() { - _arguments \ - ':src-branch-name:__git_branch_names' \ - ':dest-branch-name:__git_branch_names' -} - - -_git-squash() { - _arguments \ - ':branch-name:__git_branch_names' -} - - -_git-feature() { - local curcontext=$curcontext state line ret=1 - declare -A opt_args - - _arguments -C \ - ': :->command' \ - '*:: :->option-or-argument' && ret=0 - - case $state in - (command) - declare -a commands - commands=( - 'finish:merge feature into the current branch' - ) - _describe -t commands command commands && ret=0 - ;; - (option-or-argument) - curcontext=${curcontext%:*}-$line[1]: - case $line[1] in - (finish) - _arguments -C \ - ':branch-name:__git_feature_branch_names' - ;; - esac - esac -} - - -_git-refactor() { - local curcontext=$curcontext state line ret=1 - declare -A opt_args - - _arguments -C \ - ': :->command' \ - '*:: :->option-or-argument' && ret=0 - - case $state in - (command) - declare -a commands - commands=( - 'finish:merge refactor into the current branch' - ) - _describe -t commands command commands && ret=0 - ;; - (option-or-argument) - curcontext=${curcontext%:*}-$line[1]: - case $line[1] in - (finish) - _arguments -C \ - ':branch-name:__git_refactor_branch_names' - ;; - esac - esac -} - - -_git-bug() { - local curcontext=$curcontext state line ret=1 - declare -A opt_args - - _arguments -C \ - ': :->command' \ - '*:: :->option-or-argument' && ret=0 - - case $state in - (command) - declare -a commands - commands=( - 'finish:merge bug into the current branch' - ) - _describe -t commands command commands && ret=0 - ;; - (option-or-argument) - curcontext=${curcontext%:*}-$line[1]: - case $line[1] in - (finish) - _arguments -C \ - ':branch-name:__git_bug_branch_names' - ;; - esac - esac -} - - -zstyle ':completion:*:*:git:*' user-commands \ - changelog:'populate changelog file with commits since the previous tag' \ - contrib:'display author contributions' \ - count:'count commits' \ - delete-branch:'delete local and remote branch' \ - delete-submodule:'delete submodule' \ - delete-tag:'delete local and remote tag' \ - extras:'git-extras' \ - graft:'merge commits from source branch to destination branch' \ - squash:'merge commits from source branch into the current one as a single commit' \ - feature:'create a feature branch' \ - refactor:'create a refactor branch' \ - bug:'create a bug branch' \ - summary:'repository summary' \ - effort:'display effort statistics' \ - repl:'read-eval-print-loop' \ - commits-since:'list commits since a given date' \ - release:'release commit with the given tag' \ - alias:'define, search and show aliases' \ - ignore:'add patterns to .gitignore' \ - info:'show info about the repository' \ - create-branch:'create local and remote branch' \ - fresh-branch:'create empty local branch' \ - undo:'remove the latest commit' \ - setup:'setup a git repository' \ - touch:'one step creation of new files' \ - obliterate:'Completely remove a file from the repository, including past commits and tags' \ - local-commits:'list unpushed commits on the local branch' \ diff --git a/common/.oh-my-zsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh b/common/.oh-my-zsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh deleted file mode 100644 index d76f55e..0000000 --- a/common/.oh-my-zsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh +++ /dev/null @@ -1,416 +0,0 @@ -#!zsh -# -# Installation -# ------------ -# -# To achieve git-flow completion nirvana: -# -# 0. Update your zsh's git-completion module to the newest verion. -# From here. http://zsh.git.sourceforge.net/git/gitweb.cgi?p=zsh/zsh;a=blob_plain;f=Completion/Unix/Command/_git;hb=HEAD -# -# 1. Install this file. Either: -# -# a. Place it in your .zshrc: -# -# b. Or, copy it somewhere (e.g. ~/.git-flow-completion.zsh) and put the following line in -# your .zshrc: -# -# source ~/.git-flow-completion.zsh -# -# c. Or, use this file as a oh-my-zsh plugin. -# - -_git-flow () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'init:Initialize a new git repo with support for the branching model.' - 'feature:Manage your feature branches.' - 'config:Manage your configuration.' - 'release:Manage your release branches.' - 'hotfix:Manage your hotfix branches.' - 'support:Manage your support branches.' - 'version:Shows version information.' - ) - _describe -t commands 'git flow' subcommands - ;; - - (options) - case $line[1] in - - (init) - _arguments \ - -f'[Force setting of gitflow branches, even if already configured]' - ;; - - (version) - ;; - - (hotfix) - __git-flow-hotfix - ;; - - (release) - __git-flow-release - ;; - - (feature) - __git-flow-feature - ;; - (config) - __git-flow-config - ;; - - esac - ;; - esac -} - -__git-flow-release () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'start:Start a new release branch.' - 'finish:Finish a release branch.' - 'list:List all your release branches. (Alias to `git flow release`)' - 'publish:Publish release branch to remote.' - 'track:Checkout remote release branch.' - 'delet:Delete a release branch.' - ) - _describe -t commands 'git flow release' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':version:__git_flow_version_list' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -s'[Sign the release tag cryptographically]'\ - -u'[Use the given GPG-key for the digital signature (implies -s)]'\ - -m'[Use the given tag message]'\ - -p'[Push to $ORIGIN after performing finish]'\ - ':version:__git_flow_version_list' - ;; - - (delete) - _arguments \ - -f'[Force deletion]' \ - -r'[Delete remote branch]' \ - ':version:__git_flow_version_list' - ;; - - (publish) - _arguments \ - ':version:__git_flow_version_list' - ;; - - (track) - _arguments \ - ':version:__git_flow_version_list' - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git-flow-hotfix () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'start:Start a new hotfix branch.' - 'finish:Finish a hotfix branch.' - 'delete:Delete a hotfix branch.' - 'list:List all your hotfix branches. (Alias to `git flow hotfix`)' - ) - _describe -t commands 'git flow hotfix' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':hotfix:__git_flow_version_list'\ - ':branch-name:__git_branch_names' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -s'[Sign the release tag cryptographically]'\ - -u'[Use the given GPG-key for the digital signature (implies -s)]'\ - -m'[Use the given tag message]'\ - -p'[Push to $ORIGIN after performing finish]'\ - ':hotfix:__git_flow_hotfix_list' - ;; - - (delete) - _arguments \ - -f'[Force deletion]' \ - -r'[Delete remote branch]' \ - ':hotfix:__git_flow_hotfix_list' - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git-flow-feature () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'start:Start a new feature branch.' - 'finish:Finish a feature branch.' - 'delete:Delete a feature branch.' - 'list:List all your feature branches. (Alias to `git flow feature`)' - 'publish:Publish feature branch to remote.' - 'track:Checkout remote feature branch.' - 'diff:Show all changes.' - 'rebase:Rebase from integration branch.' - 'checkout:Checkout local feature branch.' - 'pull:Pull changes from remote.' - ) - _describe -t commands 'git flow feature' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':feature:__git_flow_feature_list'\ - ':branch-name:__git_branch_names' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -r'[Rebase instead of merge]'\ - ':feature:__git_flow_feature_list' - ;; - - (delete) - _arguments \ - -f'[Force deletion]' \ - -r'[Delete remote branch]' \ - ':feature:__git_flow_feature_list' - ;; - - (publish) - _arguments \ - ':feature:__git_flow_feature_list'\ - ;; - - (track) - _arguments \ - ':feature:__git_flow_feature_list'\ - ;; - - (diff) - _arguments \ - ':branch:__git_branch_names'\ - ;; - - (rebase) - _arguments \ - -i'[Do an interactive rebase]' \ - ':branch:__git_branch_names' - ;; - - (checkout) - _arguments \ - ':branch:__git_flow_feature_list'\ - ;; - - (pull) - _arguments \ - ':remote:__git_remotes'\ - ':branch:__git_branch_names' - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git-flow-config () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'list:List the configuration. (Alias to `git flow config`)' - 'set:Set the configuration option' - ) - _describe -t commands 'git flow config' subcommands - ;; - - (options) - case $line[1] in - - (set) - _arguments \ - --local'[Use repository config file]' \ - --global'[Use global config file]'\ - --system'[Use system config file]'\ - --file'[Use given config file]'\ - ':option:(master develop feature hotfix release support versiontagprefix)' - ;; - - *) - _arguments \ - --local'[Use repository config file]' \ - --global'[Use global config file]'\ - --system'[Use system config file]'\ - --file'[Use given config file]' - ;; - esac - ;; - esac -} -__git_flow_version_list () -{ - local expl - declare -a versions - - versions=(${${(f)"$(_call_program versions git flow release list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted versions expl 'version' compadd $versions -} - -__git_flow_feature_list () -{ - local expl - declare -a features - - features=(${${(f)"$(_call_program features git flow feature list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted features expl 'feature' compadd $features -} - -__git_remotes () { - local expl gitdir remotes - - gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null) - __git_command_successful || return - - remotes=(${${(f)"$(_call_program remotes git config --get-regexp '"^remote\..*\.url$"')"}//#(#b)remote.(*).url */$match[1]}) - __git_command_successful || return - - # TODO: Should combine the two instead of either or. - if (( $#remotes > 0 )); then - _wanted remotes expl remote compadd $* - $remotes - else - _wanted remotes expl remote _files $* - -W "($gitdir/remotes)" -g "$gitdir/remotes/*" - fi -} - -__git_flow_hotfix_list () -{ - local expl - declare -a hotfixes - - hotfixes=(${${(f)"$(_call_program hotfixes git flow hotfix list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted hotfixes expl 'hotfix' compadd $hotfixes -} - -__git_branch_names () { - local expl - declare -a branch_names - - branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) - __git_command_successful || return - - _wanted branch-names expl branch-name compadd $* - $branch_names -} - -__git_command_successful () { - if (( ${#pipestatus:#0} > 0 )); then - _message 'not a git repository' - return 1 - fi - return 0 -} - -zstyle ':completion:*:*:git:*' user-commands flow:'provide high-level repository operations' diff --git a/common/.oh-my-zsh/plugins/git-flow/git-flow.plugin.zsh b/common/.oh-my-zsh/plugins/git-flow/git-flow.plugin.zsh deleted file mode 100644 index ab9c0c8..0000000 --- a/common/.oh-my-zsh/plugins/git-flow/git-flow.plugin.zsh +++ /dev/null @@ -1,349 +0,0 @@ -#!zsh -# -# Installation -# ------------ -# -# To achieve git-flow completion nirvana: -# -# 0. Update your zsh's git-completion module to the newest verion. -# From here. http://zsh.git.sourceforge.net/git/gitweb.cgi?p=zsh/zsh;a=blob_plain;f=Completion/Unix/Command/_git;hb=HEAD -# -# 1. Install this file. Either: -# -# a. Place it in your .zshrc: -# -# b. Or, copy it somewhere (e.g. ~/.git-flow-completion.zsh) and put the following line in -# your .zshrc: -# -# source ~/.git-flow-completion.zsh -# -# c. Or, use this file as a oh-my-zsh plugin. -# - -_git-flow () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'init:Initialize a new git repo with support for the branching model.' - 'feature:Manage your feature branches.' - 'release:Manage your release branches.' - 'hotfix:Manage your hotfix branches.' - 'support:Manage your support branches.' - 'version:Shows version information.' - ) - _describe -t commands 'git flow' subcommands - ;; - - (options) - case $line[1] in - - (init) - _arguments \ - -f'[Force setting of gitflow branches, even if already configured]' - ;; - - (version) - ;; - - (hotfix) - __git-flow-hotfix - ;; - - (release) - __git-flow-release - ;; - - (feature) - __git-flow-feature - ;; - esac - ;; - esac -} - -__git-flow-release () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'start:Start a new release branch.' - 'finish:Finish a release branch.' - 'list:List all your release branches. (Alias to `git flow release`)' - 'publish: public' - 'track: track' - ) - _describe -t commands 'git flow release' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':version:__git_flow_version_list' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -s'[Sign the release tag cryptographically]'\ - -u'[Use the given GPG-key for the digital signature (implies -s)]'\ - -m'[Use the given tag message]'\ - -p'[Push to $ORIGIN after performing finish]'\ - -k'[Keep branch after performing finish]'\ - -n"[Don't tag this release]"\ - ':version:__git_flow_version_list' - ;; - - (publish) - _arguments \ - ':version:__git_flow_version_list'\ - ;; - - (track) - _arguments \ - ':version:__git_flow_version_list'\ - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git-flow-hotfix () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'start:Start a new hotfix branch.' - 'finish:Finish a hotfix branch.' - 'list:List all your hotfix branches. (Alias to `git flow hotfix`)' - ) - _describe -t commands 'git flow hotfix' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':hotfix:__git_flow_version_list'\ - ':branch-name:__git_branch_names' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -s'[Sign the release tag cryptographically]'\ - -u'[Use the given GPG-key for the digital signature (implies -s)]'\ - -m'[Use the given tag message]'\ - -p'[Push to $ORIGIN after performing finish]'\ - -k'[Keep branch after performing finish]'\ - -n"[Don't tag this release]"\ - ':hotfix:__git_flow_hotfix_list' - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git-flow-feature () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'start:Start a new feature branch.' - 'finish:Finish a feature branch.' - 'list:List all your feature branches. (Alias to `git flow feature`)' - 'publish: publish' - 'track: track' - 'diff: diff' - 'rebase: rebase' - 'checkout: checkout' - 'pull: pull' - ) - _describe -t commands 'git flow feature' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':feature:__git_flow_feature_list'\ - ':branch-name:__git_branch_names' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -r'[Rebase instead of merge]'\ - -k'[Keep branch after performing finish]'\ - ':feature:__git_flow_feature_list' - ;; - - (publish) - _arguments \ - ':feature:__git_flow_feature_list'\ - ;; - - (track) - _arguments \ - ':feature:__git_flow_feature_list'\ - ;; - - (diff) - _arguments \ - ':branch:__git_flow_feature_list'\ - ;; - - (rebase) - _arguments \ - -i'[Do an interactive rebase]' \ - ':branch:__git_flow_feature_list' - ;; - - (checkout) - _arguments \ - ':branch:__git_flow_feature_list'\ - ;; - - (pull) - _arguments \ - ':remote:__git_remotes'\ - ':branch:__git_flow_feature_list' - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git_flow_version_list () -{ - local expl - declare -a versions - - versions=(${${(f)"$(_call_program versions git flow release list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted versions expl 'version' compadd $versions -} - -__git_flow_feature_list () -{ - local expl - declare -a features - - features=(${${(f)"$(_call_program features git flow feature list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted features expl 'feature' compadd $features -} - -__git_remotes () { - local expl gitdir remotes - - gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null) - __git_command_successful || return - - remotes=(${${(f)"$(_call_program remotes git config --get-regexp '"^remote\..*\.url$"')"}//#(#b)remote.(*).url */$match[1]}) - __git_command_successful || return - - # TODO: Should combine the two instead of either or. - if (( $#remotes > 0 )); then - _wanted remotes expl remote compadd $* - $remotes - else - _wanted remotes expl remote _files $* - -W "($gitdir/remotes)" -g "$gitdir/remotes/*" - fi -} - -__git_flow_hotfix_list () -{ - local expl - declare -a hotfixes - - hotfixes=(${${(f)"$(_call_program hotfixes git flow hotfix list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted hotfixes expl 'hotfix' compadd $hotfixes -} - -__git_branch_names () { - local expl - declare -a branch_names - - branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) - __git_command_successful || return - - _wanted branch-names expl branch-name compadd $* - $branch_names -} - -__git_command_successful () { - if (( ${#pipestatus:#0} > 0 )); then - _message 'not a git repository' - return 1 - fi - return 0 -} - -zstyle ':completion:*:*:git:*' user-commands flow:'description for foo' diff --git a/common/.oh-my-zsh/plugins/git-hubflow/git-hubflow.plugin.zsh b/common/.oh-my-zsh/plugins/git-hubflow/git-hubflow.plugin.zsh deleted file mode 100644 index a09f883..0000000 --- a/common/.oh-my-zsh/plugins/git-hubflow/git-hubflow.plugin.zsh +++ /dev/null @@ -1,348 +0,0 @@ -#!zsh -# -# Installation -# ------------ -# -# To achieve git-hubflow completion nirvana: -# -# 0. Update your zsh's git-completion module to the newest verion. -# From here. http://zsh.git.sourceforge.net/git/gitweb.cgi?p=zsh/zsh;a=blob_plain;f=Completion/Unix/Command/_git;hb=HEAD -# -# 1. Install this file. Either: -# -# a. Place it in your .zshrc: -# -# b. Or, copy it somewhere (e.g. ~/.git-hubflow-completion.zsh) and put the following line in -# your .zshrc: -# -# source ~/.git-hubflow-completion.zsh -# -# c. Or, use this file as a oh-my-zsh plugin. -# - -_git-hf () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'init:Initialize a new git repo with support for the branching model.' - 'feature:Manage your feature branches.' - 'release:Manage your release branches.' - 'hotfix:Manage your hotfix branches.' - 'support:Manage your support branches.' - 'update:Pull upstream changes down into your master and develop branches.' - 'version:Shows version information.' - ) - _describe -t commands 'git hf' subcommands - ;; - - (options) - case $line[1] in - - (init) - _arguments \ - -f'[Force setting of gitflow branches, even if already configured]' - ;; - - (version) - ;; - - (hotfix) - __git-hf-hotfix - ;; - - (release) - __git-hf-release - ;; - - (feature) - __git-hf-feature - ;; - esac - ;; - esac -} - -__git-hf-release () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'start:Start a new release branch.' - 'finish:Finish a release branch.' - 'list:List all your release branches. (Alias to `git hf release`)' - 'cancel:Cancel release' - 'push:Push release to github' - 'pull:Pull release from github' - 'track:Track release' - ) - _describe -t commands 'git hf release' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':version:__git_hf_version_list' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -s'[Sign the release tag cryptographically]'\ - -u'[Use the given GPG-key for the digital signature (implies -s)]'\ - -m'[Use the given tag message]'\ - -p'[Push to $ORIGIN after performing finish]'\ - -k'[Keep branch after performing finish]'\ - -n"[Don't tag this release]"\ - ':version:__git_hf_version_list' - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git-hf-hotfix () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'start:Start a new hotfix branch.' - 'finish:Finish a hotfix branch.' - 'list:List all your hotfix branches. (Alias to `git hf hotfix`)' - 'publish:Publish the hotfix branch.' - 'track:Track the hotfix branch.' - 'pull:Pull the hotfix from github.' - 'push:Push the hotfix to github.' - 'cancel:Cancel the hotfix.' - ) - _describe -t commands 'git hf hotfix' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':hotfix:__git_hf_version_list'\ - ':branch-name:__git_branch_names' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -s'[Sign the release tag cryptographically]'\ - -u'[Use the given GPG-key for the digital signature (implies -s)]'\ - -m'[Use the given tag message]'\ - -p'[Push to $ORIGIN after performing finish]'\ - -k'[Keep branch after performing finish]'\ - -n"[Don't tag this release]"\ - ':hotfix:__git_hf_hotfix_list' - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git-hf-feature () -{ - local curcontext="$curcontext" state line - typeset -A opt_args - - _arguments -C \ - ':command:->command' \ - '*::options:->options' - - case $state in - (command) - - local -a subcommands - subcommands=( - 'list:List all your feature branches. (Alias to `git hf feature`)' - 'start:Start a new feature branch' - 'finish:Finish a feature branch' - 'submit:submit' - 'track:track' - 'diff:Diff' - 'rebase:Rebase feature branch against develop' - 'checkout:Checkout feature' - 'pull:Pull feature branch from github' - 'push:Push feature branch to github' - 'cancel:Cancel feature' - ) - _describe -t commands 'git hf feature' subcommands - _arguments \ - -v'[Verbose (more) output]' - ;; - - (options) - case $line[1] in - - (start) - _arguments \ - -F'[Fetch from origin before performing finish]'\ - ':feature:__git_hf_feature_list'\ - ':branch-name:__git_branch_names' - ;; - - (finish) - _arguments \ - -F'[Fetch from origin before performing finish]' \ - -r'[Rebase instead of merge]'\ - ':feature:__git_hf_feature_list' - ;; - - (publish) - _arguments \ - ':feature:__git_hf_feature_list'\ - ;; - - (track) - _arguments \ - ':feature:__git_hf_feature_list'\ - ;; - - (diff) - _arguments \ - ':branch:__git_branch_names'\ - ;; - - (rebase) - _arguments \ - -i'[Do an interactive rebase]' \ - ':branch:__git_branch_names' - ;; - - (checkout) - _arguments \ - ':branch:__git_hf_feature_list'\ - ;; - - (pull) - _arguments \ - ':remote:__git_remotes'\ - ':branch:__git_branch_names' - ;; - - *) - _arguments \ - -v'[Verbose (more) output]' - ;; - esac - ;; - esac -} - -__git_hf_version_list () -{ - local expl - declare -a versions - - versions=(${${(f)"$(_call_program versions git hf release list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted versions expl 'version' compadd $versions -} - -__git_hf_feature_list () -{ - local expl - declare -a features - - features=(${${(f)"$(_call_program features git hf feature list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted features expl 'feature' compadd $features -} - -__git_remotes () { - local expl gitdir remotes - - gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null) - __git_command_successful || return - - remotes=(${${(f)"$(_call_program remotes git config --get-regexp '"^remote\..*\.url$"')"}//#(#b)remote.(*).url */$match[1]}) - __git_command_successful || return - - # TODO: Should combine the two instead of either or. - if (( $#remotes > 0 )); then - _wanted remotes expl remote compadd $* - $remotes - else - _wanted remotes expl remote _files $* - -W "($gitdir/remotes)" -g "$gitdir/remotes/*" - fi -} - -__git_hf_hotfix_list () -{ - local expl - declare -a hotfixes - - hotfixes=(${${(f)"$(_call_program hotfixes git hf hotfix list 2> /dev/null | tr -d ' |*')"}}) - __git_command_successful || return - - _wanted hotfixes expl 'hotfix' compadd $hotfixes -} - -__git_branch_names () { - local expl - declare -a branch_names - - branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) - __git_command_successful || return - - _wanted branch-names expl branch-name compadd $* - $branch_names -} - -__git_command_successful () { - if (( ${#pipestatus:#0} > 0 )); then - _message 'not a git repository' - return 1 - fi - return 0 -} - -zstyle ':completion:*:*:git:*' user-commands flow:'description for foo' diff --git a/common/.oh-my-zsh/plugins/git-remote-branch/git-remote-branch.plugin.zsh b/common/.oh-my-zsh/plugins/git-remote-branch/git-remote-branch.plugin.zsh deleted file mode 100644 index 6c5ab8f..0000000 --- a/common/.oh-my-zsh/plugins/git-remote-branch/git-remote-branch.plugin.zsh +++ /dev/null @@ -1,19 +0,0 @@ -_git_remote_branch() { - ref=$(git symbolic-ref HEAD 2> /dev/null) - if [[ -n $ref ]]; then - if (( CURRENT == 2 )); then - # first arg: operation - compadd create publish rename delete track - elif (( CURRENT == 3 )); then - # second arg: remote branch name - remotes=`git remote | tr '\n' '|' | sed "s/\|$//g"` - compadd `git branch -r | grep -v HEAD | sed "s/$remotes\///" | sed "s/ //g"` - elif (( CURRENT == 4 )); then - # third arg: remote name - compadd `git remote` - fi - else; - _files - fi -} -compdef _git_remote_branch grb diff --git a/common/.oh-my-zsh/plugins/git/git.plugin.zsh b/common/.oh-my-zsh/plugins/git/git.plugin.zsh deleted file mode 100644 index 6c016aa..0000000 --- a/common/.oh-my-zsh/plugins/git/git.plugin.zsh +++ /dev/null @@ -1,110 +0,0 @@ -# Aliases -alias g='git' -compdef g=git -alias gst='git status' -compdef _git gst=git-status -alias gd='git diff' -compdef _git gd=git-diff -alias gl='git pull' -compdef _git gl=git-pull -alias gup='git pull --rebase' -compdef _git gup=git-fetch -alias gp='git push' -compdef _git gp=git-push -alias gd='git diff' -gdv() { git diff -w "$@" | view - } -compdef _git gdv=git-diff -alias gc='git commit -v' -compdef _git gc=git-commit -alias gc!='git commit -v --amend' -compdef _git gc!=git-commit -alias gca='git commit -v -a' -compdef _git gc=git-commit -alias gca!='git commit -v -a --amend' -compdef _git gca!=git-commit -alias gco='git checkout' -compdef _git gco=git-checkout -alias gcm='git checkout master' -alias gr='git remote' -compdef _git gr=git-remote -alias grv='git remote -v' -compdef _git grv=git-remote -alias grmv='git remote rename' -compdef _git grmv=git-remote -alias grrm='git remote remove' -compdef _git grrm=git-remote -alias grset='git remote set-url' -compdef _git grset=git-remote -alias grup='git remote update' -compdef _git grset=git-remote -alias gb='git branch' -compdef _git gb=git-branch -alias gba='git branch -a' -compdef _git gba=git-branch -alias gcount='git shortlog -sn' -compdef gcount=git -alias gcl='git config --list' -alias gcp='git cherry-pick' -compdef _git gcp=git-cherry-pick -alias glg='git log --stat --max-count=5' -compdef _git glg=git-log -alias glgg='git log --graph --max-count=5' -compdef _git glgg=git-log -alias glgga='git log --graph --decorate --all' -compdef _git glgga=git-log -alias glo='git log --oneline' -compdef _git glo=git-log -alias gss='git status -s' -compdef _git gss=git-status -alias ga='git add' -compdef _git ga=git-add -alias gm='git merge' -compdef _git gm=git-merge -alias grh='git reset HEAD' -alias grhh='git reset HEAD --hard' -alias gwc='git whatchanged -p --abbrev-commit --pretty=medium' -alias gf='git ls-files | grep' -alias gpoat='git push origin --all && git push origin --tags' - -# Will cd into the top of the current repository -# or submodule. -alias grt='cd $(git rev-parse --show-toplevel || echo ".")' - -# Git and svn mix -alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk' -compdef git-svn-dcommit-push=git - -alias gsr='git svn rebase' -alias gsd='git svn dcommit' -# -# Will return the current branch name -# Usage example: git pull origin $(current_branch) -# -function current_branch() { - ref=$(git symbolic-ref HEAD 2> /dev/null) || \ - ref=$(git rev-parse --short HEAD 2> /dev/null) || return - echo ${ref#refs/heads/} -} - -function current_repository() { - ref=$(git symbolic-ref HEAD 2> /dev/null) || \ - ref=$(git rev-parse --short HEAD 2> /dev/null) || return - echo $(git remote -v | cut -d':' -f 2) -} - -# these aliases take advantage of the previous function -alias ggpull='git pull origin $(current_branch)' -compdef ggpull=git -alias ggpush='git push origin $(current_branch)' -compdef ggpush=git -alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)' -compdef ggpnp=git - -# Pretty log messages -function _git_log_prettily(){ - if ! [ -z $1 ]; then - git log --pretty=$1 - fi -} -alias glp="_git_log_prettily" -compdef _git glp=git-log diff --git a/common/.oh-my-zsh/plugins/gitfast/_git b/common/.oh-my-zsh/plugins/gitfast/_git deleted file mode 100644 index cf8116d..0000000 --- a/common/.oh-my-zsh/plugins/gitfast/_git +++ /dev/null @@ -1,87 +0,0 @@ -#compdef git gitk - -# zsh completion wrapper for git -# -# You need git's bash completion script installed somewhere, by default on the -# same directory as this script. -# -# If your script is on ~/.git-completion.sh instead, you can configure it on -# your ~/.zshrc: -# -# zstyle ':completion:*:*:git:*' script ~/.git-completion.sh -# -# The recommended way to install this script is to copy to -# '~/.zsh/completion/_git', and then add the following to your ~/.zshrc file: -# -# fpath=(~/.zsh/completion $fpath) - -complete () -{ - # do nothing - return 0 -} - -zstyle -s ":completion:*:*:git:*" script script -test -z "$script" && script="$(dirname ${funcsourcetrace[1]%:*})"/git-completion.bash -ZSH_VERSION='' . "$script" - -__gitcomp () -{ - emulate -L zsh - - local cur_="${3-$cur}" - - case "$cur_" in - --*=) - ;; - *) - local c IFS=$' \t\n' - local -a array - for c in ${=1}; do - c="$c${4-}" - case $c in - --*=*|*.) ;; - *) c="$c " ;; - esac - array+=("$c") - done - compset -P '*[=:]' - compadd -Q -S '' -p "${2-}" -a -- array && _ret=0 - ;; - esac -} - -__gitcomp_nl () -{ - emulate -L zsh - - local IFS=$'\n' - compset -P '*[=:]' - compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 -} - -__gitcomp_file () -{ - emulate -L zsh - - local IFS=$'\n' - compset -P '*[=:]' - compadd -Q -p "${2-}" -f -- ${=1} && _ret=0 -} - -_git () -{ - local _ret=1 - () { - emulate -L ksh - local cur cword prev - cur=${words[CURRENT-1]} - prev=${words[CURRENT-2]} - let cword=CURRENT-1 - __${service}_main - } - let _ret && _default -S '' && _ret=0 - return _ret -} - -_git diff --git a/common/.oh-my-zsh/plugins/gitfast/git-completion.bash b/common/.oh-my-zsh/plugins/gitfast/git-completion.bash deleted file mode 100644 index 93eba46..0000000 --- a/common/.oh-my-zsh/plugins/gitfast/git-completion.bash +++ /dev/null @@ -1,2766 +0,0 @@ -#!bash -# -# bash/zsh completion support for core Git. -# -# Copyright (C) 2006,2007 Shawn O. Pearce -# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). -# Distributed under the GNU General Public License, version 2.0. -# -# The contained completion routines provide support for completing: -# -# *) local and remote branch names -# *) local and remote tag names -# *) .git/remotes file names -# *) git 'subcommands' -# *) tree paths within 'ref:path/to/file' expressions -# *) file paths within current working directory and index -# *) common --long-options -# -# To use these routines: -# -# 1) Copy this file to somewhere (e.g. ~/.git-completion.sh). -# 2) Add the following line to your .bashrc/.zshrc: -# source ~/.git-completion.sh -# 3) Consider changing your PS1 to also show the current branch, -# see git-prompt.sh for details. - -case "$COMP_WORDBREAKS" in -*:*) : great ;; -*) COMP_WORDBREAKS="$COMP_WORDBREAKS:" -esac - -# __gitdir accepts 0 or 1 arguments (i.e., location) -# returns location of .git repo -__gitdir () -{ - # Note: this function is duplicated in git-prompt.sh - # When updating it, make sure you update the other one to match. - if [ -z "${1-}" ]; then - if [ -n "${__git_dir-}" ]; then - echo "$__git_dir" - elif [ -n "${GIT_DIR-}" ]; then - test -d "${GIT_DIR-}" || return 1 - echo "$GIT_DIR" - elif [ -d .git ]; then - echo .git - else - git rev-parse --git-dir 2>/dev/null - fi - elif [ -d "$1/.git" ]; then - echo "$1/.git" - else - echo "$1" - fi -} - -__gitcomp_1 () -{ - local c IFS=$' \t\n' - for c in $1; do - c="$c$2" - case $c in - --*=*|*.) ;; - *) c="$c " ;; - esac - printf '%s\n' "$c" - done -} - -# The following function is based on code from: -# -# bash_completion - programmable completion functions for bash 3.2+ -# -# Copyright © 2006-2008, Ian Macdonald -# © 2009-2010, Bash Completion Maintainers -# -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software Foundation, -# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# The latest version of this software can be obtained here: -# -# http://bash-completion.alioth.debian.org/ -# -# RELEASE: 2.x - -# This function can be used to access a tokenized list of words -# on the command line: -# -# __git_reassemble_comp_words_by_ref '=:' -# if test "${words_[cword_-1]}" = -w -# then -# ... -# fi -# -# The argument should be a collection of characters from the list of -# word completion separators (COMP_WORDBREAKS) to treat as ordinary -# characters. -# -# This is roughly equivalent to going back in time and setting -# COMP_WORDBREAKS to exclude those characters. The intent is to -# make option types like --date= and : easy to -# recognize by treating each shell word as a single token. -# -# It is best not to set COMP_WORDBREAKS directly because the value is -# shared with other completion scripts. By the time the completion -# function gets called, COMP_WORDS has already been populated so local -# changes to COMP_WORDBREAKS have no effect. -# -# Output: words_, cword_, cur_. - -__git_reassemble_comp_words_by_ref() -{ - local exclude i j first - # Which word separators to exclude? - exclude="${1//[^$COMP_WORDBREAKS]}" - cword_=$COMP_CWORD - if [ -z "$exclude" ]; then - words_=("${COMP_WORDS[@]}") - return - fi - # List of word completion separators has shrunk; - # re-assemble words to complete. - for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do - # Append each nonempty word consisting of just - # word separator characters to the current word. - first=t - while - [ $i -gt 0 ] && - [ -n "${COMP_WORDS[$i]}" ] && - # word consists of excluded word separators - [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ] - do - # Attach to the previous token, - # unless the previous token is the command name. - if [ $j -ge 2 ] && [ -n "$first" ]; then - ((j--)) - fi - first= - words_[$j]=${words_[j]}${COMP_WORDS[i]} - if [ $i = $COMP_CWORD ]; then - cword_=$j - fi - if (($i < ${#COMP_WORDS[@]} - 1)); then - ((i++)) - else - # Done. - return - fi - done - words_[$j]=${words_[j]}${COMP_WORDS[i]} - if [ $i = $COMP_CWORD ]; then - cword_=$j - fi - done -} - -if ! type _get_comp_words_by_ref >/dev/null 2>&1; then -_get_comp_words_by_ref () -{ - local exclude cur_ words_ cword_ - if [ "$1" = "-n" ]; then - exclude=$2 - shift 2 - fi - __git_reassemble_comp_words_by_ref "$exclude" - cur_=${words_[cword_]} - while [ $# -gt 0 ]; do - case "$1" in - cur) - cur=$cur_ - ;; - prev) - prev=${words_[$cword_-1]} - ;; - words) - words=("${words_[@]}") - ;; - cword) - cword=$cword_ - ;; - esac - shift - done -} -fi - -# Generates completion reply with compgen, appending a space to possible -# completion words, if necessary. -# It accepts 1 to 4 arguments: -# 1: List of possible completion words. -# 2: A prefix to be added to each possible completion word (optional). -# 3: Generate possible completion matches for this word (optional). -# 4: A suffix to be appended to each possible completion word (optional). -__gitcomp () -{ - local cur_="${3-$cur}" - - case "$cur_" in - --*=) - COMPREPLY=() - ;; - *) - local IFS=$'\n' - COMPREPLY=($(compgen -P "${2-}" \ - -W "$(__gitcomp_1 "${1-}" "${4-}")" \ - -- "$cur_")) - ;; - esac -} - -# Generates completion reply with compgen from newline-separated possible -# completion words by appending a space to all of them. -# It accepts 1 to 4 arguments: -# 1: List of possible completion words, separated by a single newline. -# 2: A prefix to be added to each possible completion word (optional). -# 3: Generate possible completion matches for this word (optional). -# 4: A suffix to be appended to each possible completion word instead of -# the default space (optional). If specified but empty, nothing is -# appended. -__gitcomp_nl () -{ - local IFS=$'\n' - COMPREPLY=($(compgen -P "${2-}" -S "${4- }" -W "$1" -- "${3-$cur}")) -} - -# Generates completion reply with compgen from newline-separated possible -# completion filenames. -# It accepts 1 to 3 arguments: -# 1: List of possible completion filenames, separated by a single newline. -# 2: A directory prefix to be added to each possible completion filename -# (optional). -# 3: Generate possible completion matches for this word (optional). -__gitcomp_file () -{ - local IFS=$'\n' - - # XXX does not work when the directory prefix contains a tilde, - # since tilde expansion is not applied. - # This means that COMPREPLY will be empty and Bash default - # completion will be used. - COMPREPLY=($(compgen -P "${2-}" -W "$1" -- "${3-$cur}")) - - # Tell Bash that compspec generates filenames. - compopt -o filenames 2>/dev/null -} - -__git_index_file_list_filter_compat () -{ - local path - - while read -r path; do - case "$path" in - ?*/*) echo "${path%%/*}/" ;; - *) echo "$path" ;; - esac - done -} - -__git_index_file_list_filter_bash () -{ - local path - - while read -r path; do - case "$path" in - ?*/*) - # XXX if we append a slash to directory names when using - # `compopt -o filenames`, Bash will append another slash. - # This is pretty stupid, and this the reason why we have to - # define a compatible version for this function. - echo "${path%%/*}" ;; - *) - echo "$path" ;; - esac - done -} - -# Process path list returned by "ls-files" and "diff-index --name-only" -# commands, in order to list only file names relative to a specified -# directory, and append a slash to directory names. -__git_index_file_list_filter () -{ - # Default to Bash >= 4.x - __git_index_file_list_filter_bash -} - -# Execute git ls-files, returning paths relative to the directory -# specified in the first argument, and using the options specified in -# the second argument. -__git_ls_files_helper () -{ - ( - test -n "${CDPATH+set}" && unset CDPATH - # NOTE: $2 is not quoted in order to support multiple options - cd "$1" && git ls-files --exclude-standard $2 - ) 2>/dev/null -} - - -# Execute git diff-index, returning paths relative to the directory -# specified in the first argument, and using the tree object id -# specified in the second argument. -__git_diff_index_helper () -{ - ( - test -n "${CDPATH+set}" && unset CDPATH - cd "$1" && git diff-index --name-only --relative "$2" - ) 2>/dev/null -} - -# __git_index_files accepts 1 or 2 arguments: -# 1: Options to pass to ls-files (required). -# Supported options are --cached, --modified, --deleted, --others, -# and --directory. -# 2: A directory path (optional). -# If provided, only files within the specified directory are listed. -# Sub directories are never recursed. Path must have a trailing -# slash. -__git_index_files () -{ - local dir="$(__gitdir)" root="${2-.}" - - if [ -d "$dir" ]; then - __git_ls_files_helper "$root" "$1" | __git_index_file_list_filter | - sort | uniq - fi -} - -# __git_diff_index_files accepts 1 or 2 arguments: -# 1) The id of a tree object. -# 2) A directory path (optional). -# If provided, only files within the specified directory are listed. -# Sub directories are never recursed. Path must have a trailing -# slash. -__git_diff_index_files () -{ - local dir="$(__gitdir)" root="${2-.}" - - if [ -d "$dir" ]; then - __git_diff_index_helper "$root" "$1" | __git_index_file_list_filter | - sort | uniq - fi -} - -__git_heads () -{ - local dir="$(__gitdir)" - if [ -d "$dir" ]; then - git --git-dir="$dir" for-each-ref --format='%(refname:short)' \ - refs/heads - return - fi -} - -__git_tags () -{ - local dir="$(__gitdir)" - if [ -d "$dir" ]; then - git --git-dir="$dir" for-each-ref --format='%(refname:short)' \ - refs/tags - return - fi -} - -# __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments -# presence of 2nd argument means use the guess heuristic employed -# by checkout for tracking branches -__git_refs () -{ - local i hash dir="$(__gitdir "${1-}")" track="${2-}" - local format refs - if [ -d "$dir" ]; then - case "$cur" in - refs|refs/*) - format="refname" - refs="${cur%/*}" - track="" - ;; - *) - for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do - if [ -e "$dir/$i" ]; then echo $i; fi - done - format="refname:short" - refs="refs/tags refs/heads refs/remotes" - ;; - esac - git --git-dir="$dir" for-each-ref --format="%($format)" \ - $refs - if [ -n "$track" ]; then - # employ the heuristic used by git checkout - # Try to find a remote branch that matches the completion word - # but only output if the branch name is unique - local ref entry - git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \ - "refs/remotes/" | \ - while read -r entry; do - eval "$entry" - ref="${ref#*/}" - if [[ "$ref" == "$cur"* ]]; then - echo "$ref" - fi - done | sort | uniq -u - fi - return - fi - case "$cur" in - refs|refs/*) - git ls-remote "$dir" "$cur*" 2>/dev/null | \ - while read -r hash i; do - case "$i" in - *^{}) ;; - *) echo "$i" ;; - esac - done - ;; - *) - git ls-remote "$dir" HEAD ORIG_HEAD 'refs/tags/*' 'refs/heads/*' 'refs/remotes/*' 2>/dev/null | \ - while read -r hash i; do - case "$i" in - *^{}) ;; - refs/*) echo "${i#refs/*/}" ;; - *) echo "$i" ;; - esac - done - ;; - esac -} - -# __git_refs2 requires 1 argument (to pass to __git_refs) -__git_refs2 () -{ - local i - for i in $(__git_refs "$1"); do - echo "$i:$i" - done -} - -# __git_refs_remotes requires 1 argument (to pass to ls-remote) -__git_refs_remotes () -{ - local i hash - git ls-remote "$1" 'refs/heads/*' 2>/dev/null | \ - while read -r hash i; do - echo "$i:refs/remotes/$1/${i#refs/heads/}" - done -} - -__git_remotes () -{ - local i IFS=$'\n' d="$(__gitdir)" - test -d "$d/remotes" && ls -1 "$d/remotes" - for i in $(git --git-dir="$d" config --get-regexp 'remote\..*\.url' 2>/dev/null); do - i="${i#remote.}" - echo "${i/.url*/}" - done -} - -__git_list_merge_strategies () -{ - git merge -s help 2>&1 | - sed -n -e '/[Aa]vailable strategies are: /,/^$/{ - s/\.$// - s/.*:// - s/^[ ]*// - s/[ ]*$// - p - }' -} - -__git_merge_strategies= -# 'git merge -s help' (and thus detection of the merge strategy -# list) fails, unfortunately, if run outside of any git working -# tree. __git_merge_strategies is set to the empty string in -# that case, and the detection will be repeated the next time it -# is needed. -__git_compute_merge_strategies () -{ - test -n "$__git_merge_strategies" || - __git_merge_strategies=$(__git_list_merge_strategies) -} - -__git_complete_revlist_file () -{ - local pfx ls ref cur_="$cur" - case "$cur_" in - *..?*:*) - return - ;; - ?*:*) - ref="${cur_%%:*}" - cur_="${cur_#*:}" - case "$cur_" in - ?*/*) - pfx="${cur_%/*}" - cur_="${cur_##*/}" - ls="$ref:$pfx" - pfx="$pfx/" - ;; - *) - ls="$ref" - ;; - esac - - case "$COMP_WORDBREAKS" in - *:*) : great ;; - *) pfx="$ref:$pfx" ;; - esac - - __gitcomp_nl "$(git --git-dir="$(__gitdir)" ls-tree "$ls" 2>/dev/null \ - | sed '/^100... blob /{ - s,^.* ,, - s,$, , - } - /^120000 blob /{ - s,^.* ,, - s,$, , - } - /^040000 tree /{ - s,^.* ,, - s,$,/, - } - s/^.* //')" \ - "$pfx" "$cur_" "" - ;; - *...*) - pfx="${cur_%...*}..." - cur_="${cur_#*...}" - __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" - ;; - *..*) - pfx="${cur_%..*}.." - cur_="${cur_#*..}" - __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" - ;; - *) - __gitcomp_nl "$(__git_refs)" - ;; - esac -} - - -# __git_complete_index_file requires 1 argument: the options to pass to -# ls-file -__git_complete_index_file () -{ - local pfx cur_="$cur" - - case "$cur_" in - ?*/*) - pfx="${cur_%/*}" - cur_="${cur_##*/}" - pfx="${pfx}/" - - __gitcomp_file "$(__git_index_files "$1" "$pfx")" "$pfx" "$cur_" - ;; - *) - __gitcomp_file "$(__git_index_files "$1")" "" "$cur_" - ;; - esac -} - -# __git_complete_diff_index_file requires 1 argument: the id of a tree -# object -__git_complete_diff_index_file () -{ - local pfx cur_="$cur" - - case "$cur_" in - ?*/*) - pfx="${cur_%/*}" - cur_="${cur_##*/}" - pfx="${pfx}/" - - __gitcomp_file "$(__git_diff_index_files "$1" "$pfx")" "$pfx" "$cur_" - ;; - *) - __gitcomp_file "$(__git_diff_index_files "$1")" "" "$cur_" - ;; - esac -} - -__git_complete_file () -{ - __git_complete_revlist_file -} - -__git_complete_revlist () -{ - __git_complete_revlist_file -} - -__git_complete_remote_or_refspec () -{ - local cur_="$cur" cmd="${words[1]}" - local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0 - if [ "$cmd" = "remote" ]; then - ((c++)) - fi - while [ $c -lt $cword ]; do - i="${words[c]}" - case "$i" in - --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;; - --all) - case "$cmd" in - push) no_complete_refspec=1 ;; - fetch) - COMPREPLY=() - return - ;; - *) ;; - esac - ;; - -*) ;; - *) remote="$i"; break ;; - esac - ((c++)) - done - if [ -z "$remote" ]; then - __gitcomp_nl "$(__git_remotes)" - return - fi - if [ $no_complete_refspec = 1 ]; then - COMPREPLY=() - return - fi - [ "$remote" = "." ] && remote= - case "$cur_" in - *:*) - case "$COMP_WORDBREAKS" in - *:*) : great ;; - *) pfx="${cur_%%:*}:" ;; - esac - cur_="${cur_#*:}" - lhs=0 - ;; - +*) - pfx="+" - cur_="${cur_#+}" - ;; - esac - case "$cmd" in - fetch) - if [ $lhs = 1 ]; then - __gitcomp_nl "$(__git_refs2 "$remote")" "$pfx" "$cur_" - else - __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" - fi - ;; - pull|remote) - if [ $lhs = 1 ]; then - __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_" - else - __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" - fi - ;; - push) - if [ $lhs = 1 ]; then - __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" - else - __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_" - fi - ;; - esac -} - -__git_complete_strategy () -{ - __git_compute_merge_strategies - case "$prev" in - -s|--strategy) - __gitcomp "$__git_merge_strategies" - return 0 - esac - case "$cur" in - --strategy=*) - __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}" - return 0 - ;; - esac - return 1 -} - -__git_commands () { - if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}" - then - printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}" - else - git help -a|egrep '^ [a-zA-Z0-9]' - fi -} - -__git_list_all_commands () -{ - local i IFS=" "$'\n' - for i in $(__git_commands) - do - case $i in - *--*) : helper pattern;; - *) echo $i;; - esac - done -} - -__git_all_commands= -__git_compute_all_commands () -{ - test -n "$__git_all_commands" || - __git_all_commands=$(__git_list_all_commands) -} - -__git_list_porcelain_commands () -{ - local i IFS=" "$'\n' - __git_compute_all_commands - for i in $__git_all_commands - do - case $i in - *--*) : helper pattern;; - applymbox) : ask gittus;; - applypatch) : ask gittus;; - archimport) : import;; - cat-file) : plumbing;; - check-attr) : plumbing;; - check-ignore) : plumbing;; - check-ref-format) : plumbing;; - checkout-index) : plumbing;; - commit-tree) : plumbing;; - count-objects) : infrequent;; - credential-cache) : credentials helper;; - credential-store) : credentials helper;; - cvsexportcommit) : export;; - cvsimport) : import;; - cvsserver) : daemon;; - daemon) : daemon;; - diff-files) : plumbing;; - diff-index) : plumbing;; - diff-tree) : plumbing;; - fast-import) : import;; - fast-export) : export;; - fsck-objects) : plumbing;; - fetch-pack) : plumbing;; - fmt-merge-msg) : plumbing;; - for-each-ref) : plumbing;; - hash-object) : plumbing;; - http-*) : transport;; - index-pack) : plumbing;; - init-db) : deprecated;; - local-fetch) : plumbing;; - lost-found) : infrequent;; - ls-files) : plumbing;; - ls-remote) : plumbing;; - ls-tree) : plumbing;; - mailinfo) : plumbing;; - mailsplit) : plumbing;; - merge-*) : plumbing;; - mktree) : plumbing;; - mktag) : plumbing;; - pack-objects) : plumbing;; - pack-redundant) : plumbing;; - pack-refs) : plumbing;; - parse-remote) : plumbing;; - patch-id) : plumbing;; - peek-remote) : plumbing;; - prune) : plumbing;; - prune-packed) : plumbing;; - quiltimport) : import;; - read-tree) : plumbing;; - receive-pack) : plumbing;; - remote-*) : transport;; - repo-config) : deprecated;; - rerere) : plumbing;; - rev-list) : plumbing;; - rev-parse) : plumbing;; - runstatus) : plumbing;; - sh-setup) : internal;; - shell) : daemon;; - show-ref) : plumbing;; - send-pack) : plumbing;; - show-index) : plumbing;; - ssh-*) : transport;; - stripspace) : plumbing;; - symbolic-ref) : plumbing;; - tar-tree) : deprecated;; - unpack-file) : plumbing;; - unpack-objects) : plumbing;; - update-index) : plumbing;; - update-ref) : plumbing;; - update-server-info) : daemon;; - upload-archive) : plumbing;; - upload-pack) : plumbing;; - write-tree) : plumbing;; - var) : infrequent;; - verify-pack) : infrequent;; - verify-tag) : plumbing;; - *) echo $i;; - esac - done -} - -__git_porcelain_commands= -__git_compute_porcelain_commands () -{ - __git_compute_all_commands - test -n "$__git_porcelain_commands" || - __git_porcelain_commands=$(__git_list_porcelain_commands) -} - -__git_pretty_aliases () -{ - local i IFS=$'\n' - for i in $(git --git-dir="$(__gitdir)" config --get-regexp "pretty\..*" 2>/dev/null); do - case "$i" in - pretty.*) - i="${i#pretty.}" - echo "${i/ */}" - ;; - esac - done -} - -__git_aliases () -{ - local i IFS=$'\n' - for i in $(git --git-dir="$(__gitdir)" config --get-regexp "alias\..*" 2>/dev/null); do - case "$i" in - alias.*) - i="${i#alias.}" - echo "${i/ */}" - ;; - esac - done -} - -# __git_aliased_command requires 1 argument -__git_aliased_command () -{ - local word cmdline=$(git --git-dir="$(__gitdir)" \ - config --get "alias.$1") - for word in $cmdline; do - case "$word" in - \!gitk|gitk) - echo "gitk" - return - ;; - \!*) : shell command alias ;; - -*) : option ;; - *=*) : setting env ;; - git) : git itself ;; - *) - echo "$word" - return - esac - done -} - -# __git_find_on_cmdline requires 1 argument -__git_find_on_cmdline () -{ - local word subcommand c=1 - while [ $c -lt $cword ]; do - word="${words[c]}" - for subcommand in $1; do - if [ "$subcommand" = "$word" ]; then - echo "$subcommand" - return - fi - done - ((c++)) - done -} - -__git_has_doubledash () -{ - local c=1 - while [ $c -lt $cword ]; do - if [ "--" = "${words[c]}" ]; then - return 0 - fi - ((c++)) - done - return 1 -} - -# Try to count non option arguments passed on the command line for the -# specified git command. -# When options are used, it is necessary to use the special -- option to -# tell the implementation were non option arguments begin. -# XXX this can not be improved, since options can appear everywhere, as -# an example: -# git mv x -n y -# -# __git_count_arguments requires 1 argument: the git command executed. -__git_count_arguments () -{ - local word i c=0 - - # Skip "git" (first argument) - for ((i=1; i < ${#words[@]}; i++)); do - word="${words[i]}" - - case "$word" in - --) - # Good; we can assume that the following are only non - # option arguments. - ((c = 0)) - ;; - "$1") - # Skip the specified git command and discard git - # main options - ((c = 0)) - ;; - ?*) - ((c++)) - ;; - esac - done - - printf "%d" $c -} - -__git_whitespacelist="nowarn warn error error-all fix" - -_git_am () -{ - local dir="$(__gitdir)" - if [ -d "$dir"/rebase-apply ]; then - __gitcomp "--skip --continue --resolved --abort" - return - fi - case "$cur" in - --whitespace=*) - __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" - return - ;; - --*) - __gitcomp " - --3way --committer-date-is-author-date --ignore-date - --ignore-whitespace --ignore-space-change - --interactive --keep --no-utf8 --signoff --utf8 - --whitespace= --scissors - " - return - esac - COMPREPLY=() -} - -_git_apply () -{ - case "$cur" in - --whitespace=*) - __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" - return - ;; - --*) - __gitcomp " - --stat --numstat --summary --check --index - --cached --index-info --reverse --reject --unidiff-zero - --apply --no-add --exclude= - --ignore-whitespace --ignore-space-change - --whitespace= --inaccurate-eof --verbose - " - return - esac - COMPREPLY=() -} - -_git_add () -{ - case "$cur" in - --*) - __gitcomp " - --interactive --refresh --patch --update --dry-run - --ignore-errors --intent-to-add - " - return - esac - - # XXX should we check for --update and --all options ? - __git_complete_index_file "--others --modified" -} - -_git_archive () -{ - case "$cur" in - --format=*) - __gitcomp "$(git archive --list)" "" "${cur##--format=}" - return - ;; - --remote=*) - __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}" - return - ;; - --*) - __gitcomp " - --format= --list --verbose - --prefix= --remote= --exec= - " - return - ;; - esac - __git_complete_file -} - -_git_bisect () -{ - __git_has_doubledash && return - - local subcommands="start bad good skip reset visualize replay log run" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - if [ -f "$(__gitdir)"/BISECT_START ]; then - __gitcomp "$subcommands" - else - __gitcomp "replay start" - fi - return - fi - - case "$subcommand" in - bad|good|reset|skip|start) - __gitcomp_nl "$(__git_refs)" - ;; - *) - COMPREPLY=() - ;; - esac -} - -_git_branch () -{ - local i c=1 only_local_ref="n" has_r="n" - - while [ $c -lt $cword ]; do - i="${words[c]}" - case "$i" in - -d|-m) only_local_ref="y" ;; - -r) has_r="y" ;; - esac - ((c++)) - done - - case "$cur" in - --set-upstream-to=*) - __gitcomp "$(__git_refs)" "" "${cur##--set-upstream-to=}" - ;; - --*) - __gitcomp " - --color --no-color --verbose --abbrev= --no-abbrev - --track --no-track --contains --merged --no-merged - --set-upstream-to= --edit-description --list - --unset-upstream - " - ;; - *) - if [ $only_local_ref = "y" -a $has_r = "n" ]; then - __gitcomp_nl "$(__git_heads)" - else - __gitcomp_nl "$(__git_refs)" - fi - ;; - esac -} - -_git_bundle () -{ - local cmd="${words[2]}" - case "$cword" in - 2) - __gitcomp "create list-heads verify unbundle" - ;; - 3) - # looking for a file - ;; - *) - case "$cmd" in - create) - __git_complete_revlist - ;; - esac - ;; - esac -} - -_git_checkout () -{ - __git_has_doubledash && return - - case "$cur" in - --conflict=*) - __gitcomp "diff3 merge" "" "${cur##--conflict=}" - ;; - --*) - __gitcomp " - --quiet --ours --theirs --track --no-track --merge - --conflict= --orphan --patch - " - ;; - *) - # check if --track, --no-track, or --no-guess was specified - # if so, disable DWIM mode - local flags="--track --no-track --no-guess" track=1 - if [ -n "$(__git_find_on_cmdline "$flags")" ]; then - track='' - fi - __gitcomp_nl "$(__git_refs '' $track)" - ;; - esac -} - -_git_cherry () -{ - __gitcomp "$(__git_refs)" -} - -_git_cherry_pick () -{ - case "$cur" in - --*) - __gitcomp "--edit --no-commit" - ;; - *) - __gitcomp_nl "$(__git_refs)" - ;; - esac -} - -_git_clean () -{ - case "$cur" in - --*) - __gitcomp "--dry-run --quiet" - return - ;; - esac - - # XXX should we check for -x option ? - __git_complete_index_file "--others" -} - -_git_clone () -{ - case "$cur" in - --*) - __gitcomp " - --local - --no-hardlinks - --shared - --reference - --quiet - --no-checkout - --bare - --mirror - --origin - --upload-pack - --template= - --depth - --single-branch - --branch - " - return - ;; - esac - COMPREPLY=() -} - -_git_commit () -{ - case "$prev" in - -c|-C) - __gitcomp_nl "$(__git_refs)" "" "${cur}" - return - ;; - esac - - case "$prev" in - -c|-C) - __gitcomp_nl "$(__git_refs)" "" "${cur}" - return - ;; - esac - - case "$cur" in - --cleanup=*) - __gitcomp "default strip verbatim whitespace - " "" "${cur##--cleanup=}" - return - ;; - --reuse-message=*|--reedit-message=*|\ - --fixup=*|--squash=*) - __gitcomp_nl "$(__git_refs)" "" "${cur#*=}" - return - ;; - --untracked-files=*) - __gitcomp "all no normal" "" "${cur##--untracked-files=}" - return - ;; - --*) - __gitcomp " - --all --author= --signoff --verify --no-verify - --edit --no-edit - --amend --include --only --interactive - --dry-run --reuse-message= --reedit-message= - --reset-author --file= --message= --template= - --cleanup= --untracked-files --untracked-files= - --verbose --quiet --fixup= --squash= - " - return - esac - - if git rev-parse --verify --quiet HEAD >/dev/null; then - __git_complete_diff_index_file "HEAD" - else - # This is the first commit - __git_complete_index_file "--cached" - fi -} - -_git_describe () -{ - case "$cur" in - --*) - __gitcomp " - --all --tags --contains --abbrev= --candidates= - --exact-match --debug --long --match --always - " - return - esac - __gitcomp_nl "$(__git_refs)" -} - -__git_diff_algorithms="myers minimal patience histogram" - -__git_diff_common_options="--stat --numstat --shortstat --summary - --patch-with-stat --name-only --name-status --color - --no-color --color-words --no-renames --check - --full-index --binary --abbrev --diff-filter= - --find-copies-harder - --text --ignore-space-at-eol --ignore-space-change - --ignore-all-space --exit-code --quiet --ext-diff - --no-ext-diff - --no-prefix --src-prefix= --dst-prefix= - --inter-hunk-context= - --patience --histogram --minimal - --raw - --dirstat --dirstat= --dirstat-by-file - --dirstat-by-file= --cumulative - --diff-algorithm= -" - -_git_diff () -{ - __git_has_doubledash && return - - case "$cur" in - --diff-algorithm=*) - __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" - return - ;; - --*) - __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex - --base --ours --theirs --no-index - $__git_diff_common_options - " - return - ;; - esac - __git_complete_revlist_file -} - -__git_mergetools_common="diffuse ecmerge emerge kdiff3 meld opendiff - tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc3 codecompare -" - -_git_difftool () -{ - __git_has_doubledash && return - - case "$cur" in - --tool=*) - __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}" - return - ;; - --*) - __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex - --base --ours --theirs - --no-renames --diff-filter= --find-copies-harder - --relative --ignore-submodules - --tool=" - return - ;; - esac - __git_complete_file -} - -__git_fetch_options=" - --quiet --verbose --append --upload-pack --force --keep --depth= - --tags --no-tags --all --prune --dry-run -" - -_git_fetch () -{ - case "$cur" in - --*) - __gitcomp "$__git_fetch_options" - return - ;; - esac - __git_complete_remote_or_refspec -} - -__git_format_patch_options=" - --stdout --attach --no-attach --thread --thread= --output-directory - --numbered --start-number --numbered-files --keep-subject --signoff - --signature --no-signature --in-reply-to= --cc= --full-index --binary - --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix= - --inline --suffix= --ignore-if-in-upstream --subject-prefix= -" - -_git_format_patch () -{ - case "$cur" in - --thread=*) - __gitcomp " - deep shallow - " "" "${cur##--thread=}" - return - ;; - --*) - __gitcomp "$__git_format_patch_options" - return - ;; - esac - __git_complete_revlist -} - -_git_fsck () -{ - case "$cur" in - --*) - __gitcomp " - --tags --root --unreachable --cache --no-reflogs --full - --strict --verbose --lost-found - " - return - ;; - esac - COMPREPLY=() -} - -_git_gc () -{ - case "$cur" in - --*) - __gitcomp "--prune --aggressive" - return - ;; - esac - COMPREPLY=() -} - -_git_gitk () -{ - _gitk -} - -__git_match_ctag() { - awk "/^${1////\\/}/ { print \$1 }" "$2" -} - -_git_grep () -{ - __git_has_doubledash && return - - case "$cur" in - --*) - __gitcomp " - --cached - --text --ignore-case --word-regexp --invert-match - --full-name --line-number - --extended-regexp --basic-regexp --fixed-strings - --perl-regexp - --files-with-matches --name-only - --files-without-match - --max-depth - --count - --and --or --not --all-match - " - return - ;; - esac - - case "$cword,$prev" in - 2,*|*,-*) - if test -r tags; then - __gitcomp_nl "$(__git_match_ctag "$cur" tags)" - return - fi - ;; - esac - - __gitcomp_nl "$(__git_refs)" -} - -_git_help () -{ - case "$cur" in - --*) - __gitcomp "--all --info --man --web" - return - ;; - esac - __git_compute_all_commands - __gitcomp "$__git_all_commands $(__git_aliases) - attributes cli core-tutorial cvs-migration - diffcore gitk glossary hooks ignore modules - namespaces repository-layout tutorial tutorial-2 - workflows - " -} - -_git_init () -{ - case "$cur" in - --shared=*) - __gitcomp " - false true umask group all world everybody - " "" "${cur##--shared=}" - return - ;; - --*) - __gitcomp "--quiet --bare --template= --shared --shared=" - return - ;; - esac - COMPREPLY=() -} - -_git_ls_files () -{ - case "$cur" in - --*) - __gitcomp "--cached --deleted --modified --others --ignored - --stage --directory --no-empty-directory --unmerged - --killed --exclude= --exclude-from= - --exclude-per-directory= --exclude-standard - --error-unmatch --with-tree= --full-name - --abbrev --ignored --exclude-per-directory - " - return - ;; - esac - - # XXX ignore options like --modified and always suggest all cached - # files. - __git_complete_index_file "--cached" -} - -_git_ls_remote () -{ - __gitcomp_nl "$(__git_remotes)" -} - -_git_ls_tree () -{ - __git_complete_file -} - -# Options that go well for log, shortlog and gitk -__git_log_common_options=" - --not --all - --branches --tags --remotes - --first-parent --merges --no-merges - --max-count= - --max-age= --since= --after= - --min-age= --until= --before= - --min-parents= --max-parents= - --no-min-parents --no-max-parents -" -# Options that go well for log and gitk (not shortlog) -__git_log_gitk_options=" - --dense --sparse --full-history - --simplify-merges --simplify-by-decoration - --left-right --notes --no-notes -" -# Options that go well for log and shortlog (not gitk) -__git_log_shortlog_options=" - --author= --committer= --grep= - --all-match -" - -__git_log_pretty_formats="oneline short medium full fuller email raw format:" -__git_log_date_formats="relative iso8601 rfc2822 short local default raw" - -_git_log () -{ - __git_has_doubledash && return - - local g="$(git rev-parse --git-dir 2>/dev/null)" - local merge="" - if [ -f "$g/MERGE_HEAD" ]; then - merge="--merge" - fi - case "$cur" in - --pretty=*|--format=*) - __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) - " "" "${cur#*=}" - return - ;; - --date=*) - __gitcomp "$__git_log_date_formats" "" "${cur##--date=}" - return - ;; - --decorate=*) - __gitcomp "long short" "" "${cur##--decorate=}" - return - ;; - --*) - __gitcomp " - $__git_log_common_options - $__git_log_shortlog_options - $__git_log_gitk_options - --root --topo-order --date-order --reverse - --follow --full-diff - --abbrev-commit --abbrev= - --relative-date --date= - --pretty= --format= --oneline - --cherry-pick - --graph - --decorate --decorate= - --walk-reflogs - --parents --children - $merge - $__git_diff_common_options - --pickaxe-all --pickaxe-regex - " - return - ;; - esac - __git_complete_revlist -} - -__git_merge_options=" - --no-commit --no-stat --log --no-log --squash --strategy - --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit -" - -_git_merge () -{ - __git_complete_strategy && return - - case "$cur" in - --*) - __gitcomp "$__git_merge_options" - return - esac - __gitcomp_nl "$(__git_refs)" -} - -_git_mergetool () -{ - case "$cur" in - --tool=*) - __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}" - return - ;; - --*) - __gitcomp "--tool=" - return - ;; - esac - COMPREPLY=() -} - -_git_merge_base () -{ - __gitcomp_nl "$(__git_refs)" -} - -_git_mv () -{ - case "$cur" in - --*) - __gitcomp "--dry-run" - return - ;; - esac - - if [ $(__git_count_arguments "mv") -gt 0 ]; then - # We need to show both cached and untracked files (including - # empty directories) since this may not be the last argument. - __git_complete_index_file "--cached --others --directory" - else - __git_complete_index_file "--cached" - fi -} - -_git_name_rev () -{ - __gitcomp "--tags --all --stdin" -} - -_git_notes () -{ - local subcommands='add append copy edit list prune remove show' - local subcommand="$(__git_find_on_cmdline "$subcommands")" - - case "$subcommand,$cur" in - ,--*) - __gitcomp '--ref' - ;; - ,*) - case "$prev" in - --ref) - __gitcomp_nl "$(__git_refs)" - ;; - *) - __gitcomp "$subcommands --ref" - ;; - esac - ;; - add,--reuse-message=*|append,--reuse-message=*|\ - add,--reedit-message=*|append,--reedit-message=*) - __gitcomp_nl "$(__git_refs)" "" "${cur#*=}" - ;; - add,--*|append,--*) - __gitcomp '--file= --message= --reedit-message= - --reuse-message=' - ;; - copy,--*) - __gitcomp '--stdin' - ;; - prune,--*) - __gitcomp '--dry-run --verbose' - ;; - prune,*) - ;; - *) - case "$prev" in - -m|-F) - ;; - *) - __gitcomp_nl "$(__git_refs)" - ;; - esac - ;; - esac -} - -_git_pull () -{ - __git_complete_strategy && return - - case "$cur" in - --*) - __gitcomp " - --rebase --no-rebase - $__git_merge_options - $__git_fetch_options - " - return - ;; - esac - __git_complete_remote_or_refspec -} - -_git_push () -{ - case "$prev" in - --repo) - __gitcomp_nl "$(__git_remotes)" - return - esac - case "$cur" in - --repo=*) - __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}" - return - ;; - --*) - __gitcomp " - --all --mirror --tags --dry-run --force --verbose - --receive-pack= --repo= --set-upstream - " - return - ;; - esac - __git_complete_remote_or_refspec -} - -_git_rebase () -{ - local dir="$(__gitdir)" - if [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then - __gitcomp "--continue --skip --abort" - return - fi - __git_complete_strategy && return - case "$cur" in - --whitespace=*) - __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" - return - ;; - --*) - __gitcomp " - --onto --merge --strategy --interactive - --preserve-merges --stat --no-stat - --committer-date-is-author-date --ignore-date - --ignore-whitespace --whitespace= - --autosquash - " - - return - esac - __gitcomp_nl "$(__git_refs)" -} - -_git_reflog () -{ - local subcommands="show delete expire" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - else - __gitcomp_nl "$(__git_refs)" - fi -} - -__git_send_email_confirm_options="always never auto cc compose" -__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all" - -_git_send_email () -{ - case "$cur" in - --confirm=*) - __gitcomp " - $__git_send_email_confirm_options - " "" "${cur##--confirm=}" - return - ;; - --suppress-cc=*) - __gitcomp " - $__git_send_email_suppresscc_options - " "" "${cur##--suppress-cc=}" - - return - ;; - --smtp-encryption=*) - __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}" - return - ;; - --thread=*) - __gitcomp " - deep shallow - " "" "${cur##--thread=}" - return - ;; - --*) - __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to - --compose --confirm= --dry-run --envelope-sender - --from --identity - --in-reply-to --no-chain-reply-to --no-signed-off-by-cc - --no-suppress-from --no-thread --quiet - --signed-off-by-cc --smtp-pass --smtp-server - --smtp-server-port --smtp-encryption= --smtp-user - --subject --suppress-cc= --suppress-from --thread --to - --validate --no-validate - $__git_format_patch_options" - return - ;; - esac - __git_complete_revlist -} - -_git_stage () -{ - _git_add -} - -__git_config_get_set_variables () -{ - local prevword word config_file= c=$cword - while [ $c -gt 1 ]; do - word="${words[c]}" - case "$word" in - --system|--global|--local|--file=*) - config_file="$word" - break - ;; - -f|--file) - config_file="$word $prevword" - break - ;; - esac - prevword=$word - c=$((--c)) - done - - git --git-dir="$(__gitdir)" config $config_file --list 2>/dev/null | - while read -r line - do - case "$line" in - *.*=*) - echo "${line/=*/}" - ;; - esac - done -} - -_git_config () -{ - case "$prev" in - branch.*.remote) - __gitcomp_nl "$(__git_remotes)" - return - ;; - branch.*.merge) - __gitcomp_nl "$(__git_refs)" - return - ;; - remote.*.fetch) - local remote="${prev#remote.}" - remote="${remote%.fetch}" - if [ -z "$cur" ]; then - COMPREPLY=("refs/heads/") - return - fi - __gitcomp_nl "$(__git_refs_remotes "$remote")" - return - ;; - remote.*.push) - local remote="${prev#remote.}" - remote="${remote%.push}" - __gitcomp_nl "$(git --git-dir="$(__gitdir)" \ - for-each-ref --format='%(refname):%(refname)' \ - refs/heads)" - return - ;; - pull.twohead|pull.octopus) - __git_compute_merge_strategies - __gitcomp "$__git_merge_strategies" - return - ;; - color.branch|color.diff|color.interactive|\ - color.showbranch|color.status|color.ui) - __gitcomp "always never auto" - return - ;; - color.pager) - __gitcomp "false true" - return - ;; - color.*.*) - __gitcomp " - normal black red green yellow blue magenta cyan white - bold dim ul blink reverse - " - return - ;; - help.format) - __gitcomp "man info web html" - return - ;; - log.date) - __gitcomp "$__git_log_date_formats" - return - ;; - sendemail.aliasesfiletype) - __gitcomp "mutt mailrc pine elm gnus" - return - ;; - sendemail.confirm) - __gitcomp "$__git_send_email_confirm_options" - return - ;; - sendemail.suppresscc) - __gitcomp "$__git_send_email_suppresscc_options" - return - ;; - --get|--get-all|--unset|--unset-all) - __gitcomp_nl "$(__git_config_get_set_variables)" - return - ;; - *.*) - COMPREPLY=() - return - ;; - esac - case "$cur" in - --*) - __gitcomp " - --system --global --local --file= - --list --replace-all - --get --get-all --get-regexp - --add --unset --unset-all - --remove-section --rename-section - " - return - ;; - branch.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "remote merge mergeoptions rebase" "$pfx" "$cur_" - return - ;; - branch.*) - local pfx="${cur%.*}." cur_="${cur#*.}" - __gitcomp_nl "$(__git_heads)" "$pfx" "$cur_" "." - return - ;; - guitool.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp " - argprompt cmd confirm needsfile noconsole norescan - prompt revprompt revunmerged title - " "$pfx" "$cur_" - return - ;; - difftool.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "cmd path" "$pfx" "$cur_" - return - ;; - man.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "cmd path" "$pfx" "$cur_" - return - ;; - mergetool.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "cmd path trustExitCode" "$pfx" "$cur_" - return - ;; - pager.*) - local pfx="${cur%.*}." cur_="${cur#*.}" - __git_compute_all_commands - __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_" - return - ;; - remote.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp " - url proxy fetch push mirror skipDefaultUpdate - receivepack uploadpack tagopt pushurl - " "$pfx" "$cur_" - return - ;; - remote.*) - local pfx="${cur%.*}." cur_="${cur#*.}" - __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "." - return - ;; - url.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_" - return - ;; - esac - __gitcomp " - add.ignoreErrors - advice.commitBeforeMerge - advice.detachedHead - advice.implicitIdentity - advice.pushNonFastForward - advice.resolveConflict - advice.statusHints - alias. - am.keepcr - apply.ignorewhitespace - apply.whitespace - branch.autosetupmerge - branch.autosetuprebase - browser. - clean.requireForce - color.branch - color.branch.current - color.branch.local - color.branch.plain - color.branch.remote - color.decorate.HEAD - color.decorate.branch - color.decorate.remoteBranch - color.decorate.stash - color.decorate.tag - color.diff - color.diff.commit - color.diff.frag - color.diff.func - color.diff.meta - color.diff.new - color.diff.old - color.diff.plain - color.diff.whitespace - color.grep - color.grep.context - color.grep.filename - color.grep.function - color.grep.linenumber - color.grep.match - color.grep.selected - color.grep.separator - color.interactive - color.interactive.error - color.interactive.header - color.interactive.help - color.interactive.prompt - color.pager - color.showbranch - color.status - color.status.added - color.status.changed - color.status.header - color.status.nobranch - color.status.untracked - color.status.updated - color.ui - commit.status - commit.template - core.abbrev - core.askpass - core.attributesfile - core.autocrlf - core.bare - core.bigFileThreshold - core.compression - core.createObject - core.deltaBaseCacheLimit - core.editor - core.eol - core.excludesfile - core.fileMode - core.fsyncobjectfiles - core.gitProxy - core.ignoreCygwinFSTricks - core.ignoreStat - core.ignorecase - core.logAllRefUpdates - core.loosecompression - core.notesRef - core.packedGitLimit - core.packedGitWindowSize - core.pager - core.preferSymlinkRefs - core.preloadindex - core.quotepath - core.repositoryFormatVersion - core.safecrlf - core.sharedRepository - core.sparseCheckout - core.symlinks - core.trustctime - core.warnAmbiguousRefs - core.whitespace - core.worktree - diff.autorefreshindex - diff.statGraphWidth - diff.external - diff.ignoreSubmodules - diff.mnemonicprefix - diff.noprefix - diff.renameLimit - diff.renames - diff.suppressBlankEmpty - diff.tool - diff.wordRegex - diff.algorithm - difftool. - difftool.prompt - fetch.recurseSubmodules - fetch.unpackLimit - format.attach - format.cc - format.headers - format.numbered - format.pretty - format.signature - format.signoff - format.subjectprefix - format.suffix - format.thread - format.to - gc. - gc.aggressiveWindow - gc.auto - gc.autopacklimit - gc.packrefs - gc.pruneexpire - gc.reflogexpire - gc.reflogexpireunreachable - gc.rerereresolved - gc.rerereunresolved - gitcvs.allbinary - gitcvs.commitmsgannotation - gitcvs.dbTableNamePrefix - gitcvs.dbdriver - gitcvs.dbname - gitcvs.dbpass - gitcvs.dbuser - gitcvs.enabled - gitcvs.logfile - gitcvs.usecrlfattr - guitool. - gui.blamehistoryctx - gui.commitmsgwidth - gui.copyblamethreshold - gui.diffcontext - gui.encoding - gui.fastcopyblame - gui.matchtrackingbranch - gui.newbranchtemplate - gui.pruneduringfetch - gui.spellingdictionary - gui.trustmtime - help.autocorrect - help.browser - help.format - http.lowSpeedLimit - http.lowSpeedTime - http.maxRequests - http.minSessions - http.noEPSV - http.postBuffer - http.proxy - http.sslCAInfo - http.sslCAPath - http.sslCert - http.sslCertPasswordProtected - http.sslKey - http.sslVerify - http.useragent - i18n.commitEncoding - i18n.logOutputEncoding - imap.authMethod - imap.folder - imap.host - imap.pass - imap.port - imap.preformattedHTML - imap.sslverify - imap.tunnel - imap.user - init.templatedir - instaweb.browser - instaweb.httpd - instaweb.local - instaweb.modulepath - instaweb.port - interactive.singlekey - log.date - log.decorate - log.showroot - mailmap.file - man. - man.viewer - merge. - merge.conflictstyle - merge.log - merge.renameLimit - merge.renormalize - merge.stat - merge.tool - merge.verbosity - mergetool. - mergetool.keepBackup - mergetool.keepTemporaries - mergetool.prompt - notes.displayRef - notes.rewrite. - notes.rewrite.amend - notes.rewrite.rebase - notes.rewriteMode - notes.rewriteRef - pack.compression - pack.deltaCacheLimit - pack.deltaCacheSize - pack.depth - pack.indexVersion - pack.packSizeLimit - pack.threads - pack.window - pack.windowMemory - pager. - pretty. - pull.octopus - pull.twohead - push.default - rebase.autosquash - rebase.stat - receive.autogc - receive.denyCurrentBranch - receive.denyDeleteCurrent - receive.denyDeletes - receive.denyNonFastForwards - receive.fsckObjects - receive.unpackLimit - receive.updateserverinfo - remotes. - repack.usedeltabaseoffset - rerere.autoupdate - rerere.enabled - sendemail. - sendemail.aliasesfile - sendemail.aliasfiletype - sendemail.bcc - sendemail.cc - sendemail.cccmd - sendemail.chainreplyto - sendemail.confirm - sendemail.envelopesender - sendemail.from - sendemail.identity - sendemail.multiedit - sendemail.signedoffbycc - sendemail.smtpdomain - sendemail.smtpencryption - sendemail.smtppass - sendemail.smtpserver - sendemail.smtpserveroption - sendemail.smtpserverport - sendemail.smtpuser - sendemail.suppresscc - sendemail.suppressfrom - sendemail.thread - sendemail.to - sendemail.validate - showbranch.default - status.relativePaths - status.showUntrackedFiles - status.submodulesummary - submodule. - tar.umask - transfer.unpackLimit - url. - user.email - user.name - user.signingkey - web.browser - branch. remote. - " -} - -_git_remote () -{ - local subcommands="add rename remove set-head set-branches set-url show prune update" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - return - fi - - case "$subcommand" in - rename|remove|set-url|show|prune) - __gitcomp_nl "$(__git_remotes)" - ;; - set-head|set-branches) - __git_complete_remote_or_refspec - ;; - update) - local i c='' IFS=$'\n' - for i in $(git --git-dir="$(__gitdir)" config --get-regexp "remotes\..*" 2>/dev/null); do - i="${i#remotes.}" - c="$c ${i/ */}" - done - __gitcomp "$c" - ;; - *) - COMPREPLY=() - ;; - esac -} - -_git_replace () -{ - __gitcomp_nl "$(__git_refs)" -} - -_git_reset () -{ - __git_has_doubledash && return - - case "$cur" in - --*) - __gitcomp "--merge --mixed --hard --soft --patch" - return - ;; - esac - __gitcomp_nl "$(__git_refs)" -} - -_git_revert () -{ - case "$cur" in - --*) - __gitcomp "--edit --mainline --no-edit --no-commit --signoff" - return - ;; - esac - __gitcomp_nl "$(__git_refs)" -} - -_git_rm () -{ - case "$cur" in - --*) - __gitcomp "--cached --dry-run --ignore-unmatch --quiet" - return - ;; - esac - - __git_complete_index_file "--cached" -} - -_git_shortlog () -{ - __git_has_doubledash && return - - case "$cur" in - --*) - __gitcomp " - $__git_log_common_options - $__git_log_shortlog_options - --numbered --summary - " - return - ;; - esac - __git_complete_revlist -} - -_git_show () -{ - __git_has_doubledash && return - - case "$cur" in - --pretty=*|--format=*) - __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) - " "" "${cur#*=}" - return - ;; - --diff-algorithm=*) - __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" - return - ;; - --*) - __gitcomp "--pretty= --format= --abbrev-commit --oneline - $__git_diff_common_options - " - return - ;; - esac - __git_complete_file -} - -_git_show_branch () -{ - case "$cur" in - --*) - __gitcomp " - --all --remotes --topo-order --current --more= - --list --independent --merge-base --no-name - --color --no-color - --sha1-name --sparse --topics --reflog - " - return - ;; - esac - __git_complete_revlist -} - -_git_stash () -{ - local save_opts='--keep-index --no-keep-index --quiet --patch' - local subcommands='save list show apply clear drop pop create branch' - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - case "$cur" in - --*) - __gitcomp "$save_opts" - ;; - *) - if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then - __gitcomp "$subcommands" - else - COMPREPLY=() - fi - ;; - esac - else - case "$subcommand,$cur" in - save,--*) - __gitcomp "$save_opts" - ;; - apply,--*|pop,--*) - __gitcomp "--index --quiet" - ;; - show,--*|drop,--*|branch,--*) - COMPREPLY=() - ;; - show,*|apply,*|drop,*|pop,*|branch,*) - __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \ - | sed -n -e 's/:.*//p')" - ;; - *) - COMPREPLY=() - ;; - esac - fi -} - -_git_submodule () -{ - __git_has_doubledash && return - - local subcommands="add status init update summary foreach sync" - if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then - case "$cur" in - --*) - __gitcomp "--quiet --cached" - ;; - *) - __gitcomp "$subcommands" - ;; - esac - return - fi -} - -_git_svn () -{ - local subcommands=" - init fetch clone rebase dcommit log find-rev - set-tree commit-diff info create-ignore propget - proplist show-ignore show-externals branch tag blame - migrate mkdirs reset gc - " - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - else - local remote_opts="--username= --config-dir= --no-auth-cache" - local fc_opts=" - --follow-parent --authors-file= --repack= - --no-metadata --use-svm-props --use-svnsync-props - --log-window-size= --no-checkout --quiet - --repack-flags --use-log-author --localtime - --ignore-paths= $remote_opts - " - local init_opts=" - --template= --shared= --trunk= --tags= - --branches= --stdlayout --minimize-url - --no-metadata --use-svm-props --use-svnsync-props - --rewrite-root= --prefix= --use-log-author - --add-author-from $remote_opts - " - local cmt_opts=" - --edit --rmdir --find-copies-harder --copy-similarity= - " - - case "$subcommand,$cur" in - fetch,--*) - __gitcomp "--revision= --fetch-all $fc_opts" - ;; - clone,--*) - __gitcomp "--revision= $fc_opts $init_opts" - ;; - init,--*) - __gitcomp "$init_opts" - ;; - dcommit,--*) - __gitcomp " - --merge --strategy= --verbose --dry-run - --fetch-all --no-rebase --commit-url - --revision --interactive $cmt_opts $fc_opts - " - ;; - set-tree,--*) - __gitcomp "--stdin $cmt_opts $fc_opts" - ;; - create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\ - show-externals,--*|mkdirs,--*) - __gitcomp "--revision=" - ;; - log,--*) - __gitcomp " - --limit= --revision= --verbose --incremental - --oneline --show-commit --non-recursive - --authors-file= --color - " - ;; - rebase,--*) - __gitcomp " - --merge --verbose --strategy= --local - --fetch-all --dry-run $fc_opts - " - ;; - commit-diff,--*) - __gitcomp "--message= --file= --revision= $cmt_opts" - ;; - info,--*) - __gitcomp "--url" - ;; - branch,--*) - __gitcomp "--dry-run --message --tag" - ;; - tag,--*) - __gitcomp "--dry-run --message" - ;; - blame,--*) - __gitcomp "--git-format" - ;; - migrate,--*) - __gitcomp " - --config-dir= --ignore-paths= --minimize - --no-auth-cache --username= - " - ;; - reset,--*) - __gitcomp "--revision= --parent" - ;; - *) - COMPREPLY=() - ;; - esac - fi -} - -_git_tag () -{ - local i c=1 f=0 - while [ $c -lt $cword ]; do - i="${words[c]}" - case "$i" in - -d|-v) - __gitcomp_nl "$(__git_tags)" - return - ;; - -f) - f=1 - ;; - esac - ((c++)) - done - - case "$prev" in - -m|-F) - COMPREPLY=() - ;; - -*|tag) - if [ $f = 1 ]; then - __gitcomp_nl "$(__git_tags)" - else - COMPREPLY=() - fi - ;; - *) - __gitcomp_nl "$(__git_refs)" - ;; - esac -} - -_git_whatchanged () -{ - _git_log -} - -__git_main () -{ - local i c=1 command __git_dir - - while [ $c -lt $cword ]; do - i="${words[c]}" - case "$i" in - --git-dir=*) __git_dir="${i#--git-dir=}" ;; - --bare) __git_dir="." ;; - --help) command="help"; break ;; - -c) c=$((++c)) ;; - -*) ;; - *) command="$i"; break ;; - esac - ((c++)) - done - - if [ -z "$command" ]; then - case "$cur" in - --*) __gitcomp " - --paginate - --no-pager - --git-dir= - --bare - --version - --exec-path - --exec-path= - --html-path - --info-path - --work-tree= - --namespace= - --no-replace-objects - --help - " - ;; - *) __git_compute_porcelain_commands - __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;; - esac - return - fi - - local completion_func="_git_${command//-/_}" - declare -f $completion_func >/dev/null && $completion_func && return - - local expansion=$(__git_aliased_command "$command") - if [ -n "$expansion" ]; then - completion_func="_git_${expansion//-/_}" - declare -f $completion_func >/dev/null && $completion_func - fi -} - -__gitk_main () -{ - __git_has_doubledash && return - - local g="$(__gitdir)" - local merge="" - if [ -f "$g/MERGE_HEAD" ]; then - merge="--merge" - fi - case "$cur" in - --*) - __gitcomp " - $__git_log_common_options - $__git_log_gitk_options - $merge - " - return - ;; - esac - __git_complete_revlist -} - -if [[ -n ${ZSH_VERSION-} ]]; then - echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2 - - autoload -U +X compinit && compinit - - __gitcomp () - { - emulate -L zsh - - local cur_="${3-$cur}" - - case "$cur_" in - --*=) - ;; - *) - local c IFS=$' \t\n' - local -a array - for c in ${=1}; do - c="$c${4-}" - case $c in - --*=*|*.) ;; - *) c="$c " ;; - esac - array[$#array+1]="$c" - done - compset -P '*[=:]' - compadd -Q -S '' -p "${2-}" -a -- array && _ret=0 - ;; - esac - } - - __gitcomp_nl () - { - emulate -L zsh - - local IFS=$'\n' - compset -P '*[=:]' - compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 - } - - __gitcomp_file () - { - emulate -L zsh - - local IFS=$'\n' - compset -P '*[=:]' - compadd -Q -p "${2-}" -f -- ${=1} && _ret=0 - } - - __git_zsh_helper () - { - emulate -L ksh - local cur cword prev - cur=${words[CURRENT-1]} - prev=${words[CURRENT-2]} - let cword=CURRENT-1 - __${service}_main - } - - _git () - { - emulate -L zsh - local _ret=1 - __git_zsh_helper - let _ret && _default -S '' && _ret=0 - return _ret - } - - compdef _git git gitk - return -elif [[ -n ${BASH_VERSION-} ]]; then - if ((${BASH_VERSINFO[0]} < 4)); then - # compopt is not supported - __git_index_file_list_filter () - { - __git_index_file_list_filter_compat - } - fi -fi - -__git_func_wrap () -{ - local cur words cword prev - _get_comp_words_by_ref -n =: cur words cword prev - $1 -} - -# Setup completion for certain functions defined above by setting common -# variables and workarounds. -# This is NOT a public function; use at your own risk. -__git_complete () -{ - local wrapper="__git_wrap${2}" - eval "$wrapper () { __git_func_wrap $2 ; }" - complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \ - || complete -o default -o nospace -F $wrapper $1 -} - -# wrapper for backwards compatibility -_git () -{ - __git_wrap__git_main -} - -# wrapper for backwards compatibility -_gitk () -{ - __git_wrap__gitk_main -} - -__git_complete git __git_main -__git_complete gitk __gitk_main - -# The following are necessary only for Cygwin, and only are needed -# when the user has tab-completed the executable name and consequently -# included the '.exe' suffix. -# -if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then -__git_complete git.exe __git_main -fi diff --git a/common/.oh-my-zsh/plugins/gitfast/git-prompt.sh b/common/.oh-my-zsh/plugins/gitfast/git-prompt.sh deleted file mode 100644 index 65f8368..0000000 --- a/common/.oh-my-zsh/plugins/gitfast/git-prompt.sh +++ /dev/null @@ -1,399 +0,0 @@ -# bash/zsh git prompt support -# -# Copyright (C) 2006,2007 Shawn O. Pearce -# Distributed under the GNU General Public License, version 2.0. -# -# This script allows you to see the current branch in your prompt. -# -# To enable: -# -# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). -# 2) Add the following line to your .bashrc/.zshrc: -# source ~/.git-prompt.sh -# 3a) Change your PS1 to call __git_ps1 as -# command-substitution: -# Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' -# ZSH: PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ ' -# the optional argument will be used as format string. -# 3b) Alternatively, if you are using bash, __git_ps1 can be -# used for PROMPT_COMMAND with two parameters,
 and
-#        , which are strings you would put in $PS1 before
-#        and after the status string generated by the git-prompt
-#        machinery.  e.g.
-#           PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
-#        will show username, at-sign, host, colon, cwd, then
-#        various status string, followed by dollar and SP, as
-#        your prompt.
-#        Optionally, you can supply a third argument with a printf
-#        format string to finetune the output of the branch status
-#
-# The argument to __git_ps1 will be displayed only if you are currently
-# in a git repository.  The %s token will be the name of the current
-# branch.
-#
-# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty value,
-# unstaged (*) and staged (+) changes will be shown next to the branch
-# name.  You can configure this per-repository with the
-# bash.showDirtyState variable, which defaults to true once
-# GIT_PS1_SHOWDIRTYSTATE is enabled.
-#
-# You can also see if currently something is stashed, by setting
-# GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed,
-# then a '$' will be shown next to the branch name.
-#
-# If you would like to see if there're untracked files, then you can set
-# GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're untracked
-# files, then a '%' will be shown next to the branch name.  You can
-# configure this per-repository with the bash.showUntrackedFiles
-# variable, which defaults to true once GIT_PS1_SHOWUNTRACKEDFILES is
-# enabled.
-#
-# If you would like to see the difference between HEAD and its upstream,
-# set GIT_PS1_SHOWUPSTREAM="auto".  A "<" indicates you are behind, ">"
-# indicates you are ahead, "<>" indicates you have diverged and "="
-# indicates that there is no difference. You can further control
-# behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated list
-# of values:
-#
-#     verbose       show number of commits ahead/behind (+/-) upstream
-#     legacy        don't use the '--count' option available in recent
-#                   versions of git-rev-list
-#     git           always compare HEAD to @{upstream}
-#     svn           always compare HEAD to your SVN upstream
-#
-# By default, __git_ps1 will compare HEAD to your SVN upstream if it can
-# find one, or @{upstream} otherwise.  Once you have set
-# GIT_PS1_SHOWUPSTREAM, you can override it on a per-repository basis by
-# setting the bash.showUpstream config variable.
-#
-# If you would like to see more information about the identity of
-# commits checked out as a detached HEAD, set GIT_PS1_DESCRIBE_STYLE
-# to one of these values:
-#
-#     contains      relative to newer annotated tag (v1.6.3.2~35)
-#     branch        relative to newer tag or branch (master~4)
-#     describe      relative to older annotated tag (v1.6.3.1-13-gdd42c2f)
-#     default       exactly matching tag
-#
-# If you would like a colored hint about the current dirty state, set
-# GIT_PS1_SHOWCOLORHINTS to a nonempty value. The colors are based on
-# the colored output of "git status -sb".
-
-# __gitdir accepts 0 or 1 arguments (i.e., location)
-# returns location of .git repo
-__gitdir ()
-{
-	# Note: this function is duplicated in git-completion.bash
-	# When updating it, make sure you update the other one to match.
-	if [ -z "${1-}" ]; then
-		if [ -n "${__git_dir-}" ]; then
-			echo "$__git_dir"
-		elif [ -n "${GIT_DIR-}" ]; then
-			test -d "${GIT_DIR-}" || return 1
-			echo "$GIT_DIR"
-		elif [ -d .git ]; then
-			echo .git
-		else
-			git rev-parse --git-dir 2>/dev/null
-		fi
-	elif [ -d "$1/.git" ]; then
-		echo "$1/.git"
-	else
-		echo "$1"
-	fi
-}
-
-# stores the divergence from upstream in $p
-# used by GIT_PS1_SHOWUPSTREAM
-__git_ps1_show_upstream ()
-{
-	local key value
-	local svn_remote svn_url_pattern count n
-	local upstream=git legacy="" verbose=""
-
-	svn_remote=()
-	# get some config options from git-config
-	local output="$(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')"
-	while read -r key value; do
-		case "$key" in
-		bash.showupstream)
-			GIT_PS1_SHOWUPSTREAM="$value"
-			if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then
-				p=""
-				return
-			fi
-			;;
-		svn-remote.*.url)
-			svn_remote[ $((${#svn_remote[@]} + 1)) ]="$value"
-			svn_url_pattern+="\\|$value"
-			upstream=svn+git # default upstream is SVN if available, else git
-			;;
-		esac
-	done <<< "$output"
-
-	# parse configuration values
-	for option in ${GIT_PS1_SHOWUPSTREAM}; do
-		case "$option" in
-		git|svn) upstream="$option" ;;
-		verbose) verbose=1 ;;
-		legacy)  legacy=1  ;;
-		esac
-	done
-
-	# Find our upstream
-	case "$upstream" in
-	git)    upstream="@{upstream}" ;;
-	svn*)
-		# get the upstream from the "git-svn-id: ..." in a commit message
-		# (git-svn uses essentially the same procedure internally)
-		local svn_upstream=($(git log --first-parent -1 \
-					--grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null))
-		if [[ 0 -ne ${#svn_upstream[@]} ]]; then
-			svn_upstream=${svn_upstream[ ${#svn_upstream[@]} - 2 ]}
-			svn_upstream=${svn_upstream%@*}
-			local n_stop="${#svn_remote[@]}"
-			for ((n=1; n <= n_stop; n++)); do
-				svn_upstream=${svn_upstream#${svn_remote[$n]}}
-			done
-
-			if [[ -z "$svn_upstream" ]]; then
-				# default branch name for checkouts with no layout:
-				upstream=${GIT_SVN_ID:-git-svn}
-			else
-				upstream=${svn_upstream#/}
-			fi
-		elif [[ "svn+git" = "$upstream" ]]; then
-			upstream="@{upstream}"
-		fi
-		;;
-	esac
-
-	# Find how many commits we are ahead/behind our upstream
-	if [[ -z "$legacy" ]]; then
-		count="$(git rev-list --count --left-right \
-				"$upstream"...HEAD 2>/dev/null)"
-	else
-		# produce equivalent output to --count for older versions of git
-		local commits
-		if commits="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)"
-		then
-			local commit behind=0 ahead=0
-			for commit in $commits
-			do
-				case "$commit" in
-				"<"*) ((behind++)) ;;
-				*)    ((ahead++))  ;;
-				esac
-			done
-			count="$behind	$ahead"
-		else
-			count=""
-		fi
-	fi
-
-	# calculate the result
-	if [[ -z "$verbose" ]]; then
-		case "$count" in
-		"") # no upstream
-			p="" ;;
-		"0	0") # equal to upstream
-			p="=" ;;
-		"0	"*) # ahead of upstream
-			p=">" ;;
-		*"	0") # behind upstream
-			p="<" ;;
-		*)	    # diverged from upstream
-			p="<>" ;;
-		esac
-	else
-		case "$count" in
-		"") # no upstream
-			p="" ;;
-		"0	0") # equal to upstream
-			p=" u=" ;;
-		"0	"*) # ahead of upstream
-			p=" u+${count#0	}" ;;
-		*"	0") # behind upstream
-			p=" u-${count%	0}" ;;
-		*)	    # diverged from upstream
-			p=" u+${count#*	}-${count%	*}" ;;
-		esac
-	fi
-
-}
-
-
-# __git_ps1 accepts 0 or 1 arguments (i.e., format string)
-# when called from PS1 using command substitution
-# in this mode it prints text to add to bash PS1 prompt (includes branch name)
-#
-# __git_ps1 requires 2 or 3 arguments when called from PROMPT_COMMAND (pc)
-# in that case it _sets_ PS1. The arguments are parts of a PS1 string.
-# when two arguments are given, the first is prepended and the second appended
-# to the state string when assigned to PS1.
-# The optional third parameter will be used as printf format string to further
-# customize the output of the git-status string.
-# In this mode you can request colored hints using GIT_PS1_SHOWCOLORHINTS=true
-__git_ps1 ()
-{
-	local pcmode=no
-	local detached=no
-	local ps1pc_start='\u@\h:\w '
-	local ps1pc_end='\$ '
-	local printf_format=' (%s)'
-
-	case "$#" in
-		2|3)	pcmode=yes
-			ps1pc_start="$1"
-			ps1pc_end="$2"
-			printf_format="${3:-$printf_format}"
-		;;
-		0|1)	printf_format="${1:-$printf_format}"
-		;;
-		*)	return
-		;;
-	esac
-
-	local g="$(__gitdir)"
-	if [ -z "$g" ]; then
-		if [ $pcmode = yes ]; then
-			#In PC mode PS1 always needs to be set
-			PS1="$ps1pc_start$ps1pc_end"
-		fi
-	else
-		local r=""
-		local b=""
-		if [ -f "$g/rebase-merge/interactive" ]; then
-			r="|REBASE-i"
-			b="$(cat "$g/rebase-merge/head-name")"
-		elif [ -d "$g/rebase-merge" ]; then
-			r="|REBASE-m"
-			b="$(cat "$g/rebase-merge/head-name")"
-		else
-			if [ -d "$g/rebase-apply" ]; then
-				if [ -f "$g/rebase-apply/rebasing" ]; then
-					r="|REBASE"
-				elif [ -f "$g/rebase-apply/applying" ]; then
-					r="|AM"
-				else
-					r="|AM/REBASE"
-				fi
-			elif [ -f "$g/MERGE_HEAD" ]; then
-				r="|MERGING"
-			elif [ -f "$g/CHERRY_PICK_HEAD" ]; then
-				r="|CHERRY-PICKING"
-			elif [ -f "$g/BISECT_LOG" ]; then
-				r="|BISECTING"
-			fi
-
-			b="$(git symbolic-ref HEAD 2>/dev/null)" || {
-				detached=yes
-				b="$(
-				case "${GIT_PS1_DESCRIBE_STYLE-}" in
-				(contains)
-					git describe --contains HEAD ;;
-				(branch)
-					git describe --contains --all HEAD ;;
-				(describe)
-					git describe HEAD ;;
-				(* | default)
-					git describe --tags --exact-match HEAD ;;
-				esac 2>/dev/null)" ||
-
-				b="$(cut -c1-7 "$g/HEAD" 2>/dev/null)..." ||
-				b="unknown"
-				b="($b)"
-			}
-		fi
-
-		local w=""
-		local i=""
-		local s=""
-		local u=""
-		local c=""
-		local p=""
-
-		if [ "true" = "$(git rev-parse --is-inside-git-dir 2>/dev/null)" ]; then
-			if [ "true" = "$(git rev-parse --is-bare-repository 2>/dev/null)" ]; then
-				c="BARE:"
-			else
-				b="GIT_DIR!"
-			fi
-		elif [ "true" = "$(git rev-parse --is-inside-work-tree 2>/dev/null)" ]; then
-			if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ] &&
-			   [ "$(git config --bool bash.showDirtyState)" != "false" ]
-			then
-				git diff --no-ext-diff --quiet --exit-code || w="*"
-				if git rev-parse --quiet --verify HEAD >/dev/null; then
-					git diff-index --cached --quiet HEAD -- || i="+"
-				else
-					i="#"
-				fi
-			fi
-			if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ]; then
-				git rev-parse --verify refs/stash >/dev/null 2>&1 && s="$"
-			fi
-
-			if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ] &&
-			   [ "$(git config --bool bash.showUntrackedFiles)" != "false" ] &&
-			   [ -n "$(git ls-files --others --exclude-standard)" ]
-			then
-				u="%%"
-			fi
-
-			if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
-				__git_ps1_show_upstream
-			fi
-		fi
-
-		local f="$w$i$s$u"
-		if [ $pcmode = yes ]; then
-			local gitstring=
-			if [ -n "${GIT_PS1_SHOWCOLORHINTS-}" ]; then
-				local c_red='\e[31m'
-				local c_green='\e[32m'
-				local c_lblue='\e[1;34m'
-				local c_clear='\e[0m'
-				local bad_color=$c_red
-				local ok_color=$c_green
-				local branch_color="$c_clear"
-				local flags_color="$c_lblue"
-				local branchstring="$c${b##refs/heads/}"
-
-				if [ $detached = no ]; then
-					branch_color="$ok_color"
-				else
-					branch_color="$bad_color"
-				fi
-
-				# Setting gitstring directly with \[ and \] around colors
-				# is necessary to prevent wrapping issues!
-				gitstring="\[$branch_color\]$branchstring\[$c_clear\]"
-
-				if [ -n "$w$i$s$u$r$p" ]; then
-					gitstring="$gitstring "
-				fi
-				if [ "$w" = "*" ]; then
-					gitstring="$gitstring\[$bad_color\]$w"
-				fi
-				if [ -n "$i" ]; then
-					gitstring="$gitstring\[$ok_color\]$i"
-				fi
-				if [ -n "$s" ]; then
-					gitstring="$gitstring\[$flags_color\]$s"
-				fi
-				if [ -n "$u" ]; then
-					gitstring="$gitstring\[$bad_color\]$u"
-				fi
-				gitstring="$gitstring\[$c_clear\]$r$p"
-			else
-				gitstring="$c${b##refs/heads/}${f:+ $f}$r$p"
-			fi
-			gitstring=$(printf -- "$printf_format" "$gitstring")
-			PS1="$ps1pc_start$gitstring$ps1pc_end"
-		else
-			# NO color option unless in PROMPT_COMMAND mode
-			printf -- "$printf_format" "$c${b##refs/heads/}${f:+ $f}$r$p"
-		fi
-	fi
-}
diff --git a/common/.oh-my-zsh/plugins/gitfast/gitfast.plugin.zsh b/common/.oh-my-zsh/plugins/gitfast/gitfast.plugin.zsh
deleted file mode 100644
index dba1b13..0000000
--- a/common/.oh-my-zsh/plugins/gitfast/gitfast.plugin.zsh
+++ /dev/null
@@ -1,8 +0,0 @@
-dir=$(dirname $0)
-source $dir/../git/git.plugin.zsh
-source $dir/git-prompt.sh
-
-function git_prompt_info() {
-  dirty="$(parse_git_dirty)"
-  __git_ps1 "${ZSH_THEME_GIT_PROMPT_PREFIX//\%/%%}%s${dirty//\%/%%}${ZSH_THEME_GIT_PROMPT_SUFFIX//\%/%%}"
-}
diff --git a/common/.oh-my-zsh/plugins/github/_github b/common/.oh-my-zsh/plugins/github/_github
deleted file mode 100644
index 83e1713..0000000
--- a/common/.oh-my-zsh/plugins/github/_github
+++ /dev/null
@@ -1,40 +0,0 @@
-#compdef github
-#autoload
-
-# in order to make this work, you will need to have the github gem installed
-# http://github.com/defunkt/github-gem
-
-# github zsh completion, based on homebrew completion
-
-local -a _1st_arguments
-_1st_arguments=(
-  'browse:Open this repo in a web browser'
-  'clone:Clone a repo'
-  'config:Automatically set configuration info, or pass args to specify'
-  'create-from-local:Create a new GitHub repository from the current local repository'
-  'create:Create a new empty GitHub repository'
-  'fetch:Fetch from a remote to a local branch'
-  'fetch_all:Fetch all refs from a user'
-  'fork:Forks a GitHub repository'
-  'home:Open this repos master branch in a web browser'
-  'ignore:Ignore a SHA from github network commits'
-  'info:Info about this project'
-  'issues:Project issues tools'
-  'network:Project network tools - sub-commands : web [user], list, fetch, commits'
-  'open:Open the given user/project in a web browser'
-  'pull-request:Generate the text for a pull request'
-  'pull:Pull from a remote'
-  'search:Search GitHub for the given repository name'
-  'track:Track another users repository'
-)
-
-local expl
-local -a pkgs installed_pkgs
-
-_arguments \
-  '*:: :->subcmds' && return 0
-
-if (( CURRENT == 1 )); then
-  _describe -t commands "github subcommand" _1st_arguments
-  return
-fi
diff --git a/common/.oh-my-zsh/plugins/github/github.plugin.zsh b/common/.oh-my-zsh/plugins/github/github.plugin.zsh
deleted file mode 100644
index 66a10cf..0000000
--- a/common/.oh-my-zsh/plugins/github/github.plugin.zsh
+++ /dev/null
@@ -1,88 +0,0 @@
-# Setup hub function for git, if it is available; http://github.com/defunkt/hub
-if [ "$commands[(I)hub]" ] && [ "$commands[(I)ruby]" ]; then
-    # Autoload _git completion functions
-    if declare -f _git > /dev/null; then
-      _git
-    fi
-    
-    if declare -f _git_commands > /dev/null; then
-        _hub_commands=(
-            'alias:show shell instructions for wrapping git'
-            'pull-request:open a pull request on GitHub'
-            'fork:fork origin repo on GitHub'
-            'create:create new repo on GitHub for the current project'
-            'browse:browse the project on GitHub'
-            'compare:open GitHub compare view'
-        )
-        # Extend the '_git_commands' function with hub commands
-        eval "$(declare -f _git_commands | sed -e 's/base_commands=(/base_commands=(${_hub_commands} /')"
-    fi
-    # eval `hub alias -s zsh`
-    function git(){
-        if ! (( $+_has_working_hub  )); then
-            hub --version &> /dev/null
-            _has_working_hub=$(($? == 0))
-        fi
-        if (( $_has_working_hub )) ; then
-            hub "$@"
-        else
-            command git "$@"
-        fi
-    }
-fi
-
-# Functions #################################################################
-
-# https://github.com/dbb 
-
-
-# empty_gh [NAME_OF_REPO]
-#
-# Use this when creating a new repo from scratch.
-empty_gh() { # [NAME_OF_REPO]
-    repo = $1
-    ghuser=$(  git config github.user )
-
-    mkdir "$repo"
-    cd "$repo"
-    git init
-    touch README
-    git add README
-    git commit -m 'Initial commit.'
-    git remote add origin git@github.com:${ghuser}/${repo}.git
-    git push -u origin master
-}
-
-# new_gh [DIRECTORY]
-#
-# Use this when you have a directory that is not yet set up for git.
-# This function will add all non-hidden files to git.
-new_gh() { # [DIRECTORY]
-    cd "$1"
-    ghuser=$( git config github.user )
-
-    git init
-    # add all non-dot files
-    print '.*'"\n"'*~' >> .gitignore
-    git add ^.*
-    git commit -m 'Initial commit.'
-    git remote add origin git@github.com:${ghuser}/${repo}.git
-    git push -u origin master
-}
-
-# exist_gh [DIRECTORY]
-#
-# Use this when you have a git repo that's ready to go and you want to add it
-# to your GitHub.
-exist_gh() { # [DIRECTORY]
-    cd "$1"
-    name=$( git config user.name )
-    ghuser=$( git config github.user )
-    repo=$1
-
-    git remote add origin git@github.com:${ghuser}/${repo}.git
-    git push -u origin master
-}
-
-# End Functions #############################################################
-
diff --git a/common/.oh-my-zsh/plugins/gnu-utils/gnu-utils.plugin.zsh b/common/.oh-my-zsh/plugins/gnu-utils/gnu-utils.plugin.zsh
deleted file mode 100644
index e59265d..0000000
--- a/common/.oh-my-zsh/plugins/gnu-utils/gnu-utils.plugin.zsh
+++ /dev/null
@@ -1,80 +0,0 @@
-# ------------------------------------------------------------------------------
-#          FILE:  gnu-utils.plugin.zsh
-#   DESCRIPTION:  oh-my-zsh plugin file.
-#        AUTHOR:  Sorin Ionescu (sorin.ionescu@gmail.com)
-#       VERSION:  1.0.0
-# ------------------------------------------------------------------------------
-
-
-if [[ -x "${commands[gwhoami]}" ]]; then 
-  __gnu_utils() {
-    emulate -L zsh
-    local gcmds
-    local gcmd
-    local cmd
-    local prefix
-
-    # coreutils 
-    gcmds=('g[' 'gbase64' 'gbasename' 'gcat' 'gchcon' 'gchgrp' 'gchmod'
-    'gchown' 'gchroot' 'gcksum' 'gcomm' 'gcp' 'gcsplit' 'gcut' 'gdate'
-    'gdd' 'gdf' 'gdir' 'gdircolors' 'gdirname' 'gdu' 'gecho' 'genv' 'gexpand'
-    'gexpr' 'gfactor' 'gfalse' 'gfmt' 'gfold' 'ggroups' 'ghead' 'ghostid'
-    'gid' 'ginstall' 'gjoin' 'gkill' 'glink' 'gln' 'glogname' 'gls' 'gmd5sum'
-    'gmkdir' 'gmkfifo' 'gmknod' 'gmktemp' 'gmv' 'gnice' 'gnl' 'gnohup' 'gnproc'
-    'god' 'gpaste' 'gpathchk' 'gpinky' 'gpr' 'gprintenv' 'gprintf' 'gptx' 'gpwd'
-    'greadlink' 'grm' 'grmdir' 'gruncon' 'gseq' 'gsha1sum' 'gsha224sum'
-    'gsha256sum' 'gsha384sum' 'gsha512sum' 'gshred' 'gshuf' 'gsleep' 'gsort'
-    'gsplit' 'gstat' 'gstty' 'gsum' 'gsync' 'gtac' 'gtail' 'gtee' 'gtest'
-    'gtimeout' 'gtouch' 'gtr' 'gtrue' 'gtruncate' 'gtsort' 'gtty' 'guname'
-    'gunexpand' 'guniq' 'gunlink' 'guptime' 'gusers' 'gvdir' 'gwc' 'gwho'
-    'gwhoami' 'gyes')
-
-    # Not part of coreutils, installed separately.
-    gcmds+=('gsed' 'gtar' 'gtime')
-
-    for gcmd in "${gcmds[@]}"; do
-      #
-      # This method allows for builtin commands to be primary but it's
-      # lost if hash -r or rehash -f is executed. Thus, those two 
-      # functions have to be wrapped.
-      #
-      (( ${+commands[$gcmd]} )) && hash ${gcmd[2,-1]}=${commands[$gcmd]}
-
-      #
-      # This method generates wrapper functions.
-      # It will override shell builtins.
-      #
-      # (( ${+commands[$gcmd]} )) && \
-      # eval "function $gcmd[2,-1]() { \"${prefix}/${gcmd//"["/"\\["}\" \"\$@\"; }"
-
-      #
-      # This method is inflexible since the aliases are at risk of being
-      # overriden resulting in the BSD coreutils being called.
-      #
-      # (( ${+commands[$gcmd]} )) && \
-      # alias "$gcmd[2,-1]"="${prefix}/${gcmd//"["/"\\["}"
-    done
-
-    return 0
-  }
-  __gnu_utils;
-
-  function hash() {
-    if [[ "$*" =~ "-(r|f)" ]]; then
-      builtin hash "$@"
-      __gnu_utils
-    else
-      builtin hash "$@"
-    fi
-  }
-
-  function rehash() {
-    if [[ "$*" =~ "-f" ]]; then
-      builtin rehash "$@"
-      __gnu_utils
-    else
-      builtin rehash "$@"
-    fi
-  }
-fi
-
diff --git a/common/.oh-my-zsh/plugins/go/go.plugin.zsh b/common/.oh-my-zsh/plugins/go/go.plugin.zsh
deleted file mode 100644
index 23afa96..0000000
--- a/common/.oh-my-zsh/plugins/go/go.plugin.zsh
+++ /dev/null
@@ -1,151 +0,0 @@
-# install in /etc/zsh/zshrc or your personal .zshrc
-
-# gc
-prefixes=(5 6 8)
-for p in $prefixes; do
-	compctl -g "*.${p}" ${p}l
-	compctl -g "*.go" ${p}g
-done
-
-# standard go tools
-compctl -g "*.go" gofmt
-
-# gccgo
-compctl -g "*.go" gccgo
-
-# go tool
-__go_tool_complete() {
-  typeset -a commands build_flags
-  commands+=(
-    'build[compile packages and dependencies]'
-    'clean[remove object files]'
-    'doc[run godoc on package sources]'
-    'fix[run go tool fix on packages]'
-    'fmt[run gofmt on package sources]'
-    'get[download and install packages and dependencies]'
-    'help[display help]'
-    'install[compile and install packages and dependencies]'
-    'list[list packages]'
-    'run[compile and run Go program]'
-    'test[test packages]'
-    'tool[run specified go tool]'
-    'version[print Go version]'
-    'vet[run go tool vet on packages]'
-  )
-  if (( CURRENT == 2 )); then
-    # explain go commands
-    _values 'go tool commands' ${commands[@]}
-    return
-  fi
-  build_flags=(
-    '-a[force reinstallation of packages that are already up-to-date]'
-    '-n[print the commands but do not run them]'
-    "-p[number of parallel builds]:number"
-    '-x[print the commands]'
-    "-work[print temporary directory name and keep it]"
-    "-gcflags[flags for 5g/6g/8g]:flags"
-    "-ldflags[flags for 5l/6l/8l]:flags"
-    "-gccgoflags[flags for gccgo]:flags"
-  )
-  __go_list() {
-      local expl importpaths
-      declare -a importpaths
-      importpaths=($(go list ${words[$CURRENT]}... 2>/dev/null))
-      _wanted importpaths expl 'import paths' compadd "$@" - "${importpaths[@]}"
-  }
-  case ${words[2]} in
-  clean|doc)
-      _arguments -s -w : '*:importpaths:__go_list'
-      ;;
-  fix|fmt|list|vet)
-      _alternative ':importpaths:__go_list' ':files:_path_files -g "*.go"'
-      ;;
-  install)
-      _arguments -s -w : ${build_flags[@]} \
-        "-v[show package names]" \
-	'*:importpaths:__go_list'
-      ;;
-  get)
-      _arguments -s -w : \
-        ${build_flags[@]}
-      ;;
-  build)
-      _arguments -s -w : \
-        ${build_flags[@]} \
-        "-v[show package names]" \
-        "-o[output file]:file:_files" \
-        "*:args:{ _alternative ':importpaths:__go_list' ':files:_path_files -g \"*.go\"' }"
-      ;;
-  test)
-      _arguments -s -w : \
-        ${build_flags[@]} \
-        "-c[do not run, compile the test binary]" \
-        "-i[do not run, install dependencies]" \
-        "-v[print test output]" \
-        "-x[print the commands]" \
-        "-short[use short mode]" \
-        "-parallel[number of parallel tests]:number" \
-        "-cpu[values of GOMAXPROCS to use]:number list" \
-        "-run[run tests and examples matching regexp]:regexp" \
-        "-bench[run benchmarks matching regexp]:regexp" \
-        "-benchtime[run each benchmark during n seconds]:duration" \
-        "-timeout[kill test after that duration]:duration" \
-        "-cpuprofile[write CPU profile to file]:file:_files" \
-        "-memprofile[write heap profile to file]:file:_files" \
-        "-memprofilerate[set heap profiling rate]:number" \
-        "*:args:{ _alternative ':importpaths:__go_list' ':files:_path_files -g \"*.go\"' }"
-      ;;
-  help)
-      _values "${commands[@]}" \
-        'gopath[GOPATH environment variable]' \
-        'importpath[description of import paths]' \
-        'remote[remote import path syntax]' \
-        'testflag[description of testing flags]' \
-        'testfunc[description of testing functions]'
-      ;;
-  run)
-      _arguments -s -w : \
-          ${build_flags[@]} \
-          '*:file:_path_files -g "*.go"'
-      ;;
-  tool)
-      if (( CURRENT == 3 )); then
-          _values "go tool" $(go tool)
-          return
-      fi
-      case ${words[3]} in
-      [568]g)
-          _arguments -s -w : \
-              '-I[search for packages in DIR]:includes:_path_files -/' \
-              '-L[show full path in file:line prints]' \
-              '-S[print the assembly language]' \
-              '-V[print the compiler version]' \
-              '-e[no limit on number of errors printed]' \
-              '-h[panic on an error]' \
-              '-l[disable inlining]' \
-              '-m[print optimization decisions]' \
-              '-o[file specify output file]:file' \
-              '-p[assumed import path for this code]:importpath' \
-              '-u[disable package unsafe]' \
-              "*:file:_files -g '*.go'"
-          ;;
-      [568]l)
-          local O=${words[3]%l}
-          _arguments -s -w : \
-              '-o[file specify output file]:file' \
-              '-L[search for packages in DIR]:includes:_path_files -/' \
-              "*:file:_files -g '*.[ao$O]'"
-          ;;
-      dist)
-          _values "dist tool" banner bootstrap clean env install version
-          ;;
-      *)
-          # use files by default
-          _files
-          ;;
-      esac
-      ;;
-  esac
-}
-
-compdef __go_tool_complete go
diff --git a/common/.oh-my-zsh/plugins/golang/golang.plugin.zsh b/common/.oh-my-zsh/plugins/golang/golang.plugin.zsh
deleted file mode 100644
index e60c4af..0000000
--- a/common/.oh-my-zsh/plugins/golang/golang.plugin.zsh
+++ /dev/null
@@ -1,150 +0,0 @@
-# From : http://golang.org/misc/zsh/go?m=text
-# gc
-prefixes=(5 6 8)
-for p in $prefixes; do
-    compctl -g "*.${p}" ${p}l
-    compctl -g "*.go" ${p}g
-done
-
-# standard go tools
-compctl -g "*.go" gofmt
-
-# gccgo
-compctl -g "*.go" gccgo
-
-# go tool
-__go_tool_complete() {
-  typeset -a commands build_flags
-  commands+=(
-    'build[compile packages and dependencies]'
-    'clean[remove object files]'
-    'doc[run godoc on package sources]'
-    'fix[run go tool fix on packages]'
-    'fmt[run gofmt on package sources]'
-    'get[download and install packages and dependencies]'
-    'help[display help]'
-    'install[compile and install packages and dependencies]'
-    'list[list packages]'
-    'run[compile and run Go program]'
-    'test[test packages]'
-    'tool[run specified go tool]'
-    'version[print Go version]'
-    'vet[run go tool vet on packages]'
-  )
-  if (( CURRENT == 2 )); then
-    # explain go commands
-    _values 'go tool commands' ${commands[@]}
-    return
-  fi
-  build_flags=(
-    '-a[force reinstallation of packages that are already up-to-date]'
-    '-n[print the commands but do not run them]'
-    "-p[number of parallel builds]:number"
-    '-x[print the commands]'
-    "-work[print temporary directory name and keep it]"
-    "-gcflags[flags for 5g/6g/8g]:flags"
-    "-ldflags[flags for 5l/6l/8l]:flags"
-    "-gccgoflags[flags for gccgo]:flags"
-  )
-  __go_list() {
-      local expl importpaths
-      declare -a importpaths
-      importpaths=($(go list ${words[$CURRENT]}... 2>/dev/null))
-      _wanted importpaths expl 'import paths' compadd "$@" - "${importpaths[@]}"
-  }
-  case ${words[2]} in
-  clean|doc)
-      _arguments -s -w : '*:importpaths:__go_list'
-      ;;
-  fix|fmt|list|vet)
-      _alternative ':importpaths:__go_list' ':files:_path_files -g "*.go"'
-      ;;
-  install)
-      _arguments -s -w : ${build_flags[@]} \
-        "-v[show package names]" \
-    '*:importpaths:__go_list'
-      ;;
-  get)
-      _arguments -s -w : \
-        ${build_flags[@]}
-      ;;
-  build)
-      _arguments -s -w : \
-        ${build_flags[@]} \
-        "-v[show package names]" \
-        "-o[output file]:file:_files" \
-        "*:args:{ _alternative ':importpaths:__go_list' ':files:_path_files -g \"*.go\"' }"
-      ;;
-  test)
-      _arguments -s -w : \
-        ${build_flags[@]} \
-        "-c[do not run, compile the test binary]" \
-        "-i[do not run, install dependencies]" \
-        "-v[print test output]" \
-        "-x[print the commands]" \
-        "-short[use short mode]" \
-        "-parallel[number of parallel tests]:number" \
-        "-cpu[values of GOMAXPROCS to use]:number list" \
-        "-run[run tests and examples matching regexp]:regexp" \
-        "-bench[run benchmarks matching regexp]:regexp" \
-        "-benchtime[run each benchmark during n seconds]:duration" \
-        "-timeout[kill test after that duration]:duration" \
-        "-cpuprofile[write CPU profile to file]:file:_files" \
-        "-memprofile[write heap profile to file]:file:_files" \
-        "-memprofilerate[set heap profiling rate]:number" \
-        "*:args:{ _alternative ':importpaths:__go_list' ':files:_path_files -g \"*.go\"' }"
-      ;;
-  help)
-      _values "${commands[@]}" \
-        'gopath[GOPATH environment variable]' \
-        'importpath[description of import paths]' \
-        'remote[remote import path syntax]' \
-        'testflag[description of testing flags]' \
-        'testfunc[description of testing functions]'
-      ;;
-  run)
-      _arguments -s -w : \
-          ${build_flags[@]} \
-          '*:file:_path_files -g "*.go"'
-      ;;
-  tool)
-      if (( CURRENT == 3 )); then
-          _values "go tool" $(go tool)
-          return
-      fi
-      case ${words[3]} in
-      [568]g)
-          _arguments -s -w : \
-              '-I[search for packages in DIR]:includes:_path_files -/' \
-              '-L[show full path in file:line prints]' \
-              '-S[print the assembly language]' \
-              '-V[print the compiler version]' \
-              '-e[no limit on number of errors printed]' \
-              '-h[panic on an error]' \
-              '-l[disable inlining]' \
-              '-m[print optimization decisions]' \
-              '-o[file specify output file]:file' \
-              '-p[assumed import path for this code]:importpath' \
-              '-u[disable package unsafe]' \
-              "*:file:_files -g '*.go'"
-          ;;
-      [568]l)
-          local O=${words[3]%l}
-          _arguments -s -w : \
-              '-o[file specify output file]:file' \
-              '-L[search for packages in DIR]:includes:_path_files -/' \
-              "*:file:_files -g '*.[ao$O]'"
-          ;;
-      dist)
-          _values "dist tool" banner bootstrap clean env install version
-          ;;
-      *)
-          # use files by default
-          _files
-          ;;
-      esac
-      ;;
-  esac
-}
-
-compdef __go_tool_complete go
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/gpg-agent/gpg-agent.plugin.zsh b/common/.oh-my-zsh/plugins/gpg-agent/gpg-agent.plugin.zsh
deleted file mode 100644
index 109af44..0000000
--- a/common/.oh-my-zsh/plugins/gpg-agent/gpg-agent.plugin.zsh
+++ /dev/null
@@ -1,30 +0,0 @@
-local GPG_ENV=$HOME/.gnupg/gpg-agent.env
-
-function start_agent_nossh {
-    eval $(/usr/bin/env gpg-agent --quiet --daemon --write-env-file ${GPG_ENV} 2> /dev/null)
-    chmod 600 ${GPG_ENV}
-    export GPG_AGENT_INFO
-}
-
-function start_agent_withssh {
-    eval $(/usr/bin/env gpg-agent --quiet --daemon --enable-ssh-support --write-env-file ${GPG_ENV} 2> /dev/null)
-    chmod 600 ${GPG_ENV}
-    export GPG_AGENT_INFO
-    export SSH_AUTH_SOCK
-    export SSH_AGENT_PID
-}
-
-# source settings of old agent, if applicable
-if [ -f "${GPG_ENV}" ]; then
-  . ${GPG_ENV} > /dev/null
-fi
-
-# check for existing ssh-agent
-if ssh-add -l > /dev/null 2> /dev/null; then
-    start_agent_nossh;
-else
-    start_agent_withssh;
-fi
-
-GPG_TTY=$(tty)
-export GPG_TTY
diff --git a/common/.oh-my-zsh/plugins/gradle/gradle.plugin.zsh b/common/.oh-my-zsh/plugins/gradle/gradle.plugin.zsh
deleted file mode 100644
index 9229512..0000000
--- a/common/.oh-my-zsh/plugins/gradle/gradle.plugin.zsh
+++ /dev/null
@@ -1,106 +0,0 @@
-#!zsh
-##############################################################################
-# A descriptive listing of core Gradle commands 
-############################################################################
-function _gradle_core_commands() {
-    local ret=1 state
-    _arguments ':subcommand:->subcommand' && ret=0
-
-    case $state in
-      subcommand)
-        subcommands=(
-          "properties:Display all project properties"
-          "tasks:Calculate and display all tasks"
-          "dependencies:Calculate and display all dependencies"
-          "projects:Discover and display all sub-projects"
-          "build:Build the project"
-          "help:Display help"
-        )
-        _describe -t subcommands 'gradle subcommands' subcommands && ret=0
-    esac
-
-    return ret
-}
-
-function _gradle_arguments() {
-    _arguments -C \
-    '-a[Do not rebuild project dependencies]' \
-    '-h[Help]' \
-    '-D[System property]' \
-    '-d[Log at the debug level]' \
-    '--gui[Launches the Gradle GUI app]' \
-    '--stop[Stop the Gradle daemon]' \
-    '--daemon[Use the Gradle daemon]' \
-    '--no-daemon[Do not use the Gradle daemon]' \
-    '--no-opt[Do not perform any task optimization]' \
-    '-i[Log at the info level]' \
-    '-m[Dry run]' \
-    '-P[Set a project property]' \
-    '--profile[Profile the build time]' \
-    '-q[Log at the quiet level (only show errors)]' \
-    '-v[Print the Gradle version info]' \
-    '-x[Specify a task to be excluded]' \
-    '*::command:->command' \
-    && return 0
-}
-
-
-##############################################################################
-# Are we in a directory containing a build.gradle file?
-############################################################################
-function in_gradle() {
-    if [[ -f build.gradle ]]; then
-        echo 1
-    fi
-}
-
-############################################################################## Examine the build.gradle file to see if its
-# timestamp has changed, and if so, regen
-# the .gradle_tasks cache file
-############################################################################
-_gradle_does_task_list_need_generating () {
-  [ ! -f .gradletasknamecache ] && return 0;
-  [ .gradletasknamecache -nt build.gradle ] && return 0;
-  return 1;
-}
-
-
-##############################################################################
-# Discover the gradle tasks by running "gradle tasks --all"
-############################################################################
-_gradle_tasks () {
-  if [ in_gradle ]; then
-    _gradle_arguments
-    if _gradle_does_task_list_need_generating; then
-     gradle tasks --all | grep "^[ ]*[a-zA-Z0-9]*\ -\ " | sed "s/ - .*$//" | sed "s/[\ ]*//" > .gradletasknamecache
-    fi
-    compadd -X "==== Gradle Tasks ====" `cat .gradletasknamecache`
-  fi
-}
-
-_gradlew_tasks () {
-  if [ in_gradle ]; then
-    _gradle_arguments
-    if _gradle_does_task_list_need_generating; then
-     gradlew tasks --all | grep "^[ ]*[a-zA-Z0-9]*\ -\ " | sed "s/ - .*$//" | sed "s/[\ ]*//" > .gradletasknamecache
-    fi
-    compadd -X "==== Gradlew Tasks ====" `cat .gradletasknamecache`
-  fi
-}
-
-
-##############################################################################
-# Register the completions against the gradle and gradlew commands
-############################################################################
-compdef _gradle_tasks gradle
-compdef _gradlew_tasks gradlew
-
-
-##############################################################################
-# Open questions for future improvements:
-# 1) Should 'gradle tasks' use --all or just the regular set?
-# 2) Should gradlew use the same approach as gradle?
-# 3) Should only the " - " be replaced with a colon so it can work
-#     with the richer descriptive method of _arguments?
-#     gradle tasks | grep "^[a-zA-Z0-9]*\ -\ " | sed "s/ - /\:/"
-#############################################################################
diff --git a/common/.oh-my-zsh/plugins/grails/grails.plugin.zsh b/common/.oh-my-zsh/plugins/grails/grails.plugin.zsh
deleted file mode 100755
index 1177773..0000000
--- a/common/.oh-my-zsh/plugins/grails/grails.plugin.zsh
+++ /dev/null
@@ -1,60 +0,0 @@
-_enumerateGrailsScripts() {
-    # Default directoryies
-    directories=($GRAILS_HOME/scripts ~/.grails/scripts ./scripts)
-
-    # Check all of the plugins directories, if they exist
-    if [ -d plugins ]
-    then
-        directories+=(plugins/*/scripts)
-    fi
-    
-    # Enumerate all of the Groovy files
-    files=()
-    for dir in $directories;
-    do
-        if [ -d $dir ]
-        then
-            files+=($dir/[^_]*.groovy)
-        fi
-    done
-    
-    # Don't try to basename ()
-    if [ ${#files} -eq 0 ];
-    then
-        return
-    fi
-    
-    scripts=()
-    for file in $files
-    do
-        # - Strip the path
-        # - Remove all scripts with a leading '_'
-        # - PackagePlugin_.groovy -> PackagePlugin
-        # - PackagePlugin         -> Package-Plugin
-        # - Package-Plugin        -> package-plugin
-        command=$(basename $file                              \
-            | sed -E  -e 's/^_?([^_]+)_?.groovy/\1/'\
-                      -e 's/([a-z])([A-Z])/\1-\2/g' \
-            | tr "[:upper:]" "[:lower:]"            \
-            | sort                                  \
-            | uniq)
-        scripts+=($command)
-    done
-    echo $scripts
-}
- 
-_grails() {
-    if (( CURRENT == 2 )); then
-        scripts=( $(_enumerateGrailsScripts) )
-        
-        if [ ${#scripts} -ne 0 ];
-        then
-            _multi_parts / scripts
-            return
-        fi
-    fi
-    
-    _files
-}
- 
-compdef _grails grails
diff --git a/common/.oh-my-zsh/plugins/heroku/_heroku b/common/.oh-my-zsh/plugins/heroku/_heroku
deleted file mode 100644
index a95c386..0000000
--- a/common/.oh-my-zsh/plugins/heroku/_heroku
+++ /dev/null
@@ -1,159 +0,0 @@
-#compdef heroku
-
-# Heroku Autocomplete plugin for Oh-My-Zsh
-# Requires: The Heroku client gem (https://github.com/heroku/heroku)
-# Author: Ali B. (http://awhitebox.com)
-
-local -a _1st_arguments
-_1st_arguments=(
-  "account\:confirm_billing":"Confirm that your account can be billed at the end of the month"
-  "addons":"list installed addons"
-  "addons\:list":"list all available addons"
-  "addons\:add":"install an addon"
-  "addons\:upgrade":"upgrade an existing addon"
-  "addons\:downgrade":"downgrade an existing addon"
-  "addons\:remove":"uninstall an addon"
-  "addons\:open":"open an addon's dashboard in your browser"
-  "apps":"list your apps"
-  "apps\:info":"show detailed app information"
-  "apps\:create":"create a new app"
-  "apps\:rename":"rename the app"
-  "apps\:open":"open the app in a web browser"
-  "apps\:destroy":"permanently destroy an app"
-  "auth\:login":"log in with your heroku credentials"
-  "auth\:logout":"clear local authentication credentials"
-  "config":"display the config vars for an app"
-  "config\:add":"add one or more config vars"
-  "config\:remove":"remove a config var"
-  "db\:push":"push local data up to your app"
-  "db\:pull":"pull heroku data down into your local database"
-  "domains":"list custom domains for an app"
-  "domains\:add":"add a custom domain to an app"
-  "domains\:remove":"remove a custom domain from an app"
-  "domains\:clear":"remove all custom domains from an app"
-  "help":"list available commands or display help for a specific command"
-  "keys":"display keys for the current user"
-  "keys\:add":"add a key for the current user"
-  "keys\:remove":"remove a key from the current user"
-  "keys\:clear":"remove all authentication keys from the current user"
-  "logs":"display recent log output"
-  "logs\:cron":"DEPRECATED: display cron logs from legacy logging"
-  "logs\:drains":"manage syslog drains"
-  "maintenance\:on":"put the app into maintenance mode"
-  "maintenance\:off":"take the app out of maintenance mode"
-  "pg\:info":"display database information"
-  "pg\:ingress":"allow direct connections to the database from this IP for one minute"
-  "pg\:promote":"sets DATABASE as your DATABASE_URL"
-  "pg\:psql":"open a psql shell to the database"
-  "pg\:reset":"delete all data in DATABASE"
-  "pg\:unfollow":"stop a replica from following and make it a read/write database"
-  "pg\:wait":"monitor database creation, exit when complete"
-  "pgbackups":"list captured backups"
-  "pgbackups\:url":"get a temporary URL for a backup"
-  "pgbackups\:capture":"capture a backup from a database id"
-  "pgbackups\:restore":"restore a backup to a database"
-  "pgbackups\:destroy":"destroys a backup"
-  "plugins":"list installed plugins"
-  "plugins\:install":"install a plugin"
-  "plugins\:uninstall":"uninstall a plugin"
-  "ps\:dynos":"scale to QTY web processes"
-  "ps\:workers":"scale to QTY background processes"
-  "ps":"list processes for an app"
-  "ps\:restart":"restart an app process"
-  "ps\:scale":"scale processes by the given amount"
-  "releases":"list releases"
-  "releases\:info":"view detailed information for a release"
-  "rollback":"roll back to an older release"
-  "run":"run an attached process"
-  "run\:rake":"remotely execute a rake command"
-  "run\:console":"open a remote console session"
-  "sharing":"list collaborators on an app"
-  "sharing\:add":"add a collaborator to an app"
-  "sharing\:remove":"remove a collaborator from an app"
-  "sharing\:transfer":"transfer an app to a new owner"
-  "ssl":"list certificates for an app"
-  "ssl\:add":"add an ssl certificate to an app"
-  "ssl\:remove":"remove an ssl certificate from an app"
-  "ssl\:clear":"remove all ssl certificates from an app"
-  "stack":"show the list of available stacks"
-  "stack\:migrate":"prepare migration of this app to a new stack"
-  "version":"show heroku client version"
-)
-
-_arguments '*:: :->command'
-
-if (( CURRENT == 1 )); then
-  _describe -t commands "heroku command" _1st_arguments
-  return
-fi
-
-local -a _command_args
-case "$words[1]" in
-  apps:info)
-    _command_args=(
-      '(-r|--raw)'{-r,--raw}'[output info as raw key/value pairs]' \
-    )
-    ;;
-  apps:create)
-    _command_args=(
-      '(-a|--addons)'{-a,--addons}'[a list of addons to install]' \
-      '(-r|--remote)'{-r,--remote}'[the git remote to create, default "heroku"]' \
-      '(-s|--stack)'{-s,--stack}'[the stack on which to create the app]' \
-    )
-    ;;
-  config)
-    _command_args=(
-      '(-s|--shell)'{-s,--shell}'[output config vars in shell format]' \
-    )
-    ;;
-  db:push)
-    _command_args=(
-      '(-c|--chunksize)'{-c,--chunksize}'[specify the number of rows to send in each batch]' \
-      '(-d|--debug)'{-d,--debug}'[enable debugging output]' \
-      '(-e|--exclude)'{-e,--exclude}'[exclude the specified tables from the push]' \
-      '(-f|--filter)'{-f,--filter}'[only push certain tables]' \
-      '(-r|--resume)'{-r,--resume}'[resume transfer described by a .dat file]' \
-      '(-t|--tables)'{-t,--tables}'[only push the specified tables]' \
-    )
-    ;;
-  db:pull)
-    _command_args=(
-      '(-c|--chunksize)'{-c,--chunksize}'[specify the number of rows to send in each batch]' \
-      '(-d|--debug)'{-d,--debug}'[enable debugging output]' \
-      '(-e|--exclude)'{-e,--exclude}'[exclude the specified tables from the pull]' \
-      '(-f|--filter)'{-f,--filter}'[only pull certain tables]' \
-      '(-r|--resume)'{-r,--resume}'[resume transfer described by a .dat file]' \
-      '(-t|--tables)'{-t,--tables}'[only pull the specified tables]' \
-    )
-    ;;
-  keys)
-    _command_args=(
-      '(-l|--long)'{-l,--long}'[display extended information for each key]' \
-    )
-    ;;
-  logs)
-    _command_args=(
-      '(-n|--num)'{-n,--num}'[the number of lines to display]' \
-      '(-p|--ps)'{-p,--ps}'[only display logs from the given process]' \
-      '(-s|--source)'{-s,--source}'[only display logs from the given source]' \
-      '(-t|--tail)'{-t,--tail}'[continually stream logs]' \
-    )
-    ;;
-  pgbackups:capture)
-    _command_args=(
-      '(-e|--expire)'{-e,--expire}'[if no slots are available to capture, delete the oldest backup to make room]' \
-    )
-    ;;
-  stack)
-    _command_args=(
-      '(-a|--all)'{-a,--all}'[include deprecated stacks]' \
-    )
-    ;;
-  esac
-
-_arguments \
-  $_command_args \
-  '(--app)--app[the app name]' \
-  '(--remote)--remote[the remote name]' \
-  &&  return 0
-
diff --git a/common/.oh-my-zsh/plugins/history-substring-search/README b/common/.oh-my-zsh/plugins/history-substring-search/README
deleted file mode 100644
index be11adf..0000000
--- a/common/.oh-my-zsh/plugins/history-substring-search/README
+++ /dev/null
@@ -1,7 +0,0 @@
-To activate this script, load it into an interactive ZSH session:
-
-  % source history-substring-search.zsh
-
-See the "history-substring-search.zsh" file for more information:
-
-  % sed -n '2,/^$/s/^#//p' history-substring-search.zsh | more
diff --git a/common/.oh-my-zsh/plugins/history-substring-search/history-substring-search.plugin.zsh b/common/.oh-my-zsh/plugins/history-substring-search/history-substring-search.plugin.zsh
deleted file mode 100644
index 99a5922..0000000
--- a/common/.oh-my-zsh/plugins/history-substring-search/history-substring-search.plugin.zsh
+++ /dev/null
@@ -1,12 +0,0 @@
-# This file integrates the history-substring-search script into oh-my-zsh.
-
-source "$ZSH/plugins/history-substring-search/history-substring-search.zsh"
-
-if test "$CASE_SENSITIVE" = true; then
-  unset HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS
-fi
-
-if test "$DISABLE_COLOR" = true; then
-  unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-  unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
-fi
diff --git a/common/.oh-my-zsh/plugins/history-substring-search/history-substring-search.zsh b/common/.oh-my-zsh/plugins/history-substring-search/history-substring-search.zsh
deleted file mode 100644
index 53f707c..0000000
--- a/common/.oh-my-zsh/plugins/history-substring-search/history-substring-search.zsh
+++ /dev/null
@@ -1,642 +0,0 @@
-#!/usr/bin/env zsh
-#
-# This is a clean-room implementation of the Fish[1] shell's history search
-# feature, where you can type in any part of any previously entered command
-# and press the UP and DOWN arrow keys to cycle through the matching commands.
-#
-#-----------------------------------------------------------------------------
-# Usage
-#-----------------------------------------------------------------------------
-#
-# 1. Load this script into your interactive ZSH session:
-#
-#       % source history-substring-search.zsh
-#
-#    If you want to use the zsh-syntax-highlighting[6] script along with this
-#    script, then make sure that you load it *before* you load this script:
-#
-#       % source zsh-syntax-highlighting.zsh
-#       % source history-substring-search.zsh
-#
-# 2. Type any part of any previous command and then:
-#
-#     * Press the UP arrow key to select the nearest command that (1) contains
-#       your query and (2) is older than the current command in the command
-#       history.
-#
-#     * Press the DOWN arrow key to select the nearest command that (1)
-#       contains your query and (2) is newer than the current command in the
-#       command history.
-#
-#     * Press ^U (the Control and U keys simultaneously) to abort the search.
-#
-# 3. If a matching command spans more than one line of text, press the LEFT
-#    arrow key to move the cursor away from the end of the command, and then:
-#
-#     * Press the UP arrow key to move the cursor to the line above.  When the
-#       cursor reaches the first line of the command, pressing the UP arrow
-#       key again will cause this script to perform another search.
-#
-#     * Press the DOWN arrow key to move the cursor to the line below.  When
-#       the cursor reaches the last line of the command, pressing the DOWN
-#       arrow key again will cause this script to perform another search.
-#
-#-----------------------------------------------------------------------------
-# Configuration
-#-----------------------------------------------------------------------------
-#
-# This script defines the following global variables. You may override their
-# default values only after having loaded this script into your ZSH session.
-#
-# * HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND is a global variable that defines
-#   how the query should be highlighted inside a matching command. Its default
-#   value causes this script to highlight using bold, white text on a magenta
-#   background. See the "Character Highlighting" section in the zshzle(1) man
-#   page to learn about the kinds of values you may assign to this variable.
-#
-# * HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND is a global variable that
-#   defines how the query should be highlighted when no commands in the
-#   history match it. Its default value causes this script to highlight using
-#   bold, white text on a red background. See the "Character Highlighting"
-#   section in the zshzle(1) man page to learn about the kinds of values you
-#   may assign to this variable.
-#
-# * HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS is a global variable that defines
-#   how the command history will be searched for your query. Its default value
-#   causes this script to perform a case-insensitive search. See the "Globbing
-#   Flags" section in the zshexpn(1) man page to learn about the kinds of
-#   values you may assign to this variable.
-#
-#-----------------------------------------------------------------------------
-# History
-#-----------------------------------------------------------------------------
-#
-# This script was originally written by Peter Stephenson[2], who published it
-# to the ZSH users mailing list (thereby making it public domain) in September
-# 2009. It was later revised by Guido van Steen and released under the BSD
-# license (see below) as part of the fizsh[3] project in January 2011.
-#
-# It was later extracted from fizsh[3] release 1.0.1, refactored heavily, and
-# repackaged as both an oh-my-zsh plugin[4] and as an independently loadable
-# ZSH script[5] by Suraj N. Kurapati in 2011.
-#
-# It was further developed[4] by Guido van Steen, Suraj N. Kurapati, Sorin
-# Ionescu, and Vincent Guerci in 2011.
-#
-# [1]: http://fishshell.com
-# [2]: http://www.zsh.org/mla/users/2009/msg00818.html
-# [3]: http://sourceforge.net/projects/fizsh/
-# [4]: https://github.com/robbyrussell/oh-my-zsh/pull/215
-# [5]: https://github.com/sunaku/zsh-history-substring-search
-# [6]: https://github.com/nicoulaj/zsh-syntax-highlighting
-#
-##############################################################################
-#
-# Copyright (c) 2009 Peter Stephenson
-# Copyright (c) 2011 Guido van Steen
-# Copyright (c) 2011 Suraj N. Kurapati
-# Copyright (c) 2011 Sorin Ionescu
-# Copyright (c) 2011 Vincent Guerci
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-#  * Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-#
-#  * Redistributions in binary form must reproduce the above
-#    copyright notice, this list of conditions and the following
-#    disclaimer in the documentation and/or other materials provided
-#    with the distribution.
-#
-#  * Neither the name of the FIZSH nor the names of its contributors
-#    may be used to endorse or promote products derived from this
-#    software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-##############################################################################
-
-#-----------------------------------------------------------------------------
-# configuration variables
-#-----------------------------------------------------------------------------
-
-HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND='bg=magenta,fg=white,bold'
-HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND='bg=red,fg=white,bold'
-HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS='i'
-
-#-----------------------------------------------------------------------------
-# the main ZLE widgets
-#-----------------------------------------------------------------------------
-
-function history-substring-search-up() {
-  _history-substring-search-begin
-
-  _history-substring-search-up-history ||
-  _history-substring-search-up-buffer ||
-  _history-substring-search-up-search
-
-  _history-substring-search-end
-}
-
-function history-substring-search-down() {
-  _history-substring-search-begin
-
-  _history-substring-search-down-history ||
-  _history-substring-search-down-buffer ||
-  _history-substring-search-down-search
-
-  _history-substring-search-end
-}
-
-zle -N history-substring-search-up
-zle -N history-substring-search-down
-
-bindkey '\e[A' history-substring-search-up
-bindkey '\e[B' history-substring-search-down
-
-#-----------------------------------------------------------------------------
-# implementation details
-#-----------------------------------------------------------------------------
-
-setopt extendedglob
-zmodload -F zsh/parameter
-
-#
-# We have to "override" some keys and widgets if the
-# zsh-syntax-highlighting plugin has not been loaded:
-#
-# https://github.com/nicoulaj/zsh-syntax-highlighting
-#
-if [[ $+functions[_zsh_highlight] -eq 0 ]]; then
-  #
-  # Dummy implementation of _zsh_highlight()
-  # that simply removes existing highlights
-  #
-  function _zsh_highlight() {
-    region_highlight=()
-  }
-
-  #
-  # Remove existing highlights when the user
-  # inserts printable characters into $BUFFER
-  #
-  function ordinary-key-press() {
-    if [[ $KEYS == [[:print:]] ]]; then
-      region_highlight=()
-    fi
-    zle .self-insert
-  }
-  zle -N self-insert ordinary-key-press
-
-  #
-  # Override ZLE widgets to invoke _zsh_highlight()
-  #
-  # https://github.com/nicoulaj/zsh-syntax-highlighting/blob/
-  # bb7fcb79fad797a40077bebaf6f4e4a93c9d8163/zsh-syntax-highlighting.zsh#L121
-  #
-  #--------------8<-------------------8<-------------------8<-----------------
-  #
-  # Copyright (c) 2010-2011 zsh-syntax-highlighting contributors
-  # All rights reserved.
-  #
-  # Redistribution and use in source and binary forms, with or without
-  # modification, are permitted provided that the following conditions are
-  # met:
-  #
-  #  * Redistributions of source code must retain the above copyright
-  #    notice, this list of conditions and the following disclaimer.
-  #
-  #  * Redistributions in binary form must reproduce the above copyright
-  #    notice, this list of conditions and the following disclaimer in the
-  #    documentation and/or other materials provided with the distribution.
-  #
-  #  * Neither the name of the zsh-syntax-highlighting contributors nor the
-  #    names of its contributors may be used to endorse or promote products
-  #    derived from this software without specific prior written permission.
-  #
-  # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
-  # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-  # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-  # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
-  # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-  # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-  # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-  # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-  # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-  # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-  # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-  # Load ZSH module zsh/zleparameter, needed to override user defined widgets.
-  zmodload zsh/zleparameter 2>/dev/null || {
-    echo 'zsh-syntax-highlighting: failed loading zsh/zleparameter, exiting.' >&2
-    return -1
-  }
-
-  # Override ZLE widgets to make them invoke _zsh_highlight.
-  for event in ${${(f)"$(zle -la)"}:#(_*|orig-*|.run-help|.which-command)}; do
-    if [[ "$widgets[$event]" == completion:* ]]; then
-      eval "zle -C orig-$event ${${${widgets[$event]}#*:}/:/ } ; $event() { builtin zle orig-$event && _zsh_highlight } ; zle -N $event"
-    else
-      case $event in
-        accept-and-menu-complete)
-          eval "$event() { builtin zle .$event && _zsh_highlight } ; zle -N $event"
-          ;;
-
-        # The following widgets should NOT remove any previously
-        # applied highlighting. Therefore we do not remap them.
-        .forward-char|.backward-char|.up-line-or-history|.down-line-or-history)
-          ;;
-
-        .*)
-          clean_event=$event[2,${#event}] # Remove the leading dot in the event name
-          case ${widgets[$clean_event]-} in
-            (completion|user):*)
-              ;;
-            *)
-              eval "$clean_event() { builtin zle $event && _zsh_highlight } ; zle -N $clean_event"
-              ;;
-          esac
-          ;;
-        *)
-          ;;
-      esac
-    fi
-  done
-  unset event clean_event
-  #-------------->8------------------->8------------------->8-----------------
-fi
-
-function _history-substring-search-begin() {
-  _history_substring_search_move_cursor_eol=false
-  _history_substring_search_query_highlight=
-
-  #
-  # Continue using the previous $_history_substring_search_result by default,
-  # unless the current query was cleared or a new/different query was entered.
-  #
-  if [[ -z $BUFFER || $BUFFER != $_history_substring_search_result ]]; then
-    #
-    # For the purpose of highlighting we will also keep
-    # a version without doubly-escaped meta characters.
-    #
-    _history_substring_search_query=$BUFFER
-
-    #
-    # $BUFFER contains the text that is in the command-line currently.
-    # we put an extra "\\" before meta characters such as "\(" and "\)",
-    # so that they become "\\\(" and "\\\)".
-    #
-    _history_substring_search_query_escaped=${BUFFER//(#m)[\][()|\\*?#<>~^]/\\$MATCH}
-
-    #
-    # Find all occurrences of the search query in the history file.
-    #
-    # (k) turns it an array of line numbers.
-    #
-    # (on) seems to remove duplicates, which are default
-    #      options. They can be turned off by (ON).
-    #
-    _history_substring_search_matches=(${(kon)history[(R)(#$HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS)*${_history_substring_search_query_escaped}*]})
-
-    #
-    # Define the range of values that $_history_substring_search_match_index
-    # can take: [0, $_history_substring_search_matches_count_plus].
-    #
-    _history_substring_search_matches_count=$#_history_substring_search_matches
-    _history_substring_search_matches_count_plus=$(( _history_substring_search_matches_count + 1 ))
-    _history_substring_search_matches_count_sans=$(( _history_substring_search_matches_count - 1 ))
-
-    #
-    # If $_history_substring_search_match_index is equal to
-    # $_history_substring_search_matches_count_plus, this indicates that we
-    # are beyond the beginning of $_history_substring_search_matches.
-    #
-    # If $_history_substring_search_match_index is equal to 0, this indicates
-    # that we are beyond the end of $_history_substring_search_matches.
-    #
-    # If we have initially pressed "up" we have to initialize
-    # $_history_substring_search_match_index to
-    # $_history_substring_search_matches_count_plus so that it will be
-    # decreased to $_history_substring_search_matches_count.
-    #
-    # If we have initially pressed "down" we have to initialize
-    # $_history_substring_search_match_index to
-    # $_history_substring_search_matches_count so that it will be increased to
-    # $_history_substring_search_matches_count_plus.
-    #
-    if [[ $WIDGET == history-substring-search-down ]]; then
-       _history_substring_search_match_index=$_history_substring_search_matches_count
-    else
-      _history_substring_search_match_index=$_history_substring_search_matches_count_plus
-    fi
-  fi
-}
-
-function _history-substring-search-end() {
-  _history_substring_search_result=$BUFFER
-
-  # move the cursor to the end of the command line
-  if [[ $_history_substring_search_move_cursor_eol == true ]]; then
-    CURSOR=${#BUFFER}
-  fi
-
-  # highlight command line using zsh-syntax-highlighting
-  _zsh_highlight
-
-  # highlight the search query inside the command line
-  if [[ -n $_history_substring_search_query_highlight && -n $_history_substring_search_query ]]; then
-    #
-    # The following expression yields a variable $MBEGIN, which
-    # indicates the begin position + 1 of the first occurrence
-    # of _history_substring_search_query_escaped in $BUFFER.
-    #
-    : ${(S)BUFFER##(#m$HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS)($_history_substring_search_query##)}
-    local begin=$(( MBEGIN - 1 ))
-    local end=$(( begin + $#_history_substring_search_query ))
-    region_highlight+=("$begin $end $_history_substring_search_query_highlight")
-  fi
-
-  # For debugging purposes:
-  # zle -R "mn: "$_history_substring_search_match_index" m#: "${#_history_substring_search_matches}
-  # read -k -t 200 && zle -U $REPLY
-
-  # Exit successfully from the history-substring-search-* widgets.
-  true
-}
-
-function _history-substring-search-up-buffer() {
-  #
-  # Check if the UP arrow was pressed to move the cursor within a multi-line
-  # buffer. This amounts to three tests:
-  #
-  # 1. $#buflines -gt 1.
-  #
-  # 2. $CURSOR -ne $#BUFFER.
-  #
-  # 3. Check if we are on the first line of the current multi-line buffer.
-  #    If so, pressing UP would amount to leaving the multi-line buffer.
-  #
-  #    We check this by adding an extra "x" to $LBUFFER, which makes
-  #    sure that xlbuflines is always equal to the number of lines
-  #    until $CURSOR (including the line with the cursor on it).
-  #
-  local buflines XLBUFFER xlbuflines
-  buflines=(${(f)BUFFER})
-  XLBUFFER=$LBUFFER"x"
-  xlbuflines=(${(f)XLBUFFER})
-
-  if [[ $#buflines -gt 1 && $CURSOR -ne $#BUFFER && $#xlbuflines -ne 1 ]]; then
-    zle up-line-or-history
-    return true
-  fi
-
-  false
-}
-
-function _history-substring-search-down-buffer() {
-  #
-  # Check if the DOWN arrow was pressed to move the cursor within a multi-line
-  # buffer. This amounts to three tests:
-  #
-  # 1. $#buflines -gt 1.
-  #
-  # 2. $CURSOR -ne $#BUFFER.
-  #
-  # 3. Check if we are on the last line of the current multi-line buffer.
-  #    If so, pressing DOWN would amount to leaving the multi-line buffer.
-  #
-  #    We check this by adding an extra "x" to $RBUFFER, which makes
-  #    sure that xrbuflines is always equal to the number of lines
-  #    from $CURSOR (including the line with the cursor on it).
-  #
-  local buflines XRBUFFER xrbuflines
-  buflines=(${(f)BUFFER})
-  XRBUFFER="x"$RBUFFER
-  xrbuflines=(${(f)XRBUFFER})
-
-  if [[ $#buflines -gt 1 && $CURSOR -ne $#BUFFER && $#xrbuflines -ne 1 ]]; then
-    zle down-line-or-history
-    return true
-  fi
-
-  false
-}
-
-function _history-substring-search-up-history() {
-  #
-  # Behave like up in ZSH, except clear the $BUFFER
-  # when beginning of history is reached like in Fish.
-  #
-  if [[ -z $_history_substring_search_query ]]; then
-
-    # we have reached the absolute top of history
-    if [[ $HISTNO -eq 1 ]]; then
-      BUFFER=
-
-    # going up from somewhere below the top of history
-    else
-      zle up-history
-    fi
-
-    return true
-  fi
-
-  false
-}
-
-function _history-substring-search-down-history() {
-  #
-  # Behave like down-history in ZSH, except clear the
-  # $BUFFER when end of history is reached like in Fish.
-  #
-  if [[ -z $_history_substring_search_query ]]; then
-
-    # going down from the absolute top of history
-    if [[ $HISTNO -eq 1 && -z $BUFFER ]]; then
-      BUFFER=${history[1]}
-      _history_substring_search_move_cursor_eol=true
-
-    # going down from somewhere above the bottom of history
-    else
-      zle down-history
-    fi
-
-    return true
-  fi
-
-  false
-}
-
-function _history-substring-search-up-search() {
-  _history_substring_search_move_cursor_eol=true
-
-  #
-  # Highlight matches during history-substring-up-search:
-  #
-  # The following constants have been initialized in
-  # _history-substring-search-up/down-search():
-  #
-  # $_history_substring_search_matches is the current list of matches
-  # $_history_substring_search_matches_count is the current number of matches
-  # $_history_substring_search_matches_count_plus is the current number of matches + 1
-  # $_history_substring_search_matches_count_sans is the current number of matches - 1
-  # $_history_substring_search_match_index is the index of the current match
-  #
-  # The range of values that $_history_substring_search_match_index can take
-  # is: [0, $_history_substring_search_matches_count_plus].  A value of 0
-  # indicates that we are beyond the end of
-  # $_history_substring_search_matches. A value of
-  # $_history_substring_search_matches_count_plus indicates that we are beyond
-  # the beginning of $_history_substring_search_matches.
-  #
-  # In _history-substring-search-up-search() the initial value of
-  # $_history_substring_search_match_index is
-  # $_history_substring_search_matches_count_plus.  This value is set in
-  # _history-substring-search-begin().  _history-substring-search-up-search()
-  # will initially decrease it to $_history_substring_search_matches_count.
-  #
-  if [[ $_history_substring_search_match_index -ge 2 ]]; then
-    #
-    # Highlight the next match:
-    #
-    # 1. Decrease the value of $_history_substring_search_match_index.
-    #
-    # 2. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-    #    to highlight the current buffer.
-    #
-    (( _history_substring_search_match_index-- ))
-    BUFFER=$history[$_history_substring_search_matches[$_history_substring_search_match_index]]
-    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-
-  elif [[ $_history_substring_search_match_index -eq 1 ]]; then
-    #
-    # We will move beyond the end of $_history_substring_search_matches:
-    #
-    # 1. Decrease the value of $_history_substring_search_match_index.
-    #
-    # 2. Save the current buffer in $_history_substring_search_old_buffer,
-    #    so that it can be retrieved by
-    #    _history-substring-search-down-search() later.
-    #
-    # 3. Make $BUFFER equal to $_history_substring_search_query.
-    #
-    # 4. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
-    #    to highlight the current buffer.
-    #
-    (( _history_substring_search_match_index-- ))
-    _history_substring_search_old_buffer=$BUFFER
-    BUFFER=$_history_substring_search_query
-    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
-
-  elif [[ $_history_substring_search_match_index -eq $_history_substring_search_matches_count_plus ]]; then
-    #
-    # We were beyond the beginning of $_history_substring_search_matches but
-    # UP makes us move back to $_history_substring_search_matches:
-    #
-    # 1. Decrease the value of $_history_substring_search_match_index.
-    #
-    # 2. Restore $BUFFER from $_history_substring_search_old_buffer.
-    #
-    # 3. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-    #    to highlight the current buffer.
-    #
-    (( _history_substring_search_match_index-- ))
-    BUFFER=$_history_substring_search_old_buffer
-    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-  fi
-}
-
-function _history-substring-search-down-search() {
-  _history_substring_search_move_cursor_eol=true
-
-  #
-  # Highlight matches during history-substring-up-search:
-  #
-  # The following constants have been initialized in
-  # _history-substring-search-up/down-search():
-  #
-  # $_history_substring_search_matches is the current list of matches
-  # $_history_substring_search_matches_count is the current number of matches
-  # $_history_substring_search_matches_count_plus is the current number of matches + 1
-  # $_history_substring_search_matches_count_sans is the current number of matches - 1
-  # $_history_substring_search_match_index is the index of the current match
-  #
-  # The range of values that $_history_substring_search_match_index can take
-  # is: [0, $_history_substring_search_matches_count_plus].  A value of 0
-  # indicates that we are beyond the end of
-  # $_history_substring_search_matches. A value of
-  # $_history_substring_search_matches_count_plus indicates that we are beyond
-  # the beginning of $_history_substring_search_matches.
-  #
-  # In _history-substring-search-down-search() the initial value of
-  # $_history_substring_search_match_index is
-  # $_history_substring_search_matches_count.  This value is set in
-  # _history-substring-search-begin().
-  # _history-substring-search-down-search() will initially increase it to
-  # $_history_substring_search_matches_count_plus.
-  #
-  if [[ $_history_substring_search_match_index -le $_history_substring_search_matches_count_sans ]]; then
-    #
-    # Highlight the next match:
-    #
-    # 1. Increase $_history_substring_search_match_index by 1.
-    #
-    # 2. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-    #    to highlight the current buffer.
-    #
-    (( _history_substring_search_match_index++ ))
-    BUFFER=$history[$_history_substring_search_matches[$_history_substring_search_match_index]]
-    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-
-  elif [[ $_history_substring_search_match_index -eq $_history_substring_search_matches_count ]]; then
-    #
-    # We will move beyond the beginning of $_history_substring_search_matches:
-    #
-    # 1. Increase $_history_substring_search_match_index by 1.
-    #
-    # 2. Save the current buffer in $_history_substring_search_old_buffer, so
-    #    that it can be retrieved by _history-substring-search-up-search()
-    #    later.
-    #
-    # 3. Make $BUFFER equal to $_history_substring_search_query.
-    #
-    # 4. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
-    #    to highlight the current buffer.
-    #
-    (( _history_substring_search_match_index++ ))
-    _history_substring_search_old_buffer=$BUFFER
-    BUFFER=$_history_substring_search_query
-    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
-
-  elif [[ $_history_substring_search_match_index -eq 0 ]]; then
-    #
-    # We were beyond the end of $_history_substring_search_matches but DOWN
-    # makes us move back to the $_history_substring_search_matches:
-    #
-    # 1. Increase $_history_substring_search_match_index by 1.
-    #
-    # 2. Restore $BUFFER from $_history_substring_search_old_buffer.
-    #
-    # 3. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-    #    to highlight the current buffer.
-    #
-    (( _history_substring_search_match_index++ ))
-    BUFFER=$_history_substring_search_old_buffer
-    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
-  fi
-}
-
-# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
-# vim: ft=zsh sw=2 ts=2 et
diff --git a/common/.oh-my-zsh/plugins/history/history.plugin.zsh b/common/.oh-my-zsh/plugins/history/history.plugin.zsh
deleted file mode 100644
index 0f4aa4b..0000000
--- a/common/.oh-my-zsh/plugins/history/history.plugin.zsh
+++ /dev/null
@@ -1,8 +0,0 @@
-alias h='history'
-
-function hs
-{
-    history | grep $*
-}
-
-alias hsi='hs -i'
diff --git a/common/.oh-my-zsh/plugins/jake-node/jake-node.plugin.zsh b/common/.oh-my-zsh/plugins/jake-node/jake-node.plugin.zsh
deleted file mode 100644
index a9eef40..0000000
--- a/common/.oh-my-zsh/plugins/jake-node/jake-node.plugin.zsh
+++ /dev/null
@@ -1,14 +0,0 @@
-#---oh-my-zsh plugin : task Autocomplete for Jake tool---
-# Jake : https://github.com/mde/jake
-# Warning : Jakefile should have the right case : Jakefile or jakefile
-# Tested on : MacOSX 10.7 (Lion), Ubuntu 11.10
-# Author : Alexandre Lacheze (@al3xstrat)
-# Inspiration : http://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh 
-
-function _jake () {
-  if [ -f Jakefile ]||[ -f jakefile ]; then
-    compadd `jake -T | cut -d " " -f 2 | sed -E "s/.\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"`
-  fi
-}
-
-compdef _jake jake
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/jira/jira.plugin.zsh b/common/.oh-my-zsh/plugins/jira/jira.plugin.zsh
deleted file mode 100644
index b91f93c..0000000
--- a/common/.oh-my-zsh/plugins/jira/jira.plugin.zsh
+++ /dev/null
@@ -1,38 +0,0 @@
-# To use: add a .jira-url file in the base of your project
-#         You can also set JIRA_URL in your .zshrc or put .jira-url in your home directory
-#         .jira-url in the current directory takes precedence
-#
-# If you use Rapid Board, set:
-#JIRA_RAPID_BOARD="yes"
-# in you .zshrc
-#
-# Setup: cd to/my/project
-#        echo "https://name.jira.com" >> .jira-url
-# Usage: jira           # opens a new issue
-#        jira ABC-123   # Opens an existing issue
-open_jira_issue () {
-  if [ -f .jira-url ]; then
-    jira_url=$(cat .jira-url)
-  elif [ -f ~/.jira-url ]; then
-    jira_url=$(cat ~/.jira-url)
-  elif [[ "x$JIRA_URL" != "x" ]]; then
-    jira_url=$JIRA_URL
-  else
-    echo "JIRA url is not specified anywhere."
-    return 0
-  fi
-
-  if [ -z "$1" ]; then
-    echo "Opening new issue"
-    `open $jira_url/secure/CreateIssue!default.jspa`
-  else
-    echo "Opening issue #$1"
-    if [[ "x$JIRA_RAPID_BOARD" = "yes" ]]; then
-      `open $jira_url/issues/$1`
-    else
-      `open $jira_url/browse/$1`
-    fi
-  fi
-}
-
-alias jira='open_jira_issue'
diff --git a/common/.oh-my-zsh/plugins/jruby/jruby.plugin.zsh b/common/.oh-my-zsh/plugins/jruby/jruby.plugin.zsh
deleted file mode 100755
index bb7975b..0000000
--- a/common/.oh-my-zsh/plugins/jruby/jruby.plugin.zsh
+++ /dev/null
@@ -1,4 +0,0 @@
-# Aliases
-alias jrspec='jruby --debug -S rspec --debug'
-alias jprofile='jruby --profile.api -S rspec'
-alias jexec='jruby -S'
diff --git a/common/.oh-my-zsh/plugins/kate/kate.plugin.zsh b/common/.oh-my-zsh/plugins/kate/kate.plugin.zsh
deleted file mode 100644
index eb16522..0000000
--- a/common/.oh-my-zsh/plugins/kate/kate.plugin.zsh
+++ /dev/null
@@ -1,9 +0,0 @@
-
-# Kate
-# Start kate always silent
-alias kate='kate >/dev/null 2>&1'
-
-function kt () {
-  cd $1
-  kate $1
-}
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/knife/_knife b/common/.oh-my-zsh/plugins/knife/_knife
deleted file mode 100644
index b44283f..0000000
--- a/common/.oh-my-zsh/plugins/knife/_knife
+++ /dev/null
@@ -1,198 +0,0 @@
-#compdef knife
-
-# You can override the path to knife.rb and your cookbooks by setting
-# KNIFE_CONF_PATH=/path/to/my/.chef/knife.rb
-# KNIFE_COOKBOOK_PATH=/path/to/my/chef/cookbooks
-# Read around where these are used for more detail.
-
-# These flags should be available everywhere according to man knife
-knife_general_flags=( --help --server-url --key --config --editor --format --log_level --logfile --no-editor --user --print-after --version --yes )
-
-# knife has a very special syntax, some example calls are:
-# knife status
-# knife cookbook list
-# knife role show ROLENAME
-# knife data bag show DATABAGNAME
-# knife role show ROLENAME --attribute ATTRIBUTENAME
-# knife cookbook show COOKBOOKNAME COOKBOOKVERSION recipes
-
-# The -Q switch in compadd allow for completions of things like "data bag" without having to go through two rounds of completion and avoids zsh inserting a \ for escaping spaces
-_knife() {
-  local curcontext="$curcontext" state line
-  typeset -A opt_args
-  cloudproviders=(bluebox ec2 rackspace slicehost terremark)
-  _arguments \
-    '1: :->knifecmd'\
-    '2: :->knifesubcmd'\
-    '3: :->knifesubcmd2' \
-    '4: :->knifesubcmd3' \
-    '5: :->knifesubcmd4' \
-    '6: :->knifesubcmd5'
-  
-  case $state in
-  knifecmd)
-    compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" diff exec environment index node recipe role search ssh status upload windows $cloudproviders
-  ;;
-  knifesubcmd)
-    case $words[2] in
-    (bluebox|ec2|rackspace|slicehost|terremark)
-      compadd "$@" server images
-    ;;
-    client)
-      compadd -Q "$@" "bulk delete" list create show delete edit reregister
-    ;;
-    configure)
-      compadd "$@" client
-    ;;
-    cookbook)
-      compadd -Q "$@" test list create download delete "metadata from" show "bulk delete" metadata upload
-    ;;
-    diff)
-      _arguments '*:file or directory:_files -g "*"'
-    ;;
-    environment)
-      compadd -Q "$@" list create delete edit show "from file"
-    ;;
-    node)
-     compadd -Q "$@" "from file" create show edit delete list run_list "bulk delete"
-    ;;
-    recipe)
-     compadd "$@" list
-    ;;
-    role)
-      compadd -Q "$@" "bulk delete" create delete edit "from file" list show
-    ;; 
-    upload)
-     _arguments '*:file or directory:_files -g "*"'
-    ;;
-    windows)
-      compadd "$@" bootstrap
-    ;;
-    *)
-    _arguments '2:Subsubcommands:($(_knife_options1))'
-    esac
-   ;;
-   knifesubcmd2)
-    case $words[3] in
-     server)
-      compadd "$@" list create delete
-    ;;
-     images)
-      compadd "$@" list
-    ;;
-     site)
-      compadd "$@" vendor show share search download list unshare
-    ;;
-     (show|delete|edit)
-     _arguments '3:Subsubcommands:($(_chef_$words[2]s_remote))'
-    ;;
-    (upload|test)
-     _arguments '3:Subsubcommands:($(_chef_$words[2]s_local) --all)'
-    ;;
-    list)
-     compadd -a "$@" knife_general_flags
-    ;;
-    bag)
-      compadd -Q "$@" show edit list "from file" create delete
-    ;;
-    *)
-      _arguments '3:Subsubcommands:($(_knife_options2))'
-    esac
-   ;;
-   knifesubcmd3)
-     case $words[3] in
-      show)
-       case $words[2] in
-       cookbook)
-          versioncomp=1
-          _arguments '4:Cookbookversions:($(_cookbook_versions) latest)'
-       ;;
-       (node|client|role)
-         compadd "$@" --attribute
-       esac
-     esac
-     case $words[4] in
-     (show|edit)
-     _arguments '4:Subsubsubcommands:($(_chef_$words[2]_$words[3]s_remote))'
-    ;;
-     file)
-     _arguments '*:file or directory:_files -g "*.(rb|json)"'
-    ;;
-      list)
-     compadd -a "$@" knife_general_flags
-    ;;
-        *)
-       _arguments '*:Subsubcommands:($(_knife_options3))'
-    esac
-    ;;
-    knifesubcmd4)
-      if (( versioncomp > 0 )); then
-        compadd "$@" attributes definitions files libraries providers recipes resources templates
-      else
-       _arguments '*:Subsubcommands:($(_knife_options2))'
-      fi
-    ;; 
-    knifesubcmd5) 
-      _arguments '*:Subsubcommands:($(_knife_options3))'
-   esac
-}
-
-# Helper functions to provide the argument completion for several depths of commands
-_knife_options1() {
- ( for line in $( knife $words[2] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
-}
-
-_knife_options2() {
- ( for line in $( knife $words[2] $words[3] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
-}
-
-_knife_options3() {
- ( for line in $( knife $words[2] $words[3] $words[4] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
-}
-
-# The chef_x_remote functions use knife to get a list of objects of type x on the server
-_chef_roles_remote() {
- (knife role list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
-}
-
-_chef_clients_remote() {
- (knife client list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
-}
-
-_chef_nodes_remote() {
- (knife node list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
-}
-
-_chef_cookbooks_remote() {
- (knife cookbook list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
-}
-
-_chef_sitecookbooks_remote() {
- (knife cookbook site list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
-}
-
-_chef_data_bags_remote() {
- (knife data bag list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
-}
-
-_chef_environments_remote() {
-  (knife environment list | awk '{print $1}')
-}
-
-# The chef_x_local functions use the knife config to find the paths of relevant objects x to be uploaded to the server
-_chef_cookbooks_local() {
-  
-  local knife_rb=${KNIFE_CONF_PATH:-${HOME}/.chef/knife.rb}
-  if [ -f ./.chef/knife.rb ]; then
-    knife_rb="./.chef/knife.rb"
-  fi
-  local cookbook_path=${KNIFE_COOKBOOK_PATH:-$(grep cookbook_path $knife_rb | awk 'BEGIN {FS = "[" }; {print $2}' | sed 's/\,//g' | sed "s/'//g" | sed 's/\(.*\)]/\1/' )}
-  (for i in $cookbook_path; do ls $i; done)
-}
-
-# This function extracts the available cookbook versions on the chef server
-_cookbook_versions() {
-  (knife cookbook show $words[4] | grep -v $words[4] | grep -v -E '\]|\[|\{|\}' | sed 's/ //g' | sed 's/"//g')
-}
-
-_knife "$@"
diff --git a/common/.oh-my-zsh/plugins/laravel/_artisan b/common/.oh-my-zsh/plugins/laravel/_artisan
deleted file mode 100644
index 8637514..0000000
--- a/common/.oh-my-zsh/plugins/laravel/_artisan
+++ /dev/null
@@ -1,40 +0,0 @@
-#compdef artisan
-
-# Laravel autocompletion
-# Author: John Hamelink 
-#
-# This plugin does the following:
-#  - Adds aliases and autocompletion for artisan
-#  - Adds aliases and autocompletion for bob
-
-local curcontext="$curcontext" state line _opts _bundles ret=1
-_arguments -C \
-    '1: :->cmds' \
-    '*:: :->args' && ret=0
-
-case $state in
-    cmds)
-
-    _values "Artisan command" \
-        'session\:install[Create a session table]' \
-        'migrate[Manage Migrations]' \
-        'test[Run a test]' \
-        'route\:\:call[Call a route in the CLI]' \
-        'key\:\:generate[Generate a key]'
-        ret=0
-        ;;
-    args)
-        case $line[1] in
-            migrate)
-                _values \
-                    'install[Create the Laravel migration table' \
-                    'make[Create a migration]' \
-                    'rollback[Roll back to the last migration operation]' \
-                    'reset[Roll back all migrations that have ever run]'
-                ret=0
-                ;;
-        esac
-        ;;
-esac
-
-return ret
diff --git a/common/.oh-my-zsh/plugins/laravel/laravel.plugin.zsh b/common/.oh-my-zsh/plugins/laravel/laravel.plugin.zsh
deleted file mode 100644
index ed932ee..0000000
--- a/common/.oh-my-zsh/plugins/laravel/laravel.plugin.zsh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!zsh
-alias artisan='php artisan'
-alias bob='php artisan bob::build'
diff --git a/common/.oh-my-zsh/plugins/last-working-dir/last-working-dir.plugin.zsh b/common/.oh-my-zsh/plugins/last-working-dir/last-working-dir.plugin.zsh
deleted file mode 100644
index bc36c80..0000000
--- a/common/.oh-my-zsh/plugins/last-working-dir/last-working-dir.plugin.zsh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env zsh
-# Keeps track of the last used working directory and automatically jumps
-# into it for new shells.
-
-# Flag indicating if we've previously jumped to last directory.
-typeset -g ZSH_LAST_WORKING_DIRECTORY
-mkdir -p "$ZSH/cache"
-local cache_file="$ZSH/cache/last-working-dir"
-
-# Updates the last directory once directory is changed.
-function chpwd() {
-  # Use >| in case noclobber is set to avoid "file exists" error
-	pwd >| "$cache_file"
-}
-
-# Changes directory to the last working directory.
-function lwd() {
-	[[ ! -r "$cache_file" ]] || cd `cat "$cache_file"`
-}
-
-# Automatically jump to last working directory unless this isn't the first time
-# this plugin has been loaded.
-if [[ -z "$ZSH_LAST_WORKING_DIRECTORY" ]]; then
-	lwd 2>/dev/null && ZSH_LAST_WORKING_DIRECTORY=1 || true
-fi
diff --git a/common/.oh-my-zsh/plugins/lein/lein.plugin.zsh b/common/.oh-my-zsh/plugins/lein/lein.plugin.zsh
deleted file mode 100644
index 11c9297..0000000
--- a/common/.oh-my-zsh/plugins/lein/lein.plugin.zsh
+++ /dev/null
@@ -1,41 +0,0 @@
-function _lein_commands() {
-    local ret=1 state
-    _arguments ':subcommand:->subcommand' && ret=0
-
-    case $state in
-      subcommand)
-        subcommands=(
-          "classpath:print the classpath of the current project"
-          "clean:remove compiled files and dependencies from project"
-          "compile:ahead-of-time compile the project"
-          "deploy:build jar and deploy to remote repository"
-          "deps:download and install all dependencies"
-          "help:display a list of tasks or help for a given task"
-          "install:install the project and its dependencies in your local repository"
-          "int:enter an interactive task shell"
-          "interactive:enter an interactive task shell"
-          "jack-in:jack in to a clojure slime session from emacs."
-          "jar:create a jar file containing the compiled .class files"
-          "javac:compile java source files"
-          "new:create a new project skeleton"
-          "plugin:manage user-level plugins"
-          "pom:write a pom.xml file to disk for maven interop"
-          "repl:start a repl session either with the current project or standalone"
-          "retest:run only the test namespaces which failed last time around"
-          "run:run the project's -main function"
-          "search:search remote maven repositories for matching jars"
-          "swank:launch swank server for Emacs to connect"
-          "test:run the project's tests"
-          "test!:run a project's tests after cleaning and fetching dependencies"
-          "trampoline:run a task without nesting the project's JVM inside Leiningen's."
-          "uberjar:Create a jar including the contents of each of deps"
-          "upgrade:upgrade leiningen to the latest stable release"
-          "version:print leiningen's version"
-        )
-        _describe -t subcommands 'leiningen subcommands' subcommands && ret=0
-    esac
-
-    return ret
-}
-
-compdef _lein_commands lein
diff --git a/common/.oh-my-zsh/plugins/lighthouse/lighthouse.plugin.zsh b/common/.oh-my-zsh/plugins/lighthouse/lighthouse.plugin.zsh
deleted file mode 100644
index 7661c6a..0000000
--- a/common/.oh-my-zsh/plugins/lighthouse/lighthouse.plugin.zsh
+++ /dev/null
@@ -1,16 +0,0 @@
-# To use: add a .lighthouse file into your directory with the URL to the
-# individual project. For example:
-# https://rails.lighthouseapp.com/projects/8994
-# Example usage: http://screencast.com/t/ZDgwNDUwNT
-open_lighthouse_ticket () {
-  if [ ! -f .lighthouse-url ]; then
-    echo "There is no .lighthouse-url file in the current directory..."
-    return 0;
-  else
-    lighthouse_url=$(cat .lighthouse-url);
-    echo "Opening ticket #$1";
-    `open $lighthouse_url/tickets/$1`;
-  fi
-}
-
-alias lho='open_lighthouse_ticket'
diff --git a/common/.oh-my-zsh/plugins/lol/lol.plugin.zsh b/common/.oh-my-zsh/plugins/lol/lol.plugin.zsh
deleted file mode 100644
index ae065c1..0000000
--- a/common/.oh-my-zsh/plugins/lol/lol.plugin.zsh
+++ /dev/null
@@ -1,38 +0,0 @@
-# LOL!!1
-# Source: http://aur.archlinux.org/packages/lolbash/lolbash/lolbash.sh
-
-alias wtf='dmesg'
-alias onoz='cat /var/log/errors.log'
-alias rtfm='man'
-
-alias :3='echo'
-alias visible='echo'
-alias invisible='cat'
-alias moar='more'
-alias tldr='less'
-alias alwayz='tail -f'
-
-alias icanhas='mkdir'
-alias gimmeh='touch'
-alias donotwant='rm'
-alias dowant='cp'
-alias gtfo='mv'
-alias nowai='chmod'
-
-alias hai='cd'
-alias iz='ls'
-alias plz='pwd'
-alias ihasbucket='df -h'
-
-alias inur='locate'
-alias iminurbase='finger'
-
-alias btw='nice'
-alias obtw='nohup'
-
-alias nomz='ps aux'
-alias nomnom='killall'
-
-alias byes='exit'
-alias cya='reboot'
-alias kthxbai='halt'
diff --git a/common/.oh-my-zsh/plugins/macports/_port b/common/.oh-my-zsh/plugins/macports/_port
deleted file mode 100644
index 06d7fb4..0000000
--- a/common/.oh-my-zsh/plugins/macports/_port
+++ /dev/null
@@ -1,89 +0,0 @@
-#compdef port
-
-local subcmds 
-
-# we cache the list of ports
-# we shall use some cache policy to avoid problems with new ports
-if (( ! $+portlist )); then
-	portlist=($(port echo all; echo "all current active inactive installed uninstalled outdated"))
-fi
-
-subcmds=(
-'activate'
-'archive'
-'build'
-'cat'
-'clean'
-'configure'
-'contents'
-'deactivate'
-'dependents'
-'deps'
-'destroot'
-'dir'
-'distcheck'
-'distclean'
-'dmg'
-'echo'
-'edit'
-'extract'
-'fetch'
-'file'
-'help'
-'info'
-'install' 
-'installed' 
-'list'
-'livecheck'
-'location'
-'mpkg'
-'outdated'
-'patch'
-'pkg'
-'provides'
-'rpmpackage'
-'search'
-'selfupdate'
-'sync'
-'test'
-'unarchive'
-'uninstall'
-'upgrade' 
-'variants'
-'version'
-)
-
-_arguments -C \
-'-v[verbose mode (generate verbose messages)]' \
-'-d[debug mode (generate debugging messages)]' \
-'-q[quiet mode (suppress messages)]' \
-'-D[specify portdir]' \
-'-k[keep mode (do not autoclean after install)]' \
-'-n[dont follow dependencies in upgrade (only for upgrading)]' \
-'-a[upgrade all installed ports (only for upgrading)]' \
-'-u[uninstall non-active ports when upgrading and uninstalling]' \
-'-f[force mode (ignore state file)]' \
-'-s[source-only mode]' \
-'-b[binary-only mode]' \
-'-o[honor state files older than Portfile]' \
-'*::command:->command' \
-&& return 0
-
-case $state in
-	command)
-	if ((CURRENT == 1)); then
-		state=subcommands
-	else
-		state=portname
-	fi
-	;;
-esac
-
-case $state in
-	subcommands)
-	_describe -t commands 'port commands' subcmds
-	;;
-	portname)
-	_describe -t commands 'available ports' portlist
-	;;
-esac
diff --git a/common/.oh-my-zsh/plugins/macports/macports.plugin.zsh b/common/.oh-my-zsh/plugins/macports/macports.plugin.zsh
deleted file mode 100644
index 277352e..0000000
--- a/common/.oh-my-zsh/plugins/macports/macports.plugin.zsh
+++ /dev/null
@@ -1,8 +0,0 @@
-#Aliases
-alias pc="sudo port clean --all installed"
-alias pi="sudo port install $1"
-alias psu="sudo port selfupdate"
-alias puni="sudo port uninstall inactive"
-alias puo="sudo port upgrade outdated"
-alias pup="psu && puo"
-
diff --git a/common/.oh-my-zsh/plugins/mercurial/mercurial.plugin.zsh b/common/.oh-my-zsh/plugins/mercurial/mercurial.plugin.zsh
deleted file mode 100644
index 9aa2d16..0000000
--- a/common/.oh-my-zsh/plugins/mercurial/mercurial.plugin.zsh
+++ /dev/null
@@ -1,24 +0,0 @@
-
-# Mercurial
-alias hgc='hg commit'
-alias hgb='hg branch'
-alias hgba='hg branches'
-alias hgbk='hg bookmarks'
-alias hgco='hg checkout'
-alias hgd='hg diff'
-alias hged='hg diffmerge'
-# pull and update
-alias hgi='hg incoming'
-alias hgl='hg pull -u'
-alias hglr='hg pull --rebase'
-alias hgo='hg outgoing'
-alias hgp='hg push'
-alias hgs='hg status'
-# this is the 'git commit --amend' equivalent
-alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
-
-function hg_current_branch() {
-  if [ -d .hg ]; then
-    echo hg:$(hg branch)
-  fi
-}
diff --git a/common/.oh-my-zsh/plugins/mvn/mvn.plugin.zsh b/common/.oh-my-zsh/plugins/mvn/mvn.plugin.zsh
deleted file mode 100644
index 799f6fc..0000000
--- a/common/.oh-my-zsh/plugins/mvn/mvn.plugin.zsh
+++ /dev/null
@@ -1,170 +0,0 @@
-# mvn-color based on https://gist.github.com/1027800
-export BOLD=`tput bold`
-export UNDERLINE_ON=`tput smul`
-export UNDERLINE_OFF=`tput rmul`
-export TEXT_BLACK=`tput setaf 0`
-export TEXT_RED=`tput setaf 1`
-export TEXT_GREEN=`tput setaf 2`
-export TEXT_YELLOW=`tput setaf 3`
-export TEXT_BLUE=`tput setaf 4`
-export TEXT_MAGENTA=`tput setaf 5`
-export TEXT_CYAN=`tput setaf 6`
-export TEXT_WHITE=`tput setaf 7`
-export BACKGROUND_BLACK=`tput setab 0`
-export BACKGROUND_RED=`tput setab 1`
-export BACKGROUND_GREEN=`tput setab 2`
-export BACKGROUND_YELLOW=`tput setab 3`
-export BACKGROUND_BLUE=`tput setab 4`
-export BACKGROUND_MAGENTA=`tput setab 5`
-export BACKGROUND_CYAN=`tput setab 6`
-export BACKGROUND_WHITE=`tput setab 7`
-export RESET_FORMATTING=`tput sgr0`
-
- 
-# Wrapper function for Maven's mvn command.
-mvn-color()
-{
-  # Filter mvn output using sed
-  mvn $@ | sed -e "s/\(\[INFO\]\ \-.*\)/${TEXT_BLUE}${BOLD}\1/g" \
-               -e "s/\(\[INFO\]\ \[.*\)/${RESET_FORMATTING}${BOLD}\1${RESET_FORMATTING}/g" \
-               -e "s/\(\[INFO\]\ BUILD SUCCESSFUL\)/${BOLD}${TEXT_GREEN}\1${RESET_FORMATTING}/g" \
-               -e "s/\(\[WARNING\].*\)/${BOLD}${TEXT_YELLOW}\1${RESET_FORMATTING}/g" \
-               -e "s/\(\[ERROR\].*\)/${BOLD}${TEXT_RED}\1${RESET_FORMATTING}/g" \
-               -e "s/Tests run: \([^,]*\), Failures: \([^,]*\), Errors: \([^,]*\), Skipped: \([^,]*\)/${BOLD}${TEXT_GREEN}Tests run: \1${RESET_FORMATTING}, Failures: ${BOLD}${TEXT_RED}\2${RESET_FORMATTING}, Errors: ${BOLD}${TEXT_RED}\3${RESET_FORMATTING}, Skipped: ${BOLD}${TEXT_YELLOW}\4${RESET_FORMATTING}/g"
- 
-  # Make sure formatting is reset
-  echo -ne ${RESET_FORMATTING}
-}
- 
-# Override the mvn command with the colorized one.
-#alias mvn="mvn-color"
-
-# aliases
-alias mvncie='mvn clean install eclipse:eclipse'
-alias mvnci='mvn clean install'
-alias mvne='mvn eclipse:eclipse'
-alias mvnce='mvn clean eclipse:clean eclipse:eclipse'
-alias mvnd='mvn deploy'
-alias mvnp='mvn package'
-alias mvnc='mvn clean'
-alias mvncom='mvn compile'
-alias mvnt='mvn test'
-alias mvnag='mvn archetype:generate'
-
-function listMavenCompletions { 
-     reply=(
-        # common lifecycle
-        clean process-resources compile process-test-resources test-compile test package verify install deploy site
-        
-        # common plugins
-        deploy failsafe install site surefire checkstyle javadoc jxr pmd ant antrun archetype assembly dependency enforcer gpg help release repository source eclipse idea jetty cargo jboss tomcat tomcat6 tomcat7 exec versions war ear ejb android scm buildnumber nexus repository sonar license hibernate3 liquibase flyway gwt
-       
-        # deploy
-        deploy:deploy-file
-        # failsafe
-        failsafe:integration-test failsafe:verify
-        # install
-        install:install-file
-        # site
-        site:site site:deploy site:run site:stage site:stage-deploy
-        # surefire
-        surefire:test
-            
-        # checkstyle
-        checkstyle:checkstyle checkstyle:check
-        # javadoc
-        javadoc:javadoc javadoc:jar javadoc:aggregate
-        # jxr
-        jxr:jxr
-        # pmd
-        pmd:pmd pmd:cpd pmd:check pmd:cpd-check
-
-        # ant
-        ant:ant ant:clean
-        # antrun
-        antrun:run
-        # archetype
-        archetype:generate archetype:create-from-project archetype:crawl
-        # assembly
-        assembly:single assembly:assembly
-        # dependency
-        dependency:analyze dependency:analyze-dep-mgt dependency:analyze-only dependency:analyze-report dependency:build-classpath dependency:copy dependency:copy-dependencies dependency:get dependency:go-offline dependency:list dependency:purge-local-repository dependency:resolve dependency:resolve-plugins dependency:sources dependency:tree dependency:unpack dependency:unpack-dependencies
-        # enforcer
-        enforcer:enforce
-        # gpg
-        gpg:sign gpg:sign-and-deploy-file
-        # help
-        help:active-profiles help:all-profiles help:describe help:effective-pom help:effective-settings help:evaluate help:expressions help:system
-        # release
-        release:clean release:prepare release:rollback release:perform release:stage release:branch release:update-versions
-        # repository
-        repository:bundle-create repository:bundle-pack
-        # source
-        source:aggregate source:jar source:jar-no-fork
-            
-        # eclipse
-        eclipse:clean eclipse:eclipse
-        # idea
-        idea:clean idea:idea
-            
-        # jetty
-        jetty:run jetty:run-exploded
-        # cargo
-        cargo:start cargo:run cargo:stop cargo:deploy cargo:undeploy cargo:help
-        # jboss
-        jboss:start jboss:stop jboss:deploy jboss:undeploy jboss:redeploy
-        # tomcat
-        tomcat:start tomcat:stop tomcat:deploy tomcat:undeploy tomcat:redeploy
-        # tomcat6
-        tomcat6:run tomcat6:run-war tomcat6:run-war-only tomcat6:stop tomcat6:deploy tomcat6:undeploy
-        # tomcat7
-        tomcat7:run tomcat7:run-war tomcat7:run-war-only tomcat7:deploy
-        # exec
-        exec:exec exec:java
-        # versions
-        versions:display-dependency-updates versions:display-plugin-updates versions:display-property-updates versions:update-parent versions:update-properties versions:update-child-modules versions:lock-snapshots versions:unlock-snapshots versions:resolve-ranges versions:set versions:use-releases versions:use-next-releases versions:use-latest-releases versions:use-next-snapshots versions:use-latest-snapshots versions:use-next-versions versions:use-latest-versions versions:commit versions:revert
-        # scm
-        scm:add scm:checkin scm:checkout scm:update scm:status
-        # buildnumber
-        buildnumber:create buildnumber:create-timestamp buildnumber:help buildnumber:hgchangeset
-
-        # war
-        war:war war:exploded war:inplace war:manifest
-        # ear
-        ear:ear ear:generate-application-xml
-        # ejb
-        ejb:ejb
-        # android
-        android:apk android:apklib android:deploy android:deploy-dependencies android:dex android:emulator-start android:emulator-stop android:emulator-stop-all android:generate-sources android:help android:instrument android:manifest-update android:pull android:push android:redeploy android:run android:undeploy android:unpack android:version-update android:zipalign android:devices
-        # nexus
-        nexus:staging-list nexus:staging-close nexus:staging-drop nexus:staging-release nexus:staging-build-promotion nexus:staging-profiles-list nexus:settings-download
-        # repository
-        repository:bundle-create repository:bundle-pack repository:help
-
-        # sonar
-        sonar:sonar
-        # license
-        license:format license:check
-        # hibernate3
-        hibernate3:hbm2ddl hibernate3:help
-        # liquibase
-        liquibase:changelogSync liquibase:changelogSyncSQL liquibase:clearCheckSums liquibase:dbDoc liquibase:diff liquibase:dropAll liquibase:help liquibase:migrate liquibase:listLocks liquibase:migrateSQL liquibase:releaseLocks liquibase:rollback liquibase:rollbackSQL liquibase:status liquibase:tag liquibase:update liquibase:updateSQL liquibase:updateTestingRollback
-        # flyway
-        flyway:clean flyway:history flyway:init flyway:migrate flyway:status flyway:validate
-        # gwt
-        gwt:browser gwt:clean gwt:compile gwt:compile-report gwt:css gwt:debug gwt:eclipse gwt:eclipseTest gwt:generateAsync gwt:help gwt:i18n gwt:mergewebxml gwt:resources gwt:run gwt:sdkInstall gwt:source-jar gwt:soyc gwt:test
-
-        # options
-        -Dmaven.test.skip=true -DskipTests -Dmaven.surefire.debug -DenableCiProfile -Dpmd.skip=true -Dcheckstyle.skip=true -Dtycho.mode=maven
-
-        # arguments
-        -am -amd -B -C -c -cpu -D -e -emp -ep -f -fae -ff -fn -gs -h -l -N -npr -npu -nsu -o -P -pl -q -rf -s -T -t -U -up -V -v -X
-
-        cli:execute cli:execute-phase 
-        archetype:generate generate-sources 
-        cobertura:cobertura
-        -Dtest= `if [ -d ./src/test/java ] ; then find ./src/test/java -type f -name '*.java' | grep -v svn | sed 's?.*/\([^/]*\)\..*?-Dtest=\1?' ; fi`
-    ); 
-}
-
-compctl -K listMavenCompletions mvn
diff --git a/common/.oh-my-zsh/plugins/mysql-macports/mysql-macports.plugin.zsh b/common/.oh-my-zsh/plugins/mysql-macports/mysql-macports.plugin.zsh
deleted file mode 100644
index c39563f..0000000
--- a/common/.oh-my-zsh/plugins/mysql-macports/mysql-macports.plugin.zsh
+++ /dev/null
@@ -1,8 +0,0 @@
-# commands to control local mysql-server installation
-# paths are for osx installation via macports
-
-alias mysqlstart='sudo /opt/local/share/mysql5/mysql/mysql.server start'
-alias mysqlstop='sudo /opt/local/share/mysql5/mysql/mysql.server stop'
-alias mysqlrestart='sudo /opt/local/share/mysql5/mysql/mysql.server restart'
-
-alias mysqlstatus='mysqladmin5 -u root -p ping'
diff --git a/common/.oh-my-zsh/plugins/nanoc/_nanoc b/common/.oh-my-zsh/plugins/nanoc/_nanoc
deleted file mode 100644
index fde07c3..0000000
--- a/common/.oh-my-zsh/plugins/nanoc/_nanoc
+++ /dev/null
@@ -1,44 +0,0 @@
-#compdef nanoc
-#autoload
-
-# nanoc zsh completion - based on the homebrew zsh completion
-# requires the 'nanoc' gem to be installed
-
-local -a _1st_arguments
-_1st_arguments=(
-  'autocompile:start the autocompiler'
-  'compile:compile items of this site'
-  'create-item:create an item'
-  'create-layout:create a layout'
-  'create-site:create a site'
-  'deploy:deploy the compiled site'
-  'help:show help'
-  'prune:remove files not managed by nanoc from the output directory'
-  'show-data:show data in this site'
-  'show-plugins:show all available plugins'
-  'show-rules:describe the rules for each item'
-  'update:update the data stored by the data source to a newer version'
-  'validate-css:validate the site’s CSS'
-  'validate-html:validate the site’s HTML'
-  'validate-links:validate links in site'
-  'view:start the web server that serves static files'
-  'watch:start the watcher'
-)
-
-local expl
-local -a pkgs installed_pkgs
-
-_arguments \
-  '(--color)--color[enable color]' \
-  '(--debug)--debug[enable debugging]' \
-  '(--help)--help[show the help message and quit]' \
-  '(--no-color)--no-color[disable color]' \
-  '(--verbose)--verbose[make nanoc output more detailed]' \
-  '(--version)--version[show version information and quit]' \
-  '(--warn)--warn[enable warnings]' \
-  '*:: :->subcmds' && return 0
-
-if (( CURRENT == 1 )); then
-  _describe -t commands "nanoc subcommand" _1st_arguments
-  return
-fi
diff --git a/common/.oh-my-zsh/plugins/nanoc/nanoc.plugin.zsh b/common/.oh-my-zsh/plugins/nanoc/nanoc.plugin.zsh
deleted file mode 100644
index 5a50646..0000000
--- a/common/.oh-my-zsh/plugins/nanoc/nanoc.plugin.zsh
+++ /dev/null
@@ -1,9 +0,0 @@
-alias n='nanoc'
-alias na='nanoc autocompile'
-alias nco='nanoc compile'
-alias nci='nanoc create_item'
-alias ncl='nanoc create_layout'
-alias ncs='nanoc create_site'
-alias nd='nanoc deploy'
-alias nv='nanoc view'
-alias nw='nanoc watch'
diff --git a/common/.oh-my-zsh/plugins/node/node.plugin.zsh b/common/.oh-my-zsh/plugins/node/node.plugin.zsh
deleted file mode 100644
index 3bbed6f..0000000
--- a/common/.oh-my-zsh/plugins/node/node.plugin.zsh
+++ /dev/null
@@ -1,5 +0,0 @@
-# Open the node api for your current version to the optional section.
-# TODO: Make the section part easier to use.
-function node-docs {
-	open "http://nodejs.org/docs/$(node --version)/api/all.html#all_$1"
-}
diff --git a/common/.oh-my-zsh/plugins/npm/npm.plugin.zsh b/common/.oh-my-zsh/plugins/npm/npm.plugin.zsh
deleted file mode 100644
index c3eb91d..0000000
--- a/common/.oh-my-zsh/plugins/npm/npm.plugin.zsh
+++ /dev/null
@@ -1 +0,0 @@
-eval "$(npm completion 2>/dev/null)"
diff --git a/common/.oh-my-zsh/plugins/nyan/nyan.plugin.zsh b/common/.oh-my-zsh/plugins/nyan/nyan.plugin.zsh
deleted file mode 100644
index 6321e5f..0000000
--- a/common/.oh-my-zsh/plugins/nyan/nyan.plugin.zsh
+++ /dev/null
@@ -1,5 +0,0 @@
-if [[ -x `which nc` ]]; then
-  alias nyan='nc -v miku.acm.uiuc.edu 23' # nyan cat
-fi
-
-
diff --git a/common/.oh-my-zsh/plugins/osx/_man-preview b/common/.oh-my-zsh/plugins/osx/_man-preview
deleted file mode 100644
index 6cc344a..0000000
--- a/common/.oh-my-zsh/plugins/osx/_man-preview
+++ /dev/null
@@ -1,5 +0,0 @@
-#compdef man-preview
-#autoload
-
-_man
-
diff --git a/common/.oh-my-zsh/plugins/osx/osx.plugin.zsh b/common/.oh-my-zsh/plugins/osx/osx.plugin.zsh
deleted file mode 100644
index 51cd7c1..0000000
--- a/common/.oh-my-zsh/plugins/osx/osx.plugin.zsh
+++ /dev/null
@@ -1,159 +0,0 @@
-# ------------------------------------------------------------------------------
-#          FILE:  osx.plugin.zsh
-#   DESCRIPTION:  oh-my-zsh plugin file.
-#        AUTHOR:  Sorin Ionescu (sorin.ionescu@gmail.com)
-#       VERSION:  1.1.0
-# ------------------------------------------------------------------------------
-
-function tab() {
-  local command="cd \\\"$PWD\\\""
-  (( $# > 0 )) && command="${command}; $*"
-
-  the_app=$(
-    osascript 2>/dev/null </dev/null </dev/null < 0 )) && command="${command}; $*"
-
-  the_app=$(
-    osascript 2>/dev/null </dev/null < 0 )) && command="${command}; $*"
-
-  the_app=$(
-    osascript 2>/dev/null </dev/null </dev/null </dev/null < 0 )) && qlmanage -p $* &>/dev/null &
-}
-
-function man-preview() {
-  man -t "$@" | open -f -a Preview
-}
-
-function trash() {
-  local trash_dir="${HOME}/.Trash"
-  local temp_ifs=$IFS
-  IFS=$'\n'
-  for item in "$@"; do
-    if [[ -e "$item" ]]; then
-      item_name="$(basename $item)"
-      if [[ -e "${trash_dir}/${item_name}" ]]; then
-        mv -f "$item" "${trash_dir}/${item_name} $(date "+%H-%M-%S")"
-      else
-        mv -f "$item" "${trash_dir}/"
-      fi
-    fi
-  done
-  IFS=$temp_ifs
-}
-
-function vncviewer() {
-  open vnc://$@
-}
diff --git a/common/.oh-my-zsh/plugins/pass/_pass b/common/.oh-my-zsh/plugins/pass/_pass
deleted file mode 100644
index f6c1a6c..0000000
--- a/common/.oh-my-zsh/plugins/pass/_pass
+++ /dev/null
@@ -1,119 +0,0 @@
-#compdef pass
-#autoload
-
-# Copyright (C) 2012:
-#    Johan Venant 
-#    Brian Mattern 
-#    Jason A. Donenfeld .
-#    Santiago Borrazás 
-# All Rights Reserved.
-# This file is licensed under the GPLv2+. Please see COPYING for more information.
-
-
-_pass () {
-	local cmd
-	if (( CURRENT > 2)); then
-		cmd=${words[2]}
-		# Set the context for the subcommand.
-		curcontext="${curcontext%:*:*}:pass-$cmd"
-		# Narrow the range of words we are looking at to exclude `pass'
-		(( CURRENT-- ))
-		shift words
-		# Run the completion for the subcommand
-		case "${cmd}" in
-			init)
-				_arguments : \
-					"-r[re-encrypt existing passwords]" \
-					"--reencrypt[re-encrypt existing passwords]"
-				_pass_complete_keys
-				;;
-			ls|list|edit)
-				_pass_complete_entries_with_subdirs
-				;;
-			insert)
-				_arguments : \
-					"-e[echo password to console]" \
-					"--echo[echo password to console]" \
-					"-m[multiline]" \
-					"--multiline[multiline]"
-				_pass_complete_entries_with_subdirs
-				;;
-			generate)
-				_arguments : \
-					"-n[don't include symbols in password]" \
-					"--no-symbols[don't include symbols in password]" \
-					"-c[copy password to the clipboard]" \
-					"--clip[copy password to the clipboard]"
-				_pass_complete_entries_with_subdirs
-				;;
-			rm)
-				_arguments : \
-					"-f[force deletion]" \
-					"--force[force deletion]" \
-					"-r[recursively delete]" \
-					"--recursive[recursively delete]"
-					_pass_complete_entries_with_subdirs
-				;;
-			git)
-				local -a subcommands
-				subcommands=(
-					"init:Initialize git repository"
-					"push:Push to remote repository"
-					"pull:Pull from remote repository"
-					"config:Show git config"
-					"log:Show git log"
-					"reflog:Show git reflog"
-				)
-				_describe -t commands 'pass git' subcommands
-				;;
-			show|*)
-				_pass_cmd_show
-				;;
-		esac
-	else
-		local -a subcommands
-		subcommands=(
-			"init:Initialize new password storage"
-			"ls:List passwords"
-			"show:Decrypt and print a password"
-			"insert:Insert a new password"
-			"generate:Generate a new password using pwgen"
-			"edit:Edit a password with \$EDITOR"
-			"rm:Remove the password"
-			"git:Call git on the password store"
-			"version:Output version information"
-			"help:Output help message"
-		)
-		_describe -t commands 'pass' subcommands
-		_arguments : \
-			"--version[Output version information]" \
-			"--help[Output help message]"
-		_pass_cmd_show
-	fi
-}
-
-_pass_cmd_show () {
-	_arguments : \
-		"-c[put it on the clipboard]" \
-		"--clip[put it on the clipboard]"
-	_pass_complete_entries
-}
-_pass_complete_entries_helper () {
-	local IFS=$'\n'
-	local prefix="${PASSWORD_STORE_DIR:-$HOME/.password-store}"
-	_values -C 'passwords' $(find "$prefix" \( -name .git -o -name .gpg-id \) -prune -o $@ -print | sed -e "s#${prefix}.##" -e 's#\.gpg##' | sort)
-}
-
-_pass_complete_entries_with_subdirs () {
-	_pass_complete_entries_helper
-}
-
-_pass_complete_entries () {
-	_pass_complete_entries_helper -type f
-}
-
-_pass_complete_keys () {
-	local IFS=$'\n'
-	# Extract names and email addresses from gpg --list-keys
-	_values 'gpg keys' $(gpg2 --list-secret-keys --with-colons | cut -d : -f 10 | sort -u | sed '/^$/d')
-}
diff --git a/common/.oh-my-zsh/plugins/per-directory-history/per-directory-history.plugin.zsh b/common/.oh-my-zsh/plugins/per-directory-history/per-directory-history.plugin.zsh
deleted file mode 100644
index 61e8b5a..0000000
--- a/common/.oh-my-zsh/plugins/per-directory-history/per-directory-history.plugin.zsh
+++ /dev/null
@@ -1,149 +0,0 @@
-#!/usr/bin/env zsh
-#
-# This is a implementation of per directory history for zsh, some 
-# implementations of which exist in bash[1,2].  It also implements 
-# a per-directory-history-toggle-history function to change from using the 
-# directory history to using the global history.  In both cases the history is 
-# always saved to both the global history and the directory history, so the 
-# toggle state will not effect the saved histories.  Being able to switch 
-# between global and directory histories on the fly is a novel feature as far 
-# as I am aware.
-#
-#-------------------------------------------------------------------------------
-# Configuration
-#-------------------------------------------------------------------------------
-#
-# HISTORY_BASE a global variable that defines the base directory in which the 
-# directory histories are stored
-#
-#-------------------------------------------------------------------------------
-# History
-#-------------------------------------------------------------------------------
-#
-# The idea/inspiration for a per directory history is from Stewart MacArthur[1] 
-# and Dieter[2], the implementation idea is from Bart Schaefer on the the zsh 
-# mailing list[3].  The implementation is by Jim Hester in September 2012.
-#
-# [1]: http://www.compbiome.com/2010/07/bash-per-directory-bash-history.html
-# [2]: http://dieter.plaetinck.be/per_directory_bash
-# [3]: http://www.zsh.org/mla/users/1997/msg00226.html
-#
-################################################################################
-#
-# Copyright (c) 2012 Jim Hester
-#
-# This software is provided 'as-is', without any express or implied warranty.  
-# In no event will the authors be held liable for any damages arising from the 
-# use of this software.
-#
-# Permission is granted to anyone to use this software for any purpose, 
-# including commercial applications, and to alter it and redistribute it 
-# freely, subject to the following restrictions:
-#
-# 1. The origin of this software must not be misrepresented; you must not claim 
-# that you wrote the original software. If you use this software in a product, 
-# an acknowledgment in the product documentation would be appreciated but is 
-# not required.
-#
-# 2. Altered source versions must be plainly marked as such, and must not be 
-# misrepresented as being the original software.
-#
-# 3. This notice may not be removed or altered from any source distribution..
-#
-################################################################################
-
-#-------------------------------------------------------------------------------
-# configuration, the base under which the directory histories are stored
-#-------------------------------------------------------------------------------
-
-[[ -z $HISTORY_BASE ]] && HISTORY_BASE="$HOME/.directory_history"
-
-#-------------------------------------------------------------------------------
-# toggle global/directory history used for searching - ctrl-G by default
-#-------------------------------------------------------------------------------
-
-function per-directory-history-toggle-history() {
-  if [[ $_per_directory_history_is_global == true ]]; then
-    _per-directory-history-set-directory-history
-    print "\nusing local history\n"
-  else
-    _per-directory-history-set-global-history
-    print "\nusing global history\n"
-  fi
-  zle .push-line
-  zle .accept-line
-}
-
-autoload per-directory-history-toggle-history
-zle -N per-directory-history-toggle-history
-bindkey '^G' per-directory-history-toggle-history
-
-#-------------------------------------------------------------------------------
-# implementation details
-#-------------------------------------------------------------------------------
-
-_per_directory_history_directory="$HISTORY_BASE${PWD:A}/history"
-
-function _per-directory-history-change-directory() {
-  _per_directory_history_directory="$HISTORY_BASE${PWD:A}/history"
-  mkdir -p ${_per_directory_history_directory:h}
-  if [[ $_per_directory_history_is_global == false ]]; then
-    #save to the global history
-    fc -AI $HISTFILE
-    #save history to previous file
-    local prev="$HISTORY_BASE${OLDPWD:A}/history"
-    mkdir -p ${prev:h}
-    fc -AI $prev
-
-    #discard previous directory's history
-    local original_histsize=$HISTSIZE
-    HISTSIZE=0
-    HISTSIZE=$original_histsize
-    
-    #read history in new file
-    if [[ -e $_per_directory_history_directory ]]; then
-      fc -R $_per_directory_history_directory
-    fi
-  fi
-}
-
-function _per-directory-history-addhistory() {
-  print -sr -- ${1%%$'\n'}
-  fc -p $_per_directory_history_directory
-}
-
-
-function _per-directory-history-set-directory-history() {
-  if [[ $_per_directory_history_is_global == true ]]; then
-    fc -AI $HISTFILE
-    local original_histsize=$HISTSIZE
-    HISTSIZE=0
-    HISTSIZE=$original_histsize
-    if [[ -e "$_per_directory_history_directory" ]]; then
-      fc -R "$_per_directory_history_directory"
-    fi
-  fi
-  _per_directory_history_is_global=false
-}
-function _per-directory-history-set-global-history() {
-  if [[ $_per_directory_history_is_global == false ]]; then
-    fc -AI $_per_directory_history_directory
-    local original_histsize=$HISTSIZE
-    HISTSIZE=0
-    HISTSIZE=$original_histsize
-    if [[ -e "$HISTFILE" ]]; then
-      fc -R "$HISTFILE"
-    fi
-  fi
-  _per_directory_history_is_global=true
-}
-
-
-#add functions to the exec list for chpwd and zshaddhistory
-chpwd_functions=(${chpwd_functions[@]} "_per-directory-history-change-directory")
-zshaddhistory_functions=(${zshaddhistory_functions[@]} "_per-directory-history-addhistory")
-
-#start in directory mode
-mkdir -p ${_per_directory_history_directory:h}
-_per_directory_history_is_global=true
-_per-directory-history-set-directory-history
diff --git a/common/.oh-my-zsh/plugins/perl/perl.plugin.zsh b/common/.oh-my-zsh/plugins/perl/perl.plugin.zsh
deleted file mode 100644
index f94c419..0000000
--- a/common/.oh-my-zsh/plugins/perl/perl.plugin.zsh
+++ /dev/null
@@ -1,62 +0,0 @@
-# https://github.com/dbbolton
-#
-# Below are some useful Perl-related aliases/functions that I use with zsh.
-
-
-# Aliases ###################################################################
-
-# perlbrew ########
-alias pbi='perlbrew install'
-alias pbl='perlbrew list'
-alias pbo='perlbrew off'
-alias pbs='perlbrew switch'
-alias pbu='perlbrew use'
-
-# Perl ############
-
-# perldoc`
-alias pd='perldoc'
-
-# use perl like awk/sed
-alias ple='perl -wlne'
-
-# show the latest stable release of Perl
-alias latest-perl='curl -s http://www.perl.org/get.html | perl -wlne '\''if (/perl\-([\d\.]+)\.tar\.gz/) { print $1; exit;}'\'
-
-
-
-# Functions #################################################################
-
-# newpl - creates a basic Perl script file and opens it with $EDITOR 
-newpl () {
-	# set $EDITOR to 'vim' if it is undefined
-	[[ -z $EDITOR ]] && EDITOR=vim
-
-	# if the file exists, just open it
-	[[ -e $1 ]] && print "$1 exists; not modifying.\n" && $EDITOR $1
-
-	# if it doesn't, make it, and open it
-	[[ ! -e $1 ]] && print '#!/usr/bin/perl'"\n"'use strict;'"\n"'use warnings;'\
-		"\n\n" > $1 && $EDITOR $1
-}
-
-
-# pgs - Perl Global Substitution
-# find pattern		= 1st arg
-# replace pattern	= 2nd arg
-# filename			= 3rd arg
-pgs() { # [find] [replace] [filename]
-    perl -i.orig -pe 's/'"$1"'/'"$2"'/g' "$3"
-}
-
-
-# Perl grep, because 'grep -P' is terrible. Lets you work with pipes or files.
-prep() { # [pattern] [filename unless STDOUT]
-    perl -nle 'print if /'"$1"'/;' $2
-}
-
-# say - append a newline to 'print'
-say() {
-    print "$1\n"
-}
-
diff --git a/common/.oh-my-zsh/plugins/phing/phing.plugin.zsh b/common/.oh-my-zsh/plugins/phing/phing.plugin.zsh
deleted file mode 100644
index 795f1db..0000000
--- a/common/.oh-my-zsh/plugins/phing/phing.plugin.zsh
+++ /dev/null
@@ -1,16 +0,0 @@
-_phing_does_target_list_need_generating () {
-  [ ! -f .phing_targets ] && return 0;
-  [ .phing_targets -nt build.xml ] && return 0;
-  return 1;
-}
-
-_phing () {
-  if [ -f build.xml ]; then
-    if _phing_does_target_list_need_generating; then
-      phing -l |grep -v ":$" |grep -v "^-*$" > .phing_targets
-    fi
-    compadd `cat .phing_targets`
-  fi
-}
-
-compdef _phing phing
diff --git a/common/.oh-my-zsh/plugins/pip/_pip b/common/.oh-my-zsh/plugins/pip/_pip
deleted file mode 100644
index df53ba5..0000000
--- a/common/.oh-my-zsh/plugins/pip/_pip
+++ /dev/null
@@ -1,74 +0,0 @@
-#compdef pip
-#autoload
-
-# pip zsh completion, based on homebrew completion
-
-_pip_all() {
-  # we cache the list of packages (originally from the macports plugin)
-  if (( ! $+piplist )); then
-    echo -n " (caching package index...)"
-	piplist=($(pip search * | cut -d ' ' -f 1 | tr '[A-Z]' '[a-z]'))
-  fi
-}
-
-_pip_installed() {
-  installed_pkgs=(`pip freeze | cut -d '=' -f 1`)
-}
-
-local -a _1st_arguments
-_1st_arguments=(
-  'bundle:create pybundles (archives containing multiple packages)'
-  'freeze:output all currently installed packages (exact versions) to stdout'
-  'help:show available commands'
-  'install:install packages'
-  'search:search PyPI'
-  'uninstall:uninstall packages'
-  'unzip:unzip individual packages'
-  'zip:zip individual packages'
-)
-
-local expl
-local -a all_pkgs installed_pkgs
-
-_arguments \
-  '(--version)--version[show version number of program and exit]' \
-  '(-h --help)'{-h,--help}'[show help]' \
-  '(-E --environment)'{-E,--environment}'[virtualenv environment to run pip in]' \
-  '(-s --enable-site-packages)'{-s,--enable-site-packages}'[include site-packages in virtualenv]' \
-  '(-v --verbose)'{-v,--verbose}'[give more output]' \
-  '(-q --quiet)'{-q,--quiet}'[give less output]' \
-  '(--log)--log[log file location]' \
-  '(--proxy)--proxy[proxy in form user:passwd@proxy.server:port]' \
-  '(--timeout)--timeout[socket timeout (default 15s)]' \
-  '*:: :->subcmds' && return 0
-
-if (( CURRENT == 1 )); then
-  _describe -t commands "pip subcommand" _1st_arguments
-  return
-fi
-
-case "$words[1]" in
-  search)
-    _arguments \
-      '(--index)--index[base URL of Python Package Index]' ;;
-  freeze)
-    _arguments \
-      '(-l --local)'{-l,--local}'[report only virtualenv packages]' ;;
-  install)
-  	_arguments \
-      '(-U --upgrade)'{-U,--upgrade}'[upgrade all packages to the newest available version]' \
-      '(-f --find-links)'{-f,--find-links}'[URL for finding packages]' \
-      '(--no-deps --no-dependencies)'{--no-deps,--no-dependencies}'[iIgnore package dependencies]' \
-      '(--no-install)--no-install[only download packages]' \
-      '(--no-download)--no-download[only install downloaded packages]' \
-      '(--install-option)--install-option[extra arguments to be supplied to the setup.py]' \
-      '1: :->packages' &&  return 0
-     
-      if [[ "$state" == packages ]]; then
-        _pip_all
-        _wanted piplist expl 'packages' compadd -a piplist
-      fi ;;
-  uninstall)
-    _pip_installed
-    _wanted installed_pkgs expl 'installed packages' compadd -a installed_pkgs ;;
-esac
diff --git a/common/.oh-my-zsh/plugins/pj/pj.plugin.zsh b/common/.oh-my-zsh/plugins/pj/pj.plugin.zsh
deleted file mode 100644
index ba3765b..0000000
--- a/common/.oh-my-zsh/plugins/pj/pj.plugin.zsh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/zsh
-
-#
-# Original idea by DefV (Jan De Poorter)
-# Source: https://gist.github.com/pjaspers/368394#comment-1016
-#
-# Usage:
-#  - Set `$PROJECT_PATHS` in your ~/.zshrc
-#    e.g.: PROJECT_PATHS=(~/src ~/work)
-#  - In ZSH you now can open a project directory with the command: `pj my-project`
-#    the plugin will locate the `my-project` directory in one of the $PROJECT_PATHS
-#    Also tab completion is supported.
-#  - `pjo my-project` will open the directory in $EDITOR
-# 
-
-function pj() {
-    cmd="cd"
-    file=$1
-
-    if [[ "open" == "$file" ]] then
-        file=$2
-        cmd=(${(s: :)EDITOR})
-    fi
-
-    for project in $PROJECT_PATHS; do
-        if [[ -d $project/$file ]] then
-            $cmd "$project/$file"
-            unset project # Unset project var
-            return
-        fi
-    done
-
-    echo "No such project $1"
-}
-
-alias pjo="pj open"
-
-function _pj () {
-    compadd `/bin/ls -l $PROJECT_PATHS 2>/dev/null | awk '{ print $9 }'`
-}
-
-compdef _pj pj
diff --git a/common/.oh-my-zsh/plugins/pow/pow.plugin.zsh b/common/.oh-my-zsh/plugins/pow/pow.plugin.zsh
deleted file mode 100644
index 399a54c..0000000
--- a/common/.oh-my-zsh/plugins/pow/pow.plugin.zsh
+++ /dev/null
@@ -1,66 +0,0 @@
-# Restart a rack app running under pow
-# http://pow.cx/
-#
-# Adds a kapow command that will restart an app
-#
-#   $ kapow myapp
-#
-# Supports command completion.
-#
-# If you are not already using completion you might need to enable it with
-# 
-#    autoload -U compinit compinit
-#
-# Changes:
-#
-# Defaults to the current application, and will walk up the tree to find 
-# a config.ru file and restart the corresponding app
-#
-# Will Detect if a app does not exist in pow and print a (slightly) helpful 
-# error message
-
-rack_root_detect(){
-  setopt chaselinks
-  local orgdir=$(pwd)
-  local basedir=$(pwd)
-
-  while [[ $basedir != '/' ]]; do
-    test -e "$basedir/config.ru" && break
-    builtin cd ".." 2>/dev/null
-    basedir="$(pwd)"
-  done
-
-  builtin cd $orgdir 2>/dev/null
-  [[ ${basedir} == "/" ]] && return 1
-  echo `basename $basedir | sed -E "s/.(com|net|org)//"`
-}
-
-kapow(){
-  local vhost=$1
-  [ ! -n "$vhost" ] && vhost=$(rack_root_detect)
-  if [ ! -h ~/.pow/$vhost ]
-  then
-    echo "pow: This domain isn’t set up yet. Symlink your application to ${vhost} first."
-    return 1
-  fi
-
-  [ ! -d ~/.pow/${vhost}/tmp ] && mkdir -p ~/.pow/$vhost/tmp
-  touch ~/.pow/$vhost/tmp/restart.txt;
-  [ $? -eq 0 ] &&  echo "pow: restarting $vhost.dev"
-}
-compctl -W ~/.pow -/ kapow
-
-powit(){
-	local basedir=$(pwd)
-  local vhost=$1
-  [ ! -n "$vhost" ] && vhost=$(rack_root_detect)
-  if [ ! -h ~/.pow/$vhost ]
-	then
-		echo "pow: Symlinking your app with pow. ${vhost}"
-	  [ ! -d ~/.pow/${vhost} ] && ln -s $basedir ~/.pow/$vhost
-    return 1
-  fi
-}
-
-# View the standard out (puts) from any pow app
-alias kaput="tail -f ~/Library/Logs/Pow/apps/*"
diff --git a/common/.oh-my-zsh/plugins/powder/_powder b/common/.oh-my-zsh/plugins/powder/_powder
deleted file mode 100644
index 84e260a..0000000
--- a/common/.oh-my-zsh/plugins/powder/_powder
+++ /dev/null
@@ -1,4 +0,0 @@
-#compdef powder
-#autoload
-
-compadd `powder help | grep powder | cut -d " " -f 4`
diff --git a/common/.oh-my-zsh/plugins/powify/_powify b/common/.oh-my-zsh/plugins/powify/_powify
deleted file mode 100644
index d23c465..0000000
--- a/common/.oh-my-zsh/plugins/powify/_powify
+++ /dev/null
@@ -1,55 +0,0 @@
-#compdef powify
-
-_powify_all_servers() {
-  all_servers=(`ls $HOME/.pow/`)
-}
-
-local -a all_servers
-
-local -a _1st_arguments
-_1st_arguments=(
-  'server:server specific commands'
-  'utils:manage powify'
-  'create:creates a pow app from the current directory (to change the name append name as an argument)'
-  'destroy:destroys the pow app linked to the current directory'
-  'restart:restarts the pow app linked to the current directory'
-  'always_restart:reload the pow app after each request'
-  'always_restart_off:do not reload the pow app after each request'
-  'rename:rename the current pow app to [NAME] or renmae [OLD] to [NEW]'
-  'environment:run the this pow app in a different environment (aliased `env`)'
-  'browse:opens and navigates the default browser to this app'
-  'logs:tail the application logs'
-)
-
-_arguments '*:: :->command'
-
-if (( CURRENT == 1 )); then
-  _describe -t commands "powify command" _1st_arguments
-  return
-fi
-
-case "$words[1]" in
-  server)
-    _values \
-      'install[install pow server]' \
-      'reinstall[reinstall pow server]' \
-      'update[update pow server]' \
-      'uninstall[uninstall pow server]' \
-      'list[list all pow apps]' \
-      'start[start the pow server]' \
-      'stop[stop the pow server]' \
-      'restart[restart the pow server]' \
-      'host[adds all pow apps to /etc/hosts file]' \
-      'unhost[removes all pow apps from /etc/hosts file]' \
-      'status[print the current server status]' \
-      'config[print the current server configuration]' \
-      'logs[tails the pow server logs]' ;;
-  utils)
-    _values \
-      'install[install powify.dev server management tool]' \
-      'reinstall[reinstall powify.dev server management tool]' \
-      'uninstall[uninstall powify.dev server management tool]' ;;
-  destroy|restart|always_restart|always_restart_off|rename|browse|logs)
-    _powify_all_servers
-    _wanted all_servers expl 'all pow servers' compadd -a all_servers ;;
-esac
diff --git a/common/.oh-my-zsh/plugins/profiles/profiles.plugin.zsh b/common/.oh-my-zsh/plugins/profiles/profiles.plugin.zsh
deleted file mode 100644
index 8faae6b..0000000
--- a/common/.oh-my-zsh/plugins/profiles/profiles.plugin.zsh
+++ /dev/null
@@ -1,12 +0,0 @@
-# You will probably want to list this plugin as the first in your .zshrc.
-
-# This will look for a custom profile for the local machine and each domain or
-# subdomain it belongs to. (e.g. com, example.com and foo.example.com)
-parts=(${(s:.:)$(hostname)})
-for i in {${#parts}..1}; do
-  profile=${(j:.:)${parts[$i,${#parts}]}}
-  file=$ZSH_CUSTOM/profiles/$profile
-  if [ -f $file ]; then
-    source $file
-  fi
-done
diff --git a/common/.oh-my-zsh/plugins/python/python.plugin.zsh b/common/.oh-my-zsh/plugins/python/python.plugin.zsh
deleted file mode 100644
index 852c8b9..0000000
--- a/common/.oh-my-zsh/plugins/python/python.plugin.zsh
+++ /dev/null
@@ -1,12 +0,0 @@
-# Find python file
-alias pyfind='find . -name "*.py"'
-
-# Remove python compiled byte-code in either current directory or in a
-# list of specified directories
-function pyclean() {
-    ZSH_PYCLEAN_PLACES=${*:-'.'}
-    find ${ZSH_PYCLEAN_PLACES} -type f -name "*.py[co]" -delete
-}
-
-# Grep among .py files
-alias pygrep='grep --include="*.py"'
diff --git a/common/.oh-my-zsh/plugins/rails/rails.plugin.zsh b/common/.oh-my-zsh/plugins/rails/rails.plugin.zsh
deleted file mode 100644
index 0139d22..0000000
--- a/common/.oh-my-zsh/plugins/rails/rails.plugin.zsh
+++ /dev/null
@@ -1,19 +0,0 @@
-alias ss='thin --stats "/thin/stats" start'
-alias sg='ruby script/generate'
-alias sd='ruby script/destroy'
-alias sp='ruby script/plugin'
-alias sr='ruby script/runner'
-alias ssp='ruby script/spec'
-alias rdbm='rake db:migrate'
-alias rdbtp='rake db:test:prepare'
-alias migrate='rake db:migrate && rake db:test:prepare'
-alias sc='ruby script/console'
-alias sd='ruby script/server --debugger'
-alias devlog='tail -f log/development.log'
-alias -g RET='RAILS_ENV=test'
-alias -g REP='RAILS_ENV=production'
-alias -g RED='RAILS_ENV=development'
-
-function remote_console() {
-  /usr/bin/env ssh $1 "( cd $2 && ruby script/console production )"
-}
diff --git a/common/.oh-my-zsh/plugins/rails3/rails3.plugin.zsh b/common/.oh-my-zsh/plugins/rails3/rails3.plugin.zsh
deleted file mode 100644
index a269787..0000000
--- a/common/.oh-my-zsh/plugins/rails3/rails3.plugin.zsh
+++ /dev/null
@@ -1,26 +0,0 @@
-# Rails 3 aliases, backwards-compatible with Rails 2.
-
-function _rails_command () {
-  if [ -e "script/server" ]; then
-    ruby script/$@
-  else
-    ruby script/rails $@
-  fi
-}
-
-alias rc='_rails_command console'
-alias rd='_rails_command destroy'
-alias rdb='_rails_command dbconsole'
-alias rdbm='rake db:migrate db:test:clone'
-alias rg='_rails_command generate'
-alias rgm='_rails_command generate migration'
-alias rp='_rails_command plugin'
-alias ru='_rails_command runner'
-alias rs='_rails_command server'
-alias rsd='_rails_command server --debugger'
-alias devlog='tail -f log/development.log'
-alias rdm='rake db:migrate'
-alias rdr='rake db:rollback'
-alias -g RET='RAILS_ENV=test'
-alias -g REP='RAILS_ENV=production'
-alias -g RED='RAILS_ENV=development'
diff --git a/common/.oh-my-zsh/plugins/rails4/rails4.plugin.zsh b/common/.oh-my-zsh/plugins/rails4/rails4.plugin.zsh
deleted file mode 100644
index fce827e..0000000
--- a/common/.oh-my-zsh/plugins/rails4/rails4.plugin.zsh
+++ /dev/null
@@ -1,30 +0,0 @@
-# Rails 4 aliases
-
-function _rails_command () {
-  if [ -e "script/server" ]; then
-    ruby script/$@
-  elif [ -e "script/rails" ]; then
-    ruby script/rails $@
-  else
-    ruby bin/rails $@  
-  fi
-}
-
-alias rc='_rails_command console'
-alias rd='_rails_command destroy'
-alias rdb='_rails_command dbconsole'
-alias rdbm='rake db:migrate db:test:clone'
-alias rg='_rails_command generate'
-alias rgm='_rails_command generate migration'
-alias rp='_rails_command plugin'
-alias ru='_rails_command runner'
-alias rs='_rails_command server'
-alias rsd='_rails_command server --debugger'
-alias devlog='tail -f log/development.log'
-alias rdm='rake db:migrate'
-alias rdc='rake db:create'
-alias rdr='rake db:rollback'
-alias rds='rake db:seed'
-alias rlc='rake log:clear'
-alias rn='rake notes'
-alias rr='rake routes'
diff --git a/common/.oh-my-zsh/plugins/rake/rake.plugin.zsh b/common/.oh-my-zsh/plugins/rake/rake.plugin.zsh
deleted file mode 100644
index 16b933c..0000000
--- a/common/.oh-my-zsh/plugins/rake/rake.plugin.zsh
+++ /dev/null
@@ -1,6 +0,0 @@
-alias rake="noglob rake" # allows square brackts for rake task invocation
-alias brake='noglob bundle exec rake' # execute the bundled rake gem
-alias srake='noglob sudo rake' # noglob must come before sudo
-alias sbrake='noglob sudo bundle exec rake' # altogether now ... 
-
-
diff --git a/common/.oh-my-zsh/plugins/rbenv/rbenv.plugin.zsh b/common/.oh-my-zsh/plugins/rbenv/rbenv.plugin.zsh
deleted file mode 100644
index 78f76c3..0000000
--- a/common/.oh-my-zsh/plugins/rbenv/rbenv.plugin.zsh
+++ /dev/null
@@ -1,57 +0,0 @@
-_homebrew-installed() {
-  type brew &> /dev/null
-}
-
-_rbenv-from-homebrew-installed() {
-  brew --prefix rbenv &> /dev/null
-}
-
-FOUND_RBENV=0
-rbenvdirs=("$HOME/.rbenv" "/usr/local/rbenv" "/opt/rbenv")
-if _homebrew-installed && _rbenv-from-homebrew-installed ; then
-    rbenvdirs=($(brew --prefix rbenv) "${rbenvdirs[@]}")
-fi
-
-for rbenvdir in "${rbenvdirs[@]}" ; do
-  if [ -d $rbenvdir/bin -a $FOUND_RBENV -eq 0 ] ; then
-    FOUND_RBENV=1
-    export RBENV_ROOT=$rbenvdir
-    export PATH=${rbenvdir}/bin:$PATH
-    eval "$(rbenv init --no-rehash - zsh)"
-
-    alias rubies="rbenv versions"
-    alias gemsets="rbenv gemset list"
-
-    function current_ruby() {
-      echo "$(rbenv version-name)"
-    }
-
-    function current_gemset() {
-      echo "$(rbenv gemset active 2&>/dev/null | sed -e ":a" -e '$ s/\n/+/gp;N;b a' | head -n1)"
-    }
-
-    function gems {
-      local rbenv_path=$(rbenv prefix)
-      gem list $@ | sed -E \
-        -e "s/\([0-9a-z, \.]+( .+)?\)/$fg[blue]&$reset_color/g" \
-        -e "s|$(echo $rbenv_path)|$fg[magenta]\$rbenv_path$reset_color|g" \
-        -e "s/$current_ruby@global/$fg[yellow]&$reset_color/g" \
-        -e "s/$current_ruby$current_gemset$/$fg[green]&$reset_color/g"
-    }
-
-    function rbenv_prompt_info() {
-      if [[ -n $(current_gemset) ]] ; then
-        echo "$(current_ruby)@$(current_gemset)"
-      else
-        echo "$(current_ruby)"
-      fi
-    }
-  fi
-done
-unset rbenvdir
-
-if [ $FOUND_RBENV -eq 0 ] ; then
-  alias rubies='ruby -v'
-  function gemsets() { echo 'not supported' }
-  function rbenv_prompt_info() { echo "system: $(ruby -v | cut -f-2 -d ' ')" }
-fi
diff --git a/common/.oh-my-zsh/plugins/rbfu/rbfu.plugin.zsh b/common/.oh-my-zsh/plugins/rbfu/rbfu.plugin.zsh
deleted file mode 100644
index 0084852..0000000
--- a/common/.oh-my-zsh/plugins/rbfu/rbfu.plugin.zsh
+++ /dev/null
@@ -1,42 +0,0 @@
-# Enables rbfu with --auto option, if available.
-#
-# Also provides a command to list all installed/available
-# rubies. To ensure compatibility with themes, creates the
-# rvm_prompt_info function to return the $RBFU_RUBY_VERSION
-# version.
-
-command -v rbfu &>/dev/null
-
-if [[ $? -eq 0 ]]; then
-  eval "$(rbfu --init --auto)"
-
-  # Internal: Print ruby version details, if it's currently
-  # active etc.
-  function _rbfu_rubies_print() {
-    local rb rb_out
-    rb=$(basename $1)
-    rb_out="$rb"
-    [[ -h $1 ]] && rb_out="$rb_out${fg[green]}@${reset_color}"
-    [[ "x$rb" == "x$2" ]] && rb_out="${fg[red]}$rb_out ${fg[red]}*${reset_color}"
-    echo $rb_out
-  }
-
-  # Public: Provide a list with all available rubies, this basically depends
-  # on `ls -1` and .rfbu/rubies. Highlights the currently active ruby version
-  # and aliases.
-  function rbfu-rubies() {
-    local rbfu_dir active_rb
-    rbfu_dir=$RBFU_RUBIES
-    active_rb=$RBFU_RUBY_VERSION
-    [[ -z "$rbfu_dir" ]] && rbfu_dir="${HOME}/.rbfu/rubies"
-    [[ -z "$active_rb" ]] && active_rb="system"
-    _rbfu_rubies_print "${rbfu_dir}/system" $active_rb
-    for rb in $(ls -1 $rbfu_dir); do
-      _rbfu_rubies_print "${rbfu_dir}/${rb}" $active_rb
-    done
-  }
-
-  # Public: Create rvm_prompt_info command for themes compatibility, unless
-  # it has already been defined.
-  [ ! -x rvm_prompt_info ] && function rvm_prompt_info() { echo "${RBFU_RUBY_VERSION:=system}" }
-fi
diff --git a/common/.oh-my-zsh/plugins/rebar/_rebar b/common/.oh-my-zsh/plugins/rebar/_rebar
deleted file mode 100644
index 7ac5a51..0000000
--- a/common/.oh-my-zsh/plugins/rebar/_rebar
+++ /dev/null
@@ -1,79 +0,0 @@
-#compdef rebar
-
-local curcontext=$curcontext state ret=1
-typeset -ga _rebar_global_opts
-
-_rebar_global_opts=(
-  '(--help -h)'{--help,-h}'[Show the program options]'
-  '(--commands -c)'{--commands,-c}'[Show available commands]'
-  '(--version -V)'{--version,-V}'[Show version information]'
-  '(-vvv -vv -v)'--verbose+'[Verbosity level. Default: 0]:verbosity level:(0 1 2 3)'
-  '(-vvv)-v[Slightly more verbose output]'
-  '(-vvv)-vv[More verbose output]'
-  '(-v -vv)-vvv[Most verbose output]'
-  '(--force -f)'{--force,-f}'[Force]'
-  '-D+[Define compiler macro]'
-  '(--jobs -j)'{--jobs+,-j+}'[Number of concurrent workers a command may use. Default: 3]:workers:(1 2 3 4 5 6 7 8 9)'
-  '(--config -C)'{--config,-C}'[Rebar config file to use]:files:_files'
-  '(--profile -p)'{--profile,-p}'[Profile this run of rebar]'
-  '(--keep-going -k)'{--keep-going,-k}'[Keep running after a command fails]'
-)
-
-_rebar () {
-  _arguments -C $_rebar_global_opts \
-    '*::command and variable:->cmd_and_var' \
-    && return
-
-  case $state in
-    cmd_and_var)
-      _values -S = 'variables' \
-        'clean[Clean]' \
-        'compile[Compile sources]' \
-        'create[Create skel based on template and vars]' \
-        'create-app[Create simple app skel]' \
-        'create-node[Create simple node skel]' \
-        'list-template[List avaiavle templates]' \
-        'doc[Generate Erlang program documentation]' \
-        'check-deps[Display to be fetched dependencies]' \
-        'get-deps[Fetch dependencies]' \
-        'update-deps[Update fetched dependencies]' \
-        'delete-deps[Delete fetched dependencies]' \
-        'list-deps[List dependencies]' \
-        'generate[Build release with reltool]' \
-        'overlay[Run reltool overlays only]' \
-        'generate-appups[Generate appup files]' \
-        'generate-upgrade[Build an upgrade package]' \
-        'eunit[Run eunit tests]' \
-        'ct[Run common_test suites]' \
-        'qc[Test QuickCheck properties]' \
-        'xref[Run cross reference analysis]' \
-        'help[Show the program options]' \
-        'version[Show version information]' \
-        'apps[Application names to process]:' \
-        'case[Common Test case]:' \
-        'dump_spec[Dump reltool spec]:' \
-        'jobs[Number of workers]::workers:(0 1 2 3 4 5 6 7 8 9)' \
-        'suites[Common Test suites]::suite name:_path_files -W "(src test)" -g "*.erl(:r)"' \
-        'verbose[Verbosity level]::verbosity level:(0 1 2 3)' \
-        'appid[Application id]:' \
-        'previous_release[Previous release path]:' \
-        'nodeid[Node id]:' \
-        'root_dir[Reltool config root directory]::directory:_files -/' \
-        'skip_deps[Skip deps]::flag:(true false)' \
-        'skip_apps[Application names to not process]::flag:(true false)' \
-        'template[Template name]:' \
-        'template_dir[Template directory]::directory:_files -/' \
-        && ret=0
-      ;;
-  esac
-}
-
-_rebar
-
-# Local variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# sh-indent-comment: t
-# indent-tabs-mode: nil
-# End:
-# ex: sw=2 ts=2 et filetype=sh
diff --git a/common/.oh-my-zsh/plugins/redis-cli/_redis-cli b/common/.oh-my-zsh/plugins/redis-cli/_redis-cli
deleted file mode 100644
index 1569f29..0000000
--- a/common/.oh-my-zsh/plugins/redis-cli/_redis-cli
+++ /dev/null
@@ -1,142 +0,0 @@
-#compdef redis-cli rec
-#autoload
-
-#redis cli completion, based off homebrew completion (ref. 2011-04-14)
-
-local -a _1st_arguments
-_1st_arguments=(
-  'append:append a value to a key'
-  'auth:authenticate to the server'
-  'bgrewriteeaof:asynchronously rewrite the append-only file'
-  'bgsave:asynchornously save the dataset to disk'
-  'blpop:remove and get the first element in a list, or block until one is available'
-  'brpop:remove and get the last element in a list, or block until one is available'
-  'brpoplpush:pop a value from a list, push it to another list and return it; or block until one is available'
-  # 'config get:get the value of a configuration parameter'
-  # 'config set:set a configuration parameter to the given value'
-  # 'config resetstat: reset the stats returned by INFO'
-  'dbsize:return the number of keys in the selected database'
-  # 'debug object:get debugging information about a key'
-  # 'debug setgfault:make the server crash'
-  'decr:decrement the integer value of a key by one'
-  'decrby:decrement the integet value of a key by the given number'
-  'del:delete a key'
-  'discard:discard all commands issued after MULTI'
-  'echo:echo the given string'
-  'exec:execute all commands issued after a MULTI'
-  'exists:determine if a key exists'
-  'expire:set the time to live for a key, in seconds'
-  'expireat:set the expiration for a key as a UNIX timestamp'
-  'flushall:remove all keys from all databases'
-  'flushdb:remove all keys from the current database'
-  'get:get the value of a key'
-  'getbit:returns the bit value at offset in the string value stored at key'
-  'getrange:get a substring of the string stored at a key'
-  'getset:set the string value of a key and return its old value'
-  'hdel:delete a hash field'
-  'hexists:determine if a hash field exists'
-  'hget:get the value of a hash field'
-  'hgetall:get all the fields and values in a hash'
-  'hincrby:increment the integer value of a hash field by the given number'
-  'hkeys:get all the fields in a hash'
-  'hlen:get the number of fields in a hash'
-  'hmget:get the values of all the given hash fields'
-  'hmset:set multiple hash fields to multiple values'
-  'hset:set the string value of a hash field'
-  'hsetnx:set the value of a hash field, only if the field does not exist'
-  'hvals:get all the values in a hash'
-  'incr:increment the integer value of a key by one'
-  'incrby:increment the integer value of a key by the given number'
-  'info:get information and statistics about the server'
-  'keys:find all keys matching the given pattern'
-  'lastsave:get the UNIX timestamp of the last successful save to disk'
-  'lindex:get an element from a list by its index'
-  'linsert:insert an element before or after another element in a list'
-  'llen:get the length of a list'
-  'lpop:remove and get the first element in a list'
-  'lpush:prepend a value to a list'
-  'lpushx:prepend a value to a list, only if the list exists'
-  'lrange:get a range of elements from a list'
-  'lrem:remove elements from a list'
-  'lset:set the value of an element in a list by its index'
-  'ltrim:trim a list to the specified range'
-  'mget:get the values of all the given keys'
-  'monitor:listen for all requests received by the server in real time'
-  'move:move a key to another database'
-  'mset:set multiple keys to muliple values'
-  'msetnx:set multiple keys tom ultiple values, only if none of the keys exist'
-  'multi:mark the start of a transaction block'
-  'object:inspect the internals of Redis objects'
-  'persist:remove the expiration from a key'
-  'ping:ping the server'
-  'psubscribe:listen for messages published to channels matching the given patterns'
-  'publish:post a message to a channel'
-  'punsubscribe:stop listening for messages posted to channels matching the given patterns'
-  'quit:close the connection'
-  'randomkey:return a random key from the keyspace'
-  'rename:rename a key'
-  'renamenx:rename a key, only if the new key does not exist'
-  'rpop:remove and get the last element in a list'
-  'rpoplpush:remove the last element in a list, append it to another list and return it'
-  'rpush:append a value to a list'
-  'rpushx:append a value to a list, only if the list exists'
-  'sadd:add a member to a set'
-  'save:synchronously save the dataset to disk'
-  'scard:get the number of members in a set'
-  'sdiff:subtract multiple sets'
-  'sdiffstore:subtract multiple sets and store the resulting set in a key'
-  'select:change the selected database for the current connection'
-  'set:set the string value of a key'
-  'setbit:sets or clears the bit at offset in the string value stored at key'
-  'setex:set the value and expiration of a key'
-  'setnx:set the value of a key, only if the key does not exist'
-  'setrange:overwrite part of a string at key starting at the specified offset'
-  'shutdown:synchronously save the dataset to disk and then shut down the server'
-  'sinter:intersect multiple sets'
-  'sinterstore:intersect multiple sets and store the resulting set in a key'
-  'sismember:determine if a given value is a member of a set'
-  'slaveof:make the server a slave of another instance, or promote it as master'
-  'smembers:get all the members in a set'
-  'smove:move a member from one set to another'
-  'sort:sort the elements in a list, set or sorted set'
-  'spop:remove and return a random member from a set'
-  'srandmember:get a random member from a set'
-  'srem:remove a member from a set'
-  'strlen:get the length of the value stored in a key'
-  'subscribe:listen for messages published to the given channels'
-  'sunion:add multiple sets'
-  'sunionstore:add multiple sets and store the resulting set in a key'
-  'ttl:get the time to live for a key'
-  'type:determine the type stored at key'
-  'unsubscribe:stop listening for messages posted to the given channels'
-  'unwatch:forget about all watched keys'
-  'watch:watch the given keys to determine execution of the MULTI/EXEC block'
-  'zadd:add a member to a sorted set, or update its score if it already exists'
-  'zcard:get the number of members in a sorted set'
-  'zcount:count the members in a sorted set with scores within the given values'
-  'zincrby:increment the score of a member in a sorted set'
-  'zinterstore:intersect multiple sorted sets and store the resulting sorted set in a new key'
-  'zrange:return a range of members in a sorted set, by index'
-  'zrangebyscore:return a range of members in a sorted set, by score'
-  'zrank:determine the index of a member in a sorted set'
-  'zrem:remove a member from a sorted set'
-  'zremrangebyrank:remove all members in a sorted set within the given indexes'
-  'zremrangebyscore:remove all members in a sorted set within the given scores'
-  'zrevrange:return a range of membrs in a sorted set, by index, with scores ordered from high to low'
-  'zrevrangebyscore:return a range of members in a sorted set, by score, with scores ordered from high to low'
-  'zrevrank:determine the index of a member in a sorted set, with scores ordered from high to low'
-  'zscore:get the score associated with the given member in a sorted set'
-  'zunionstore:add multiple sorted sets and store te resulting sorted set in a new key'
-)
-
-local expl
-
-_arguments \
-  '(-v --version)'{-v,--version}'[show version]' \
-  '(-h --help)'{-h,--help}'[show help]' \
-  '*:: :->subcmds' && return 0
-
-if (( CURRENT == 1 )); then
-  _describe -t commands "redis-cli subcommand" _1st_arguments
-  return
-fi
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/rsync/rsync.plugin.zsh b/common/.oh-my-zsh/plugins/rsync/rsync.plugin.zsh
deleted file mode 100644
index 33a31a5..0000000
--- a/common/.oh-my-zsh/plugins/rsync/rsync.plugin.zsh
+++ /dev/null
@@ -1,4 +0,0 @@
-alias rsync-copy="rsync -av --progress -h"
-alias rsync-move="rsync -av --progress -h --remove-source-files"
-alias rsync-update="rsync -avu --progress -h"
-alias rsync-synchronize="rsync -avu --delete --progress -h"
diff --git a/common/.oh-my-zsh/plugins/ruby/ruby.plugin.zsh b/common/.oh-my-zsh/plugins/ruby/ruby.plugin.zsh
deleted file mode 100644
index 38e4d7c..0000000
--- a/common/.oh-my-zsh/plugins/ruby/ruby.plugin.zsh
+++ /dev/null
@@ -1,6 +0,0 @@
-# TODO: Make this compatible with rvm.
-#       Run sudo gem on the system ruby, not the active ruby.
-alias sgem='sudo gem'
-
-# Find ruby file
-alias rfind='find . -name "*.rb" | xargs grep -n'
diff --git a/common/.oh-my-zsh/plugins/rvm/rvm.plugin.zsh b/common/.oh-my-zsh/plugins/rvm/rvm.plugin.zsh
deleted file mode 100644
index cdd0a78..0000000
--- a/common/.oh-my-zsh/plugins/rvm/rvm.plugin.zsh
+++ /dev/null
@@ -1,63 +0,0 @@
-fpath=($rvm_path/scripts/zsh/Completion $fpath)
-
-alias rubies='rvm list rubies'
-alias gemsets='rvm gemset list'
-
-local ruby18='ruby-1.8.7-p371'
-local ruby19='ruby-1.9.3-p392'
-local ruby20='ruby-2.0.0-p0'
-
-function rb18 {
-	if [ -z "$1" ]; then
-		rvm use "$ruby18"
-	else
-		rvm use "$ruby18@$1"
-	fi
-}
-
-_rb18() {compadd `ls -1 $rvm_path/gems | grep "^$ruby18@" | sed -e "s/^$ruby18@//" | awk '{print $1}'`}
-compdef _rb18 rb18
-
-function rb19 {
-	if [ -z "$1" ]; then
-		rvm use "$ruby19"
-	else
-		rvm use "$ruby19@$1"
-	fi
-}
-
-_rb19() {compadd `ls -1 $rvm_path/gems | grep "^$ruby19@" | sed -e "s/^$ruby19@//" | awk '{print $1}'`}
-compdef _rb19 rb19
-
-function rb20 {
-	if [ -z "$1" ]; then
-		rvm use "$ruby"
-	else
-		rvm use "$ruby20@$1"
-	fi
-}
-
-_rb20() {compadd `ls -1 $rvm_path/gems | grep "^$ruby20@" | sed -e "s/^$ruby20@//" | awk '{print $1}'`}
-compdef _rb20 rb20
-
-function rvm-update {
-	rvm get head
-	rvm reload # TODO: Reload rvm completion?
-}
-
-# TODO: Make this usable w/o rvm.
-function gems {
-	local current_ruby=`rvm-prompt i v p`
-	local current_gemset=`rvm-prompt g`
-
-	gem list $@ | sed \
-		-Ee "s/\([0-9, \.]+( .+)?\)/$fg[blue]&$reset_color/g" \
-		-Ee "s|$(echo $rvm_path)|$fg[magenta]\$rvm_path$reset_color|g" \
-		-Ee "s/$current_ruby@global/$fg[yellow]&$reset_color/g" \
-		-Ee "s/$current_ruby$current_gemset$/$fg[green]&$reset_color/g"
-}
-
-function _rvm_completion {
-  source $rvm_path"/scripts/zsh/Completion/_rvm"
-}
-compdef _rvm_completion rvm
diff --git a/common/.oh-my-zsh/plugins/safe-paste/safe-paste.plugin.zsh b/common/.oh-my-zsh/plugins/safe-paste/safe-paste.plugin.zsh
deleted file mode 100644
index 17c212c..0000000
--- a/common/.oh-my-zsh/plugins/safe-paste/safe-paste.plugin.zsh
+++ /dev/null
@@ -1,54 +0,0 @@
-# Code from Mikael Magnusson: http://www.zsh.org/mla/users/2011/msg00367.html
-#
-# Requires xterm, urxvt, iTerm2 or any other terminal that supports bracketed
-# paste mode as documented: http://www.xfree86.org/current/ctlseqs.html
-
-# create a new keymap to use while pasting
-bindkey -N paste
-# make everything in this keymap call our custom widget
-bindkey -R -M paste "^@"-"\M-^?" paste-insert
-# these are the codes sent around the pasted text in bracketed
-# paste mode.
-# do the first one with both -M viins and -M vicmd in vi mode
-bindkey '^[[200~' _start_paste
-bindkey -M paste '^[[201~' _end_paste
-# insert newlines rather than carriage returns when pasting newlines
-bindkey -M paste -s '^M' '^J'
-
-zle -N _start_paste
-zle -N _end_paste
-zle -N zle-line-init _zle_line_init
-zle -N zle-line-finish _zle_line_finish
-zle -N paste-insert _paste_insert
-
-# switch the active keymap to paste mode
-function _start_paste() {
-  bindkey -A paste main
-}
-
-# go back to our normal keymap, and insert all the pasted text in the
-# command line. this has the nice effect of making the whole paste be
-# a single undo/redo event.
-function _end_paste() {
-#use bindkey -v here with vi mode probably. maybe you want to track
-#if you were in ins or cmd mode and restore the right one.
-  bindkey -e
-  LBUFFER+=$_paste_content
-  unset _paste_content
-}
-
-function _paste_insert() {
-  _paste_content+=$KEYS
-}
-
-function _zle_line_init() {
-  # Tell terminal to send escape codes around pastes.
-  [[ $TERM == rxvt-unicode || $TERM == xterm || $TERM = xterm-256color || $TERM = screen || $TERM = screen-256color ]] && printf '\e[?2004h'
-}
-
-function _zle_line_finish() {
-  # Tell it to stop when we leave zle, so pasting in other programs
-  # doesn't get the ^[[200~ codes around the pasted text.
-  [[ $TERM == rxvt-unicode || $TERM == xterm || $TERM = xterm-256color || $TERM = screen || $TERM = screen-256color ]] && printf '\e[?2004l'
-}
-
diff --git a/common/.oh-my-zsh/plugins/sbt/_sbt b/common/.oh-my-zsh/plugins/sbt/_sbt
deleted file mode 100644
index 91372aa..0000000
--- a/common/.oh-my-zsh/plugins/sbt/_sbt
+++ /dev/null
@@ -1,55 +0,0 @@
-#compdef sbt
-#autoload
-
-local -a _sbt_commands
-_sbt_commands=(
-  'clean:delete files produced by the build'
-  'compile:compile sources'
-  'console:start the Scala REPL with project classes on the classpath'
-  'console-quick:start the Scala REPL with project deps on the classpath'
-  'console-project:start the Scala REPL w/sbt+build-def on the classpath'
-  'dist:generate distribution artifacts'
-  'dist\:clean:clean distribution artifacts'
-  'doc:generate API documentation'
-  'gen-idea:generate Intellij Idea project files'
-  'package:produce the main artifact, such as a binary jar'
-  'package-doc:produce a doc artifact, such as a jar containing API docs'
-  'package-src:produce a source artifact, such as a jar containing sources'
-  'publish:publish artifacts to a repository'
-  'publish-local:publish artifacts to the local repository'
-  'run:run a main class'
-  'run-main:run the main class selected by the first argument'
-  'test:execute all tests'
-  'test-only:execute the tests provided as arguments'
-  'test-quick:execute previously failed tests'
-  'update:resolve and optionally retrieve dependencies'
-)
-
-local expl
-
-_arguments \
-  '(-help)-h[prints an help message]' \
-  '(-h)-help[prints an help message]' \
-  '(-verbose)-v[this runner is chattier]' \
-  '(-v)-verbose[this runner is chattier]' \
-  '(-debug)-d[set sbt log level to debug]' \
-  '(-d)-debug[set sbt log level to debug]' \
-  '-no-colors[disable ANSI color codes]' \
-  '-sbt-create[start even if current dir contains no sbt project]' \
-  '-sbt-dir[path to global settings/plugins dir (default: ~/.sbt)]' \
-  '-sbt-boot[path to shared boot dir (default: ~/.sbt/boot)]' \
-  '-ivy[path to local Ivy repository (default: ~/.ivy2)]' \
-  '-mem[set memory options]' \
-  '-no-share[use all local caches; no sharing]' \
-  '-no-global[use global caches, but do not use global ~/.sbt dir]' \
-  '-jvm-debug[turn on JVM debugging, open at the given port]' \
-  '-batch[disable interactive mode]' \
-  '-sbt-version[use the specified version of sbt]' \
-  '-sbt-jar[use the specified jar as the sbt launcher]' \
-  '(-sbt-snapshot)-sbt-rc[use an RC version of sbt]' \
-  '(-sbt-rc)-sbt-snapshot[use a snapshot version of sbt]' \
-  '-java-home[alternate JAVA_HOME]' \
-  '*:: :->subcmds' && return 0
-
-_describe -t commands "sbt subcommand" _sbt_commands
-return
diff --git a/common/.oh-my-zsh/plugins/sbt/sbt.plugin.zsh b/common/.oh-my-zsh/plugins/sbt/sbt.plugin.zsh
deleted file mode 100644
index 203c691..0000000
--- a/common/.oh-my-zsh/plugins/sbt/sbt.plugin.zsh
+++ /dev/null
@@ -1,23 +0,0 @@
-# ------------------------------------------------------------------------------
-#          FILE:  sbt.plugin.zsh
-#   DESCRIPTION:  oh-my-zsh plugin file.
-#        AUTHOR:  Mirko Caserta (mirko.caserta@gmail.com)
-#       VERSION:  1.0.2
-# ------------------------------------------------------------------------------
- 
-# aliases - mnemonic: prefix is 'sb'
-alias sbc='sbt compile'
-alias sbco='sbt console'
-alias sbcq='sbt console-quick'
-alias sbcl='sbt clean'
-alias sbcp='sbt console-project'
-alias sbd='sbt doc'
-alias sbdc='sbt dist:clean'
-alias sbdi='sbt dist'
-alias sbgi='sbt gen-idea'
-alias sbp='sbt publish'
-alias sbpl='sbt publish-local'
-alias sbr='sbt run'
-alias sbrm='sbt run-main'
-alias sbu='sbt update'
-alias sbx='sbt test'
diff --git a/common/.oh-my-zsh/plugins/scala/_scala b/common/.oh-my-zsh/plugins/scala/_scala
deleted file mode 100644
index c4ccb37..0000000
--- a/common/.oh-my-zsh/plugins/scala/_scala
+++ /dev/null
@@ -1,249 +0,0 @@
-#compdef scala scalac
-# ------------------------------------------------------------------------------
-# Copyright (c) 2012 Github zsh-users - http://github.com/zsh-users
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#     * Redistributions of source code must retain the above copyright
-#       notice, this list of conditions and the following disclaimer.
-#     * Redistributions in binary form must reproduce the above copyright
-#       notice, this list of conditions and the following disclaimer in the
-#       documentation and/or other materials provided with the distribution.
-#     * Neither the name of the zsh-users nor the
-#       names of its contributors may be used to endorse or promote products
-#       derived from this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-# ------------------------------------------------------------------------------
-# Description
-# -----------
-#
-#  Completion script for scala and scalac (http://www.scala-lang.org/).
-#
-# ------------------------------------------------------------------------------
-# Authors
-# -------
-#
-#  * Tony Sloane 
-#
-# ------------------------------------------------------------------------------
-
-typeset -A opt_args
-local context state line
-
-_scala_features () {
-   compadd "postfixOps" "reflectiveCalls" "implicitConversions" "higherKinds" \
-     "existentials" "experimental.macros" "_"
-}
-
-_scala_phases () {
-   compadd "parser" "namer" "packageobjects" "typer" "patmat" "superaccessors" \
-     "extmethods" "pickler" "refchecks" "selectiveanf" "selectivecps" "uncurry" \
-     "tailcalls" "specialize" "explicitouter" "erasure" "posterasure" "lazyvals" \
-     "lambdalift" "constructors" "flatten" "mixin" "cleanup" "icode" "inliner" \
-     "inlineExceptionHandlers" "closelim" "dce" "jvm" "terminal"
-}
-
-local -a shared_opts
-shared_opts=(
-  "-bootclasspath+[Override location of bootstrap class files]:bootstrap class directory:_files -/"
-  "-classpath+[Specify where to find user class files]:directory:_files -/"
-  "-D-[Pass -Dproperty=value directly to the runtime system]"
-  "-d+[Destination for generated classfiles]: directory or jar file:_files"
-  "-dependencyfile+[Set dependency tracking file]:dependency tracking file:_files"
-  "-deprecation[Emit warning and location for usages of deprecated APIs]"
-  "-encoding+[Specify character encoding used by source files]:encoding:"
-  "-explaintypes[Explain type errors in more detail]"
-  "-extdirs+[Override location of installed extensions]:extensions directory:_files -/"
-  "-g\:-[Set level of generated debugging info (default\: vars)]:debugging info level:(none source line vars notailcalls)"
-  "-help[Print a synopsis of standard options]"
-  "-J-[pass argument directly to Java runtime system]:JVM argument:"
-  "-javabootclasspath+[Override java boot classpath]:Java boot class path directory]:_files -/"
-  "-javaextdirs+[Override java extdirs classpath]:Java extdirs directory:_files -/"
-  "-language\:-[Enable one or more language features]:feature:_scala_features"
-  "-no-specialization[Ignore @specialize annotations]"
-  "-nobootcp[Do not use the boot classpath for the scala jars]"
-  "-nowarn[Generate no warnings]"
-  "-optimise[Generate faster bytecode by applying optimisations to the program]"
-  "-P\:-[Pass an option to a plugin (written plugin\:opt)]:plugin option:"
-  "-print[Print program with Scala-specific features removed]"
-  "-sourcepath+[Specify location(s) of source files]:source file directory:_files -/"
-  "-target\:-[Target platform for object files (default\: jvm-1.5)]:platform name:(jvm-1.5 msil)"
-  "-toolcp+[Add to the runner classpath]:directory:_files -/"
-  "-unchecked[Enable detailed unchecked (erasure) warnings]"
-  "-uniqid[Uniquely tag all identifiers in debugging output]"
-  "-usejavacp[Utilize the java.class.path in classpath resolution]"
-  "-verbose[Output messages about what the compiler is doing]"
-  "-version[Print product version and exit]"
-  "-X[Print a synopsis of advanced options]"
-  "-Y[Print a synopsis of private options]"
-)
-
-local -a X_opts
-X_opts=(
-  "-Xcheck-null[Warn upon selection of nullable reference]"
-  "-Xcheckinit[Wrap field accessors to throw an exception on uninitialized access]"
-  "-Xdisable-assertions[Generate no assertions or assumptions]"
-  "-Xelide-below+[Calls to @elidable methods are omitted if method priority is lower than integer argument]"
-  "-Xexperimental[Enable experimental extensions]"
-  "-Xfatal-warnings[Fail the compilation if there are any warnings]"
-  "-Xfull-lubs[Retains pre 2.10 behavior of less aggressive truncation of least upper bounds]"
-  "-Xfuture[Turn on future language features]"
-  "-Xgenerate-phase-graph+[Generate the phase graphs (outputs .dot files) to fileX.dot]:output file:_files"
-  "-Xlint[Enable recommended additional warnings]"
-  "-Xlog-free-terms[Print a message when reification creates a free term]"
-  "-Xlog-free-types[Print a message when reification resorts to generating a free type]"
-  "-Xlog-implicits[Show more detail on why some implicits are not applicable]"
-  "-Xlog-implicit-conversions[Print a message whenever an implicit conversion is inserted]"
-  "-Xlog-reflective-calls[Print a message when a reflective method call is generated]"
-  "-Xmacro-settings\:-[Custom settings for macros]:option"
-  "-Xmain-class+[Class for manifest's Main-Class entry (only useful with -d jar)]:path:"
-  "-Xmax-classfile-name+[Maximum filename length for generated classes]"
-  "-Xmigration[Warn about constructs whose behavior may have changed]"
-  "-Xno-forwarders[Do not generate static forwarders in mirror classes]"
-  "-Xno-patmat-analysis[Don't perform exhaustivity/unreachability analysis. Also, ignore @switch annotation]"
-  "-Xno-uescape[Disable handling of \u unicode escapes]"
-  "-Xnojline[Do not use JLine for editing]"
-  "-Xoldpatmat[Use the pre-2.10 pattern matcher. Otherwise, the 'virtualizing' pattern matcher is used in 2.10]"
-  "-Xprint\:-[Print out program after ]:phase name:_scala_phases"
-  "-Xprint-icode\:-[Log internal icode to *.icode files after phase (default\: icode)]:phase name:_scala_phases"
-  "-Xprint-pos[Print tree positions, as offsets]"
-  "-Xprint-types[Print tree types (debugging option)]"
-  "-Xprompt[Display a prompt after each error (debugging option)]"
-  "-Xresident[Compiler stays resident: read source filenames from standard input]"
-  "-Xscript+[Treat the source file as a script and wrap it in a main method]:main object name"
-  "-Xshow-class+[Show internal representation of class]:class name"
-  "-Xshow-object+[Show internal representation of object]:object name"
-  "-Xshow-phases[Print a synopsis of compiler phases]"
-  "-Xsource-reader+[Specify a class name for a custom method of reading source files]:class name"
-  "-Xverify[Verify generic signatures in generated bytecode]"
-
-  "-Xassem-extdirs+[List of directories containing assemblies (requires -target:msil) (default\: lib)]:assembly directory:_files -/"
-  "-Xassem-name+[Name of the output assembly (requires -target:msil)]:assembly name:_files"
-  "-Xassem-path+[List of assemblies referenced by the program (requires -target:msil)]:assembly path:_files"
-  "-Xsourcedir+[Mirror source folder structure in output directory (requires -target:msil)]:source directory:_files -/"
-
-  "-Xplugin\:-[Load one or more plugins from file]:plugin file:_files"
-  "-Xpluginsdir+[Path to search compiler plugins]:plugin directory:_files -/"
-  "-Xplugin-list[Print a synopsis of loaded plugins]"
-  "-Xplugin-disable\:-[Disable the given plugin(s)]"
-  "-Xplugin-require\:-[Abort unless the given plugin(s) are available]"
-)
-
-local -a Y_opts
-Y_opts=(
-  "-Y[Print a synopsis of private options]"
-  "-Ybuild-manager-debug[Generate debug information for the Refined Build Manager compiler]"
-  "-Ybuilder-debug\:-[Compile using the specified build manager (default\: none)]:build manager:(none refined simple)"
-  "-Yclosure-elim[Perform closure elimination]"
-  "-Ycompact-trees[Use compact tree printer when displaying trees]"
-  "-Ydead-code[Perform dead code elimination]"
-  "-Ydependent-method-types[Allow dependent method types]"
-  "-Ydump-classes+[Dump the generated bytecode to .class files (useful for reflective compilation that utilizes in-memory classloaders)]:output directory:_files -/"
-  "-Yeta-expand-keeps-star[Eta-expand varargs methods to T* rather than Seq[T].  This is a temporary option to ease transition.]"
-  "-Ygen-javap+[Generate a parallel output directory of .javap files]:output directory:_files -/"
-  "-Yinfer-argument-types[Infer types for arguments of overriden methods]"
-  "-Yinline[Perform inlining when possible]"
-  "-Yinline-handlers[Perform exception handler inlining when possible]"
-  "-Yinline-warnings[Emit inlining warnings (normally surpressed due to high volume)]"
-  "-Yinvalidate+[Invalidate classpath entry before run]:classpath entry"
-  "-Ylinearizer\:-[Linearizer to use (default\: rpo)]:linearizer:(normal dfs rpo dump)"
-  "-Ylog-classpath[Output information about what classpath is being applied]"
-  "-Yno-adapted-args[Do not adapt an argument list (either by inserting unit or creating a tuple) to match the receiver]"
-  "-Ymacro-debug-lite[Trace essential macro-related activities]"
-  "-Ymacro-debug-verbose[Trace all macro-related activities: compilation, generation of synthetics, classloading, expansion, exceptions]"
-  "-Yno-completion[Disable tab-completion in the REPL]"
-  "-Yno-generic-signatures[Suppress generation of generic signatures for Java]"
-  "-Yno-imports[Compile without any implicit imports]"
-  "-Yno-predef[Compile without importing Predef]"
-  "-Yno-self-type-checks[Suppress check for self-type conformance among inherited members]"
-  "-Yno-squeeze[Disable creation of compact code in matching]"
-  "-Ynotnull[Enable (experimental and incomplete) scala.NotNull]"
-  "-Yoverride-objects[Allow member objects to be overridden]"
-  "-Yoverride-vars[Allow vars to be overridden]"
-  "-Ypmat-naive[Desugar matches as naively as possible]"
-  "-Ypresentation-delay+[Wait number of ms after typing before starting typechecking]"
-  "-Ypresentation-log+[Log presentation compiler events into file]:log file:_files"
-  "-Ypresentation-replay+[Replay presentation compiler events from file]:log file:_files"
-  "-Ypresentation-strict[Do not report type errors in sources with syntax errors]"
-  "-Ypresentation-verbose[Print information about presentation compiler tasks]"
-  "-Yprofile-class+[Specify name of profiler class]:profiler class name"
-  "-Yprofile-memory[Heap snapshot after compiler run (requires jgpagent on JVM -agentpath)]"
-  "-Yrangepos[Use range positions for syntax trees]"
-  "-Yrecursion+[Set recursion depth used when locking symbols]"
-  "-Yreify-copypaste[Dump the reified trees in copypasteable representation]"
-  "-Yrepl-sync[Do not use asynchronous code for REPL startup]"
-  "-Yresolve-term-conflict\:-[Resolve term conflicts (default\: error)]:resolution strategy:(package object error)"
-  "-Yself-in-annots[Include a \"self\" identifier inside of annotations]"
-  "-Yshow\:-[Show after  (requires -Xshow-class or -Xshow-object)]:phase name:_scala_phases"
-  "-Yshow-syms[Print the AST symbol hierarchy after each phase]"
-  "-Yshow-symkinds[Print abbreviated symbol kinds next to symbol names]"
-  "-Yshow-trees[Print detailed ASTs (requires -Xprint\:phase)]"
-  "-Yshow-trees-compact[Print detailed ASTs in compact form (requires -Xprint\:)]"
-  "-Yshow-trees-stringified[Print stringifications along with detailed ASTs (requires -Xprint\:)]"
-  "-Ystatistics[Print compiler statistics]"
-  "-Ystruct-dispatch\:-[Structural method dispatch policy (default\: poly-cache)]:policy name:(no-cache mono-cache poly-cache invoke-dynamic)"
-
-  "-Ybrowse\:-[Browse the abstract syntax tree after ]:phase name:_scala_phases"
-  "-Ycheck\:-[Check the tree at the end of ]:phase name:_scala_phases"
-  "-Ylog\:-[Log operations during ]:phase name:_scala_phases"
-  "-Yprofile\:-[Profile CPU usage of given phases (requires jgpagent on JVM -agentpath)]:phase name:_scala_phases"
-  "-Yskip\:-[Skip ]:phase name:_scala_phases"
-  "-Ystop-after\:-[Stop after given phase ]:phase name:_scala_phases"
-  "-Ystop-before\:-[Stop before given phase ]:phase name:_scala_phases"
-
-  "-Ywarn-adapted-args[Warn if an argument list is modified to match the receiver]"
-  "-Ywarn-all[Enable all -Y warnings]"
-  "-Ywarn-dead-code[Warn when dead code is identified]"
-  "-Ywarn-inaccessible[Warn about inaccessible types in method signatures]"
-  "-Ywarn-nullary-override[Warn when non-nullary overrides nullary, e.g. def foo() over def foo]"
-  "-Ywarn-nullary-unit[Warn when nullary methods return Unit]"
-  "-Ywarn-numeric-widen[Warn when numerics are widened]"
-  "-Ywarn-value-discard[Warn when non-Unit expression results are unused]"
-
-  "-Ybuild-manager-debug[Generate debug information for the Refined Build Manager compiler]"
-  "-Ybuilder-debug\:-[Compile using the specified build manager (default\: none)]:manager:(none refined simple)"
-  "-Ycompletion-debug[Trace all tab completion activity]"
-  "-Ydebug[Increase the quantity of debugging output]"
-  "-Ydoc-debug[Trace all scaladoc activity]"
-  "-Yide-debug[Generate, validate and output trees using the interactive compiler]"
-  "-Yinfer-debug[Trace type inference and implicit search]"
-  "-Yissue-debug[Print stack traces when a context issues an error]"
-  "-Ypatmat-debug[Trace pattern matching translation]"
-  "-Ypmat-debug[Trace all pattern matcher activity]"
-  "-Ypos-debug[Trace position validation]"
-  "-Ypresentation-debug[Enable debugging output for the presentation compiler]"
-  "-Yreify-debug[Trace reification]"
-  "-Yrepl-debug[Trace all REPL activity]"
-  "-Ytyper-debug[Trace all type assignments]"
-)
-
-local -a scala_opts
-scala_opts=(
-  "-e+[execute  as if entered in the repl]:string" \
-  "-howtorun+[what to run (default\: guess)]:execution mode:(script object jar guess)" \
-  "-i+[preload  before starting the repl]:file to preload:_files" \
-  "-nc[no compilation daemon\: do not use the fsc offline compiler]" \
-  "-save[save the compiled script in a jar for future use]"
-)
-
-case $words[$CURRENT] in
-    -X*) _arguments $X_opts;;
-    -Y*) _arguments $Y_opts;;
-      *) case $service in
-           scala)  _arguments $scala_opts $shared_opts "*::filename:_files";;
-           scalac) _arguments $shared_opts "*::filename:_files";;
-         esac
-esac
-
-return 0
diff --git a/common/.oh-my-zsh/plugins/screen/screen.plugin.zsh b/common/.oh-my-zsh/plugins/screen/screen.plugin.zsh
deleted file mode 100644
index 7009e7a..0000000
--- a/common/.oh-my-zsh/plugins/screen/screen.plugin.zsh
+++ /dev/null
@@ -1,54 +0,0 @@
-# if using GNU screen, let the zsh tell screen what the title and hardstatus
-# of the tab window should be.
-if [[ "$TERM" == screen* ]]; then
-  if [[ $_GET_PATH == '' ]]; then
-    _GET_PATH='echo $PWD | sed "s/^\/Users\//~/;s/^\/home\//~/;s/^~$USER/~/"'
-  fi
-  if [[ $_GET_HOST == '' ]]; then
-    _GET_HOST='echo $HOST | sed "s/\..*//"'
-  fi
-
-  # use the current user as the prefix of the current tab title 
-  TAB_TITLE_PREFIX='"`'$_GET_HOST'`:`'$_GET_PATH' | sed "s:..*/::"`$PROMPT_CHAR"'
-  # when at the shell prompt, show a truncated version of the current path (with
-  # standard ~ replacement) as the rest of the title.
-  TAB_TITLE_PROMPT='$SHELL:t'
-  # when running a command, show the title of the command as the rest of the
-  # title (truncate to drop the path to the command)
-  TAB_TITLE_EXEC='$cmd[1]:t'
-
-  # use the current path (with standard ~ replacement) in square brackets as the
-  # prefix of the tab window hardstatus.
-  TAB_HARDSTATUS_PREFIX='"[`'$_GET_PATH'`] "'
-  # when at the shell prompt, use the shell name (truncated to remove the path to
-  # the shell) as the rest of the title
-  TAB_HARDSTATUS_PROMPT='$SHELL:t'
-  # when running a command, show the command name and arguments as the rest of
-  # the title
-  TAB_HARDSTATUS_EXEC='$cmd'
-
-  # tell GNU screen what the tab window title ($1) and the hardstatus($2) should be
-  function screen_set()
-  {
-    # set the tab window title (%t) for screen
-    print -nR $'\033k'$1$'\033'\\\
-
-    # set hardstatus of tab window (%h) for screen
-    print -nR $'\033]0;'$2$'\a'
-  }
-  # called by zsh before executing a command
-  function preexec()
-  {
-    local -a cmd; cmd=(${(z)1}) # the command string
-    eval "tab_title=$TAB_TITLE_PREFIX:$TAB_TITLE_EXEC"
-    eval "tab_hardstatus=$TAB_HARDSTATUS_PREFIX:$TAB_HARDSTATUS_EXEC"
-    screen_set $tab_title $tab_hardstatus
-  }
-  # called by zsh before showing the prompt
-  function precmd()
-  {
-    eval "tab_title=$TAB_TITLE_PREFIX:$TAB_TITLE_PROMPT"
-    eval "tab_hardstatus=$TAB_HARDSTATUS_PREFIX:$TAB_HARDSTATUS_PROMPT"
-    screen_set $tab_title $tab_hardstatus
-  }
-fi
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/sprunge/sprunge.plugin.zsh b/common/.oh-my-zsh/plugins/sprunge/sprunge.plugin.zsh
deleted file mode 100644
index fcc9004..0000000
--- a/common/.oh-my-zsh/plugins/sprunge/sprunge.plugin.zsh
+++ /dev/null
@@ -1,62 +0,0 @@
-# Contributed and SLIGHTLY modded by Matt Parnell/ilikenwf 
-# Created by the blogger at the URL below...I don't know where to find his/her name
-# Original found at http://www.shellperson.net/sprunge-pastebin-script/
- 
-usage() {
-description | fmt -s >&2
-}
- 
-description() {
-cat << HERE
- 
-DESCRIPTION
-  Upload data and fetch URL from the pastebin http://sprunge.us
- 
-USAGE
-  $0 filename.txt
-  $0 text string
-  $0 < filename.txt
-  piped_data | $0
- 
-NOTES
---------------------------------------------------------------------------
-* INPUT METHODS *
-$0 can accept piped data, STDIN redirection [&2
-	  if [ "$*" ]; then
-		echo Arguments present... >&2
-		if [ -f "$*" ]; then
-		  echo Uploading the contents of "$*"... >&2
-		  cat "$*"
-		else
-		  echo Uploading the text: \""$*"\"... >&2
-		  echo "$*"
-		fi | curl -F 'sprunge=<-' http://sprunge.us
-	  else
-		echo No arguments found, printing USAGE and exiting. >&2
-		usage
-	  fi
-	else
-	  echo Using input from a pipe or STDIN redirection... >&2
-	  curl -F 'sprunge=<-' http://sprunge.us
-	fi
-}
diff --git a/common/.oh-my-zsh/plugins/ssh-agent/ssh-agent.plugin.zsh b/common/.oh-my-zsh/plugins/ssh-agent/ssh-agent.plugin.zsh
deleted file mode 100644
index 7468749..0000000
--- a/common/.oh-my-zsh/plugins/ssh-agent/ssh-agent.plugin.zsh
+++ /dev/null
@@ -1,71 +0,0 @@
-#
-# INSTRUCTIONS
-#
-#   To enabled agent forwarding support add the following to
-#   your .zshrc file:
-#
-#     zstyle :omz:plugins:ssh-agent agent-forwarding on
-#
-#   To load multiple identities use the identities style, For
-#   example:
-#
-#     zstyle :omz:plugins:ssh-agent id_rsa id_rsa2 id_github
-#
-#   To set the maximum lifetime of the identities, use the
-#   lifetime style. The lifetime may be specified in seconds
-#   or as described in sshd_config(5) (see TIME FORMATS)
-#   If left unspecified, the default lifetime is forever.
-#
-#     zstyle :omz:plugins:ssh-agent lifetime 4h
-#
-# CREDITS
-#
-#   Based on code from Joseph M. Reagle
-#   http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html
-#
-#   Agent forwarding support based on ideas from
-#   Florent Thoumie and Jonas Pfenniger
-#
-
-local _plugin__ssh_env=$HOME/.ssh/environment-$HOST
-local _plugin__forwarding
-
-function _plugin__start_agent()
-{
-  local -a identities
-  local lifetime
-  zstyle -s :omz:plugins:ssh-agent lifetime lifetime
-
-  # start ssh-agent and setup environment
-  /usr/bin/env ssh-agent ${lifetime:+-t} ${lifetime} | sed 's/^echo/#echo/' > ${_plugin__ssh_env}
-  chmod 600 ${_plugin__ssh_env}
-  . ${_plugin__ssh_env} > /dev/null
-
-  # load identies
-  zstyle -a :omz:plugins:ssh-agent identities identities 
-  echo starting ssh-agent...
-
-  /usr/bin/ssh-add $HOME/.ssh/${^identities}
-}
-
-# test if agent-forwarding is enabled
-zstyle -b :omz:plugins:ssh-agent agent-forwarding _plugin__forwarding
-if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then
-  # Add a nifty symlink for screen/tmux if agent forwarding
-  [[ -L $SSH_AUTH_SOCK ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen
-
-elif [ -f "${_plugin__ssh_env}" ]; then
-  # Source SSH settings, if applicable
-  . ${_plugin__ssh_env} > /dev/null
-  ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
-    _plugin__start_agent;
-  }
-else
-  _plugin__start_agent;
-fi
-
-# tidy up after ourselves
-unfunction _plugin__start_agent
-unset _plugin__forwarding
-unset _plugin__ssh_env
-
diff --git a/common/.oh-my-zsh/plugins/sublime/sublime.plugin.zsh b/common/.oh-my-zsh/plugins/sublime/sublime.plugin.zsh
deleted file mode 100755
index e74695d..0000000
--- a/common/.oh-my-zsh/plugins/sublime/sublime.plugin.zsh
+++ /dev/null
@@ -1,29 +0,0 @@
-# Sublime Text 2 Aliases
-
-local _sublime_darwin_paths > /dev/null 2>&1
-_sublime_darwin_paths=(
-	"$HOME/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
-	"$HOME/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
-	"/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl"
-	"/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl"
-)
-
-if [[ $('uname') == 'Linux' ]]; then
-	if [ -f '/usr/bin/sublime_text' ]; then
-		st_run() { nohup /usr/bin/sublime_text $@ > /dev/null & }
-	else
-		st_run() { nohup /usr/bin/sublime-text $@ > /dev/null & }
-	fi
-	alias st=st_run
-
-elif  [[ $('uname') == 'Darwin' ]]; then
-
-	for _sublime_path in $_sublime_darwin_paths; do
-		if [[ -a $_sublime_path ]]; then
-			alias st="'$_sublime_path'"
-			break
-		fi
-	done
-fi
-
-alias stt='st .'
diff --git a/common/.oh-my-zsh/plugins/supervisor/_supervisorctl b/common/.oh-my-zsh/plugins/supervisor/_supervisorctl
deleted file mode 100644
index d159f20..0000000
--- a/common/.oh-my-zsh/plugins/supervisor/_supervisorctl
+++ /dev/null
@@ -1,136 +0,0 @@
-#compdef supervisorctl
-
-typeset -A opt_args
-local context state line
-
-_supervisorctl() {
-    _arguments -s -S \
-        {--configuration,-c}"[configuration file path (default /etc/supervisor.conf)]:FILENAME:_files" \
-        {--help,-h}"[print usage message and exit]:" \
-        {--interactive,-i}"[start an interactive shell after executing commands]" \
-        {--serverurl,-s}"[URL on which supervisord server is listening (default "http://localhost:9001").]" \
-        {--username,-u}"[username to use for authentication with server]:USERNAME:_users" \
-        {--password,-p}"[password to use for authentication with server]:PASSWORD:" \
-        {--history-file,-r}"[keep a readline history (if readline is available)]:FILENAME:_files" \
-        "*::supervisorctl commands:_supervisorctl_command"
-}
-
-(( $+functions[_supervisorctl_command] )) ||
-_supervisorctl_command() {
-    local cmd ret=1
-
-    (( $+supervisorctl_cmds )) || _supervisorctl_cmds=(
-        "add:Activates any updates in config for process/group" \
-        "avail:Display all configured processes" \
-        "clear:Clear process/multiple-process/all-process log files" \
-        "exit:Exit the supervisor shell." \
-        "fg:Connect to a process in foreground mode" \
-        "maintail:tail of supervisor main log file" \
-        "open:Connect to a remote supervisord process. (for UNIX domain socket, use unix:///socket/path)" \
-        "pid:Get the PID of supervisord." \
-        "quit:Exit the supervisor shell." \
-        "reload:Restart the remote supervisord." \
-        "remove:Removes process/group from active config" \
-        "reread:Reload the daemon's configuration files" \
-        "restart:Restart process or group." \
-        "shutdown:Shut the remote supervisord down." \
-        "start:Start process or groups." \
-        "status:Get process status info." \
-        "stop:Stop process or group." \
-        "tail:tail of process stdout" \
-        "update:Reload config and add/remove as necessary" \
-        "version:Show the version of the remote supervisord process" \
-        "help:Show help" \
-        )
-
-    if (( CURRENT == 1 )); then
-        _describe -t commands 'supervisorctl subcommand' _supervisorctl_cmds \
-            || compadd "$@" - ${(s.:.)${(j.:.)_supervisorctl_syns}}
-    else
-        local curcontext="$curcontext"
-
-        cmd="${${_supervisorctl_cmds[(r)$words[1]:*]%%:*}:-${(k)_supervisorctl_syns[(r)(*:|)$words[1](:*|)]}}"
-        if (( $#cmd )); then
-            curcontext="${curcontext%:*:*}:supervisorctl-${cmd}:"
-            _call_function ret _supervisorctl_$cmd || _message 'no more arguments'
-        else
-            _message "unknown supervisorctl command: $words[1]"
-        fi
-        return ret
-    fi
-}
-
-# get supervisor contoroll processes
-(( $+functions[_get_supervisor_procs] )) ||
-_get_supervisor_procs() {
-    local cache_policy
-    zstyle -s ":completion:${curcontext}:" cache-policy cache_policy
-    if [[ -z "$cache_policy" ]]; then
-        zstyle ":completion:${curcontext}:" cache-policy _supervisor_procs_caching_policy
-    fi
-
-    if ( [[ ${+_supervisor_procs} -eq 0 ]] || _cache_invalid supervisor_procs ) \
-        && ! _retrieve_cache supervisor_procs; then
-
-        _supervisor_procs=(${${(f)"$(supervisorctl status >/dev/null 2>&1 | awk -F' ' '{print $1}')"}})
-        _store_cache supervisor_procs _supervisor_procs
-    fi
-
-    local expl
-    _wanted supervisor_procs expl 'supervisor processes' compadd -a _supervisor_procs
-}
-
-_supervisor_procs_caching_policy() {
-    local -a oldp
-    oldp=( "$1"(Nmw+1) )
-    (( $#oldp ))
-}
-
-(( $+functions[_supervisorctl_add] )) ||
-_supervisorctl_add() {
-    _arguments -s \
-        "--help[use help system]" \
-        "*::supervisorctl commands:_supervisorctl"
-}
-
-(( $+functions[_supervisorctl_help] )) ||
-_supervisorctl_help() {
-    _arguments -s \
-        "*:supervisorctl commands:_supervisorctl"
-}
-
-(( $+functions[_supervisorctl_maintail] )) ||
-_supervisorctl_maintail() {
-    _arguments -s \
-        '-f[Continuous tail of supervisor main log file (Ctrl-C to exit)]'
-}
-
-(( $+functions[_supervisorctl_start] )) ||
-_supervisorctl_start() {
-    # TODO: add 'all'
-    _arguments -s \
-        '*::supvervisor process:_get_supervisor_procs'
-}
-
-(( $+functions[_supervisorctl_status] )) ||
-_supervisorctl_status() {
-    _arguments \
-        '*::supvervisor process:_get_supervisor_procs'
-}
-
-(( $+functions[_supervisorctl_stop] )) ||
-_supervisorctl_stop() {
-    # TODO: add 'all'
-    _arguments -s \
-        '*::supvervisor process:_get_supervisor_procs'
-}
-
-(( $+functions[_supervisorctl_tail] )) ||
-_supervisorctl_tail() {
-    # TODO: add 'stderr'
-    _arguments -s \
-        '-f[Continuous tail of named process stdout Ctrl-C to exit.]' \
-        '*::supvervisor process:_get_supervisor_procs'
-}
-
-_supervisorctl "$@"
diff --git a/common/.oh-my-zsh/plugins/supervisor/_supervisord b/common/.oh-my-zsh/plugins/supervisor/_supervisord
deleted file mode 100644
index 34d2780..0000000
--- a/common/.oh-my-zsh/plugins/supervisor/_supervisord
+++ /dev/null
@@ -1,32 +0,0 @@
-#compdef supervisord
-
-typeset -A opt_args
-local context state line
-
-_arguments \
-    {--configuration,-c}"[configuration file]:FILENAME:_files" \
-    {--nodaemon,-n}"[run in the foreground (same as 'nodaemon true' in config file)]" \
-    {--help,-h}"[print this usage message and exit]:" \
-    {--user,-u}"[run supervisord as this user]:USER:_users" \
-    {--umask,-m}"[use this umask for daemon subprocess (default is 022)]" \
-    {--directory,-d}"[directory to chdir to when daemonized]" \
-    {--logfile,-l}"[use FILENAME as logfile path]:FILENAME:_files" \
-    {--logfile_maxbytes,-y}"[use BYTES to limit the max size of logfile]" \
-    {--logfile_backups,-z}"[number of backups to keep when max bytes reached]" \
-    {--loglevel,-e}"[use LEVEL as log level (debug,info,warn,error,critical)]:level:->levels" \
-    {--pidfile,-j}"[write a pid file for the daemon process to FILENAME]:FILENAME:_files" \
-    {--identifier,-i}"[identifier used for this instance of supervisord]" \
-    {--childlogdir,-q}"[the log directory for child process logs]:child log directory:_files -/" \
-    {--nocleanup,-k}"[prevent the process from performing cleanup (removal of old automatic child log files) at startup.]" \
-    {--minfds,-a}"[the minimum number of file descriptors for start success]" \
-    {--strip_ansi,-t}"[strip ansi escape codes from process output]" \
-    "--minprocs[the minimum number of processes available for start success]" \
-    "--profile_options[run supervisord under profiler and output results based on OPTIONS, which is a comma-sep'd list of 'cumulative', 'calls', and/or 'callers', e.g. 'cumulative,callers')]" \
-    "*::args:_gnu_generic"
-
-case $state in
-levels)
-    levels=("debug" "info" "warn" "error" "critical")
-    _describe -t levels 'supervisord levels' levels && return 0
-    ;;
-esac
diff --git a/common/.oh-my-zsh/plugins/supervisor/supervisor.plugin.zsh b/common/.oh-my-zsh/plugins/supervisor/supervisor.plugin.zsh
deleted file mode 100644
index cf1997c..0000000
--- a/common/.oh-my-zsh/plugins/supervisor/supervisor.plugin.zsh
+++ /dev/null
@@ -1 +0,0 @@
-# DECLARION: This plugin was created by hhatto. What I did is just making a portal from https://bitbucket.org/hhatto/zshcompfunc4supervisor.
diff --git a/common/.oh-my-zsh/plugins/suse/suse.plugin.zsh b/common/.oh-my-zsh/plugins/suse/suse.plugin.zsh
deleted file mode 100644
index d462869..0000000
--- a/common/.oh-my-zsh/plugins/suse/suse.plugin.zsh
+++ /dev/null
@@ -1,7 +0,0 @@
-alias zi='sudo zypper install'
-alias zrf='sudo zypper refresh'
-alias zs='zypper search'
-alias zup='sudo zypper dist-upgrade'
-alias zrm='sudo zypper remove'
-alias zp='sudo zypper patch'
-alias zps='sudo zypper ps'
diff --git a/common/.oh-my-zsh/plugins/svn/svn.plugin.zsh b/common/.oh-my-zsh/plugins/svn/svn.plugin.zsh
deleted file mode 100644
index 4f008ba..0000000
--- a/common/.oh-my-zsh/plugins/svn/svn.plugin.zsh
+++ /dev/null
@@ -1,76 +0,0 @@
-# vim:ft=zsh ts=2 sw=2 sts=2
-#
-function svn_prompt_info() {
-  if in_svn; then
-    if [ "x$SVN_SHOW_BRANCH" = "xtrue" ]; then
-      unset SVN_SHOW_BRANCH
-      _DISPLAY=$(svn_get_branch_name)
-    else
-      _DISPLAY=$(svn_get_repo_name)
-    fi
-    echo "$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_PREFIX\
-$ZSH_THEME_REPO_NAME_COLOR$_DISPLAY$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_SUFFIX$ZSH_PROMPT_BASE_COLOR$(svn_dirty)$ZSH_PROMPT_BASE_COLOR"
-    unset _DISPLAY
-  fi
-}
-
-
-function in_svn() {
-  if $(svn info >/dev/null 2>&1); then
-    return 0
-  fi
-  return 1
-}
-
-function svn_get_repo_name() {
-  if in_svn; then
-    svn info | sed -n 's/Repository\ Root:\ .*\///p' | read SVN_ROOT
-    svn info | sed -n "s/URL:\ .*$SVN_ROOT\///p"
-  fi
-}
-
-function svn_get_branch_name() {
-  _DISPLAY=$(
-    svn info 2> /dev/null | \
-      awk -F/ \
-      '/^URL:/ { \
-        for (i=0; i<=NF; i++) { \
-          if ($i == "branches" || $i == "tags" ) { \
-            print $(i+1); \
-            break;\
-          }; \
-          if ($i == "trunk") { print $i; break; } \
-        } \
-      }'
-  )
-  
-  if [ "x$_DISPLAY" = "x" ]; then
-    svn_get_repo_name
-  else
-    echo $_DISPLAY
-  fi
-  unset _DISPLAY
-}
-
-function svn_get_rev_nr() {
-  if in_svn; then
-    svn info 2> /dev/null | sed -n 's/Revision:\ //p'
-  fi
-}
-
-function svn_dirty_choose() {
-  if in_svn; then
-    root=`svn info 2> /dev/null | sed -n 's/^Working Copy Root Path: //p'`
-    if $(svn status $root 2> /dev/null | grep -Eq '^\s*[ACDIM!?L]'); then
-      # Grep exits with 0 when "One or more lines were selected", return "dirty".
-      echo $1
-    else
-      # Otherwise, no lines were found, or an error occurred. Return clean.
-      echo $2
-    fi
-  fi
-}
-
-function svn_dirty() {
-  svn_dirty_choose $ZSH_THEME_SVN_PROMPT_DIRTY $ZSH_THEME_SVN_PROMPT_CLEAN
-}
diff --git a/common/.oh-my-zsh/plugins/symfony/symfony.plugin.zsh b/common/.oh-my-zsh/plugins/symfony/symfony.plugin.zsh
deleted file mode 100644
index 9de7675..0000000
--- a/common/.oh-my-zsh/plugins/symfony/symfony.plugin.zsh
+++ /dev/null
@@ -1,13 +0,0 @@
-# symfony basic command completion
-
-_symfony_get_command_list () {
-    ./symfony | sed "1,/Available tasks/d" | awk 'BEGIN { cat=null; } /^[A-Za-z]+$/ { cat = $1; } /^  :[a-z]+/ { print cat $1; }'
-}
-
-_symfony () {
-  if [ -f symfony ]; then
-    compadd `_symfony_get_command_list`
-  fi
-}
-
-compdef _symfony symfony
diff --git a/common/.oh-my-zsh/plugins/symfony2/symfony2.plugin.zsh b/common/.oh-my-zsh/plugins/symfony2/symfony2.plugin.zsh
deleted file mode 100644
index 0d2bb68..0000000
--- a/common/.oh-my-zsh/plugins/symfony2/symfony2.plugin.zsh
+++ /dev/null
@@ -1,21 +0,0 @@
-# Symfony2 basic command completion
-
-_symfony2_get_command_list () {
-	php app/console --no-ansi | sed "1,/Available commands/d" | awk '/^  [a-z]+/ { print $1 }'
-}
-
-_symfony2 () {
-  if [ -f app/console ]; then
-    compadd `_symfony2_get_command_list`
-  fi
-}
-
-compdef _symfony2 app/console
-compdef _symfony2 sf
-
-#Alias
-alias sf='php app/console'
-alias sfcl='php app/console cache:clear'
-alias sfroute='php app/console router:debug'
-alias sfgb='php app/console generate:bundle'
-
diff --git a/common/.oh-my-zsh/plugins/systemd/systemd.plugin.zsh b/common/.oh-my-zsh/plugins/systemd/systemd.plugin.zsh
deleted file mode 100644
index 7d3db0f..0000000
--- a/common/.oh-my-zsh/plugins/systemd/systemd.plugin.zsh
+++ /dev/null
@@ -1,11 +0,0 @@
-user_commands=(
-  list-units is-active status show help list-unit-files
-  is-enabled list-jobs show-environment)
-
-sudo_commands=(
-  start stop reload restart try-restart isolate kill
-  reset-failed enable disable reenable preset mask unmask
-  link load cancel set-environment unset-environment)
-
-for c in $user_commands; do; alias sc-$c="systemctl $c"; done
-for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done
diff --git a/common/.oh-my-zsh/plugins/taskwarrior/_task b/common/.oh-my-zsh/plugins/taskwarrior/_task
deleted file mode 100644
index 0bda738..0000000
--- a/common/.oh-my-zsh/plugins/taskwarrior/_task
+++ /dev/null
@@ -1,248 +0,0 @@
-#compdef task
-# zsh completion for taskwarrior
-#
-# taskwarrior - a command line task list manager.
-#
-# Copyright 2010 - 2011 Johannes Schlatow
-# Copyright 2009 P.C. Shyamshankar
-#
-# Permission is hereby granted, free of charge, to any person obtaining a copy
-# of this software and associated documentation files (the "Software"), to deal
-# in the Software without restriction, including without limitation the rights
-# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-# copies of the Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-# SOFTWARE.
-#
-# http://www.opensource.org/licenses/mit-license.php
-#
-typeset -g _task_cmds _task_projects _task_tags _task_config _task_modifiers
-_task_projects=($(task _projects))
-_task_tags=($(task _tags))
-_task_ids=($(task _ids))
-_task_config=($(task _config))
-_task_columns=($(task _columns))
-_task_modifiers=(
-	'before' \
-	'after' \
-	'none' \
-	'any' \
-	'is' \
-	'isnt' \
-	'has' \
-	'hasnt' \
-	'startswith' \
-	'endswith' \
-	'word' \
-	'noword'
-)
-_task_conjunctions=(
-   'and' \
-   'or' \
-	'xor' \
-	'\)'
-	'\('
-)
-_task_cmds=($(task _commands))
-_task_zshcmds=( ${(f)"$(task _zshcommands)"} )
-
-_task() {
-    _arguments -s -S \
-        "*::task default:_task_default"
-    return 0
-}
-
-local -a reply args word
-word=$'[^\0]#\0'
-
-# priorities
-local -a task_priorities
-_regex_words values 'task priorities' \
-	'H:High' \
-	'M:Middle' \
-	'L:Low'
-task_priorities=("$reply[@]")
-
-# projects
-local -a task_projects
-task_projects=(
-	/"$word"/
-	":values:task projects:compadd -a _task_projects"
-)
-
-local -a _task_dates
-_regex_words values 'task dates' \
-	'tod*ay:Today' \
-	'yes*terday:Yesterday' \
-	'tom*orrow:Tomorrow' \
-	'sow:Start of week' \
-	'soww:Start of work week' \
-	'socw:Start of calendar week' \
-	'som:Start of month' \
-	'soy:Start of year' \
-	'eow:End of week' \
-	'eoww:End of work week' \
-	'eocw:End of calendar week' \
-	'eom:End of month' \
-	'eoy:End of year' \
-	'mon:Monday' \
-	'tue:Tuesday'\
-	'wed:Wednesday' \
-	'thu:Thursday' \
-	'fri:Friday' \
-	'sat:Saturday' \
-	'sun:Sunday'
-_task_dates=("$reply[@]")
-
-local -a _task_reldates
-_regex_words values 'task reldates' \
-	'hrs:n hours' \
-	'day:n days' \
-	'1st:first' \
-	'2nd:second' \
-	'3rd:third' \
-	'th:4th, 5th, etc.' \
-	'wks:weeks'
-_task_reldates=("$reply[@]")
-
-task_dates=(
-	\( "$_task_dates[@]" \|
-    \( /$'[0-9][0-9]#'/- \( "$_task_reldates[@]" \) \)
-	\)
-)
-
-_regex_words values 'task frequencies' \
-	'daily:Every day' \
-	'day:Every day' \
-	'weekdays:Every day skipping weekend days' \
-	'weekly:Every week' \
-	'biweekly:Every two weeks' \
-	'fortnight:Every two weeks' \
-+ 'monthly:Every month' \
-	'quarterly:Every three months' \
-	'semiannual:Every six months' \
-	'annual:Every year' \
-	'yearly:Every year' \
-	'biannual:Every two years' \
-	'biyearly:Every two years'
-_task_freqs=("$reply[@]")
-
-local -a _task_frequencies
-_regex_words values 'task frequencies' \
-	'd:days' \
-	'w:weeks' \
-	'q:quarters' \
-	'y:years'
-_task_frequencies=("$reply[@]")
-
-task_freqs=(
-	\( "$_task_freqs[@]" \|
-     \( /$'[0-9][0-9]#'/- \( "$_task_frequencies[@]" \) \)
-	\)
-)
-
-# attributes
-local -a task_attributes
-_regex_words -t ':' default 'task attributes' \
-	'pro*ject:Project name:$task_projects' \
-	'du*e:Due date:$task_dates' \
-	'wa*it:Date until task becomes pending:$task_dates' \
-	're*cur:Recurrence frequency:$task_freqs' \
-	'pri*ority:priority:$task_priorities' \
-	'un*til:Recurrence end date:$task_dates' \
-	'fg:Foreground color' \
-	'bg:Background color' \
-	'li*mit:Desired number of rows in report'
-task_attributes=("$reply[@]")
-
-args=(
-	\( "$task_attributes[@]" \|
-	\( /'(project|due|wait|recur|priority|until|fg|bg|limit).'/- \( /$'[^:]#:'/ ":default:modifiers:compadd -S ':' -a _task_modifiers" \) \) \|
-	\( /'(rc).'/- \( /$'[^:]#:'/ ":arguments:config:compadd -S ':' -a _task_config" \) \) \|
-	\( /'(+|-)'/- \( /"$word"/ ":values:remove tag:compadd -a _task_tags" \) \) \|
-	\( /"$word"/ \)
-	\) \#
-)
-_regex_arguments _task_attributes "${args[@]}"
-
-## task commands
-
-# filter completion
-(( $+functions[_task_filter] )) ||
-_task_filter() {
-	_task_attributes "$@"
-
-	# TODO complete conjunctions only if the previous word is a filter expression, i.e. attribute, ID, any non-command
-	_describe -t default 'task conjunctions' _task_conjunctions
-}
-
-# merge completion
-(( $+functions[_task_merge] )) ||
-_task_merge() {
-	# TODO match URIs in .taskrc
-	_files
-}
-
-# push completion
-(( $+functions[_task_push] )) ||
-_task_push() {
-	# TODO match URIs in .taskrc
-	_files
-}
-
-# pull completion
-(( $+functions[_task_pull] )) ||
-_task_pull() {
-	# TODO match URIs in .taskrc
-	_files
-}
-
-# execute completion
-(( $+functions[_task_execute] )) ||
-_task_execute() {
-	_files
-}
-
-# id-only completion
-(( $+functions[_task_id] )) ||
-_task_id() {
-	_describe -t values 'task IDs' _task_zshids
-}
-
-## first level completion => task sub-command completion
-(( $+functions[_task_default] )) ||
-_task_default() {
-    local cmd ret=1
-
-	integer i=1
-	while (( i < $#words ))
-	do
-		cmd="${_task_cmds[(r)$words[$i]]}"
-		if (( $#cmd )); then
-			_call_function ret _task_${cmd} ||
-				_call_function ret _task_filter ||
-					_message "No command remaining."
-			return ret
-		fi
-		(( i++ ))
-	done
-
-	# update IDs
-	_task_zshids=( ${(f)"$(task _zshids)"} )
-
-	_describe -t commands 'task command' _task_zshcmds
-	_describe -t values 'task IDs' _task_zshids
-	_call_function ret _task_filter
-
-	return ret
-}
diff --git a/common/.oh-my-zsh/plugins/taskwarrior/taskwarrior.plugin.zsh b/common/.oh-my-zsh/plugins/taskwarrior/taskwarrior.plugin.zsh
deleted file mode 100644
index c183004..0000000
--- a/common/.oh-my-zsh/plugins/taskwarrior/taskwarrior.plugin.zsh
+++ /dev/null
@@ -1,21 +0,0 @@
-################################################################################
-# Author: Pete Clark
-# Email: pete[dot]clark[at]gmail[dot]com
-# Version: 0.1 (05/24/2011)
-# License: WTFPL
-#
-# This oh-my-zsh plugin adds smart tab completion for
-# TaskWarrior. It uses the zsh tab completion
-# script (_task) distributed with TaskWarrior for the completion definitions.
-#
-# Typing task[tabtab] will give you a list of current tasks, task 66[tabtab]
-# gives a list of available modifications for that task, etc.
-################################################################################
-
-zstyle ':completion:*:*:task:*' verbose yes
-zstyle ':completion:*:*:task:*:descriptions' format '%U%B%d%b%u'
-
-zstyle ':completion:*:*:task:*' group-name ''
-
-alias t=task
-compdef _task t=task
diff --git a/common/.oh-my-zsh/plugins/terminalapp/terminalapp.plugin.zsh b/common/.oh-my-zsh/plugins/terminalapp/terminalapp.plugin.zsh
deleted file mode 100644
index 2249b1e..0000000
--- a/common/.oh-my-zsh/plugins/terminalapp/terminalapp.plugin.zsh
+++ /dev/null
@@ -1,39 +0,0 @@
-# Set Apple Terminal.app resume directory
-# based on this answer: http://superuser.com/a/315029
-# 2012-10-26: (javageek) Changed code using the updated answer
-
-# Tell the terminal about the working directory whenever it changes.
-if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]] && [[ -z "$INSIDE_EMACS" ]]; then
-  update_terminal_cwd() {
-        # Identify the directory using a "file:" scheme URL, including
-        # the host name to disambiguate local vs. remote paths.
-
-        # Percent-encode the pathname.
-        local URL_PATH=''
-        {
-            # Use LANG=C to process text byte-by-byte.
-            local i ch hexch LANG=C
-            for ((i = 1; i <= ${#PWD}; ++i)); do
-                ch="$PWD[i]"
-                if [[ "$ch" =~ [/._~A-Za-z0-9-] ]]; then
-                    URL_PATH+="$ch"
-                else
-                    hexch=$(printf "%02X" "'$ch")
-                    URL_PATH+="%$hexch"
-                fi
-            done
-        }
-
-        local PWD_URL="file://$HOST$URL_PATH"
-        #echo "$PWD_URL"        # testing
-        printf '\e]7;%s\a' "$PWD_URL"
-    }
-
-    # Register the function so it is called whenever the working
-    # directory changes.
-    autoload add-zsh-hook
-    add-zsh-hook chpwd update_terminal_cwd
-
-    # Tell the terminal about the initial directory.
-    update_terminal_cwd
-fi
diff --git a/common/.oh-my-zsh/plugins/terminitor/_terminitor b/common/.oh-my-zsh/plugins/terminitor/_terminitor
deleted file mode 100644
index 1ce87c3..0000000
--- a/common/.oh-my-zsh/plugins/terminitor/_terminitor
+++ /dev/null
@@ -1,38 +0,0 @@
-#compdef terminitor
-#autoload
-
-# terminitor zsh completion
-
-_terminitor_available_scripts() {
-  scripts=(`for SCRIPT in ~/.config/terminitor/*.term ; do basename $SCRIPT .term ; done`)
-}
-
-local -a _1st_arguments
-_1st_arguments=(
-    'create:create a Termfile in directory'
-    'delete:delete terminitor script'
-    'edit:open termitor script'
-    'fetch:clone the designated repo and run setup'
-    'help:Describe available tasks or one specific task'
-    'init:create initial root terminitor folder'
-    'list:lists all terminitor scripts'
-    'setup:execute setup in the terminitor script'
-    'start:runs the terminitor script'
-    'update:update Terminitor to new global path(.config/.terminitor)'
-)
-
-local expl
-
-_arguments \
-  '*:: :->subcmds' && return 0
-
-if (( CURRENT == 1 )); then
-  _describe -t commands "terminitor task" _1st_arguments
-  return
-fi
-
-case "$words[1]" in
-  start|edit|delete|setup)
-    _terminitor_available_scripts
-    _wanted scripts expl 'installed scripts' compadd -a scripts ;;
-esac
diff --git a/common/.oh-my-zsh/plugins/textmate/textmate.plugin.zsh b/common/.oh-my-zsh/plugins/textmate/textmate.plugin.zsh
deleted file mode 100644
index 773c4f8..0000000
--- a/common/.oh-my-zsh/plugins/textmate/textmate.plugin.zsh
+++ /dev/null
@@ -1,21 +0,0 @@
-alias et='mate .'
-alias ett='mate Gemfile app config features lib db public spec test Rakefile Capfile Todo'
-alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
-alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo'
-
-# Edit Ruby app in TextMate
-alias mr='mate CHANGELOG app config db lib public script spec test'
-
-# If the tm command is called without an argument, open TextMate in the current directory
-# If tm is passed a directory, cd to it and open it in TextMate
-# If tm is passed a file, open it in TextMate
-function tm() {
-	if [[ -z $1 ]]; then
-		mate .
-	else
-		mate $1
-		if [[ -d $1 ]]; then
-			cd $1
-		fi
-	fi
-}
diff --git a/common/.oh-my-zsh/plugins/themes/_theme b/common/.oh-my-zsh/plugins/themes/_theme
deleted file mode 100644
index 8214ddb..0000000
--- a/common/.oh-my-zsh/plugins/themes/_theme
+++ /dev/null
@@ -1,3 +0,0 @@
-#compdef theme
-
-_arguments "1: :($(lstheme | tr "\n" " "))"
diff --git a/common/.oh-my-zsh/plugins/themes/themes.plugin.zsh b/common/.oh-my-zsh/plugins/themes/themes.plugin.zsh
deleted file mode 100644
index 8bab257..0000000
--- a/common/.oh-my-zsh/plugins/themes/themes.plugin.zsh
+++ /dev/null
@@ -1,24 +0,0 @@
-function theme
-{
-    if [ "$1" = "random" ]; then
-	themes=($ZSH/themes/*zsh-theme)
-	N=${#themes[@]}
-	((N=(RANDOM%N)+1))
-	RANDOM_THEME=${themes[$N]}
-	source "$RANDOM_THEME"
-	echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
-    else
-	if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]
-	then
-	    source "$ZSH_CUSTOM/$1.zsh-theme"
-	else
-	    source "$ZSH/themes/$1.zsh-theme"
-	fi
-    fi
-}
-
-function lstheme
-{
-    cd $ZSH/themes
-    ls *zsh-theme | sed 's,\.zsh-theme$,,'
-}
diff --git a/common/.oh-my-zsh/plugins/thor/_thor b/common/.oh-my-zsh/plugins/thor/_thor
deleted file mode 100644
index 9f7ed5a..0000000
--- a/common/.oh-my-zsh/plugins/thor/_thor
+++ /dev/null
@@ -1,4 +0,0 @@
-#compdef thor
-#autoload
-
-compadd `thor list | grep thor | cut -d " " -f 2`
diff --git a/common/.oh-my-zsh/plugins/tmux/tmux.extra.conf b/common/.oh-my-zsh/plugins/tmux/tmux.extra.conf
deleted file mode 100644
index beffd38..0000000
--- a/common/.oh-my-zsh/plugins/tmux/tmux.extra.conf
+++ /dev/null
@@ -1,2 +0,0 @@
-set -g default-terminal $ZSH_TMUX_TERM
-source $HOME/.tmux.conf
diff --git a/common/.oh-my-zsh/plugins/tmux/tmux.only.conf b/common/.oh-my-zsh/plugins/tmux/tmux.only.conf
deleted file mode 100644
index 0734df3..0000000
--- a/common/.oh-my-zsh/plugins/tmux/tmux.only.conf
+++ /dev/null
@@ -1 +0,0 @@
-set -g default-terminal $ZSH_TMUX_TERM
diff --git a/common/.oh-my-zsh/plugins/tmux/tmux.plugin.zsh b/common/.oh-my-zsh/plugins/tmux/tmux.plugin.zsh
deleted file mode 100644
index 465f5b0..0000000
--- a/common/.oh-my-zsh/plugins/tmux/tmux.plugin.zsh
+++ /dev/null
@@ -1,85 +0,0 @@
-# Only run if tmux is actually installed
-if which tmux &> /dev/null
-	then
-	# Configuration variables
-	#
-	# Automatically start tmux
-	[[ -n "$ZSH_TMUX_AUTOSTART" ]] || ZSH_TMUX_AUTOSTART=false
-	# Only autostart once. If set to false, tmux will attempt to
-	# autostart every time your zsh configs are reloaded.
-	[[ -n "$ZSH_TMUX_AUTOSTART_ONCE" ]] || ZSH_TMUX_AUTOSTART_ONCE=true
-	# Automatically connect to a previous session if it exists
-	[[ -n "$ZSH_TMUX_AUTOCONNECT" ]] || ZSH_TMUX_AUTOCONNECT=true
-	# Automatically close the terminal when tmux exits
-	[[ -n "$ZSH_TMUX_AUTOQUIT" ]] || ZSH_TMUX_AUTOQUIT=$ZSH_TMUX_AUTOSTART
-	# Set term to screen or screen-256color based on current terminal support
-	[[ -n "$ZSH_TMUX_FIXTERM" ]] || ZSH_TMUX_FIXTERM=true
-	# The TERM to use for non-256 color terminals.
-	# Tmux states this should be screen, but you may need to change it on
-	# systems without the proper terminfo
-	[[ -n "$ZSH_TMUX_FIXTERM_WITHOUT_256COLOR" ]] || ZSH_TMUX_FIXTERM_WITHOUT_256COLOR="screen"
-	# The TERM to use for 256 color terminals.
-	# Tmux states this should be screen-256color, but you may need to change it on
-	# systems without the proper terminfo
-	[[ -n "$ZSH_TMUX_FIXTERM_WITH_256COLOR" ]] || ZSH_TMUX_FIXTERM_WITH_256COLOR="screen-256color"
-
-
-	# Get the absolute path to the current directory
-	local zsh_tmux_plugin_path="$(cd "$(dirname "$0")" && pwd)"
-
-	# Determine if the terminal supports 256 colors
-	if [[ `tput colors` == "256" ]]
-	then
-		export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITH_256COLOR
-	else
-		export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITHOUT_256COLOR
-	fi
-
-	# Set the correct local config file to use.
-	if [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]
-	then
-		#use this when they have a ~/.tmux.conf
-		export _ZSH_TMUX_FIXED_CONFIG="$zsh_tmux_plugin_path/tmux.extra.conf"
-	else
-		#use this when they don't have a ~/.tmux.conf
-		export _ZSH_TMUX_FIXED_CONFIG="$zsh_tmux_plugin_path/tmux.only.conf"
-	fi
-
-	# Wrapper function for tmux.
-	function _zsh_tmux_plugin_run()
-	{
-		# We have other arguments, just run them
-		if [[ -n "$@" ]]
-		then
-			\tmux $@
-		# Try to connect to an existing session.
-		elif [[ "$ZSH_TMUX_AUTOCONNECT" == "true" ]]
-		then
-			\tmux attach || \tmux `[[ "$ZSH_TMUX_FIXTERM" == "true" ]] && echo '-f '$_ZSH_TMUX_FIXED_CONFIG`  new-session
-			[[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
-		# Just run tmux, fixing the TERM variable if requested.
-		else
-			\tmux `[[ "$ZSH_TMUX_FIXTERM" == "true" ]] && echo '-f '$_ZSH_TMUX_FIXED_CONFIG`
-			[[ "$ZSH_TMUX_AUTOQUIT" == "true" ]] && exit
-		fi
-	}
-
-	# Use the completions for tmux for our function
-	compdef _tmux _zsh_tmux_plugin_run
-
-	# Alias tmux to our wrapper function.
-	alias tmux=_zsh_tmux_plugin_run
-
-	# Autostart if not already in tmux and enabled.
-	if [[ ! -n "$TMUX" && "$ZSH_TMUX_AUTOSTART" == "true" ]]
-	then
-		# Actually don't autostart if we already did and multiple autostarts are disabled.
-		if [[ "$ZSH_TMUX_AUTOSTART_ONCE" == "false" || "$ZSH_TMUX_AUTOSTARTED" != "true" ]]
-		then
-			export ZSH_TMUX_AUTOSTARTED=true
-			_zsh_tmux_plugin_run
-		fi
-	fi
-else
-	print "zsh tmux plugin: tmux not found. Please install tmux before using this plugin."
-fi
diff --git a/common/.oh-my-zsh/plugins/tmuxinator/_tmuxinator b/common/.oh-my-zsh/plugins/tmuxinator/_tmuxinator
deleted file mode 100644
index f0ff304..0000000
--- a/common/.oh-my-zsh/plugins/tmuxinator/_tmuxinator
+++ /dev/null
@@ -1,36 +0,0 @@
-#compdef tmuxinator
-#autoload
-
-local curcontext="$curcontext" state line ret=1
-local -a _configs
-
-_arguments -C \
-  '1: :->cmds' \
-  '2:: :->args' && ret=0
-
-case $state in
-  cmds)
-    _values "tmuxinator command" \
-        "start[start a tmux session using project's tmuxinator config]" \
-        "open[create a new project file and open it in your editor]" \
-        "copy[copy source_project project file to a new project called new_project]" \
-        "delete[deletes the project called project_name]" \
-        "implode[deletes all existing projects!]" \
-        "list[list all existing projects]" \
-        "doctor[look for problems in your configuration]" \
-        "help[shows this help document]" \
-        "version[shows tmuxinator version number]"
-    ret=0
-    ;;
-  args)
-    case $line[1] in
-      start|open|copy|delete)
-        _configs=(`tmuxinator list | sed -n 's/^[ \t]\+//p'`)
-        _values 'configs' $_configs
-        ret=0
-        ;;
-    esac
-    ;;
-esac
-
-return ret
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/torrent/torrent.plugin.zsh b/common/.oh-my-zsh/plugins/torrent/torrent.plugin.zsh
deleted file mode 100644
index 656e337..0000000
--- a/common/.oh-my-zsh/plugins/torrent/torrent.plugin.zsh
+++ /dev/null
@@ -1,17 +0,0 @@
-#
-# Algorithm borrowed from http://wiki.rtorrent.org/MagnetUri and adapted to work with zsh.
-#
-
-function magnet_to_torrent() {
-	[[ "$1" =~ xt=urn:btih:([^\&/]+) ]] || return 1
-
-	hashh=${match[1]}
-
-	if [[ "$1" =~ dn=([^\&/]+) ]];then
-	  filename=${match[1]}
-	else
-	  filename=$hashh
-	fi
-
-	echo "d10:magnet-uri${#1}:${1}e" > "$filename.torrent"
-}
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/urltools/urltools.plugin.zsh b/common/.oh-my-zsh/plugins/urltools/urltools.plugin.zsh
deleted file mode 100644
index 4ddfff8..0000000
--- a/common/.oh-my-zsh/plugins/urltools/urltools.plugin.zsh
+++ /dev/null
@@ -1,36 +0,0 @@
-# URL Tools
-# Adds handy command line aliases useful for dealing with URLs
-#
-# Taken from:
-# http://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/
-
-if [[ $(whence $URLTOOLS_METHOD) = "" ]]; then
-    URLTOOLS_METHOD=""
-fi
-
-if [[ $(whence node) != "" && ( "x$URLTOOLS_METHOD" = "x"  || "x$URLTOOLS_METHOD" = "xnode" ) ]]; then
-    alias urlencode='node -e "console.log(encodeURIComponent(process.argv[1]))"'
-    alias urldecode='node -e "console.log(decodeURIComponent(process.argv[1]))"'
-elif [[ $(whence python) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xpython" ) ]]; then
-    alias urlencode='python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])"'
-    alias urldecode='python -c "import sys, urllib as ul; print ul.unquote_plus(sys.argv[1])"'
-elif [[ $(whence ruby) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xruby" ) ]]; then
-    alias urlencode='ruby -r cgi -e "puts CGI.escape(ARGV[0])"'
-    alias urldecode='ruby -r cgi -e "puts CGI.unescape(ARGV[0])"'
-elif [[ $(whence php) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xphp" ) ]]; then
-    alias urlencode='php -r "echo rawurlencode(\$argv[1]); echo \"\n\";"'
-    alias urldecode='php -r "echo rawurldecode(\$argv[1]); echo \"\\n\";"'
-elif [[ $(whence perl) != "" && ( "x$URLTOOLS_METHOD" = "x" || "x$URLTOOLS_METHOD" = "xperl" ) ]]; then
-    if perl -MURI::Encode -e 1&> /dev/null; then
-        alias urlencode='perl -MURI::Encode -ep "uri_encode($ARGV[0]);"'
-        alias urldecode='perl -MURI::Encode -ep "uri_decode($ARGV[0]);"'
-    elif perl -MURI::Escape -e 1 &> /dev/null; then
-        alias urlencode='perl -MURI::Escape -ep "uri_escape($ARGV[0]);"'
-        alias urldecode='perl -MURI::Escape -ep "uri_unescape($ARGV[0]);"'
-    else
-        alias urlencode="perl -e '\$new=\$ARGV[0]; \$new =~ s/([^A-Za-z0-9])/sprintf(\"%%%02X\", ord(\$1))/seg; print \"\$new\n\";'"
-        alias urldecode="perl -e '\$new=\$ARGV[0]; \$new =~ s/\%([A-Fa-f0-9]{2})/pack(\"C\", hex(\$1))/seg; print \"\$new\n\";'"
-    fi
-fi
-
-unset URLTOOLS_METHOD
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/vagrant/_vagrant b/common/.oh-my-zsh/plugins/vagrant/_vagrant
deleted file mode 100644
index 9af8cb0..0000000
--- a/common/.oh-my-zsh/plugins/vagrant/_vagrant
+++ /dev/null
@@ -1,112 +0,0 @@
-#compdef vagrant 
-#autoload
-
-# vagrant zsh completion
-
-local -a _1st_arguments
-_1st_arguments=(
-    'box:Box commands'
-    'destroy:Destroys the vagrant environment'
-    'halt:Halts the currently running vagrant environment'
-    'init:[box_name] [box_url] Initializes current folder for Vagrant usage'
-    'package:Packages a vagrant environment for distribution'
-    'plugin:Plugin commands'
-    'provision:Run the provisioner'
-    'reload:Reload the vagrant environment'
-    'resume:Resumes a suspend vagrant environment'
-    'ssh:SSH into the currently running environment'
-    'ssh-config:outputs .ssh/config valid syntax for connecting to this environment via ssh.'
-    'status:Shows the status of the current Vagrant environment.'
-    'suspend:Suspends the currently running vagrant environment'
-    'up:Creates the vagrant environment'
-    '--help:[TASK] Describe available tasks or one specific task'
-    '--version:Prints the Vagrant version information'
-)
-
-local -a _box_arguments
-_box_arguments=(
-    'add:NAME URI Add a box to the system'
-    'help:COMMAND Describe subcommands or one specific subcommand'
-    'list:Lists all installed boxes'
-    'remove:NAME Remove a box from the system'
-    'repackage:NAME Repackage an installed box into a `.box` file.'
-)
-
-__task_list ()
-{
-    local expl
-    declare -a tasks
-
-    tasks=(box destroy halt init package provision reload resume ssh ssh_config status suspend up version)
-
-    _wanted tasks expl 'help' compadd $tasks
-}
-
-__box_list ()
-{
-    _wanted application expl 'command' compadd $(command ls -1 $HOME/.vagrant/boxes 2>/dev/null| sed -e 's/ /\\ /g')
-}
-
-__vm_list ()
-{
-    _wanted application expl 'command' compadd $(command grep Vagrantfile -oe '^[^#]*\.vm\.define *:\([a-zA-Z0-9]\+\)' 2>/dev/null | cut -d: -f2)
-}
-
-__vagrant-box ()
-{
-    local curcontext="$curcontext" state line
-    typeset -A opt_args
-
-    _arguments -C \
-        ':command:->command' \
-        '*::options:->options'
-
-   case $state in
-       (command)
-           _describe -t commands "gem subcommand" _box_arguments
-           return
-       ;;
-
-       (options)
-           case $line[1] in
-               (repackage|remove)
-                   _arguments ':feature:__box_list' 
-               ;;
-           esac
-       ;;
-    esac
-}
-
-
-
-
-local expl
-local -a boxes installed_boxes
-
-local curcontext="$curcontext" state line
-typeset -A opt_args
-
-_arguments -C \
-    ':command:->command' \
-    '*::options:->options'
-
-case $state in
-  (command)
-      _describe -t commands "gem subcommand" _1st_arguments
-      return
-  ;;
-
-  (options)
-    case $line[1] in
-      (help)
-         _arguments ':feature:__task_list' 
-      ;;
-
-      (box)
-          __vagrant-box
-      ;;
-      (up|provision|package|destroy|reload|ssh|halt|resume|status)
-	_arguments ':feature:__vm_list'
-    esac
-  ;;
-esac
diff --git a/common/.oh-my-zsh/plugins/vi-mode/vi-mode.plugin.zsh b/common/.oh-my-zsh/plugins/vi-mode/vi-mode.plugin.zsh
deleted file mode 100644
index a061004..0000000
--- a/common/.oh-my-zsh/plugins/vi-mode/vi-mode.plugin.zsh
+++ /dev/null
@@ -1,35 +0,0 @@
-# Ensures that $terminfo values are valid and updates editor information when
-# the keymap changes.
-function zle-keymap-select zle-line-init zle-line-finish {
-  # The terminal must be in application mode when ZLE is active for $terminfo
-  # values to be valid.
-  if (( ${+terminfo[smkx]} )); then
-    printf '%s' ${terminfo[smkx]}
-  fi
-  if (( ${+terminfo[rmkx]} )); then
-    printf '%s' ${terminfo[rmkx]}
-  fi
-
-  zle reset-prompt
-  zle -R
-}
-
-zle -N zle-line-init
-zle -N zle-line-finish
-zle -N zle-keymap-select
-
-bindkey -v
-
-# if mode indicator wasn't setup by theme, define default
-if [[ "$MODE_INDICATOR" == "" ]]; then
-  MODE_INDICATOR="%{$fg_bold[red]%}<%{$fg[red]%}<<%{$reset_color%}"
-fi
-
-function vi_mode_prompt_info() {
-  echo "${${KEYMAP/vicmd/$MODE_INDICATOR}/(main|viins)/}"
-}
-
-# define right prompt, if it wasn't defined by a theme
-if [[ "$RPS1" == "" && "$RPROMPT" == "" ]]; then
-  RPS1='$(vi_mode_prompt_info)'
-fi
diff --git a/common/.oh-my-zsh/plugins/virtualenv/virtualenv.plugin.zsh b/common/.oh-my-zsh/plugins/virtualenv/virtualenv.plugin.zsh
deleted file mode 100644
index e845838..0000000
--- a/common/.oh-my-zsh/plugins/virtualenv/virtualenv.plugin.zsh
+++ /dev/null
@@ -1,9 +0,0 @@
-function virtualenv_prompt_info(){
-  local virtualenv_path="$VIRTUAL_ENV"
-  if [[ -n $virtualenv_path ]]; then
-    local virtualenv_name=`basename $virtualenv_path`
-    printf "%s[%s] " "%{${fg[yellow]}%}" $virtualenv_name
-  fi
-}
-
-export VIRTUAL_ENV_DISABLE_PROMPT=1
diff --git a/common/.oh-my-zsh/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh b/common/.oh-my-zsh/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh
deleted file mode 100644
index 0ed2565..0000000
--- a/common/.oh-my-zsh/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh
+++ /dev/null
@@ -1,40 +0,0 @@
-wrapsource=`which virtualenvwrapper_lazy.sh`
-
-if [[ -f "$wrapsource" ]]; then
-  source $wrapsource
-
-  if [[ ! $DISABLE_VENV_CD -eq 1 ]]; then
-    # Automatically activate Git projects' virtual environments based on the
-    # directory name of the project. Virtual environment name can be overridden
-    # by placing a .venv file in the project root with a virtualenv name in it
-    function workon_cwd {
-        # Check that this is a Git repo
-        PROJECT_ROOT=`git rev-parse --show-toplevel 2> /dev/null`
-        if (( $? == 0 )); then
-            # Check for virtualenv name override
-            ENV_NAME=`basename "$PROJECT_ROOT"`
-            if [[ -f "$PROJECT_ROOT/.venv" ]]; then
-                ENV_NAME=`cat "$PROJECT_ROOT/.venv"`
-            fi
-            # Activate the environment only if it is not already active
-            if [[ "$VIRTUAL_ENV" != "$WORKON_HOME/$ENV_NAME" ]]; then
-                if [[ -e "$WORKON_HOME/$ENV_NAME/bin/activate" ]]; then
-                    workon "$ENV_NAME" && export CD_VIRTUAL_ENV="$ENV_NAME"
-                fi
-            fi
-        elif [ $CD_VIRTUAL_ENV ]; then
-            # We've just left the repo, deactivate the environment
-            # Note: this only happens if the virtualenv was activated automatically
-            deactivate && unset CD_VIRTUAL_ENV
-        fi
-        unset PROJECT_ROOT
-    }
-
-    # New cd function that does the virtualenv magic
-    function cd {
-        builtin cd "$@" && workon_cwd
-    }
-  fi
-else
-  print "zsh virtualenvwrapper plugin: Cannot find virtualenvwrapper_lazy.sh. Please install with \`pip install virtualenvwrapper\`."
-fi
diff --git a/common/.oh-my-zsh/plugins/vundle/vundle.plugin.zsh b/common/.oh-my-zsh/plugins/vundle/vundle.plugin.zsh
deleted file mode 100644
index 936c8d7..0000000
--- a/common/.oh-my-zsh/plugins/vundle/vundle.plugin.zsh
+++ /dev/null
@@ -1,27 +0,0 @@
-function vundle-init () {
-  if [ ! -d ~/.vim/bundle/vundle/ ]
-  then
-    mkdir -p ~/.vim/bundle/vundle/
-  fi
-
-  if [ ! -d ~/.vim/bundle/vundle/.git/ ]
-  then
-    git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
-    echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
-  fi
-}
-
-function vundle () {
-  vundle-init
-  vim -c "execute \"BundleInstall\" | q | q"
-}
-
-function vundle-update () {
-  vundle-init
-  vim -c "execute \"BundleInstall!\" | q | q"
-}
-
-function vundle-clean () {
-  vundle-init
-  vim -c "execute \"BundleClean!\" | q | q"
-}
diff --git a/common/.oh-my-zsh/plugins/wakeonlan/README b/common/.oh-my-zsh/plugins/wakeonlan/README
deleted file mode 100644
index 16fdd45..0000000
--- a/common/.oh-my-zsh/plugins/wakeonlan/README
+++ /dev/null
@@ -1,29 +0,0 @@
-This plugin provides a wrapper around the "wakeonlan" tool available from most
-distributions' package repositories, or from the following website:
-
-http://gsd.di.uminho.pt/jpo/software/wakeonlan/
-
-In order to use this wrapper, create the ~/.wakeonlan directory, and place in
-that directory one file for each device you would like to be able to wake. Give
-the file a name that describes the device, such as its hostname. Each file
-should contain a line with the mac address of the target device and the network
-broadcast address.
-
-For instance, there might be a file ~/.wakeonlan/leto with the following
-contents:
-
-00:11:22:33:44:55:66 192.168.0.255
-
-To wake that device, use the following command:
-
-# wake leto
-
-The available device names will be autocompleted, so:
-
-# wake 
-
-...will suggest "leto", along with any other configuration files that were
-placed in the ~/.wakeonlan directory.
-
-For more information regarding the configuration file format, check the
-wakeonlan man page.
diff --git a/common/.oh-my-zsh/plugins/wakeonlan/_wake b/common/.oh-my-zsh/plugins/wakeonlan/_wake
deleted file mode 100644
index 4ab10d3..0000000
--- a/common/.oh-my-zsh/plugins/wakeonlan/_wake
+++ /dev/null
@@ -1,4 +0,0 @@
-#compdef wake
-#autoload
-
-_arguments "1:device to wake:_files -W '$HOME/.wakeonlan'" && return 0
diff --git a/common/.oh-my-zsh/plugins/wakeonlan/wakeonlan.plugin.zsh b/common/.oh-my-zsh/plugins/wakeonlan/wakeonlan.plugin.zsh
deleted file mode 100644
index 6cef7d4..0000000
--- a/common/.oh-my-zsh/plugins/wakeonlan/wakeonlan.plugin.zsh
+++ /dev/null
@@ -1,14 +0,0 @@
-function wake() {
-  local config_file="$HOME/.wakeonlan/$1"
-  if [[ ! -f "$config_file" ]]; then
-    echo "ERROR: There is no configuration file at \"$config_file\"."
-    return 1
-  fi
-
-  if (( ! $+commands[wakeonlan] )); then
-    echo "ERROR: Can't find \"wakeonlan\".  Are you sure it's installed?"
-    return 1
-  fi
-
-  wakeonlan -f "$config_file"
-}
diff --git a/common/.oh-my-zsh/plugins/yum/yum.plugin.zsh b/common/.oh-my-zsh/plugins/yum/yum.plugin.zsh
deleted file mode 100644
index 69abfc4..0000000
--- a/common/.oh-my-zsh/plugins/yum/yum.plugin.zsh
+++ /dev/null
@@ -1,16 +0,0 @@
-## Aliases
-
-alias ys="yum search"                       # search package
-alias yp="yum info"                         # show package info
-alias yl="yum list"                         # list packages
-alias ygl="yum grouplist"                   # list package groups
-alias yli="yum list installed"              # print all installed packages
-alias ymc="yum makecache"                   # rebuilds the yum package list
-
-alias yu="sudo yum update"                  # upgrate packages
-alias yi="sudo yum install"                 # install package
-alias ygi="sudo yum groupinstall"           # install package group
-alias yr="sudo yum remove"                  # remove package
-alias ygr="sudo yum groupremove"            # remove pagage group
-alias yrl="sudo yum remove --remove-leaves" # remove package and leaves
-alias yc="sudo yum clean all"               # clean cache
\ No newline at end of file
diff --git a/common/.oh-my-zsh/plugins/zeus/README.md b/common/.oh-my-zsh/plugins/zeus/README.md
deleted file mode 100644
index d7c2aef..0000000
--- a/common/.oh-my-zsh/plugins/zeus/README.md
+++ /dev/null
@@ -1,43 +0,0 @@
-## zeus
-**Maintainer:** [b4mboo](https://github.com/b4mboo)
-
-* `zi` aliases `zeus init`
-* `zinit` aliases `zeus init`
-
-* `zs` aliases `zeus start`
-* `ztart` aliases `zeus start`
-
-* `zc` aliases `zeus console`
-* `zonsole` aliases `zeus console`
-
-* `zsr` aliases `zeus server`
-* `zerver` aliases `zeus server`
-
-* `zr` aliases `zeus rake`
-* `zake` aliases `zeus rake`
-
-* `zg` aliases `zeus generate`
-* `zenerate` aliases `zeus generate`
-
-* `zrn` aliases `zeus runner`
-* `zunner` aliases `zeus runner`
-
-* `zcu` aliases `zeus cucumber`
-* `zucumber` aliases `zeus cucumber`
-
-* `zspec` aliases `zeus rspec`
-
-* `zt` aliases `zeus test`
-* `zest` aliases `zeus test`
-
-* `zu` aliases `zeus test test/unit/*`
-* `zunits` aliases `zeus test test/unit/*`
-
-* `zf` aliases `zeus test test/functional/*`
-* `zunctional` aliases `zeus test test/functional/*`
-
-* `za` aliases `zeus test test/unit/*; zeus test test/functional/; zeus cucumber`
-* `zall` aliases `zeus test test/unit/*; zeus test test/functional/; zeus cucumber`
-
-* `zsw` aliases `rm .zeus.sock`
-* `zweep` aliases `rm .zeus.sock`
diff --git a/common/.oh-my-zsh/plugins/zeus/_zeus b/common/.oh-my-zsh/plugins/zeus/_zeus
deleted file mode 100644
index 5a13bd9..0000000
--- a/common/.oh-my-zsh/plugins/zeus/_zeus
+++ /dev/null
@@ -1,34 +0,0 @@
-#compdef zeus
-#autoload
-
-# in order to make this work, you will need to have the gem zeus installed
-
-# zeus zsh completion, based on adb completion
-
-local -a _1st_arguments
-_1st_arguments=(
-'console:Lets you interact with your Rails application from the command line. (alias = c)'
-'cucumber:Runs cucumber.'
-'dbconsole:Figures out which database you are using and drops you into whichever command line interface.'
-'destroy:Figures out what generate did, and undoes it. (alias = d)'
-'generate:Uses templates to create a whole lot of things. (alias = g)'
-'rake:Execute rake tasks.'
-'runner:Runs Ruby code in the context of Rails non-interactively. (alias = r)'
-'server:Launches a small web server named WEBrick which comes bundled with Ruby. (alias = s)'
-'start:Preloads the zeus environment'
-'test:Runs RSpec tests. (alias = rspec, testrb)'
-'version:Shows the version number.'
-)
-
-local expl
-local -a pkgs installed_pkgs
-
-_arguments \
-	'*:: :->subcmds' && return 0
-
-if (( CURRENT == 1 )); then
-	_describe -t commands "zeus subcommand" _1st_arguments
-	return
-fi
-
-_files
diff --git a/common/.oh-my-zsh/plugins/zeus/zeus.plugin.zsh b/common/.oh-my-zsh/plugins/zeus/zeus.plugin.zsh
deleted file mode 100644
index eddfb4f..0000000
--- a/common/.oh-my-zsh/plugins/zeus/zeus.plugin.zsh
+++ /dev/null
@@ -1,55 +0,0 @@
-# Some aliases for zeus. (See: https://github.com/burke/zeus)
-# Zeus preloads your Rails environment and forks that process whenever
-# needed. This effectively speeds up Rails' boot process to under 1 sec.
-
-# Init
-alias zi='zeus init'
-alias zinit='zeus init'
-
-# Start
-alias zs='zeus start'
-alias ztart='zeus start'
-
-# Console
-alias zc='zeus console'
-alias zonsole='zeus console'
-
-# Server
-alias zsr='zeus server'
-alias zerver='zeus server'
-
-# Rake
-alias zr='zeus rake'
-alias zake='zeus rake'
-
-# Generate
-alias zg='zeus generate'
-alias zenerate='zeus generate'
-
-# Runner
-alias zrn='zeus runner'
-alias zunner='zeus runner'
-
-# Cucumber
-alias zcu='zeus cucumber'
-alias zucumber='zeus cucumber'
-
-# Rspec
-alias zspec='zeus rspec'
-
-# Test
-alias zt='zeus test'
-alias zest='zeus test'
-
-alias zu='zeus test test/unit/*'
-alias zunits='zeus test test/unit/*'
-
-alias zf='zeus test test/functional/*'
-alias zunctional='zeus test test/functional/*'
-
-alias za='zeus test test/unit/*; zeus test test/functional/; zeus cucumber'
-alias zall='zeus test test/unit/*; zeus test test/functional/; zeus cucumber'
-
-# Clean up crashed zeus instances.
-alias zsw='rm .zeus.sock'
-alias zweep='rm .zeus.sock'
diff --git a/common/.oh-my-zsh/templates/zshrc.zsh-template b/common/.oh-my-zsh/templates/zshrc.zsh-template
deleted file mode 100644
index d4dded7..0000000
--- a/common/.oh-my-zsh/templates/zshrc.zsh-template
+++ /dev/null
@@ -1,47 +0,0 @@
-# Path to your oh-my-zsh configuration.
-ZSH=$HOME/.oh-my-zsh
-
-# Set name of the theme to load.
-# Look in ~/.oh-my-zsh/themes/
-# Optionally, if you set this to "random", it'll load a random theme each
-# time that oh-my-zsh is loaded.
-ZSH_THEME="robbyrussell"
-
-# Example aliases
-# alias zshconfig="mate ~/.zshrc"
-# alias ohmyzsh="mate ~/.oh-my-zsh"
-
-# Set to this to use case-sensitive completion
-# CASE_SENSITIVE="true"
-
-# Comment this out to disable bi-weekly auto-update checks
-# DISABLE_AUTO_UPDATE="true"
-
-# Uncomment to change how often before auto-updates occur? (in days)
-# export UPDATE_ZSH_DAYS=13
-
-# Uncomment following line if you want to disable colors in ls
-# DISABLE_LS_COLORS="true"
-
-# Uncomment following line if you want to disable autosetting terminal title.
-# DISABLE_AUTO_TITLE="true"
-
-# Uncomment following line if you want to disable command autocorrection
-# DISABLE_CORRECTION="true"
-
-# Uncomment following line if you want red dots to be displayed while waiting for completion
-# COMPLETION_WAITING_DOTS="true"
-
-# Uncomment following line if you want to disable marking untracked files under
-# VCS as dirty. This makes repository status check for large repositories much,
-# much faster.
-# DISABLE_UNTRACKED_FILES_DIRTY="true"
-
-# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
-# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
-# Example format: plugins=(rails git textmate ruby lighthouse)
-plugins=(git)
-
-source $ZSH/oh-my-zsh.sh
-
-# Customize to your needs...
diff --git a/common/.oh-my-zsh/themes/3den.zsh-theme b/common/.oh-my-zsh/themes/3den.zsh-theme
deleted file mode 100644
index 1d2c7db..0000000
--- a/common/.oh-my-zsh/themes/3den.zsh-theme
+++ /dev/null
@@ -1,7 +0,0 @@
-PROMPT=$'%{$fg[white]%}$(~/.rvm/bin/rvm-prompt) %{$fg_bold[cyan]%}%~%{$reset_color%}$(git_prompt_info) %{$fg[cyan]%}%D{[%I:%M:%S]}\
-%{$fg_bold[green]%}%n$%{$reset_color%} '
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[white]%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="*"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
diff --git a/common/.oh-my-zsh/themes/Soliah.zsh-theme b/common/.oh-my-zsh/themes/Soliah.zsh-theme
deleted file mode 100644
index 237e70f..0000000
--- a/common/.oh-my-zsh/themes/Soliah.zsh-theme
+++ /dev/null
@@ -1,86 +0,0 @@
-PROMPT='%{$fg[blue]%}%n%{$reset_color%} on %{$fg[red]%}%M%{$reset_color%} in %{$fg[blue]%}%~%b%{$reset_color%}$(git_time_since_commit)$(check_git_prompt_info)
-$ '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})"
-
-# Text to display if the branch is dirty
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}" 
-
-# Text to display if the branch is clean
-ZSH_THEME_GIT_PROMPT_CLEAN="" 
-
-# Colors vary depending on time lapsed.
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}"
-ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}"
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}"
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[cyan]%}"
-
-
-# Git sometimes goes into a detached head state. git_prompt_info doesn't
-# return anything in this case. So wrap it in another function and check
-# for an empty string.
-function check_git_prompt_info() {
-    if git rev-parse --git-dir > /dev/null 2>&1; then
-        if [[ -z $(git_prompt_info) ]]; then
-            echo "%{$fg[magenta]%}detached-head%{$reset_color%})"
-        else
-            echo "$(git_prompt_info)"
-        fi
-    fi
-}
-
-# Determine if we are using a gemset.
-function rvm_gemset() {
-    GEMSET=`rvm gemset list | grep '=>' | cut -b4-`
-    if [[ -n $GEMSET ]]; then
-        echo "%{$fg[yellow]%}$GEMSET%{$reset_color%}|"
-    fi 
-
-}
-
-# Determine the time since last commit. If branch is clean,
-# use a neutral color, otherwise colors will vary according to time.
-function git_time_since_commit() {
-    if git rev-parse --git-dir > /dev/null 2>&1; then
-        # Only proceed if there is actually a commit.
-        if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then
-            # Get the last commit.
-            last_commit=`git log --pretty=format:'%at' -1 2> /dev/null`
-            now=`date +%s`
-            seconds_since_last_commit=$((now-last_commit))
-
-            # Totals
-            MINUTES=$((seconds_since_last_commit / 60))
-            HOURS=$((seconds_since_last_commit/3600))
-           
-            # Sub-hours and sub-minutes
-            DAYS=$((seconds_since_last_commit / 86400))
-            SUB_HOURS=$((HOURS % 24))
-            SUB_MINUTES=$((MINUTES % 60))
-            
-            if [[ -n $(git status -s 2> /dev/null) ]]; then
-                if [ "$MINUTES" -gt 30 ]; then
-                    COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG"
-                elif [ "$MINUTES" -gt 10 ]; then
-                    COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM"
-                else
-                    COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT"
-                fi
-            else
-                COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
-            fi
-
-            if [ "$HOURS" -gt 24 ]; then
-                echo "($(rvm_gemset)$COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}|"
-            elif [ "$MINUTES" -gt 60 ]; then
-                echo "($(rvm_gemset)$COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}|"
-            else
-                echo "($(rvm_gemset)$COLOR${MINUTES}m%{$reset_color%}|"
-            fi
-        else
-            COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
-            echo "($(rvm_gemset)$COLOR~|"
-        fi
-    fi
-}
diff --git a/common/.oh-my-zsh/themes/adben.zsh-theme b/common/.oh-my-zsh/themes/adben.zsh-theme
deleted file mode 100644
index 9f777e8..0000000
--- a/common/.oh-my-zsh/themes/adben.zsh-theme
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env zsh
-local USER_HOST='%{$terminfo[bold]$fg[yellow]%}%n@%m%{$reset_color%}'
-local RETURN_CODE="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-local GIT_BRANCH='%{$terminfo[bold]$fg[red]%}$(git_prompt_info)%{$reset_color%}'
-local CURRENT_DIR='%{$terminfo[bold]$fg[green]%} %~%{$reset_color%}'
-local RUBY_RVM='%{$fg[gray]%}‹$(rvm-prompt i v g)›%{$reset_color%}'
-local COMMAND_TIP='%{$terminfo[bold]$fg[blue]%}$(wget -qO - http://www.commandlinefu.com/commands/random/plaintext | sed 1d | sed '/^$/d' | sed 's/^/║/g')%{$reset_color%}'
-######### PROMPT #########
-PROMPT="%{$terminfo[bold]$fg[blue]%}╔═ %{$reset_color%}${USER_HOST} ${CURRENT_DIR} ${RUBY_RVM} ${GIT_BRANCH}
-${COMMAND_TIP}
-%{$terminfo[bold]$fg[blue]%}╚═ %{$reset_color%}%B%{$terminfo[bold]$fg[white]%}$%b%{$reset_color%} "
-RPS1='${RETURN_CODE}'
-RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}'
-######### PROMPT #########
-########## GIT ###########
-ZSH_THEME_GIT_PROMPT_PREFIX="‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$GIT_PROMPT_INFO%}›"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$GIT_DIRTY_COLOR%}✘"
-ZSH_THEME_GIT_PROMPT_CLEAN=" %{$GIT_CLEAN_COLOR%}✔"
-ZSH_THEME_GIT_PROMPT_ADDED="%{$FG[082]%}✚%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$FG[166]%}✹%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$FG[160]%}✖%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$FG[220]%}➜%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$FG[082]%}═%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$FG[190]%}✭%{$reset_color%}"
-########## GIT ###########
diff --git a/common/.oh-my-zsh/themes/af-magic.zsh-theme b/common/.oh-my-zsh/themes/af-magic.zsh-theme
deleted file mode 100644
index c1b00c6..0000000
--- a/common/.oh-my-zsh/themes/af-magic.zsh-theme
+++ /dev/null
@@ -1,36 +0,0 @@
-# af-magic.zsh-theme
-#
-# Author: Andy Fleming
-# URL: http://andyfleming.com/
-# Repo: https://github.com/andyfleming/oh-my-zsh
-# Direct Link: https://github.com/andyfleming/oh-my-zsh/blob/master/themes/af-magic.zsh-theme
-#
-# Created on:		June 19, 2012
-# Last modified on:	June 20, 2012
-
-
-
-if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-# primary prompt
-PROMPT='$FG[237]------------------------------------------------------------%{$reset_color%}
-$FG[032]%~\
-$(git_prompt_info) \
-$FG[105]%(!.#.»)%{$reset_color%} '
-PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
-RPS1='${return_code}'
-
-
-# color vars
-eval my_gray='$FG[237]'
-eval my_orange='$FG[214]'
-
-# right prompt
-RPROMPT='$my_gray%n@%m%{$reset_color%}%'
-
-# git settings
-ZSH_THEME_GIT_PROMPT_PREFIX="$FG[075](branch:"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_DIRTY="$my_orange*%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="$FG[075])%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/afowler.zsh-theme b/common/.oh-my-zsh/themes/afowler.zsh-theme
deleted file mode 100644
index 3a4753f..0000000
--- a/common/.oh-my-zsh/themes/afowler.zsh-theme
+++ /dev/null
@@ -1,10 +0,0 @@
-if [ $UID -eq 0 ]; then CARETCOLOR="red"; else CARETCOLOR="blue"; fi
-
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-PROMPT='%m %{${fg_bold[blue]}%}:: %{$reset_color%}%{${fg[green]}%}%3~ $(git_prompt_info)%{${fg_bold[$CARETCOLOR]}%}»%{${reset_color}%} '
-
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/agnoster.zsh-theme b/common/.oh-my-zsh/themes/agnoster.zsh-theme
deleted file mode 100644
index a9de8c8..0000000
--- a/common/.oh-my-zsh/themes/agnoster.zsh-theme
+++ /dev/null
@@ -1,162 +0,0 @@
-# vim:ft=zsh ts=2 sw=2 sts=2
-#
-# agnoster's Theme - https://gist.github.com/3712874
-# A Powerline-inspired theme for ZSH
-#
-# # README
-#
-# In order for this theme to render correctly, you will need a
-# [Powerline-patched font](https://gist.github.com/1595572).
-#
-# In addition, I recommend the
-# [Solarized theme](https://github.com/altercation/solarized/) and, if you're
-# using it on Mac OS X, [iTerm 2](http://www.iterm2.com/) over Terminal.app -
-# it has significantly better color fidelity.
-#
-# # Goals
-#
-# The aim of this theme is to only show you *relevant* information. Like most
-# prompts, it will only show git information when in a git working directory.
-# However, it goes a step further: everything from the current user and
-# hostname to whether the last call exited with an error to whether background
-# jobs are running in this shell will all be displayed automatically when
-# appropriate.
-
-### Segment drawing
-# A few utility functions to make it easy and re-usable to draw segmented prompts
-
-CURRENT_BG='NONE'
-SEGMENT_SEPARATOR='⮀'
-
-# Begin a segment
-# Takes two arguments, background and foreground. Both can be omitted,
-# rendering default background/foreground.
-prompt_segment() {
-  local bg fg
-  [[ -n $1 ]] && bg="%K{$1}" || bg="%k"
-  [[ -n $2 ]] && fg="%F{$2}" || fg="%f"
-  if [[ $CURRENT_BG != 'NONE' && $1 != $CURRENT_BG ]]; then
-    echo -n " %{$bg%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR%{$fg%} "
-  else
-    echo -n "%{$bg%}%{$fg%} "
-  fi
-  CURRENT_BG=$1
-  [[ -n $3 ]] && echo -n $3
-}
-
-# End the prompt, closing any open segments
-prompt_end() {
-  if [[ -n $CURRENT_BG ]]; then
-    echo -n " %{%k%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR"
-  else
-    echo -n "%{%k%}"
-  fi
-  echo -n "%{%f%}"
-  CURRENT_BG=''
-}
-
-### Prompt components
-# Each component will draw itself, and hide itself if no information needs to be shown
-
-# Context: user@hostname (who am I and where am I)
-prompt_context() {
-  local user=`whoami`
-
-  if [[ "$user" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
-    prompt_segment black default "%(!.%{%F{yellow}%}.)$user@%m"
-  fi
-}
-
-# Git: branch/detached head, dirty status
-prompt_git() {
-  local ref dirty
-  if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
-    dirty=$(parse_git_dirty)
-    ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="➦ $(git show-ref --head -s --abbrev |head -n1 2> /dev/null)"
-    if [[ -n $dirty ]]; then
-      prompt_segment yellow black
-    else
-      prompt_segment green black
-    fi
-
-    setopt promptsubst
-    autoload -Uz vcs_info
-
-    zstyle ':vcs_info:*' enable git
-    zstyle ':vcs_info:*' get-revision true
-    zstyle ':vcs_info:*' check-for-changes true
-    zstyle ':vcs_info:*' stagedstr '✚'
-    zstyle ':vcs_info:git:*' unstagedstr '●'
-    zstyle ':vcs_info:*' formats ' %u%c'
-    zstyle ':vcs_info:*' actionformats '%u%c'
-    vcs_info
-    echo -n "${ref/refs\/heads\//⭠ }${vcs_info_msg_0_}"
-  fi
-}
-
-prompt_hg() {
-	local rev status
-	if $(hg id >/dev/null 2>&1); then
-		if $(hg prompt >/dev/null 2>&1); then
-			if [[ $(hg prompt "{status|unknown}") = "?" ]]; then
-				# if files are not added
-				prompt_segment red white
-				st='±'
-			elif [[ -n $(hg prompt "{status|modified}") ]]; then
-				# if any modification
-				prompt_segment yellow black
-				st='±'
-			else
-				# if working copy is clean
-				prompt_segment green black
-			fi
-			echo -n $(hg prompt "⭠ {rev}@{branch}") $st
-		else
-			st=""
-			rev=$(hg id -n 2>/dev/null | sed 's/[^-0-9]//g')
-			branch=$(hg id -b 2>/dev/null)
-			if `hg st | grep -Eq "^\?"`; then
-				prompt_segment red black
-				st='±'
-			elif `hg st | grep -Eq "^(M|A)"`; then
-				prompt_segment yellow black
-				st='±'
-			else
-				prompt_segment green black
-			fi
-			echo -n "⭠ $rev@$branch" $st
-		fi
-	fi
-}
-
-# Dir: current working directory
-prompt_dir() {
-  prompt_segment blue black '%~'
-}
-
-# Status:
-# - was there an error
-# - am I root
-# - are there background jobs?
-prompt_status() {
-  local symbols
-  symbols=()
-  [[ $RETVAL -ne 0 ]] && symbols+="%{%F{red}%}✘"
-  [[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%}⚡"
-  [[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}⚙"
-
-  [[ -n "$symbols" ]] && prompt_segment black default "$symbols"
-}
-
-## Main prompt
-build_prompt() {
-  RETVAL=$?
-  prompt_status
-  prompt_context
-  prompt_dir
-  prompt_git
-  prompt_hg
-  prompt_end
-}
-
-PROMPT='%{%f%b%k%}$(build_prompt) '
diff --git a/common/.oh-my-zsh/themes/alanpeabody.zsh-theme b/common/.oh-my-zsh/themes/alanpeabody.zsh-theme
deleted file mode 100644
index 4a1b1b3..0000000
--- a/common/.oh-my-zsh/themes/alanpeabody.zsh-theme
+++ /dev/null
@@ -1,28 +0,0 @@
-
-local user='%{$fg[magenta]%}%n@%{$fg[magenta]%}%m%{$reset_color%}'
-local pwd='%{$fg[blue]%}%~%{$reset_color%}'
-local rvm=''
-if which rvm-prompt &> /dev/null; then
-  rvm='%{$fg[green]%}‹$(rvm-prompt i v g)›%{$reset_color%}'
-else
-  if which rbenv &> /dev/null; then
-    rvm='%{$fg[green]%}‹$(rbenv version | sed -e "s/ (set.*$//")›%{$reset_color%}'
-  fi
-fi
-local return_code='%(?..%{$fg[red]%}%? ↵%{$reset_color%})'
-local git_branch='$(git_prompt_status)%{$reset_color%}$(git_prompt_info)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY=""
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭"
-
-PROMPT="${user} ${pwd}$ "
-RPROMPT="${return_code} ${git_branch} ${rvm}"
diff --git a/common/.oh-my-zsh/themes/apple.zsh-theme b/common/.oh-my-zsh/themes/apple.zsh-theme
deleted file mode 100644
index 275341d..0000000
--- a/common/.oh-my-zsh/themes/apple.zsh-theme
+++ /dev/null
@@ -1,29 +0,0 @@
-function toon {
-  echo -n ""
-}
-
-get_git_dirty() {
-  git diff --quiet || echo '*'
-}
-
-autoload -Uz vcs_info
-autoload -U colors && colors
-zstyle ':vcs_info:*' check-for-changes true
-zstyle ':vcs_info:*' unstagedstr '%F{red}*'   # display this when there are unstaged changes
-zstyle ':vcs_info:*' stagedstr '%F{yellow}+'  # display this when there are staged changes
-zstyle ':vcs_info:*' actionformats \
-    '%F{5}%F{5}[%F{2}%b%F{3}|%F{1}%a%c%u%F{5}]%f '
-zstyle ':vcs_info:*' formats       \
-    '%F{5}%F{5}[%F{2}%b%c%u%F{5}]%f '
-zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'
-zstyle ':vcs_info:*' enable git cvs svn
-
-theme_precmd () {
-    vcs_info
-}
-
-setopt prompt_subst
-PROMPT='%{$fg[magenta]%}$(toon)%{$reset_color%} %~/ %{$reset_color%}${vcs_info_msg_0_}%{$reset_color%}'
-
-autoload -U add-zsh-hook
-add-zsh-hook precmd theme_precmd
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/arrow.zsh-theme b/common/.oh-my-zsh/themes/arrow.zsh-theme
deleted file mode 100644
index d62dcdc..0000000
--- a/common/.oh-my-zsh/themes/arrow.zsh-theme
+++ /dev/null
@@ -1,14 +0,0 @@
-if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="yellow"; fi
-
-PROMPT='%{$fg[$NCOLOR]%}%c ➤ %{$reset_color%}'
-RPROMPT='%{$fg[$NCOLOR]%}%p $(git_prompt_info)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="git:"
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_DIRTY="*"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-# See http://geoff.greer.fm/lscolors/
-export LSCOLORS="exfxcxdxbxbxbxbxbxbxbx"
-export LS_COLORS="di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=31;40:cd=31;40:su=31;40:sg=31;40:tw=31;40:ow=31;40:"
-
diff --git a/common/.oh-my-zsh/themes/aussiegeek.zsh-theme b/common/.oh-my-zsh/themes/aussiegeek.zsh-theme
deleted file mode 100644
index c2c7f65..0000000
--- a/common/.oh-my-zsh/themes/aussiegeek.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-
-PROMPT='$fg_bold[blue][ $fg[red]%t $fg_bold[blue]] $fg_bold[blue] [ $fg[red]%n@%m:%~$(git_prompt_info)$fg[yellow]$(rvm_prompt_info)$fg_bold[blue] ]$reset_color
- $ '
-# git theming
-ZSH_THEME_GIT_PROMPT_PREFIX="$fg_bold[green]("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")"
-ZSH_THEME_GIT_PROMPT_CLEAN="✔"
-ZSH_THEME_GIT_PROMPT_DIRTY="✗"
diff --git a/common/.oh-my-zsh/themes/avit.zsh-theme b/common/.oh-my-zsh/themes/avit.zsh-theme
deleted file mode 100644
index 51f5e37..0000000
--- a/common/.oh-my-zsh/themes/avit.zsh-theme
+++ /dev/null
@@ -1,120 +0,0 @@
-#
-# Author:: Andrew Vit ()
-#
-# AVIT ZSH Theme
-#
-# Copyright 2011, Andrew Vit
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-PROMPT='
-$(_user_host)${_current_dir} $(git_prompt_info) $(_ruby_version)
-▶ '
-
-PROMPT2='%{$fg[grey]%}◀%{$reset_color%} '
-
-RPROMPT='$(_vi_status)%{$(echotc UP 1)%}$(_git_time_since_commit) $(git_prompt_status) ${_return_status}%{$(echotc DO 1)%}'
-
-local _current_dir="%{$fg[blue]%}%3~%{$reset_color%} "
-local _return_status="%{$fg[red]%}%(?..⍉)%{$reset_color%}"
-local _hist_no="%{$fg[grey]%}%h%{$reset_color%}"
-
-function _user_host() {
-  if [[ -n $SSH_CONNECTION ]]; then
-    me="%n@%m"
-  elif [[ $LOGNAME != $USER ]]; then
-    me="%n"
-  fi
-  if [[ -n $me ]]; then
-    echo "%{$fg[cyan]%}$me%{$reset_color%}:"
-  fi
-}
-
-function _vi_status() {
-  if {echo $fpath | grep -q "plugins/vi-mode"}; then
-    echo "$(vi_mode_prompt_info)"
-  fi
-}
-
-function _ruby_version() {
-  if {echo $fpath | grep -q "plugins/rvm"}; then
-    echo "%{$fg[grey]%}$(rvm_prompt_info)%{$reset_color%}"
-  fi
-}
-
-# Determine the time since last commit. If branch is clean,
-# use a neutral color, otherwise colors will vary according to time.
-function _git_time_since_commit() {
-  if git rev-parse --git-dir > /dev/null 2>&1; then
-    # Only proceed if there is actually a commit.
-    if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then
-      # Get the last commit.
-      last_commit=$(git log --pretty=format:'%at' -1 2> /dev/null)
-      now=$(date +%s)
-      seconds_since_last_commit=$((now-last_commit))
-
-      # Totals
-      minutes=$((seconds_since_last_commit / 60))
-      hours=$((seconds_since_last_commit/3600))
-
-      # Sub-hours and sub-minutes
-      days=$((seconds_since_last_commit / 86400))
-      sub_hours=$((hours % 24))
-      sub_minutes=$((minutes % 60))
-
-      if [ $hours -gt 24 ]; then
-          commit_age="${days}d"
-      elif [ $minutes -gt 60 ]; then
-          commit_age="${sub_hours}h${sub_minutes}m"
-      else
-          commit_age="${minutes}m"
-      fi
-
-      color=$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL
-      echo "$color$commit_age%{$reset_color%}"
-    fi
-  fi
-}
-
-if [[ $USER == "root" ]]; then
-  CARETCOLOR="red"
-else
-  CARETCOLOR="white"
-fi
-
-MODE_INDICATOR="%{$fg_bold[yellow]%}❮%{$reset_color%}%{$fg[yellow]%}❮❮%{$reset_color%}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%}✚ "
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}⚑ "
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✖ "
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}▴ "
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[cyan]%}§ "
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%}◒ "
-
-# Colors vary depending on time lapsed.
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}"
-ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}"
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}"
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[grey]%}"
-
-# LS colors, made with http://geoff.greer.fm/lscolors/
-export LSCOLORS="exfxcxdxbxegedabagacad"
-export LS_COLORS='di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=34;46:cd=34;43:su=0;41:sg=0;46:tw=0;42:ow=0;43:'
-export GREP_COLOR='1;33'
-
diff --git a/common/.oh-my-zsh/themes/awesomepanda.zsh-theme b/common/.oh-my-zsh/themes/awesomepanda.zsh-theme
deleted file mode 100644
index 411b898..0000000
--- a/common/.oh-my-zsh/themes/awesomepanda.zsh-theme
+++ /dev/null
@@ -1,18 +0,0 @@
-# the svn plugin has to be activated for this to work.
-
-PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%}$(svn_prompt_info)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%})%{$fg[yellow]%} ✗ %{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}) "
-
-
-
-ZSH_PROMPT_BASE_COLOR="%{$fg_bold[blue]%}"
-ZSH_THEME_REPO_NAME_COLOR="%{$fg_bold[red]%}"
-
-ZSH_THEME_SVN_PROMPT_PREFIX="svn:("
-ZSH_THEME_SVN_PROMPT_SUFFIX=")"
-ZSH_THEME_SVN_PROMPT_DIRTY="%{$fg[red]%} ✘ %{$reset_color%}"
-ZSH_THEME_SVN_PROMPT_CLEAN=" "
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/bira.zsh-theme b/common/.oh-my-zsh/themes/bira.zsh-theme
deleted file mode 100644
index 2157204..0000000
--- a/common/.oh-my-zsh/themes/bira.zsh-theme
+++ /dev/null
@@ -1,21 +0,0 @@
-# ZSH Theme - Preview: http://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-local user_host='%{$terminfo[bold]$fg[green]%}%n@%m%{$reset_color%}'
-local current_dir='%{$terminfo[bold]$fg[blue]%} %~%{$reset_color%}'
-local rvm_ruby=''
-if which rvm-prompt &> /dev/null; then
-  rvm_ruby='%{$fg[red]%}‹$(rvm-prompt i v g)›%{$reset_color%}'
-else
-  if which rbenv &> /dev/null; then
-    rvm_ruby='%{$fg[red]%}‹$(rbenv version | sed -e "s/ (set.*$//")›%{$reset_color%}'
-  fi
-fi
-local git_branch='$(git_prompt_info)%{$reset_color%}'
-
-PROMPT="╭─${user_host} ${current_dir} ${rvm_ruby} ${git_branch}
-╰─%B$%b "
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/blinks.zsh-theme b/common/.oh-my-zsh/themes/blinks.zsh-theme
deleted file mode 100644
index ddb32f7..0000000
--- a/common/.oh-my-zsh/themes/blinks.zsh-theme
+++ /dev/null
@@ -1,30 +0,0 @@
-# https://github.com/blinks zsh theme
-
-function _prompt_char() {
-  if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
-    echo "%{%F{blue}%}±%{%f%k%b%}"
-  else
-    echo ' '
-  fi
-}
-
-# This theme works with both the "dark" and "light" variants of the
-# Solarized color schema.  Set the SOLARIZED_THEME variable to one of
-# these two values to choose.  If you don't specify, we'll assume you're
-# using the "dark" variant.
-
-case ${SOLARIZED_THEME:-dark} in
-    light) bkg=white;;
-    *)     bkg=black;;
-esac
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" [%{%B%F{blue}%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{%f%k%b%K{${bkg}}%B%F{green}%}]"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{%F{red}%}*%{%f%k%b%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-PROMPT='%{%f%k%b%}
-%{%K{${bkg}}%B%F{green}%}%n%{%B%F{blue}%}@%{%B%F{cyan}%}%m%{%B%F{green}%} %{%b%F{yellow}%K{${bkg}}%}%~%{%B%F{green}%}$(git_prompt_info)%E%{%f%k%b%}
-%{%K{${bkg}}%}$(_prompt_char)%{%K{${bkg}}%} %#%{%f%k%b%} '
-
-RPROMPT='!%{%B%F{cyan}%}%!%{%f%k%b%}'
diff --git a/common/.oh-my-zsh/themes/candy-kingdom.zsh-theme b/common/.oh-my-zsh/themes/candy-kingdom.zsh-theme
deleted file mode 100644
index 25aeb65..0000000
--- a/common/.oh-my-zsh/themes/candy-kingdom.zsh-theme
+++ /dev/null
@@ -1,37 +0,0 @@
-# neuralsanwich.zsh-theme
-#
-# Author: Sean Jones
-# URL: http://www.neuralsandwich.com
-# Repo: 
-# Direct link:
-# Create:
-# Modified: 
-
-if [ "x$OH_MY_ZSH_HG" = "x" ]; then
-    OH_MY_ZSH_HG="hg"
-fi
-
-function hg_prompt_info {
-    $OH_MY_ZSH_HG prompt --angle-brackets "\
-< on %{$fg[magenta]%}%{$reset_color%}>\
-< at %{$fg[yellow]%}%{$reset_color%}>\
-%{$fg[green]%}%{$reset_color%}<
-patches: >" 2>/dev/null
-}
-
-function box_name {
-    [ -f ~/.box-name ] && cat ~/.box-name || hostname -s
-}
-
-PROMPT='
-%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}$(box_name)%{$reset_color%}:%{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(hg_prompt_info)$(git_prompt_info)
-%(?,,%{${fg_bold[white]}%}[%?]%{$reset_color%} )$ '
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[magenta]%}branch: "
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[red]%}?"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[orange]%}!"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})"
-
-local return_status="%{$fg[red]%}%(?..✘)%{$reset_color%}"
-RPROMPT='${return_status}$(battery_time_remaining) $(battery_pct_prompt)%{$reset_color%}'
diff --git a/common/.oh-my-zsh/themes/candy.zsh-theme b/common/.oh-my-zsh/themes/candy.zsh-theme
deleted file mode 100644
index bc125c5..0000000
--- a/common/.oh-my-zsh/themes/candy.zsh-theme
+++ /dev/null
@@ -1,7 +0,0 @@
-PROMPT=$'%{$fg_bold[green]%}%n@%m %{$fg[blue]%}%D{[%I:%M:%S]} %{$reset_color%}%{$fg[white]%}[%~]%{$reset_color%} $(git_prompt_info)\
-%{$fg[blue]%}->%{$fg_bold[blue]%} %#%{$reset_color%} '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}["
-ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
diff --git a/common/.oh-my-zsh/themes/clean.zsh-theme b/common/.oh-my-zsh/themes/clean.zsh-theme
deleted file mode 100644
index 7ee29cb..0000000
--- a/common/.oh-my-zsh/themes/clean.zsh-theme
+++ /dev/null
@@ -1,14 +0,0 @@
-if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="white"; fi
-
-PROMPT='%{$fg[$NCOLOR]%}%B%n%b%{$reset_color%}:%{$fg[blue]%}%B%c/%b%{$reset_color%} $(git_prompt_info)%(!.#.$) '
-RPROMPT='[%*]'
-
-# git theming
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[yellow]%}%B"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%b%{$fg_bold[blue]%})%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}✗"
-
-# LS colors, made with http://geoff.greer.fm/lscolors/
-export LSCOLORS="Gxfxcxdxbxegedabagacad"
-export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:'
diff --git a/common/.oh-my-zsh/themes/cloud.zsh-theme b/common/.oh-my-zsh/themes/cloud.zsh-theme
deleted file mode 100644
index 4efbf97..0000000
--- a/common/.oh-my-zsh/themes/cloud.zsh-theme
+++ /dev/null
@@ -1,10 +0,0 @@
-if [[ -z $ZSH_THEME_CLOUD_PREFIX ]]; then
-    ZSH_THEME_CLOUD_PREFIX='☁'
-fi
-
-PROMPT='%{$fg_bold[cyan]%}$ZSH_THEME_CLOUD_PREFIX %{$fg_bold[green]%}%p %{$fg[green]%}%c %{$fg_bold[cyan]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[%{$fg[cyan]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}] %{$fg[yellow]%}⚡%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}]"
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/crcandy.zsh-theme b/common/.oh-my-zsh/themes/crcandy.zsh-theme
deleted file mode 100644
index 0a63c12..0000000
--- a/common/.oh-my-zsh/themes/crcandy.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-PROMPT=$'
-%{$fg_bold[green]%}%n@%m %{$fg[blue]%}%D{[%I:%M:%S]} %{$reset_color%}%{$fg[white]%}[%~]%{$reset_color%} $(git_prompt_info)\
-%{$fg[blue]%}->%{$fg_bold[blue]%} %#%{$reset_color%} '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}["
-ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
diff --git a/common/.oh-my-zsh/themes/crunch.zsh-theme b/common/.oh-my-zsh/themes/crunch.zsh-theme
deleted file mode 100644
index 2fc0663..0000000
--- a/common/.oh-my-zsh/themes/crunch.zsh-theme
+++ /dev/null
@@ -1,43 +0,0 @@
-# CRUNCH - created from Steve Eley's cat waxing.
-# Initially hacked from the Dallas theme. Thanks, Dallas Reedy.
-#
-# This theme assumes you do most of your oh-my-zsh'ed "colorful" work at a single machine, 
-# and eschews the standard space-consuming user and hostname info.  Instead, only the 
-# things that vary in my own workflow are shown:
-#
-# * The time (not the date)
-# * The RVM version and gemset (omitting the 'ruby' name if it's MRI)
-# * The current directory
-# * The Git branch and its 'dirty' state
-# 
-# Colors are at the top so you can mess with those separately if you like.
-# For the most part I stuck with Dallas's.
-
-CRUNCH_BRACKET_COLOR="%{$fg[white]%}"
-CRUNCH_TIME_COLOR="%{$fg[yellow]%}"
-CRUNCH_RVM_COLOR="%{$fg[magenta]%}"
-CRUNCH_DIR_COLOR="%{$fg[cyan]%}"
-CRUNCH_GIT_BRANCH_COLOR="%{$fg[green]%}"
-CRUNCH_GIT_CLEAN_COLOR="%{$fg[green]%}"
-CRUNCH_GIT_DIRTY_COLOR="%{$fg[red]%}"
-
-# These Git variables are used by the oh-my-zsh git_prompt_info helper:
-ZSH_THEME_GIT_PROMPT_PREFIX="$CRUNCH_BRACKET_COLOR:$CRUNCH_GIT_BRANCH_COLOR"
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_CLEAN=" $CRUNCH_GIT_CLEAN_COLOR✓"
-ZSH_THEME_GIT_PROMPT_DIRTY=" $CRUNCH_GIT_DIRTY_COLOR✗"
-
-# Our elements:
-CRUNCH_TIME_="$CRUNCH_BRACKET_COLOR{$CRUNCH_TIME_COLOR%T$CRUNCH_BRACKET_COLOR}%{$reset_color%}"
-if [ -e ~/.rvm/bin/rvm-prompt ]; then
-  CRUNCH_RVM_="$CRUNCH_BRACKET_COLOR"["$CRUNCH_RVM_COLOR\${\$(~/.rvm/bin/rvm-prompt i v g)#ruby-}$CRUNCH_BRACKET_COLOR"]"%{$reset_color%}"
-else
-  if which rbenv &> /dev/null; then
-    CRUNCH_RVM_="$CRUNCH_BRACKET_COLOR"["$CRUNCH_RVM_COLOR\${\$(rbenv version | sed -e 's/ (set.*$//' -e 's/^ruby-//')}$CRUNCH_BRACKET_COLOR"]"%{$reset_color%}"
-  fi
-fi
-CRUNCH_DIR_="$CRUNCH_DIR_COLOR%~\$(git_prompt_info) "
-CRUNCH_PROMPT="$CRUNCH_BRACKET_COLOR➭ "
-
-# Put it all together!
-PROMPT="$CRUNCH_TIME_$CRUNCH_RVM_$CRUNCH_DIR_$CRUNCH_PROMPT%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/cypher.zsh-theme b/common/.oh-my-zsh/themes/cypher.zsh-theme
deleted file mode 100644
index 45df53d..0000000
--- a/common/.oh-my-zsh/themes/cypher.zsh-theme
+++ /dev/null
@@ -1,4 +0,0 @@
-# Based on evan's prompt
-# Shows the exit status of the last command if non-zero
-# Uses "#" instead of "»" when running with elevated privileges
-PROMPT="%m %{${fg_bold[red]}%}:: %{${fg[green]}%}%3~%(0?. . ${fg[red]}%? )%{${fg[blue]}%}»%{${reset_color}%} "
diff --git a/common/.oh-my-zsh/themes/dallas.zsh-theme b/common/.oh-my-zsh/themes/dallas.zsh-theme
deleted file mode 100644
index e9e8617..0000000
--- a/common/.oh-my-zsh/themes/dallas.zsh-theme
+++ /dev/null
@@ -1,32 +0,0 @@
-# Personalized!
-
-# Grab the current date (%D) and time (%T) wrapped in {}: {%D %T}
-DALLAS_CURRENT_TIME_="%{$fg[white]%}{%{$fg[yellow]%}%D %T%{$fg[white]%}}%{$reset_color%}"
-# Grab the current version of ruby in use (via RVM): [ruby-1.8.7]
-if [ -e ~/.rvm/bin/rvm-prompt ]; then
-  DALLAS_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[magenta]%}\$(~/.rvm/bin/rvm-prompt i v)%{$fg[white]%}]%{$reset_color%}"
-else
-  if which rbenv &> /dev/null; then
-    DALLAS_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[magenta]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$fg[white]%}]%{$reset_color%}"
-  fi
-fi
-# Grab the current machine name: muscato
-DALLAS_CURRENT_MACH_="%{$fg[green]%}%m%{$fg[white]%}:%{$reset_color%}"
-# Grab the current filepath, use shortcuts: ~/Desktop
-# Append the current git branch, if in a git repository: ~aw@master
-DALLAS_CURRENT_LOCA_="%{$fg[cyan]%}%~\$(git_prompt_info)%{$reset_color%}\$(parse_git_dirty)"
-# Grab the current username: dallas
-DALLAS_CURRENT_USER_="%{$fg[red]%}%n%{$reset_color%}"
-# Use a % for normal users and a # for privelaged (root) users.
-DALLAS_PROMPT_CHAR_="%{$fg[white]%}%(!.#.%%)%{$reset_color%}"
-# For the git prompt, use a white @ and blue text for the branch name
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%}@%{$fg[blue]%}"
-# Close it all off by resetting the color and styles.
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-# Do nothing if the branch is clean (no changes).
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-# Add 3 cyan ✗s if this branch is diiirrrty! Dirty branch!
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[cyan]%}✗✗✗"
-
-# Put it all together!
-PROMPT="$DALLAS_CURRENT_TIME_$DALLAS_CURRENT_RUBY_$DALLAS_CURRENT_MACH_$DALLAS_CURRENT_LOCA_ $DALLAS_CURRENT_USER_$DALLAS_PROMPT_CHAR_ "
diff --git a/common/.oh-my-zsh/themes/darkblood.zsh-theme b/common/.oh-my-zsh/themes/darkblood.zsh-theme
deleted file mode 100644
index 33508fb..0000000
--- a/common/.oh-my-zsh/themes/darkblood.zsh-theme
+++ /dev/null
@@ -1,9 +0,0 @@
-# meh. Dark Blood Rewind, a new beginning.
-
-PROMPT=$'%{$fg[red]%}┌[%{$fg_bold[white]%}%n%{$reset_color%}%{$fg[red]%}@%{$fg_bold[white]%}%m%{$reset_color%}%{$fg[red]%}] [%{$fg_bold[white]%}/dev/%y%{$reset_color%}%{$fg[red]%}] %{$(git_prompt_info)%}%(?,,%{$fg[red]%}[%{$fg_bold[white]%}%?%{$reset_color%}%{$fg[red]%}])
-%{$fg[red]%}└[%{$fg_bold[white]%}%~%{$reset_color%}%{$fg[red]%}]>%{$reset_color%} '
-PS2=$' %{$fg[red]%}|>%{$reset_color%} '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}[%{$fg_bold[white]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}%{$fg[red]%}] "
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}⚡%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/daveverwer.zsh-theme b/common/.oh-my-zsh/themes/daveverwer.zsh-theme
deleted file mode 100644
index 89aef92..0000000
--- a/common/.oh-my-zsh/themes/daveverwer.zsh-theme
+++ /dev/null
@@ -1,7 +0,0 @@
-# Copied and modified from the oh-my-zsh theme from geoffgarside
-# Red server name, green cwd, blue git status
-
-PROMPT='%{$fg[red]%}%m%{$reset_color%}:%{$fg[green]%}%c%{$reset_color%}$(git_prompt_info) %(!.#.$) '
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[blue]%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/dieter.zsh-theme b/common/.oh-my-zsh/themes/dieter.zsh-theme
deleted file mode 100644
index 0a5e926..0000000
--- a/common/.oh-my-zsh/themes/dieter.zsh-theme
+++ /dev/null
@@ -1,56 +0,0 @@
-# the idea of this theme is to contain a lot of info in a small string, by
-# compressing some parts and colorcoding, which bring useful visual cues,
-# while limiting the amount of colors and such to keep it easy on the eyes.
-# When a command exited >0, the timestamp will be in red and the exit code
-# will be on the right edge.
-# The exit code visual cues will only display once.
-# (i.e. they will be reset, even if you hit enter a few times on empty command prompts)
-
-typeset -A host_repr
-
-# translate hostnames into shortened, colorcoded strings
-host_repr=('dieter-ws-a7n8x-arch' "%{$fg_bold[green]%}ws" 'dieter-p4sci-arch' "%{$fg_bold[blue]%}p4")
-
-# local time, color coded by last return code
-time_enabled="%(?.%{$fg[green]%}.%{$fg[red]%})%*%{$reset_color%}"
-time_disabled="%{$fg[green]%}%*%{$reset_color%}"
-time=$time_enabled
-
-# user part, color coded by privileges
-local user="%(!.%{$fg[blue]%}.%{$fg[blue]%})%n%{$reset_color%}"
-
-# Hostname part.  compressed and colorcoded per host_repr array
-# if not found, regular hostname in default color
-local host="@${host_repr[$(hostname)]:-$(hostname)}%{$reset_color%}"
-
-# Compacted $PWD
-local pwd="%{$fg[blue]%}%c%{$reset_color%}"
-
-PROMPT='${time} ${user}${host} ${pwd} $(git_prompt_info)'
-
-# i would prefer 1 icon that shows the "most drastic" deviation from HEAD,
-# but lets see how this works out
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%} %{$fg[yellow]%}?%{$fg[green]%}%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}"
-
-# elaborate exitcode on the right when >0
-return_code_enabled="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-return_code_disabled=
-return_code=$return_code_enabled
-
-RPS1='${return_code}'
-
-function accept-line-or-clear-warning () {
-	if [[ -z $BUFFER ]]; then
-		time=$time_disabled
-		return_code=$return_code_disabled
-	else
-		time=$time_enabled
-		return_code=$return_code_enabled
-	fi
-	zle accept-line
-}
-zle -N accept-line-or-clear-warning
-bindkey '^M' accept-line-or-clear-warning
diff --git a/common/.oh-my-zsh/themes/dogenpunk.zsh-theme b/common/.oh-my-zsh/themes/dogenpunk.zsh-theme
deleted file mode 100644
index f4d65ab..0000000
--- a/common/.oh-my-zsh/themes/dogenpunk.zsh-theme
+++ /dev/null
@@ -1,85 +0,0 @@
-# -----------------------------------------------------------------------------
-#          FILE: dogenpunk.zsh-theme
-#   DESCRIPTION: oh-my-zsh theme file.
-#        AUTHOR: Matthew Nelson (dogenpunk@gmail.com)
-#       VERSION: 0.1
-#    SCREENSHOT: coming soon
-# -----------------------------------------------------------------------------
-
-MODE_INDICATOR="%{$fg_bold[red]%}❮%{$reset_color%}%{$fg[red]%}❮❮%{$reset_color%}"
-local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}"
-
-PROMPT='%{$fg[blue]%}%m%{$reset_color%}%{$fg_bold[white]%} ओम् %{$reset_color%}%{$fg[cyan]%}%~:%{$reset_color%}$(git_time_since_commit)$(git_prompt_info)
-%{$fg[red]%}%!%{$reset_color%} $(prompt_char) '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[green]%}git%{$reset_color%}@%{$bg[white]%}%{$fg[black]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}!%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-RPROMPT='${return_status}$(git_prompt_status)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭"
-
-function prompt_char() {
-  git branch >/dev/null 2>/dev/null && echo "%{$fg[green]%}±%{$reset_color%}" && return
-  hg root >/dev/null 2>/dev/null && echo "%{$fg_bold[red]%}☿%{$reset_color%}" && return
-  echo "%{$fg[cyan]%}◯ %{$reset_color%}"
-}
-
-# Colors vary depending on time lapsed.
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}"
-ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}"
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}"
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[cyan]%}"
-
-# Determine the time since last commit. If branch is clean,
-# use a neutral color, otherwise colors will vary according to time.
-function git_time_since_commit() {
-    if git rev-parse --git-dir > /dev/null 2>&1; then
-        # Only proceed if there is actually a commit.
-        if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then
-            # Get the last commit.
-            last_commit=`git log --pretty=format:'%at' -1 2> /dev/null`
-            now=`date +%s`
-            seconds_since_last_commit=$((now-last_commit))
-
-            # Totals
-            MINUTES=$((seconds_since_last_commit / 60))
-            HOURS=$((seconds_since_last_commit/3600))
-
-            # Sub-hours and sub-minutes
-            DAYS=$((seconds_since_last_commit / 86400))
-            SUB_HOURS=$((HOURS % 24))
-            SUB_MINUTES=$((MINUTES % 60))
-
-            if [[ -n $(git status -s 2> /dev/null) ]]; then
-                if [ "$MINUTES" -gt 30 ]; then
-                    COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG"
-                elif [ "$MINUTES" -gt 10 ]; then
-                    COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM"
-                else
-                    COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT"
-                fi
-            else
-                COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
-            fi
-
-            if [ "$HOURS" -gt 24 ]; then
-                echo "($COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}|"
-            elif [ "$MINUTES" -gt 60 ]; then
-                echo "($COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}|"
-            else
-                echo "($COLOR${MINUTES}m%{$reset_color%}|"
-            fi
-        else
-            COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
-            echo "($COLOR~|"
-        fi
-    fi
-}
diff --git a/common/.oh-my-zsh/themes/dpoggi.zsh-theme b/common/.oh-my-zsh/themes/dpoggi.zsh-theme
deleted file mode 100644
index 6469a20..0000000
--- a/common/.oh-my-zsh/themes/dpoggi.zsh-theme
+++ /dev/null
@@ -1,14 +0,0 @@
-if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-PROMPT='%{$fg[$NCOLOR]%}%n%{$reset_color%}@%{$fg[cyan]%}%m\
-%{$reset_color%}:%{$fg[magenta]%}%~\
-$(git_prompt_info) \
-%{$fg[red]%}%(!.#.»)%{$reset_color%} '
-PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
-RPS1='${return_code}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}("
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}○%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}⚡%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[yellow]%})%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/dst.zsh-theme b/common/.oh-my-zsh/themes/dst.zsh-theme
deleted file mode 100644
index 3e2539d..0000000
--- a/common/.oh-my-zsh/themes/dst.zsh-theme
+++ /dev/null
@@ -1,16 +0,0 @@
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}!"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-function prompt_char {
-	if [ $UID -eq 0 ]; then echo "%{$fg[red]%}#%{$reset_color%}"; else echo $; fi
-}
-
-PROMPT='%(?, ,%{$fg[red]%}FAIL%{$reset_color%}
-)
-%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}%m%{$reset_color%}: %{$fg_bold[blue]%}%~%{$reset_color%}$(git_prompt_info)
-%_ $(prompt_char) '
-
-RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}'
diff --git a/common/.oh-my-zsh/themes/dstufft.zsh-theme b/common/.oh-my-zsh/themes/dstufft.zsh-theme
deleted file mode 100644
index 5a23fce..0000000
--- a/common/.oh-my-zsh/themes/dstufft.zsh-theme
+++ /dev/null
@@ -1,19 +0,0 @@
-function prompt_char {
-    git branch >/dev/null 2>/dev/null && echo '±' && return
-    hg root >/dev/null 2>/dev/null && echo 'Hg' && return
-    echo '○'
-}
-
-function virtualenv_info {
-    [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
-}
-
-PROMPT='
-%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info)
-$(virtualenv_info)$(prompt_char) '
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
diff --git a/common/.oh-my-zsh/themes/duellj.zsh-theme b/common/.oh-my-zsh/themes/duellj.zsh-theme
deleted file mode 100644
index 7350b43..0000000
--- a/common/.oh-my-zsh/themes/duellj.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-
-# user, host, full path, and time/date
-# on two lines for easier vgrepping
-# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
-PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;34m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}%!%{\e[0;34m%}%B]%b%{\e[0m%}
-%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B]%{\e[0m%}%b '
-RPROMPT='[%*]'
-PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
diff --git a/common/.oh-my-zsh/themes/eastwood.zsh-theme b/common/.oh-my-zsh/themes/eastwood.zsh-theme
deleted file mode 100644
index db25299..0000000
--- a/common/.oh-my-zsh/themes/eastwood.zsh-theme
+++ /dev/null
@@ -1,23 +0,0 @@
-#RVM settings
-if [[ -s ~/.rvm/scripts/rvm ]] ; then 
-  RPS1="%{$fg[yellow]%}rvm:%{$reset_color%}%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt)%{$reset_color%} $EPS1"
-else
-  if which rbenv &> /dev/null; then
-    RPS1="%{$fg[yellow]%}rbenv:%{$reset_color%}%{$fg[red]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$reset_color%} $EPS1"
-  fi
-fi
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}["
-ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-#Customized git status, oh-my-zsh currently does not allow render dirty status before branch
-git_custom_status() {
-  local cb=$(current_branch)
-  if [ -n "$cb" ]; then
-    echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
-  fi
-}
-
-PROMPT='$(git_custom_status)%{$fg[cyan]%}[%~% ]%{$reset_color%}%B$%b '
diff --git a/common/.oh-my-zsh/themes/edvardm.zsh-theme b/common/.oh-my-zsh/themes/edvardm.zsh-theme
deleted file mode 100644
index f9ca1a9..0000000
--- a/common/.oh-my-zsh/themes/edvardm.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg_bold[white]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/essembeh.zsh-theme b/common/.oh-my-zsh/themes/essembeh.zsh-theme
deleted file mode 100644
index 8c98ea1..0000000
--- a/common/.oh-my-zsh/themes/essembeh.zsh-theme
+++ /dev/null
@@ -1,31 +0,0 @@
-# Theme with full path names and hostname
-# Handy if you work on different servers all the time;
-
-
-local return_code="%(?..%{$fg_bold[red]%}%? ↵%{$reset_color%})"
-
-function my_git_prompt_info() {
-	ref=$(git symbolic-ref HEAD 2> /dev/null) || return
-	GIT_STATUS=$(git_prompt_status)
-	[[ -n $GIT_STATUS ]] && GIT_STATUS=" $GIT_STATUS"
-	echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX"
-}
-
-# Colored prompt
-ZSH_THEME_COLOR_USER="green" 
-ZSH_THEME_COLOR_HOST="green" 
-ZSH_THEME_COLOR_PWD="yellow" 
-test -n "$SSH_CONNECTION" && ZSH_THEME_COLOR_USER="red" && ZSH_THEME_COLOR_HOST="red"
-test `id -u` = 0 && ZSH_THEME_COLOR_USER="magenta" && ZSH_THEME_COLOR_HOST="magenta"
-PROMPT='%{$fg_bold[$ZSH_THEME_COLOR_USER]%}%n@%{$fg_bold[$ZSH_THEME_COLOR_HOST]%}%M%{$reset_color%}:%{$fg_bold[$ZSH_THEME_COLOR_PWD]%}%~%{$reset_color%} $(my_git_prompt_info)%(!.#.$) '
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%%"
-ZSH_THEME_GIT_PROMPT_ADDED="+"
-ZSH_THEME_GIT_PROMPT_MODIFIED="*"
-ZSH_THEME_GIT_PROMPT_RENAMED="~"
-ZSH_THEME_GIT_PROMPT_DELETED="!"
-ZSH_THEME_GIT_PROMPT_UNMERGED="?"
-
diff --git a/common/.oh-my-zsh/themes/evan.zsh-theme b/common/.oh-my-zsh/themes/evan.zsh-theme
deleted file mode 100644
index 5ef1f40..0000000
--- a/common/.oh-my-zsh/themes/evan.zsh-theme
+++ /dev/null
@@ -1,2 +0,0 @@
-# Evan describes this sexy prompt as: "a skinny, topless prompt"
-PROMPT='%m :: %2~ %B»%b '
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/example.zsh-theme b/common/.oh-my-zsh/themes/example.zsh-theme
deleted file mode 100644
index dbd9dc9..0000000
--- a/common/.oh-my-zsh/themes/example.zsh-theme
+++ /dev/null
@@ -1,5 +0,0 @@
-# Found on the ZshWiki
-#  http://zshwiki.org/home/config/prompt
-#
-
-PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% "
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/fino-time.zsh-theme b/common/.oh-my-zsh/themes/fino-time.zsh-theme
deleted file mode 100644
index 7154e09..0000000
--- a/common/.oh-my-zsh/themes/fino-time.zsh-theme
+++ /dev/null
@@ -1,39 +0,0 @@
-# Fino-time theme by Aexander Berezovsky (http://berezovsky.me) based on Fino by Max Masnick (http://max.masnick.me)
-
-# Use with a dark background and 256-color terminal!
-# Meant for people with RVM and git. Tested only on OS X 10.7.
-
-# You can set your computer name in the ~/.box-name file if you want.
-
-# Borrowing shamelessly from these oh-my-zsh themes:
-#   bira
-#   robbyrussell
-#
-# Also borrowing from http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/
-
-function virtualenv_info {
-    [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
-}
-
-function prompt_char {
-    git branch >/dev/null 2>/dev/null && echo '⠠⠵' && return
-    echo '○'
-}
-
-function box_name {
-    [ -f ~/.box-name ] && cat ~/.box-name || hostname -s
-}
-
-
-local rvm_ruby='‹$(rvm-prompt i v g)›%{$reset_color%}'
-local current_dir='${PWD/#$HOME/~}'
-local git_info='$(git_prompt_info)'
-
-
-PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}${current_dir}%{$reset_color%}${git_info} %{$FG[239]%}using%{$FG[243]%} ${rvm_ruby} %D - %*
-╰─$(virtualenv_info)$(prompt_char) "
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$FG[239]%}on%{$reset_color%} %{$fg[255]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$FG[202]%}✘✘✘"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$FG[040]%}✔"
diff --git a/common/.oh-my-zsh/themes/fino.zsh-theme b/common/.oh-my-zsh/themes/fino.zsh-theme
deleted file mode 100644
index 26e5471..0000000
--- a/common/.oh-my-zsh/themes/fino.zsh-theme
+++ /dev/null
@@ -1,46 +0,0 @@
-# Fino theme by Max Masnick (http://max.masnick.me)
-
-# Use with a dark background and 256-color terminal!
-# Meant for people with RVM and git. Tested only on OS X 10.7.
-
-# You can set your computer name in the ~/.box-name file if you want.
-
-# Borrowing shamelessly from these oh-my-zsh themes:
-#   bira
-#   robbyrussell
-#
-# Also borrowing from http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/
-
-function virtualenv_info {
-    [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
-}
-
-function prompt_char {
-    git branch >/dev/null 2>/dev/null && echo '±' && return
-    echo '○'
-}
-
-function box_name {
-    [ -f ~/.box-name ] && cat ~/.box-name || hostname -s
-}
-
-
-local rvm_ruby=''
-if which rvm-prompt &> /dev/null; then
-  rvm_ruby='‹$(rvm-prompt i v g)›%{$reset_color%}'
-else
-  if which rbenv &> /dev/null; then
-    rvm_ruby='‹$(rbenv version | sed -e "s/ (set.*$//")›%{$reset_color%}'
-  fi
-fi
-local current_dir='${PWD/#$HOME/~}'
-local git_info='$(git_prompt_info)'
-
-
-PROMPT="╭─%{$FG[040]%}%n%{$reset_color%} %{$FG[239]%}at%{$reset_color%} %{$FG[033]%}$(box_name)%{$reset_color%} %{$FG[239]%}in%{$reset_color%} %{$terminfo[bold]$FG[226]%}${current_dir}%{$reset_color%}${git_info} %{$FG[239]%}using%{$FG[243]%} ${rvm_ruby}
-╰─$(virtualenv_info)$(prompt_char) "
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$FG[239]%}on%{$reset_color%} %{$fg[255]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$FG[202]%}✘✘✘"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$FG[040]%}✔"
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/fishy.zsh-theme b/common/.oh-my-zsh/themes/fishy.zsh-theme
deleted file mode 100644
index 8b24172..0000000
--- a/common/.oh-my-zsh/themes/fishy.zsh-theme
+++ /dev/null
@@ -1,29 +0,0 @@
-# ZSH Theme emulating the Fish shell's default prompt.
-
-_fishy_collapsed_wd() {
-  echo $(pwd | perl -pe "
-   BEGIN {
-      binmode STDIN,  ':encoding(UTF-8)';
-      binmode STDOUT, ':encoding(UTF-8)';
-   }; s|^$HOME|~|g; s|/([^/])[^/]*(?=/)|/\$1|g
-")
-} 
-
-local user_color='green'; [ $UID -eq 0 ] && user_color='red'
-PROMPT='%n@%m %{$fg[$user_color]%}$(_fishy_collapsed_wd)%{$reset_color%}%(!.#.>) '
-PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
-
-local return_status="%{$fg_bold[red]%}%(?..%?)%{$reset_color%}"
-RPROMPT='${return_status}$(git_prompt_info)$(git_prompt_status)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" "
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_DIRTY=""
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg_bold[green]%}+"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg_bold[blue]%}!"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg_bold[red]%}-"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg_bold[magenta]%}>"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg_bold[yellow]%}#"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg_bold[cyan]%}?"
diff --git a/common/.oh-my-zsh/themes/flazz.zsh-theme b/common/.oh-my-zsh/themes/flazz.zsh-theme
deleted file mode 100644
index 280794f..0000000
--- a/common/.oh-my-zsh/themes/flazz.zsh-theme
+++ /dev/null
@@ -1,19 +0,0 @@
-if [ "$(whoami)" = "root" ]
-then CARETCOLOR="red"
-else CARETCOLOR="blue"
-fi
-
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-PROMPT='%m%{${fg_bold[magenta]}%} :: %{$reset_color%}%{${fg[green]}%}%3~ $(git_prompt_info)%{${fg_bold[$CARETCOLOR]}%}%#%{${reset_color}%} '
-
-RPS1='$(vi_mode_prompt_info) ${return_code}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[cyan]%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
-
-MODE_INDICATOR="%{$fg_bold[magenta]%}<%{$reset_color%}%{$fg[magenta]%}<<%{$reset_color%}"
-
-# TODO use 265 colors
-#MODE_INDICATOR="$FX[bold]$FG[020]<$FX[no_bold]%{$fg[blue]%}<<%{$reset_color%}"
-# TODO use two lines if git
diff --git a/common/.oh-my-zsh/themes/fletcherm.zsh-theme b/common/.oh-my-zsh/themes/fletcherm.zsh-theme
deleted file mode 100644
index e961885..0000000
--- a/common/.oh-my-zsh/themes/fletcherm.zsh-theme
+++ /dev/null
@@ -1,12 +0,0 @@
-# Copied from old version of tonotdo's theme. LSCOLORS modified.
-PROMPT='%{$fg_no_bold[cyan]%}%n%{$fg_no_bold[magenta]%}•%{$fg_no_bold[green]%}%3~$(git_prompt_info)%{$reset_color%}» '
-RPROMPT='[%*]'
-
-# git theming
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[blue]%})"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[yellow]%}⚡%{$fg_bold[blue]%})"
-
-export LSCOLORS="exfxcxdxbxegedabagacad"
-export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:'
diff --git a/common/.oh-my-zsh/themes/fox.zsh-theme b/common/.oh-my-zsh/themes/fox.zsh-theme
deleted file mode 100644
index 1959853..0000000
--- a/common/.oh-my-zsh/themes/fox.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-#fox theme
-PROMPT='%{$fg[cyan]%}┌[%{$fg_bold[white]%}%n%{$reset_color%}%{$fg[cyan]%}☮%{$fg_bold[white]%}%M%{$reset_color%}%{$fg[cyan]%}]%{$fg[white]%}-%{$fg[cyan]%}(%{$fg_bold[white]%}%~%{$reset_color%}%{$fg[cyan]%})$(git_prompt_info)
-└> % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="-[%{$reset_color%}%{$fg[white]%}git://%{$fg_bold[white]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}%{$fg[cyan]%}]-"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/frisk.zsh-theme b/common/.oh-my-zsh/themes/frisk.zsh-theme
deleted file mode 100644
index 2c999a6..0000000
--- a/common/.oh-my-zsh/themes/frisk.zsh-theme
+++ /dev/null
@@ -1,22 +0,0 @@
-PROMPT=$'
-%{$fg[blue]%}%/%{$reset_color%} $(git_prompt_info)$(bzr_prompt_info)%{$fg[white]%}[%n@%m]%{$reset_color%} %{$fg[white]%}[%T]%{$reset_color%}
-%{$fg_bold[black]%}>%{$reset_color%} '
-
-PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}"
-
-GIT_CB="git::"
-ZSH_THEME_SCM_PROMPT_PREFIX="%{$fg[green]%}["
-ZSH_THEME_GIT_PROMPT_PREFIX=$ZSH_THEME_SCM_PROMPT_PREFIX$GIT_CB
-ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-## Bazaar integration
-bzr_prompt_info() {
-	BZR_CB=`bzr nick 2> /dev/null | grep -v "ERROR" | cut -d ":" -f2 | awk -F / '{print "bzr::"$1}'`
-	if [ -n "$BZR_CB" ]; then
-		BZR_DIRTY=""
-		[[ -n `bzr status` ]] && BZR_DIRTY="%{$fg[red]%} *%{$reset_color%}"
-		echo "$ZSH_THEME_SCM_PROMPT_PREFIX$BZR_CB$BZR_DIRTY$ZSH_THEME_GIT_PROMPT_SUFFIX"
-	fi
-}
diff --git a/common/.oh-my-zsh/themes/frontcube.zsh-theme b/common/.oh-my-zsh/themes/frontcube.zsh-theme
deleted file mode 100644
index d9f5b6d..0000000
--- a/common/.oh-my-zsh/themes/frontcube.zsh-theme
+++ /dev/null
@@ -1,12 +0,0 @@
-local rvm="%{$fg[green]%}[$(rvm-prompt i v g)]%{$reset_color%}"
-
-PROMPT='
-%{$fg_bold[gray]%}%~%{$fg_bold[blue]%}%{$fg_bold[blue]%} % %{$reset_color%}
-%{$fg[green]%}➞  %{$reset_color%'
-
-RPROMPT='$(git_prompt_info) $(rvm)'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}[git:"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}] %{$fg[red]%}✖ %{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}] %{$fg[green]%}✔%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/funky.zsh-theme b/common/.oh-my-zsh/themes/funky.zsh-theme
deleted file mode 100644
index 2451296..0000000
--- a/common/.oh-my-zsh/themes/funky.zsh-theme
+++ /dev/null
@@ -1,14 +0,0 @@
-# Taken from Tassilo's Blog
-# http://tsdh.wordpress.com/2007/12/06/my-funky-zsh-prompt/
-
-local blue_op="%{$fg[blue]%}[%{$reset_color%}"
-local blue_cp="%{$fg[blue]%}]%{$reset_color%}"
-local path_p="${blue_op}%~${blue_cp}"
-local user_host="${blue_op}%n@%m${blue_cp}"
-local ret_status="${blue_op}%?${blue_cp}"
-local hist_no="${blue_op}%h${blue_cp}"
-local smiley="%(?,%{$fg[green]%}:%)%{$reset_color%},%{$fg[red]%}:(%{$reset_color%})"
-PROMPT="╭─${path_p}─${user_host}─${ret_status}─${hist_no}
-╰─${blue_op}${smiley}${blue_cp} %# "
-local cur_cmd="${blue_op}%_${blue_cp}"
-PROMPT2="${cur_cmd}> "
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/fwalch.zsh-theme b/common/.oh-my-zsh/themes/fwalch.zsh-theme
deleted file mode 100644
index 24edf55..0000000
--- a/common/.oh-my-zsh/themes/fwalch.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg_bold[green]%}%p %{$fg[cyan]%}%c%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/gallifrey.zsh-theme b/common/.oh-my-zsh/themes/gallifrey.zsh-theme
deleted file mode 100644
index fce7cb9..0000000
--- a/common/.oh-my-zsh/themes/gallifrey.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-# ZSH Theme - Preview: http://img.skitch.com/20091113-qqtd3j8xinysujg5ugrsbr7x1y.jpg
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-PROMPT='%{$fg[green]%}%m%{$reset_color%} %2~ $(git_prompt_info)%{$reset_color%}%B»%b '
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/gallois.zsh-theme b/common/.oh-my-zsh/themes/gallois.zsh-theme
deleted file mode 100644
index 3eac148..0000000
--- a/common/.oh-my-zsh/themes/gallois.zsh-theme
+++ /dev/null
@@ -1,25 +0,0 @@
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}["
-ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-#Customized git status, oh-my-zsh currently does not allow render dirty status before branch
-git_custom_status() {
-  local cb=$(current_branch)
-  if [ -n "$cb" ]; then
-    echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
-  fi
-}
-
-#RVM and git settings
-if [[ -s ~/.rvm/scripts/rvm ]] ; then 
-  RPS1='$(git_custom_status)%{$fg[red]%}[`~/.rvm/bin/rvm-prompt`]%{$reset_color%} $EPS1'
-else
-  if which rbenv &> /dev/null; then
-    RPS1='$(git_custom_status)%{$fg[red]%}[`rbenv version | sed -e "s/ (set.*$//"`]%{$reset_color%} $EPS1'
-  else
-    RPS1='$(git_custom_status) $EPS1'
-  fi
-fi
-
-PROMPT='%{$fg[cyan]%}[%~% ]%(?.%{$fg[green]%}.%{$fg[red]%})%B$%b '
diff --git a/common/.oh-my-zsh/themes/garyblessington.zsh-theme b/common/.oh-my-zsh/themes/garyblessington.zsh-theme
deleted file mode 100644
index b4f84a7..0000000
--- a/common/.oh-my-zsh/themes/garyblessington.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg[cyan]%}%c%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%}% %{$reset_color%}: '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="(%{$fg[blue]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[red]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/gentoo.zsh-theme b/common/.oh-my-zsh/themes/gentoo.zsh-theme
deleted file mode 100644
index ee205d2..0000000
--- a/common/.oh-my-zsh/themes/gentoo.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-function prompt_char {
-	if [ $UID -eq 0 ]; then echo "#"; else echo $; fi
-}
-
-PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[blue]%}%(!.%1~.%~) $(git_prompt_info)%_$(prompt_char)%{$reset_color%} '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="("
-ZSH_THEME_GIT_PROMPT_SUFFIX=") "
diff --git a/common/.oh-my-zsh/themes/geoffgarside.zsh-theme b/common/.oh-my-zsh/themes/geoffgarside.zsh-theme
deleted file mode 100644
index 675ec72..0000000
--- a/common/.oh-my-zsh/themes/geoffgarside.zsh-theme
+++ /dev/null
@@ -1,5 +0,0 @@
-# PROMPT="[%*] %n:%c $(git_prompt_info)%(!.#.$) "
-PROMPT='[%*] %{$fg[cyan]%}%n%{$reset_color%}:%{$fg[green]%}%c%{$reset_color%}$(git_prompt_info) %(!.#.$) '
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[yellow]%}git:("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/gianu.zsh-theme b/common/.oh-my-zsh/themes/gianu.zsh-theme
deleted file mode 100644
index c7fe406..0000000
--- a/common/.oh-my-zsh/themes/gianu.zsh-theme
+++ /dev/null
@@ -1,11 +0,0 @@
-# Oh-my-Zsh prompt created by gianu
-#
-# github.com/gianu
-# sgianazza@gmail.com
-
-PROMPT='[%{$fg_bold[white]%}%n%{$reset_color%}@%{$fg_bold[red]%}%m%{$reset_color%} %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)%{$reset_color%}]$ '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="(%{$fg_bold[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX=")"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%} %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/gnzh.zsh-theme b/common/.oh-my-zsh/themes/gnzh.zsh-theme
deleted file mode 100644
index 3c6b8a4..0000000
--- a/common/.oh-my-zsh/themes/gnzh.zsh-theme
+++ /dev/null
@@ -1,54 +0,0 @@
-# ZSH Theme - Preview: http://dl.dropbox.com/u/4109351/pics/gnzh-zsh-theme.png
-# Based on bira theme
-
-# load some modules
-autoload -U colors zsh/terminfo # Used in the colour alias below
-colors
-setopt prompt_subst
-
-# make some aliases for the colours: (coud use normal escap.seq's too)
-for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
-  eval PR_$color='%{$fg[${(L)color}]%}'
-done
-eval PR_NO_COLOR="%{$terminfo[sgr0]%}"
-eval PR_BOLD="%{$terminfo[bold]%}"
-
-# Check the UID
-if [[ $UID -ge 1000 ]]; then # normal user
-  eval PR_USER='${PR_GREEN}%n${PR_NO_COLOR}'
-  eval PR_USER_OP='${PR_GREEN}%#${PR_NO_COLOR}'
-  local PR_PROMPT='$PR_NO_COLOR➤ $PR_NO_COLOR'
-elif [[ $UID -eq 0 ]]; then # root
-  eval PR_USER='${PR_RED}%n${PR_NO_COLOR}'
-  eval PR_USER_OP='${PR_RED}%#${PR_NO_COLOR}'
-  local PR_PROMPT='$PR_RED➤ $PR_NO_COLOR'
-fi
-
-# Check if we are on SSH or not
-if [[ -n "$SSH_CLIENT"  ||  -n "$SSH2_CLIENT" ]]; then 
-  eval PR_HOST='${PR_YELLOW}%M${PR_NO_COLOR}' #SSH
-else
-  eval PR_HOST='${PR_GREEN}%M${PR_NO_COLOR}' # no SSH
-fi
-
-local return_code="%(?..%{$PR_RED%}%? ↵%{$PR_NO_COLOR%})"
-
-local user_host='${PR_USER}${PR_CYAN}@${PR_HOST}'
-local current_dir='%{$PR_BOLD$PR_BLUE%}%~%{$PR_NO_COLOR%}'
-local rvm_ruby=''
-if which rvm-prompt &> /dev/null; then
-  rvm_ruby='%{$PR_RED%}‹$(rvm-prompt i v g s)›%{$PR_NO_COLOR%}'
-else
-  if which rbenv &> /dev/null; then
-    rvm_ruby='%{$PR_RED%}‹$(rbenv version | sed -e "s/ (set.*$//")›%{$PR_NO_COLOR%}'
-  fi
-fi
-local git_branch='$(git_prompt_info)%{$PR_NO_COLOR%}'
-
-#PROMPT="${user_host} ${current_dir} ${rvm_ruby} ${git_branch}$PR_PROMPT "
-PROMPT="╭─${user_host} ${current_dir} ${rvm_ruby} ${git_branch}
-╰─$PR_PROMPT "
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$PR_YELLOW%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$PR_NO_COLOR%}"
diff --git a/common/.oh-my-zsh/themes/gozilla.zsh-theme b/common/.oh-my-zsh/themes/gozilla.zsh-theme
deleted file mode 100644
index c6b752e..0000000
--- a/common/.oh-my-zsh/themes/gozilla.zsh-theme
+++ /dev/null
@@ -1,15 +0,0 @@
-PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")"
-ZSH_THEME_GIT_PROMPT_DIRTY=""
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-RPROMPT='$(git_prompt_status)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✈"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ✭"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✗"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➦"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%} ✂"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%} ✱"
diff --git a/common/.oh-my-zsh/themes/half-life.zsh-theme b/common/.oh-my-zsh/themes/half-life.zsh-theme
deleted file mode 100644
index c8d09ce..0000000
--- a/common/.oh-my-zsh/themes/half-life.zsh-theme
+++ /dev/null
@@ -1,99 +0,0 @@
-# prompt style and colors based on Steve Losh's Prose theme:
-# http://github.com/sjl/oh-my-zsh/blob/master/themes/prose.zsh-theme
-#
-# vcs_info modifications from Bart Trojanowski's zsh prompt:
-# http://www.jukie.net/bart/blog/pimping-out-zsh-prompt
-#
-# git untracked files modification from Brian Carper:
-# http://briancarper.net/blog/570/git-info-in-your-zsh-prompt
-
-function virtualenv_info {
-    [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
-}
-PR_GIT_UPDATE=1
-
-setopt prompt_subst
-autoload colors
-colors
-
-autoload -U add-zsh-hook
-autoload -Uz vcs_info
-
-#use extended color pallete if available
-if [[ $TERM = *256color* || $TERM = *rxvt* ]]; then
-    turquoise="%F{81}"
-    orange="%F{166}"
-    purple="%F{135}"
-    hotpink="%F{161}"
-    limegreen="%F{118}"
-else
-    turquoise="$fg[cyan]"
-    orange="$fg[yellow]"
-    purple="$fg[magenta]"
-    hotpink="$fg[red]"
-    limegreen="$fg[green]"
-fi
-
-# enable VCS systems you use
-zstyle ':vcs_info:*' enable git svn
-
-# check-for-changes can be really slow.
-# you should disable it, if you work with large repositories
-zstyle ':vcs_info:*:prompt:*' check-for-changes true
-
-# set formats
-# %b - branchname
-# %u - unstagedstr (see below)
-# %c - stagedstr (see below)
-# %a - action (e.g. rebase-i)
-# %R - repository path
-# %S - path in the repository
-PR_RST="%{${reset_color}%}"
-FMT_BRANCH=" on %{$turquoise%}%b%u%c${PR_RST}"
-FMT_ACTION=" performing a %{$limegreen%}%a${PR_RST}"
-FMT_UNSTAGED="%{$orange%}●"
-FMT_STAGED="%{$limegreen%}●"
-
-zstyle ':vcs_info:*:prompt:*' unstagedstr   "${FMT_UNSTAGED}"
-zstyle ':vcs_info:*:prompt:*' stagedstr     "${FMT_STAGED}"
-zstyle ':vcs_info:*:prompt:*' actionformats "${FMT_BRANCH}${FMT_ACTION}"
-zstyle ':vcs_info:*:prompt:*' formats       "${FMT_BRANCH}"
-zstyle ':vcs_info:*:prompt:*' nvcsformats   ""
-
-
-function steeef_preexec {
-    case "$(history $HISTCMD)" in
-        *git*)
-            PR_GIT_UPDATE=1
-            ;;
-        *svn*)
-            PR_GIT_UPDATE=1
-            ;;
-    esac
-}
-add-zsh-hook preexec steeef_preexec
-
-function steeef_chpwd {
-    PR_GIT_UPDATE=1
-}
-add-zsh-hook chpwd steeef_chpwd
-
-function steeef_precmd {
-    if [[ -n "$PR_GIT_UPDATE" ]] ; then
-        # check for untracked files or updated submodules, since vcs_info doesn't
-        if [[ ! -z $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then
-            PR_GIT_UPDATE=1
-            FMT_BRANCH="${PM_RST} on %{$turquoise%}%b%u%c%{$hotpink%}●${PR_RST}"
-        else
-            FMT_BRANCH="${PM_RST} on %{$turquoise%}%b%u%c${PR_RST}"
-        fi
-        zstyle ':vcs_info:*:prompt:*' formats       "${FMT_BRANCH}"
-
-        vcs_info 'prompt'
-        PR_GIT_UPDATE=
-    fi
-}
-add-zsh-hook precmd steeef_precmd
-
-PROMPT=$'
-%{$purple%}%n%{$reset_color%} in %{$limegreen%}%~%{$reset_color%}$(rvm-prompt " with%{$fg[red]%} " v g "%{$reset_color%}")$vcs_info_msg_0_%{$orange%} λ%{$reset_color%} '
diff --git a/common/.oh-my-zsh/themes/humza.zsh-theme b/common/.oh-my-zsh/themes/humza.zsh-theme
deleted file mode 100644
index 1078862..0000000
--- a/common/.oh-my-zsh/themes/humza.zsh-theme
+++ /dev/null
@@ -1,26 +0,0 @@
-# ZSH THEME Preview: https://skitch.com/huyy/rk979/humza.zshtheme
-
-let TotalBytes=0
-for Bytes in $(ls -l | grep "^-" | awk '{ print $5 }')
-do
-   let TotalBytes=$TotalBytes+$Bytes
-done
-		# should it say b, kb, Mb, or Gb
-if [ $TotalBytes -lt 1024 ]; then
-   TotalSize=$(echo -e "scale=3 \n$TotalBytes \nquit" | bc)
-   suffix="b"
-elif [ $TotalBytes -lt 1048576 ]; then
-   TotalSize=$(echo -e "scale=3 \n$TotalBytes/1024 \nquit" | bc)
-   suffix="kb"
-elif [ $TotalBytes -lt 1073741824 ]; then
-   TotalSize=$(echo -e "scale=3 \n$TotalBytes/1048576 \nquit" | bc)
-   suffix="Mb"
-else
-   TotalSize=$(echo -e "scale=3 \n$TotalBytes/1073741824 \nquit" | bc)
-   suffix="Gb"
-fi
-
-PROMPT='%{$reset_color%}%n %{$fg[green]%}{%{$reset_color%}%~%{$fg[green]%}}%{$reset_color%}$(git_prompt_info) greetings, earthling %{$fg[green]%}[%{$reset_color%}%{$TotalSize%}%{$suffix%}%{$fg[green]%}]%{$fg[red]%}$%{$reset_color%} ☞ '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}±("
-ZSH_THEME_GIT_PROMPT_SUFFIX=");%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/imajes.zsh-theme b/common/.oh-my-zsh/themes/imajes.zsh-theme
deleted file mode 100644
index 88c35b6..0000000
--- a/common/.oh-my-zsh/themes/imajes.zsh-theme
+++ /dev/null
@@ -1,5 +0,0 @@
-# Found on the ZshWiki
-#  http://zshwiki.org/home/config/prompt
-#
-
-PROMPT="%{$fg[red]%}%%%{$reset_color%} "
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/intheloop.zsh-theme b/common/.oh-my-zsh/themes/intheloop.zsh-theme
deleted file mode 100644
index 85b4a4d..0000000
--- a/common/.oh-my-zsh/themes/intheloop.zsh-theme
+++ /dev/null
@@ -1,24 +0,0 @@
-# ZSH theme by James Smith (http://loopj.com)
-# A multiline prompt with username, hostname, full path, return status, git branch, git dirty status, git remote status
-
-local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}"
-
-local host_color="green"
-if [ -n "$SSH_CLIENT" ]; then
-  local host_color="red"
-fi
-
-PROMPT='
-%{$fg_bold[grey]%}[%{$reset_color%}%{$fg_bold[${host_color}]%}%n@%m%{$reset_color%}%{$fg_bold[grey]%}]%{$reset_color%} %{$fg_bold[blue]%}%10c%{$reset_color%} $(git_prompt_info) $(git_remote_status)
-%{$fg_bold[cyan]%}❯%{$reset_color%} '
-
-
-RPROMPT='${return_status}%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[grey]%}(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[grey]%}) %{$fg[yellow]%}⚡%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[grey]%})"
-ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE="%{$fg_bold[magenta]%}↓%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE="%{$fg_bold[magenta]%}↑%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE="%{$fg_bold[magenta]%}↕%{$reset_color%}"
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/itchy.zsh-theme b/common/.oh-my-zsh/themes/itchy.zsh-theme
deleted file mode 100644
index afc2abf..0000000
--- a/common/.oh-my-zsh/themes/itchy.zsh-theme
+++ /dev/null
@@ -1,19 +0,0 @@
-# Created by Daniel Bayerlein https://github.com/danielbayerlein
-# Inspired by http://peepcode.com/blog/2012/my-command-line-prompt
-
-local smiley="%(?,%{$fg[green]%}☺%{$reset_color%},%{$fg[red]%}☹%{$reset_color%})"
-
-local user="%{$fg[cyan]%}%n%{$reset_color%}"
-local host="%{$fg[cyan]%}@%m%{$reset_color%}"
-local pwd="%{$fg[yellow]%}%~%{$reset_color%}"
-
-PROMPT='${user}${host} ${pwd}
-${smiley}  '
-
-RPROMPT='$(rvm-prompt || rbenv version) %{$fg[white]%}$(git_prompt_info)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX=""
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%} ✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%} ✔%{$reset_color%}"
-
diff --git a/common/.oh-my-zsh/themes/jaischeema.zsh-theme b/common/.oh-my-zsh/themes/jaischeema.zsh-theme
deleted file mode 100644
index aecc5b9..0000000
--- a/common/.oh-my-zsh/themes/jaischeema.zsh-theme
+++ /dev/null
@@ -1,23 +0,0 @@
-# ------------------------------------------------------------------------------
-#          FILE:  jaischeema.zsh-theme
-#   DESCRIPTION:  oh-my-zsh theme file.
-#        AUTHOR:  Jais Cheema
-#       VERSION:  0.0.1
-# ------------------------------------------------------------------------------
-
-
-
-PROMPT='%{$fg_bold[magenta]%}%m%{$reset_color%} at %{$fg_bold[green]%}%~%{$reset_color%} %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%}% %{$reset_color%}%{$fg[red]%}❯%{$reset_color%} '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="±(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}) "
-
-if which rbenv &> /dev/null; then
-  RPROMPT='%{$fg[red]%}$(rbenv version | sed -e "s/ (set.*$//")%{$reset_color%}'
-else
-  if which rvm-prompt &> /dev/null; then
-    RPROMPT='%{$fg[red]%}$(rvm-prompt)%{$reset_color%}'
-  fi
-fi
diff --git a/common/.oh-my-zsh/themes/jbergantine.zsh-theme b/common/.oh-my-zsh/themes/jbergantine.zsh-theme
deleted file mode 100644
index d84247c..0000000
--- a/common/.oh-my-zsh/themes/jbergantine.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[white]%}$(git_prompt_info)%{$fg_bold[white]%} % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[white]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[white]%})"
diff --git a/common/.oh-my-zsh/themes/jispwoso.zsh-theme b/common/.oh-my-zsh/themes/jispwoso.zsh-theme
deleted file mode 100644
index cdfef38..0000000
--- a/common/.oh-my-zsh/themes/jispwoso.zsh-theme
+++ /dev/null
@@ -1,4 +0,0 @@
-PROMPT=$'%{$fg[green]%}%n@%m: %{$reset_color%}%{$fg[blue]%}%/%{$reset_color%}
-%{$fg_bold[red]%}➜ %{$reset_color%} '
-
-PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/jnrowe.zsh-theme b/common/.oh-my-zsh/themes/jnrowe.zsh-theme
deleted file mode 100644
index bae88f7..0000000
--- a/common/.oh-my-zsh/themes/jnrowe.zsh-theme
+++ /dev/null
@@ -1,38 +0,0 @@
-autoload -U add-zsh-hook
-autoload -Uz vcs_info
-
-zstyle ':vcs_info:*' actionformats \
-       '%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
-zstyle ':vcs_info:*' formats '%F{2}%s%F{7}:%F{2}(%F{1}%b%F{2})%f '
-zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'
-zstyle ':vcs_info:*' enable git
-
-add-zsh-hook precmd prompt_vcs
-
-prompt_vcs () {
-    vcs_info
-
-    if [ "${vcs_info_msg_0_}" = "" ]; then
-        dir_status="%F{2}→%f"
-    elif [[ $(git diff --cached --name-status 2>/dev/null ) != "" ]]; then
-        dir_status="%F{1}▶%f"
-    elif [[ $(git diff --name-status 2>/dev/null ) != "" ]]; then
-        dir_status="%F{3}▶%f"
-    else
-        dir_status="%F{2}▶%f"
-    fi
-}
-
-function {
-    if [[ -n "$SSH_CLIENT" ]]; then
-        PROMPT_HOST=" ($HOST)"
-    else
-        PROMPT_HOST=''
-    fi
-}
-
-local ret_status="%(?:%{$fg_bold[green]%}Ξ:%{$fg_bold[red]%}%S↑%s%?)"
-
-PROMPT='${ret_status}%{$fg[blue]%}${PROMPT_HOST}%{$fg_bold[green]%}%p %{$fg_bold[yellow]%}%2~ ${vcs_info_msg_0_}${dir_status}%{$reset_color%} '
-
-#  vim: set ft=zsh ts=4 sw=4 et:
diff --git a/common/.oh-my-zsh/themes/jonathan.zsh-theme b/common/.oh-my-zsh/themes/jonathan.zsh-theme
deleted file mode 100644
index 9f0f302..0000000
--- a/common/.oh-my-zsh/themes/jonathan.zsh-theme
+++ /dev/null
@@ -1,143 +0,0 @@
-functions rbenv_prompt_info >& /dev/null || rbenv_prompt_info(){}
-
-function theme_precmd {
-    local TERMWIDTH
-    (( TERMWIDTH = ${COLUMNS} - 1 ))
-
-
-    ###
-    # Truncate the path if it's too long.
-
-    PR_FILLBAR=""
-    PR_PWDLEN=""
-
-    local promptsize=${#${(%):---(%n@%m:%l)---()--}}
-    local rubyprompt=`rvm_prompt_info || rbenv_prompt_info`
-    local rubypromptsize=${#${rubyprompt}}
-    local pwdsize=${#${(%):-%~}}
-
-    if [[ "$promptsize + $rubypromptsize + $pwdsize" -gt $TERMWIDTH ]]; then
-      ((PR_PWDLEN=$TERMWIDTH - $promptsize))
-    else
-      PR_FILLBAR="\${(l.(($TERMWIDTH - ($promptsize + $rubypromptsize + $pwdsize)))..${PR_HBAR}.)}"
-    fi
-
-}
-
-
-setopt extended_glob
-theme_preexec () {
-    if [[ "$TERM" == "screen" ]]; then
-	local CMD=${1[(wr)^(*=*|sudo|-*)]}
-	echo -n "\ek$CMD\e\\"
-    fi
-}
-
-
-setprompt () {
-    ###
-    # Need this so the prompt will work.
-
-    setopt prompt_subst
-
-
-    ###
-    # See if we can use colors.
-
-    autoload colors zsh/terminfo
-    if [[ "$terminfo[colors]" -ge 8 ]]; then
-	colors
-    fi
-    for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE GREY; do
-	eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
-	eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
-	(( count = $count + 1 ))
-    done
-    PR_NO_COLOUR="%{$terminfo[sgr0]%}"
-
-    ###
-    # Modify Git prompt
-    ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[green]%}"
-    ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-    ZSH_THEME_GIT_PROMPT_DIRTY=""
-    ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-    ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚"
-    ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹"
-    ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖"
-    ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜"
-    ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═"
-    ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭"
-
-    ###
-    # See if we can use extended characters to look nicer.
-
-    typeset -A altchar
-    set -A altchar ${(s..)terminfo[acsc]}
-    PR_SET_CHARSET="%{$terminfo[enacs]%}"
-    PR_SHIFT_IN="%{$terminfo[smacs]%}"
-    PR_SHIFT_OUT="%{$terminfo[rmacs]%}"
-    PR_HBAR=${altchar[q]:--}
-    PR_ULCORNER=${altchar[l]:--}
-    PR_LLCORNER=${altchar[m]:--}
-    PR_LRCORNER=${altchar[j]:--}
-    PR_URCORNER=${altchar[k]:--}
-
-
-    ###
-    # Decide if we need to set titlebar text.
-
-    case $TERM in
-	xterm*)
-	    PR_TITLEBAR=$'%{\e]0;%(!.-=*[ROOT]*=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\a%}'
-	    ;;
-	screen)
-	    PR_TITLEBAR=$'%{\e_screen \005 (\005t) | %(!.-=[ROOT]=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\e\\%}'
-	    ;;
-	*)
-	    PR_TITLEBAR=''
-	    ;;
-    esac
-
-
-    ###
-    # Decide whether to set a screen title
-    if [[ "$TERM" == "screen" ]]; then
-	PR_STITLE=$'%{\ekzsh\e\\%}'
-    else
-	PR_STITLE=''
-    fi
-
-
-    ###
-    # Finally, the prompt.
-
-    PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\
-$PR_CYAN$PR_SHIFT_IN$PR_ULCORNER$PR_HBAR$PR_SHIFT_OUT$PR_GREY(\
-$PR_GREEN%$PR_PWDLEN<...<%~%<<\
-$PR_GREY)`rvm_prompt_info || rbenv_prompt_info`$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_HBAR${(e)PR_FILLBAR}$PR_HBAR$PR_SHIFT_OUT$PR_GREY(\
-$PR_CYAN%(!.%SROOT%s.%n)$PR_GREY@$PR_GREEN%m:%l\
-$PR_GREY)$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_URCORNER$PR_SHIFT_OUT\
-
-$PR_CYAN$PR_SHIFT_IN$PR_LLCORNER$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\
-$PR_YELLOW%D{%H:%M:%S}\
-$PR_LIGHT_BLUE%{$reset_color%}`git_prompt_info``git_prompt_status`$PR_BLUE)$PR_CYAN$PR_SHIFT_IN$PR_HBAR\
-$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
->$PR_NO_COLOUR '
-
-    # display exitcode on the right when >0
-    return_code="%(?..%{$fg[red]%}%? ↵ %{$reset_color%})"
-    RPROMPT=' $return_code$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_BLUE$PR_HBAR$PR_SHIFT_OUT\
-($PR_YELLOW%D{%a,%b%d}$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_LRCORNER$PR_SHIFT_OUT$PR_NO_COLOUR'
-
-    PS2='$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
-$PR_BLUE$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT(\
-$PR_LIGHT_GREEN%_$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\
-$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT$PR_NO_COLOUR '
-}
-
-setprompt
-
-autoload -U add-zsh-hook
-add-zsh-hook precmd  theme_precmd
-add-zsh-hook preexec theme_preexec
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/josh.zsh-theme b/common/.oh-my-zsh/themes/josh.zsh-theme
deleted file mode 100644
index 142e768..0000000
--- a/common/.oh-my-zsh/themes/josh.zsh-theme
+++ /dev/null
@@ -1,43 +0,0 @@
-grey='\e[0;90m'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$grey%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$grey%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$grey%})"
-
-function josh_prompt {
-  (( spare_width = ${COLUMNS} ))
-  prompt=" "
-
-  branch=$(current_branch)
-  ruby_version=$(rvm_prompt_info || rbenv_prompt_info)
-  path_size=${#PWD}
-  branch_size=${#branch}
-  ruby_size=${#ruby_version}
-  user_machine_size=${#${(%):-%n@%m-}}
-  
-  if [[ ${#branch} -eq 0 ]]
-    then (( ruby_size = ruby_size + 1 ))
-  else
-    (( branch_size = branch_size + 4 ))
-    if [[ -n $(git status -s 2> /dev/null) ]]; then
-      (( branch_size = branch_size + 2 ))
-    fi
-  fi
-  
-  (( spare_width = ${spare_width} - (${user_machine_size} + ${path_size} + ${branch_size} + ${ruby_size}) ))
-
-  while [ ${#prompt} -lt $spare_width ]; do
-    prompt=" $prompt"
-  done
-  
-  prompt="%{%F{green}%}$PWD$prompt%{%F{red}%}$(rvm_prompt_info || rbenv_prompt_info)%{$reset_color%} $(git_prompt_info)"
-  
-  echo $prompt
-}
-
-setopt prompt_subst
-
-PROMPT='
-%n@%m $(josh_prompt)
-%(?,%{%F{green}%},%{%F{red}%})⚡%{$reset_color%} '
diff --git a/common/.oh-my-zsh/themes/jreese.zsh-theme b/common/.oh-my-zsh/themes/jreese.zsh-theme
deleted file mode 100644
index 0fa6b4e..0000000
--- a/common/.oh-my-zsh/themes/jreese.zsh-theme
+++ /dev/null
@@ -1,16 +0,0 @@
-# ZSH Theme - Preview: http://dl.dropbox.com/u/1552408/Screenshots/2010-04-08-oh-my-zsh.png
-
-if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-PROMPT='%{$fg[$NCOLOR]%}%n%{$fg[green]%}@%m%{$reset_color%} %~ \
-$(git_prompt_info)\
-%{$fg[red]%}%(!.#.»)%{$reset_color%} '
-PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
-RPS1='${return_code}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}±%{$fg[yellow]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_DIRTY="⚡"
-
diff --git a/common/.oh-my-zsh/themes/jtriley.zsh-theme b/common/.oh-my-zsh/themes/jtriley.zsh-theme
deleted file mode 100644
index 15d77ed..0000000
--- a/common/.oh-my-zsh/themes/jtriley.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-#PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-PROMPT="%{$fg_bold[cyan]%}%T%{$fg_bold[green]%} %{$fg_bold[white]%}%n%{$fg[magenta]%}@%{$fg_bold[white]%}%m %{$fg_bold[green]%}%d
-%{$fg_bold[yellow]%}%% %{$reset_color%}"
-
-#ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
-#ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-#ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-#ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/juanghurtado.zsh-theme b/common/.oh-my-zsh/themes/juanghurtado.zsh-theme
deleted file mode 100644
index 2f715cc..0000000
--- a/common/.oh-my-zsh/themes/juanghurtado.zsh-theme
+++ /dev/null
@@ -1,46 +0,0 @@
-# ------------------------------------------------------------------------
-# Juan G. Hurtado oh-my-zsh theme
-# (Needs Git plugin for current_branch method)
-# ------------------------------------------------------------------------
-
-# Color shortcuts
-RED=$fg[red]
-YELLOW=$fg[yellow]
-GREEN=$fg[green]
-WHITE=$fg[white]
-BLUE=$fg[blue]
-RED_BOLD=$fg_bold[red]
-YELLOW_BOLD=$fg_bold[yellow]
-GREEN_BOLD=$fg_bold[green]
-WHITE_BOLD=$fg_bold[white]
-BLUE_BOLD=$fg_bold[blue]
-RESET_COLOR=$reset_color
-
-# Format for git_prompt_info()
-ZSH_THEME_GIT_PROMPT_PREFIX=""
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-
-# Format for parse_git_dirty()
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$RED%}(*)"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-# Format for git_prompt_status()
-ZSH_THEME_GIT_PROMPT_UNMERGED=" %{$RED%}unmerged"
-ZSH_THEME_GIT_PROMPT_DELETED=" %{$RED%}deleted"
-ZSH_THEME_GIT_PROMPT_RENAMED=" %{$YELLOW%}renamed"
-ZSH_THEME_GIT_PROMPT_MODIFIED=" %{$YELLOW%}modified"
-ZSH_THEME_GIT_PROMPT_ADDED=" %{$GREEN%}added"
-ZSH_THEME_GIT_PROMPT_UNTRACKED=" %{$WHITE%}untracked"
-
-# Format for git_prompt_ahead()
-ZSH_THEME_GIT_PROMPT_AHEAD=" %{$RED%}(!)"
-
-# Format for git_prompt_long_sha() and git_prompt_short_sha()
-ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$WHITE%}[%{$YELLOW%}"
-ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$WHITE%}]"
-
-# Prompt format
-PROMPT='
-%{$GREEN_BOLD%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%}
-%{$BLUE%}>%{$RESET_COLOR%} '
-RPROMPT='%{$GREEN_BOLD%}$(current_branch)$(git_prompt_short_sha)$(git_prompt_status)%{$RESET_COLOR%}'
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/junkfood.zsh-theme b/common/.oh-my-zsh/themes/junkfood.zsh-theme
deleted file mode 100644
index 57b4070..0000000
--- a/common/.oh-my-zsh/themes/junkfood.zsh-theme
+++ /dev/null
@@ -1,34 +0,0 @@
-# ------------------------------------------------------------------------
-# Tyler Cipriani 
-# oh-my-zsh theme
-# Totally ripped off Dallas theme
-# ------------------------------------------------------------------------
-
-# Grab the current date (%W) and time (%t):
-JUNKFOOD_TIME_="%{$fg_bold[red]%}#%{$fg_bold[white]%}( %{$fg_bold[yellow]%}%W%{$reset_color%}@%{$fg_bold[white]%}%t )( %{$reset_color%}"
-
-# Grab the current machine name 
-JUNKFOOD_MACHINE_="%{$fg_bold[blue]%}%m%{$fg[white]%} ):%{$reset_color%}"
-
-# Grab the current username 
-JUNKFOOD_CURRENT_USER_="%{$fg_bold[green]%}%n%{$reset_color%}"
-
-# Grab the current filepath, use shortcuts: ~/Desktop
-# Append the current git branch, if in a git repository: ~aw@master
-JUNKFOOD_LOCA_="%{$fg[cyan]%}%~\$(git_prompt_info)%{$reset_color%}"
-
-# For the git prompt, use a white @ and blue text for the branch name
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%}@%{$fg_bold[white]%}"
-
-# Close it all off by resetting the color and styles.
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-
-# Do nothing if the branch is clean (no changes).
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}✔"
-
-# Add 3 cyan ✗s if this branch is diiirrrty! Dirty branch!
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}✗✗✗"
-
-# Put it all together!
-PROMPT="$JUNKFOOD_TIME_$JUNKFOOD_CURRENT_USER_@$JUNKFOOD_MACHINE_$JUNKFOOD_LOCA_
-   "
diff --git a/common/.oh-my-zsh/themes/kafeitu.zsh-theme b/common/.oh-my-zsh/themes/kafeitu.zsh-theme
deleted file mode 100644
index c4720b2..0000000
--- a/common/.oh-my-zsh/themes/kafeitu.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%n%{$fg[cyan]%}@%{$fg_bold[green]%}%m %{$fg_bold[green]%}%p %{$fg[cyan]%}%~ %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/kardan.zsh-theme b/common/.oh-my-zsh/themes/kardan.zsh-theme
deleted file mode 100644
index fd6586a..0000000
--- a/common/.oh-my-zsh/themes/kardan.zsh-theme
+++ /dev/null
@@ -1,12 +0,0 @@
-# Simple theme based on my old zsh settings.
-
-function get_host {
-	echo '@'`hostname`''
-}
-
-PROMPT='> '
-RPROMPT='%~$(git_prompt_info)$(get_host)'
-
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_PREFIX="("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")"
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/kennethreitz.zsh-theme b/common/.oh-my-zsh/themes/kennethreitz.zsh-theme
deleted file mode 100644
index 109be0c..0000000
--- a/common/.oh-my-zsh/themes/kennethreitz.zsh-theme
+++ /dev/null
@@ -1,13 +0,0 @@
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-PROMPT='%{$fg[green]%}%c \
-$(git_prompt_info)\
-%{$fg[red]%}%(!.#.»)%{$reset_color%} '
-PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
-RPS1='%{$fg[blue]%}%~%{$reset_color%} ${return_code} '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}:: %{$fg[yellow]%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$fg[yellow]%}"
-
diff --git a/common/.oh-my-zsh/themes/kiwi.zsh-theme b/common/.oh-my-zsh/themes/kiwi.zsh-theme
deleted file mode 100644
index f93de2b..0000000
--- a/common/.oh-my-zsh/themes/kiwi.zsh-theme
+++ /dev/null
@@ -1,12 +0,0 @@
-# 
-# Kiwi ZSH Theme
-# 
-
-PROMPT='%{$fg_bold[green]%}┌[%{$fg_bold[cyan]%}kiwish-4.2%{$fg_bold[green]%}]-(%{$fg_bold[white]%}%2~%{$fg_bold[green]%})-$(git_prompt_info)$(svn_prompt_info)$(battery_pct_prompt)
-└> % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="[%{$reset_color%}%{$fg[white]%}git:%{$fg_bold[white]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg_bold[green]%}]-"
-
-ZSH_THEME_SVN_PROMPT_PREFIX="[%{$reset_color%}%{$fg[white]%}svn:%{$fg_bold[white]%}/"
-ZSH_THEME_SVN_PROMPT_SUFFIX="%{$fg_bold[green]%}]-"
diff --git a/common/.oh-my-zsh/themes/kolo.zsh-theme b/common/.oh-my-zsh/themes/kolo.zsh-theme
deleted file mode 100644
index e743289..0000000
--- a/common/.oh-my-zsh/themes/kolo.zsh-theme
+++ /dev/null
@@ -1,24 +0,0 @@
-autoload -U colors && colors
-
-autoload -Uz vcs_info
-
-zstyle ':vcs_info:*' stagedstr '%F{green}●'
-zstyle ':vcs_info:*' unstagedstr '%F{yellow}●'
-zstyle ':vcs_info:*' check-for-changes true
-zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{11}%r'
-zstyle ':vcs_info:*' enable git svn
-theme_precmd () {
-    if [[ -z $(git ls-files --other --exclude-standard 2> /dev/null) ]] {
-        zstyle ':vcs_info:*' formats ' [%b%c%u%B%F{green}]'
-    } else {
-        zstyle ':vcs_info:*' formats ' [%b%c%u%B%F{red}●%F{green}]'
-    }
-
-    vcs_info
-}
-
-setopt prompt_subst
-PROMPT='%B%F{magenta}%c%B%F{green}${vcs_info_msg_0_}%B%F{magenta} %{$reset_color%}%% '
-
-autoload -U add-zsh-hook
-add-zsh-hook precmd  theme_precmd
diff --git a/common/.oh-my-zsh/themes/kphoen.zsh-theme b/common/.oh-my-zsh/themes/kphoen.zsh-theme
deleted file mode 100644
index 0e9b5e7..0000000
--- a/common/.oh-my-zsh/themes/kphoen.zsh-theme
+++ /dev/null
@@ -1,50 +0,0 @@
-# ------------------------------------------------------------------------------
-#          FILE:  kphoen.zsh-theme
-#   DESCRIPTION:  oh-my-zsh theme file.
-#        AUTHOR:  Kévin Gomez (geek63@gmail.com)
-#       VERSION:  1.0.0
-#    SCREENSHOT:
-# ------------------------------------------------------------------------------
-
-
-if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then
-    PROMPT='[%{$fg[red]%}%n%{$reset_color%}@%{$fg[magenta]%}%m%{$reset_color%}:%{$fg[blue]%}%~%{$reset_color%}$(git_prompt_info)]
-%# '
-
-    ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[green]%}"
-    ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-    ZSH_THEME_GIT_PROMPT_DIRTY=""
-    ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-    # display exitcode on the right when >0
-    return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-    RPROMPT='${return_code}$(git_prompt_status)%{$reset_color%}'
-
-    ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚"
-    ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹"
-    ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖"
-    ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜"
-    ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═"
-    ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭"
-else
-    PROMPT='[%n@%m:%~$(git_prompt_info)]
-%# '
-
-    ZSH_THEME_GIT_PROMPT_PREFIX=" on"
-    ZSH_THEME_GIT_PROMPT_SUFFIX=""
-    ZSH_THEME_GIT_PROMPT_DIRTY=""
-    ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-    # display exitcode on the right when >0
-    return_code="%(?..%? ↵)"
-
-    RPROMPT='${return_code}$(git_prompt_status)'
-
-    ZSH_THEME_GIT_PROMPT_ADDED=" ✚"
-    ZSH_THEME_GIT_PROMPT_MODIFIED=" ✹"
-    ZSH_THEME_GIT_PROMPT_DELETED=" ✖"
-    ZSH_THEME_GIT_PROMPT_RENAMED=" ➜"
-    ZSH_THEME_GIT_PROMPT_UNMERGED=" ═"
-    ZSH_THEME_GIT_PROMPT_UNTRACKED=" ✭"
-fi
diff --git a/common/.oh-my-zsh/themes/lambda.zsh-theme b/common/.oh-my-zsh/themes/lambda.zsh-theme
deleted file mode 100644
index 63292d3..0000000
--- a/common/.oh-my-zsh/themes/lambda.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-# ZSH Theme - Preview: http://cl.ly/350F0F0k1M2y3A2i3p1S
-
-PROMPT='λ %~/ $(git_prompt_info)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
diff --git a/common/.oh-my-zsh/themes/linuxonly b/common/.oh-my-zsh/themes/linuxonly
deleted file mode 100644
index a11b80d..0000000
--- a/common/.oh-my-zsh/themes/linuxonly
+++ /dev/null
@@ -1,80 +0,0 @@
-# vim: set ts=2 textwidth=0
-
-autoload -U add-zsh-hook
-autoload -Uz vcs_info
-local c0=$(printf "\033[0m")
-local c1=$(printf "\033[38;5;215m")
-local c2=$(printf "\033[38;5;209m")
-local c3=$(printf "\033[38;5;203m")
-local c4=$(printf "\033[33;4m")
-local c5=$(printf "\033[38;5;137m")
-local c6=$(printf "\033[38;5;240m")
-local c7=$(printf "\033[38;5;149m")
-local c8=$(printf "\033[38;5;126m")
-local c9=$(printf "\033[38;5;162m")
-
-local foopath=$(perl /home/scp1/bin/foopath)
-
-if [ "$TERM" = "linux" ]; then
-    c1=$(printf "\033[34;1m")
-    c2=$(printf "\033[35m")
-    c3=$(printf "\033[31m")
-    c4=$(printf "\033[31;1m")
-    c5=$(printf "\033[32m")
-    c6=$(printf "\033[32;1m")
-    c7=$(printf "\033[33m")
-    c8=$(printf "\033[33;1m")
-    c9=$(printf "\033[34m")
-fi
-
-#local newtv=$(perl $HOME/devel/newtv.pl)
-local newtv=''
-
-zstyle ':vcs_info:*' actionformats \
-    '%{$c8%}(%f%s)%{$c7%}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
-zstyle ':vcs_info:*' formats \
-    "%{$c8%}%s%{$c7%}:%{$c7%}(%{$c9%}%b%{$c7%})%f "
-zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'
-zstyle ':vcs_info:*' enable git
-
-add-zsh-hook precmd prompt_jnrowe_precmd
-
-prompt_jnrowe_precmd () {
-    vcs_info
-
-    if [ "${vcs_info_msg_0_}" = "" ]; then
-        #dir_status="|%F{3}%n%F{7}@%F{3}%m%F{7}:%F{9}%l%f"
-        #dir_status="$c1%n%F{7}@%F{9}%m%F{7}:%F{12}%/"
-        dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})"
-        #dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$foopath%} %{$c0%}(%{$c5%}%?%{$c0%})"
-        
-        PROMPT='%{$fg_bold[green]%}%p%{$reset_color%}${vcs_info_msg_0_}${dir_status} ${ret_status}%{$reset_color%}
-> '
-    elif [[ $(git diff --cached --name-status 2>/dev/null ) != "" ]]; then
-        dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})"
-        PROMPT='${vcs_info_msg_0_}
-%{$fg_bold[green]%}%p%{$reset_color%}${dir_status} ${vcs_info_msg_0_}%{$reset_color%}
-> '
-    
-    elif [[ $(git diff --name-status 2>/dev/null ) != "" ]]; then
-        dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})"
-
-        PROMPT='${vcs_info_msg_0_}
-%{$fg_bold[green]%}%p%{$reset_color%}${dir_status}%{$reset_color%}
-%{$c9%}·>%{$c0%} '
-    else
-        dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$c4%}%/ %{$c0%}(%{$c5%}%?%{$c0%})"
-        PROMPT='${vcs_info_msg_0_}
-%{$fg_bold[green]%}%p%{$reset_color%}${dir_status} ${vcs_info_msg_0_}%{$reset_color%}
-> '
-        
-    fi
-}
-
-
-#PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$reset_color%} ${vcs_info_msg_0_}${dir_status}%{$reset_color%}
-#> '
-
-# vim: set ft=zsh ts=4 sw=4 et:
-
-
diff --git a/common/.oh-my-zsh/themes/lukerandall.zsh-theme b/common/.oh-my-zsh/themes/lukerandall.zsh-theme
deleted file mode 100644
index f4045bd..0000000
--- a/common/.oh-my-zsh/themes/lukerandall.zsh-theme
+++ /dev/null
@@ -1,24 +0,0 @@
-# ZSH Theme - Preview: http://cl.ly/f701d00760f8059e06dc
-# Thanks to gallifrey, upon whose theme this is based
-
-local return_code="%(?..%{$fg_bold[red]%}%? ↵%{$reset_color%})"
-
-function my_git_prompt_info() {
-  ref=$(git symbolic-ref HEAD 2> /dev/null) || return
-  GIT_STATUS=$(git_prompt_status)
-  [[ -n $GIT_STATUS ]] && GIT_STATUS=" $GIT_STATUS"
-  echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$GIT_STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX"
-}
-
-PROMPT='%{$fg_bold[green]%}%n@%m%{$reset_color%} %{$fg_bold[blue]%}%2~%{$reset_color%} $(my_git_prompt_info)%{$reset_color%}%B»%b '
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX=") %{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%%"
-ZSH_THEME_GIT_PROMPT_ADDED="+"
-ZSH_THEME_GIT_PROMPT_MODIFIED="*"
-ZSH_THEME_GIT_PROMPT_RENAMED="~"
-ZSH_THEME_GIT_PROMPT_DELETED="!"
-ZSH_THEME_GIT_PROMPT_UNMERGED="?"
-
diff --git a/common/.oh-my-zsh/themes/macovsky-ruby.zsh-theme b/common/.oh-my-zsh/themes/macovsky-ruby.zsh-theme
deleted file mode 100644
index 69d80d5..0000000
--- a/common/.oh-my-zsh/themes/macovsky-ruby.zsh-theme
+++ /dev/null
@@ -1,15 +0,0 @@
-# ZSH Theme - Preview: http://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-if [ -e ~/.rvm/bin/rvm-prompt ]; then
-  PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(~/.rvm/bin/rvm-prompt i v)› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b '
-else
-  if which rbenv &> /dev/null; then
-    PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(rbenv version | sed -e "s/ (set.*$//")› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b '
-  fi
-fi
-
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/macovsky.zsh-theme b/common/.oh-my-zsh/themes/macovsky.zsh-theme
deleted file mode 100644
index 2e6dce4..0000000
--- a/common/.oh-my-zsh/themes/macovsky.zsh-theme
+++ /dev/null
@@ -1,14 +0,0 @@
-# ZSH Theme - Preview: http://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-if [ -e ~/.rvm/bin/rvm-prompt ]; then
-  PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(~/.rvm/bin/rvm-prompt i v)› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b '
-else
-  if which rbenv &> /dev/null; then
-    PROMPT='%{$fg[green]%}%~%{$reset_color%} %{$fg[red]%}‹$(rbenv version | sed -e "s/ (set.*$//")› %{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b '
-  fi
-fi
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/maran.zsh-theme b/common/.oh-my-zsh/themes/maran.zsh-theme
deleted file mode 100644
index 6fba046..0000000
--- a/common/.oh-my-zsh/themes/maran.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-# Theme with full path names and hostname
-# Handy if you work on different servers all the time;
-PROMPT='%{$fg[cyan]%}%n%{$reset_color%}@%{$fg[yellow]%}%M:%{$fg[green]%}%/%{$reset_color%} $(git_prompt_info) %(!.#.$) '
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[cyan]%}git:("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/mgutz.zsh-theme b/common/.oh-my-zsh/themes/mgutz.zsh-theme
deleted file mode 100644
index dcf3270..0000000
--- a/common/.oh-my-zsh/themes/mgutz.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg_bold[magenta]%}%1~$(git_prompt_info) %{$fg_bold[magenta]%}%# %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[yellow]%}["
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="*]"
-ZSH_THEME_GIT_PROMPT_CLEAN="]"
diff --git a/common/.oh-my-zsh/themes/mh.zsh-theme b/common/.oh-my-zsh/themes/mh.zsh-theme
deleted file mode 100644
index 34a3765..0000000
--- a/common/.oh-my-zsh/themes/mh.zsh-theme
+++ /dev/null
@@ -1,24 +0,0 @@
-# mh theme
-# preview: http://cl.ly/1y2x0W0E3t2C0F29043z
-
-# features:
-# path is autoshortened to ~30 characters
-# displays git status (if applicable in current folder)
-# turns username green if superuser, otherwise it is white
-
-# if superuser make the username green
-if [ $UID -eq 0 ]; then NCOLOR="green"; else NCOLOR="white"; fi
-
-# prompt
-PROMPT='[%{$fg[$NCOLOR]%}%B%n%b%{$reset_color%}:%{$fg[red]%}%30<...<%~%<<%{$reset_color%}]%(!.#.$) '
-RPROMPT='$(git_prompt_info)'
-
-# git theming
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[gray]%}(%{$fg_no_bold[yellow]%}%B"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%b%{$fg_bold[gray]%})%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}✱"
-
-# LS colors, made with http://geoff.greer.fm/lscolors/
-export LSCOLORS="Gxfxcxdxbxegedabagacad"
-export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:'
diff --git a/common/.oh-my-zsh/themes/michelebologna.zsh-theme b/common/.oh-my-zsh/themes/michelebologna.zsh-theme
deleted file mode 100644
index ef4c6d7..0000000
--- a/common/.oh-my-zsh/themes/michelebologna.zsh-theme
+++ /dev/null
@@ -1,44 +0,0 @@
-# reference colors
-GREEN="%{$fg_bold[green]%}"
-RED="%{$fg_bold[red]%}"
-CYAN="%{$fg_bold[cyan]%}"
-YELLOW="%{$fg_bold[yellow]%}"
-BLUE="%{$fg_bold[blue]%}"
-MAGENTA="%{$fg_bold[magenta]%}"
-WHITE="%{$fg_bold[white]%}"
-
-COLOR_ARRAY=($GREEN $RED $CYAN $YELLOW $BLUE $MAGENTA $WHITE)
-
-# color reset
-RESET_COLOR="%{$reset_color%}"
-
-# which color should be applied?
-USERNAME_NORMAL_COLOR=$WHITE
-USERNAME_ROOT_COLOR=$RED
-HOSTNAME_NORMAL_COLOR=$BLUE
-# uncomment next line if you want auto-generated hostname color
-#for i in `hostname`; HOSTNAME_NORMAL_COLOR=$COLOR_ARRAY[$[((#i))%7+1]]
-HOSTNAME_ROOT_COLOR=$RED
-HOSTNAME_COLOR=%(!.$HOSTNAME_ROOT_COLOR.$HOSTNAME_NORMAL_COLOR)
-CURRENT_DIR_COLOR=$CYAN
-
-# zsh commands
-USERNAME_COMMAND="%n"
-HOSTNAME_COMMAND="%m"
-CURRENT_DIR="%~"
-
-# output: colors + commands
-USERNAME_OUTPUT="%(!..$USERNAME_NORMAL_COLOR$USERNAME_COMMAND$RESET_COLOR@)"
-HOSTNAME_OUTPUT="$HOSTNAME_COLOR$HOSTNAME_COMMAND$RESET_COLOR"
-CURRENT_DIR_OUTPUT="$CURRENT_DIR_COLOR$CURRENT_DIR"
-LAST_COMMAND_OUTPUT="%(?.%(!.$RED.$GREEN).$YELLOW)"
-
-# git theming
-ZSH_THEME_GIT_PROMPT_PREFIX="("
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_DIRTY=")$RED*"
-ZSH_THEME_GIT_PROMPT_CLEAN=")"
-
-# wrap all together
-PROMPT='$USERNAME_OUTPUT$HOSTNAME_OUTPUT:$CURRENT_DIR_OUTPUT $LAST_COMMAND_OUTPUT%#$RESET_COLOR '
-RPROMPT='%1(j.fg: [%j].) $GREEN$(git_prompt_info)$RESET_COLOR [%@]'
diff --git a/common/.oh-my-zsh/themes/mikeh.zsh-theme b/common/.oh-my-zsh/themes/mikeh.zsh-theme
deleted file mode 100644
index 943f04d..0000000
--- a/common/.oh-my-zsh/themes/mikeh.zsh-theme
+++ /dev/null
@@ -1,23 +0,0 @@
-setopt prompt_subst
-autoload colors
-colors
-
-autoload -U add-zsh-hook
-autoload -Uz vcs_info
-
-# check-for-changes can be really slow.
-# you should disable it, if you work with large repositories
-zstyle ':vcs_info:*:prompt:*' check-for-changes true
-
-add-zsh-hook precmd mikeh_precmd
-
-mikeh_precmd() {
-    vcs_info
-}
-
-# user, host, full path, and time/date
-# on two lines for easier vgrepping
-# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
-PROMPT=$'%{\e[0;34m%}%B..[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%a %b %d, %I:%M"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
-%{\e[0;34m%}%B..%B[%{\e[1;35m%}$%{\e[0;34m%}%B] <($vcs_info_msg_0_)>%{\e[0m%}%b '
-PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/miloshadzic.zsh-theme b/common/.oh-my-zsh/themes/miloshadzic.zsh-theme
deleted file mode 100644
index ad53944..0000000
--- a/common/.oh-my-zsh/themes/miloshadzic.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-# Yay! High voltage and arrows!
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}⚡%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-PROMPT='%{$fg[cyan]%}%1~%{$reset_color%}%{$fg[red]%}|%{$reset_color%}$(git_prompt_info)%{$fg[cyan]%}⇒%{$reset_color%} '
diff --git a/common/.oh-my-zsh/themes/minimal.zsh-theme b/common/.oh-my-zsh/themes/minimal.zsh-theme
deleted file mode 100644
index a2a1603..0000000
--- a/common/.oh-my-zsh/themes/minimal.zsh-theme
+++ /dev/null
@@ -1,18 +0,0 @@
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[white]%}["
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$reset_color%}]%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_CLEAN="]%{$reset_color%} "
-ZSH_THEME_SVN_PROMPT_PREFIX=$ZSH_THEME_GIT_PROMPT_PREFIX
-ZSH_THEME_SVN_PROMPT_SUFFIX=$ZSH_THEME_GIT_PROMPT_SUFFIX
-ZSH_THEME_SVN_PROMPT_DIRTY=$ZSH_THEME_GIT_PROMPT_DIRTY
-ZSH_THEME_SVN_PROMPT_CLEAN=$ZSH_THEME_GIT_PROMPT_CLEAN
-
-vcs_status() {
-    if [[ ( $(whence in_svn) != "" ) && ( $(in_svn) == 1 ) ]]; then
-        svn_prompt_info
-    else
-        git_prompt_info
-    fi
-}
-
-PROMPT='%2~ $(vcs_status)»%b '
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/mortalscumbag.zsh-theme b/common/.oh-my-zsh/themes/mortalscumbag.zsh-theme
deleted file mode 100644
index 5dbf2e4..0000000
--- a/common/.oh-my-zsh/themes/mortalscumbag.zsh-theme
+++ /dev/null
@@ -1,59 +0,0 @@
-function my_git_prompt() {
-  tester=$(git rev-parse --git-dir 2> /dev/null) || return
-  
-  INDEX=$(git status --porcelain 2> /dev/null)
-  STATUS=""
-
-  # is branch ahead?
-  if $(echo "$(git log origin/$(current_branch)..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then
-    STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_AHEAD"
-  fi
-
-  # is anything staged?
-  if $(echo "$INDEX" | grep -E -e '^(D[ M]|[MARC][ MD]) ' &> /dev/null); then
-    STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_STAGED"
-  fi
-
-  # is anything unstaged?
-  if $(echo "$INDEX" | grep -E -e '^[ MARC][MD] ' &> /dev/null); then
-    STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNSTAGED"
-  fi
-
-  # is anything untracked?
-  if $(echo "$INDEX" | grep '^?? ' &> /dev/null); then
-    STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNTRACKED"
-  fi
-
-  # is anything unmerged?
-  if $(echo "$INDEX" | grep -E -e '^(A[AU]|D[DU]|U[ADU]) ' &> /dev/null); then
-    STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNMERGED"
-  fi
-
-  if [[ -n $STATUS ]]; then
-    STATUS=" $STATUS"
-  fi
-
-  echo "$ZSH_THEME_GIT_PROMPT_PREFIX$(my_current_branch)$STATUS$ZSH_THEME_GIT_PROMPT_SUFFIX"
-}
-
-function my_current_branch() {
-  echo $(current_branch || echo "(no branch)")
-}
-
-function ssh_connection() {
-  if [[ -n $SSH_CONNECTION ]]; then
-    echo "%{$fg_bold[red]%}(ssh) "
-  fi
-}
-
-local ret_status="%(?:%{$fg_bold[green]%}:%{$fg_bold[red]%})%?%{$reset_color%}"
-PROMPT=$'\n$(ssh_connection)%{$fg_bold[green]%}%n@%m%{$reset_color%}$(my_git_prompt) : %~\n[${ret_status}] %# '
-
-ZSH_THEME_PROMPT_RETURNCODE_PREFIX="%{$fg_bold[red]%}"
-ZSH_THEME_GIT_PROMPT_PREFIX=" $fg[white]‹ %{$fg_bold[yellow]%}"
-ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg_bold[magenta]%}↑"
-ZSH_THEME_GIT_PROMPT_STAGED="%{$fg_bold[green]%}●"
-ZSH_THEME_GIT_PROMPT_UNSTAGED="%{$fg_bold[red]%}●"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg_bold[white]%}●"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg_bold[red]%}✕"
-ZSH_THEME_GIT_PROMPT_SUFFIX=" $fg_bold[white]›%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/mrtazz.zsh-theme b/common/.oh-my-zsh/themes/mrtazz.zsh-theme
deleted file mode 100644
index 214ba5a..0000000
--- a/common/.oh-my-zsh/themes/mrtazz.zsh-theme
+++ /dev/null
@@ -1,7 +0,0 @@
-PROMPT='%{$fg_bold[red]%}%m%{$reset_color%}:%{$fg[cyan]%}%c%{$reset_color%}:%# '
-RPROMPT='%{$fg_bold[green]%}$(git_prompt_info)%{$reset_color%}% '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="<%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%} %{$fg[yellow]%}✗%{$fg[green]%}>%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}>"
diff --git a/common/.oh-my-zsh/themes/murilasso.zsh-theme b/common/.oh-my-zsh/themes/murilasso.zsh-theme
deleted file mode 100644
index bc2b9b2..0000000
--- a/common/.oh-my-zsh/themes/murilasso.zsh-theme
+++ /dev/null
@@ -1,14 +0,0 @@
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-local user_host='%{$terminfo[bold]$fg[green]%}%n@%m%{$reset_color%}'
-local current_dir='%{$terminfo[bold]$fg[blue]%}%~%{$reset_color%}'
-local rvm_ruby='%{$fg[red]%}$(rvm_prompt_info || rbenv_prompt_info)%{$reset_color%}'
-local git_branch='%{$fg[blue]%}$(git_prompt_info)%{$reset_color%}'
-
-PROMPT="${user_host}:${current_dir} ${rvm_ruby}
-${git_branch} %B$%b "
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX=""
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/muse.zsh-theme b/common/.oh-my-zsh/themes/muse.zsh-theme
deleted file mode 100644
index 4bd8fb8..0000000
--- a/common/.oh-my-zsh/themes/muse.zsh-theme
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env zsh
-#local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-setopt promptsubst
-
-autoload -U add-zsh-hook
-
-PROMPT_SUCCESS_COLOR=$FG[117]
-PROMPT_FAILURE_COLOR=$FG[124]
-PROMPT_VCS_INFO_COLOR=$FG[242]
-PROMPT_PROMPT=$FG[077]
-GIT_DIRTY_COLOR=$FG[133]
-GIT_CLEAN_COLOR=$FG[118]
-GIT_PROMPT_INFO=$FG[012]
-
-PROMPT='%{$PROMPT_SUCCESS_COLOR%}%~%{$reset_color%} %{$GIT_PROMPT_INFO%}$(git_prompt_info)%{$GIT_DIRTY_COLOR%}$(git_prompt_status) %{$reset_color%}%{$PROMPT_PROMPT%}ᐅ%{$reset_color%} '
-
-#RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="("
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$GIT_PROMPT_INFO%})"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$GIT_DIRTY_COLOR%}✘"
-ZSH_THEME_GIT_PROMPT_CLEAN=" %{$GIT_CLEAN_COLOR%}✔"
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$FG[082]%}✚%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$FG[166]%}✹%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$FG[160]%}✖%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$FG[220]%}➜%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$FG[082]%}═%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$FG[190]%}✭%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/nanotech.zsh-theme b/common/.oh-my-zsh/themes/nanotech.zsh-theme
deleted file mode 100644
index 5d33316..0000000
--- a/common/.oh-my-zsh/themes/nanotech.zsh-theme
+++ /dev/null
@@ -1,7 +0,0 @@
-PROMPT='%F{green}%2c%F{blue} [%f '
-RPROMPT='$(git_prompt_info) %F{blue}] %F{green}%D{%L:%M} %F{yellow}%D{%p}%f'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%F{yellow}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%f"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %F{red}*%f"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
diff --git a/common/.oh-my-zsh/themes/nebirhos.zsh-theme b/common/.oh-my-zsh/themes/nebirhos.zsh-theme
deleted file mode 100644
index a5a226b..0000000
--- a/common/.oh-my-zsh/themes/nebirhos.zsh-theme
+++ /dev/null
@@ -1,21 +0,0 @@
-# Based on robbyrussell's theme, with host and rvm indicators. Example:
-# @host ➜ currentdir rvm:(rubyversion@gemset) git:(branchname)
-
-# Get the current ruby version in use with RVM:
-if [ -e ~/.rvm/bin/rvm-prompt ]; then
-    RUBY_PROMPT_="%{$fg_bold[blue]%}rvm:(%{$fg[green]%}\$(~/.rvm/bin/rvm-prompt s i v g)%{$fg_bold[blue]%})%{$reset_color%} "
-else
-  if which rbenv &> /dev/null; then
-    RUBY_PROMPT_="%{$fg_bold[blue]%}rbenv:(%{$fg[green]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$fg_bold[blue]%})%{$reset_color%} "
-  fi
-fi
-
-# Get the host name (first 4 chars)
-HOST_PROMPT_="%{$fg_bold[red]%}@$HOST[0,4] ➜  %{$fg_bold[cyan]%}%c "
-GIT_PROMPT="%{$fg_bold[blue]%}\$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}"
-PROMPT="$HOST_PROMPT_$RUBY_PROMPT_$GIT_PROMPT"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/nicoulaj.zsh-theme b/common/.oh-my-zsh/themes/nicoulaj.zsh-theme
deleted file mode 100644
index 333aa5e..0000000
--- a/common/.oh-my-zsh/themes/nicoulaj.zsh-theme
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/env zsh
-# ------------------------------------------------------------------------------
-# Prompt for the Zsh shell:
-#   * One line.
-#   * VCS info on the right prompt.
-#   * Only shows the path on the left prompt by default.
-#   * Crops the path to a defined length and only shows the path relative to
-#     the current VCS repository root.
-#   * Wears a different color wether the last command succeeded/failed.
-#   * Shows user@hostname if connected through SSH.
-#   * Shows if logged in as root or not.
-# ------------------------------------------------------------------------------
-
-# Customizable parameters.
-PROMPT_PATH_MAX_LENGTH=30
-PROMPT_DEFAULT_END=❯
-PROMPT_ROOT_END=❯❯❯
-PROMPT_SUCCESS_COLOR=$FG[071]
-PROMPT_FAILURE_COLOR=$FG[124]
-PROMPT_VCS_INFO_COLOR=$FG[242]
-
-# Set required options.
-setopt promptsubst
-
-# Load required modules.
-autoload -U add-zsh-hook
-autoload -Uz vcs_info
-
-# Add hook for calling vcs_info before each command.
-add-zsh-hook precmd vcs_info
-
-# Set vcs_info parameters.
-zstyle ':vcs_info:*' enable hg bzr git
-zstyle ':vcs_info:*:*' check-for-changes true # Can be slow on big repos.
-zstyle ':vcs_info:*:*' unstagedstr '!'
-zstyle ':vcs_info:*:*' stagedstr '+'
-zstyle ':vcs_info:*:*' actionformats "%S" "%r/%s/%b %u%c (%a)"
-zstyle ':vcs_info:*:*' formats "%S" "%r/%s/%b %u%c"
-zstyle ':vcs_info:*:*' nvcsformats "%~" ""
-
-# Define prompts.
-PROMPT="%(0?.%{$PROMPT_SUCCESS_COLOR%}.%{$PROMPT_FAILURE_COLOR%})${SSH_TTY:+[%n@%m]}%{$FX[bold]%}%$PROMPT_PATH_MAX_LENGTH<..<"'${vcs_info_msg_0_%%.}'"%<<%(!.$PROMPT_ROOT_END.$PROMPT_DEFAULT_END)%{$FX[no-bold]%}%{$FX[reset]%} "
-RPROMPT="%{$PROMPT_VCS_INFO_COLOR%}"'$vcs_info_msg_1_'"%{$FX[reset]%}"
diff --git a/common/.oh-my-zsh/themes/norm.zsh-theme b/common/.oh-my-zsh/themes/norm.zsh-theme
deleted file mode 100644
index 13077cc..0000000
--- a/common/.oh-my-zsh/themes/norm.zsh-theme
+++ /dev/null
@@ -1,4 +0,0 @@
-PROMPT='%{$fg[yellow]%}λ %m %{$fg[green]%}%c %{$fg[yellow]%}→ $(git_prompt_info)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="λ %{$fg[blue]%}git %{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[yellow]%} → %{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/obraun.zsh-theme b/common/.oh-my-zsh/themes/obraun.zsh-theme
deleted file mode 100644
index 08d1376..0000000
--- a/common/.oh-my-zsh/themes/obraun.zsh-theme
+++ /dev/null
@@ -1,11 +0,0 @@
-if [ "$(whoami)" = "root" ]; then CARETCOLOR="red"; else CARETCOLOR="blue"; fi
-
-local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
-
-PROMPT='%{$fg[green]%}[%*]%{$reset_color%} %{$fg_no_bold[cyan]%}%n %{${fg_bold[blue]}%}::%{$reset_color%} %{$fg[yellow]%}%m%{$reset_color%} %{$fg_no_bold[magenta]%} ➜ %{$reset_color%} %{${fg[green]}%}%3~ $(git_prompt_info)%{${fg_bold[$CARETCOLOR]}%}»%{${reset_color}%} '
-
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
-
diff --git a/common/.oh-my-zsh/themes/philips.zsh-theme b/common/.oh-my-zsh/themes/philips.zsh-theme
deleted file mode 100644
index f6e5b32..0000000
--- a/common/.oh-my-zsh/themes/philips.zsh-theme
+++ /dev/null
@@ -1,14 +0,0 @@
-if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
-
-PROMPT='%{$fg[$NCOLOR]%}%B%n%b%{$reset_color%}:%{$fg[blue]%}%B%c/%b%{$reset_color%} $(git_prompt_info)%(!.#.$) '
-RPROMPT='[%*]'
-
-# git theming
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[red]%}%B"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%b%{$fg_bold[blue]%})%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_DIRTY="*"
-
-# LS colors, made with http://geoff.greer.fm/lscolors/
-export LSCOLORS="Gxfxcxdxbxegedabagacad"
-export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:*.patch=00;34:*.o=00;32:*.so=01;35:*.ko=01;31:*.la=00;33'
diff --git a/common/.oh-my-zsh/themes/pmcgee.zsh-theme b/common/.oh-my-zsh/themes/pmcgee.zsh-theme
deleted file mode 100644
index e4e45c7..0000000
--- a/common/.oh-my-zsh/themes/pmcgee.zsh-theme
+++ /dev/null
@@ -1,16 +0,0 @@
-if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi
-
-PROMPT='
-%{$fg[$NCOLOR]%}%B%n@%m%b%{$reset_color%} %{$fg[white]%}%B${PWD/#$HOME/~}%b%{$reset_color%}
-$(git_prompt_info)%(!.#.$) '
-RPROMPT='[%*]'
-
-# git theming
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_no_bold[yellow]%}%B"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}*"
-
-# LS colors, made with http://geoff.greer.fm/lscolors/
-export LSCOLORS="Gxfxcxdxbxegedabagacad"
-export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:'
diff --git a/common/.oh-my-zsh/themes/pygmalion.zsh-theme b/common/.oh-my-zsh/themes/pygmalion.zsh-theme
deleted file mode 100644
index cf3bb90..0000000
--- a/common/.oh-my-zsh/themes/pygmalion.zsh-theme
+++ /dev/null
@@ -1,9 +0,0 @@
-# Yay! High voltage and arrows!
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}⚡%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-PROMPT='%{$fg[magenta]%}%n%{$reset_color%}%{$fg[cyan]%}@%{$reset_color%}%{$fg[yellow]%}%m%{$reset_color%}%{$fg[red]%}:%{$reset_color%}%{$fg[cyan]%}%0~%{$reset_color%}%{$fg[red]%}|%{$reset_color%}$(git_prompt_info)%{$fg[cyan]%}⇒%{$reset_color%}  '
-
diff --git a/common/.oh-my-zsh/themes/re5et.zsh-theme b/common/.oh-my-zsh/themes/re5et.zsh-theme
deleted file mode 100644
index 5bded76..0000000
--- a/common/.oh-my-zsh/themes/re5et.zsh-theme
+++ /dev/null
@@ -1,15 +0,0 @@
-if [ "$(whoami)" = "root" ]; then CARETCOLOR="red"; else CARETCOLOR="magenta"; fi
-
-local return_code="%(?..%{$fg_bold[red]%}:( %?%{$reset_color%})"
-
-PROMPT='
-%{$fg_bold[cyan]%}%n%{$reset_color%}%{$fg[yellow]%}@%{$reset_color%}%{$fg_bold[blue]%}%m%{$reset_color%}:%{${fg_bold[green]}%}%~%{$reset_color%}$(git_prompt_info)
-%{${fg[$CARETCOLOR]}%}%# %{${reset_color}%}'
-
-RPS1='${return_code} %D - %*'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[magenta]%}^%{$reset_color%}%{$fg_bold[yellow]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%} ±"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ?"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[red]%} ♥"
diff --git a/common/.oh-my-zsh/themes/rgm.zsh-theme b/common/.oh-my-zsh/themes/rgm.zsh-theme
deleted file mode 100644
index 9452a8b..0000000
--- a/common/.oh-my-zsh/themes/rgm.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-PROMPT='
-%n@%m %{$fg[cyan]%}%~
-%? $(git_prompt_info)%{$fg_bold[blue]%}%% %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}"
diff --git a/common/.oh-my-zsh/themes/risto.zsh-theme b/common/.oh-my-zsh/themes/risto.zsh-theme
deleted file mode 100644
index cb773a6..0000000
--- a/common/.oh-my-zsh/themes/risto.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-# -*- sh -*- vim:set ft=sh ai et sw=4 sts=4:
-# It might be bash like, but I can't have my co-workers knowing I use zsh
-PROMPT='%{$fg[green]%}%n@%m:%{$fg_bold[blue]%}%2~ $(git_prompt_info)%{$reset_color%}%(!.#.$) '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="›%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/rixius.zsh-theme b/common/.oh-my-zsh/themes/rixius.zsh-theme
deleted file mode 100644
index c0c5c9c..0000000
--- a/common/.oh-my-zsh/themes/rixius.zsh-theme
+++ /dev/null
@@ -1,24 +0,0 @@
-# /|/ Code by Stephen
-# /|/ "Rixius" Middleton
-# 
-# name in folder (github)
-# ± if in github repo, or ≥ if otherwise Time in 24-hour format is on right.
-function collapse_pwd {
-    echo $(pwd | sed -e "s,^$HOME,~,")
-}
-function prompt_char {
-    echo -n "%{$bg[white]%}%{$fg[red]%}"
-    git branch >/dev/null 2>/dev/null && echo "±%{$reset_color%}" && return
-    echo "≥%{$reset_color%}"
-}
-RIXIUS_PRE="%{$bg[white]%}%{$fg[red]%}"
-
-PROMPT='
-%{$RIXIUS_PRE%}%n%{$reset_color%} in %{$fg_bold[green]%}$(collapse_pwd)%{$reset_color%}$(git_prompt_info)
-$(prompt_char) '
-RPROMPT='%{$RIXIUS_PRE%}%T%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$RIXIUS_PRE%}!%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=" %{$RIXIUS_PRE%}√%{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/rkj-repos.zsh-theme b/common/.oh-my-zsh/themes/rkj-repos.zsh-theme
deleted file mode 100644
index 46b8e83..0000000
--- a/common/.oh-my-zsh/themes/rkj-repos.zsh-theme
+++ /dev/null
@@ -1,29 +0,0 @@
-# user, host, full path, and time/date
-# on two lines for easier vgrepping
-# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
-
-function hg_prompt_info {
-    hg prompt --angle-brackets "\
-%{$reset_color%}>\
-%{$reset_color%}>\
-%{$fg[red]%}%{$reset_color%}<
-patches: >" 2>/dev/null
-}
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%}+"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%}✱"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}✗"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}➦"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%}✂"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%}✈"
-
-function mygit() {
-  ref=$(git symbolic-ref HEAD 2> /dev/null) || return
-  echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$( git_prompt_status )%{$reset_color%}$ZSH_THEME_GIT_PROMPT_SUFFIX"
-}
-
-# alternate prompt with git & hg
-PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
-%{\e[0;34m%}%B└─%B[%{\e[1;35m%}%?$(retcode)%{\e[0;34m%}%B] <$(mygit)$(hg_prompt_info)>%{\e[0m%}%b '
-PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
-
diff --git a/common/.oh-my-zsh/themes/rkj.zsh-theme b/common/.oh-my-zsh/themes/rkj.zsh-theme
deleted file mode 100644
index 80122d5..0000000
--- a/common/.oh-my-zsh/themes/rkj.zsh-theme
+++ /dev/null
@@ -1,8 +0,0 @@
-# user, host, full path, and time/date
-# on two lines for easier vgrepping
-# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
-
-PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
-%{\e[0;34m%}%B└─%B[%{\e[1;35m%}%?$(retcode)%{\e[0;34m%}%B]%{\e[0m%}%b '
-
-
diff --git a/common/.oh-my-zsh/themes/robbyrussell.zsh-theme b/common/.oh-my-zsh/themes/robbyrussell.zsh-theme
deleted file mode 100644
index 7b524e8..0000000
--- a/common/.oh-my-zsh/themes/robbyrussell.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/sammy.zsh-theme b/common/.oh-my-zsh/themes/sammy.zsh-theme
deleted file mode 100644
index 52e6e4b..0000000
--- a/common/.oh-my-zsh/themes/sammy.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg[white]%}%c$(git_prompt_info)$ % %{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="("
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_DIRTY="*)"
-ZSH_THEME_GIT_PROMPT_CLEAN=")"
diff --git a/common/.oh-my-zsh/themes/simonoff.zsh-theme b/common/.oh-my-zsh/themes/simonoff.zsh-theme
deleted file mode 100644
index fb4d32e..0000000
--- a/common/.oh-my-zsh/themes/simonoff.zsh-theme
+++ /dev/null
@@ -1,141 +0,0 @@
-# Prompt
-#
-# Below are the color init strings for the basic file types. A color init
-# string consists of one or more of the following numeric codes:
-# Attribute codes:
-# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
-# Text color codes:
-# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
-# Background color codes:
-# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
-function precmd {
-
-    local TERMWIDTH
-    (( TERMWIDTH = ${COLUMNS} - 1 ))
-
-
-    ###
-    # Truncate the path if it's too long.
-
-    PR_FILLBAR=""
-    PR_PWDLEN=""
-
-    local promptsize=${#${(%):---(%n@%M:%l)---()}}
-    local pwdsize=${#${(%):-%~}}
-    local gitbranch="$(git_prompt_info)"
-    local rvmprompt="$(rvm_prompt_info)"
-    local gitbranchsize=${#${gitbranch:-''}}
-    local rvmpromptsize=${#${rvmprompt:-''}}
-
-    if [[ "$promptsize + $pwdsize + $rvmpromptsize + $gitbranchsize" -gt $TERMWIDTH ]]; then
-        ((PR_PWDLEN=$TERMWIDTH - $promptsize))
-    else
-        PR_FILLBAR="\${(l.(($TERMWIDTH - ($promptsize + $pwdsize + $rvmpromptsize + $gitbranchsize)))..${PR_SPACE}.)}"
-    fi
-}
-
-
-setopt extended_glob
-
-preexec () {
-    if [[ "$TERM" == "screen" ]]; then
-        local CMD=${1[(wr)^(*=*|sudo|-*)]}
-        echo -n "\ek$CMD\e\\"
-    fi
-
-    if [[ "$TERM" == "xterm" ]]; then
-        print -Pn "\e]0;$1\a"
-    fi
-
-    if [[ "$TERM" == "rxvt" ]]; then
-        print -Pn "\e]0;$1\a"
-    fi
-
-}
-
-setprompt () {
-###
-# Need this so the prompt will work.
-
-    setopt prompt_subst
-
-
-###
-# See if we can use colors.
-
-    autoload colors zsh/terminfo
-    if [[ "$terminfo[colors]" -ge 8 ]]; then
-    colors
-    fi
-    for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
-    eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
-    eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
-    (( count = $count + 1 ))
-    done
-    PR_NO_COLOUR="%{$terminfo[sgr0]%}"
-
-
-###
-# See if we can use extended characters to look nicer.
-
-    typeset -A altchar
-#    set -A altchar "${(s..)terminfo[acsc]}"
-    PR_SET_CHARSET="%{$terminfo[enacs]%}"
-    PR_HBAR=${altchar[q]:--}
-    PR_ULCORNER=${altchar[l]:--}
-    PR_LLCORNER=${altchar[m]:--}
-    PR_LRCORNER=${altchar[j]:--}
-    PR_URCORNER=${altchar[k]:--}
-
-    ###
-    # Modify Git prompt
-    ZSH_THEME_GIT_PROMPT_PREFIX=" ["
-    ZSH_THEME_GIT_PROMPT_SUFFIX="]"
-    ###
-    # Modify RVM prompt
-    ZSH_THEME_RVM_PROMPT_PREFIX=" ["
-    ZSH_THEME_RVM_PROMPT_SUFFIX="]"
-
-
-###
-# Decide if we need to set titlebar text.
-
-    case $TERM in
-    xterm*|*rxvt*)
-        PR_TITLEBAR=$'%{\e]0;%(!.-=*[ROOT]*=- | .)%n@%M:%~ $(git_prompt_info) $(rvm_prompt_info) | ${COLUMNS}x${LINES} | %y\a%}'
-        ;;
-    screen)
-        PR_TITLEBAR=$'%{\e_screen \005 (\005t) | %(!.-=[ROOT]=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\e\\%}'
-        ;;
-    *)
-        PR_TITLEBAR=''
-        ;;
-    esac
-
-
-###
-# Decide whether to set a screen title
-    if [[ "$TERM" == "screen" ]]; then
-        PR_STITLE=$'%{\ekzsh\e\\%}'
-    else
-        PR_STITLE=''
-    fi
-
-###
-# Finally, the prompt.
-#
-    PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\
-$PR_RED$PR_HBAR<\
-$PR_BLUE%(!.$PR_RED%SROOT%s.%n)$PR_GREEN@$PR_BLUE%M:$PR_GREEN%$PR_PWDLEN<...<%~$PR_CYAN$(git_prompt_info)$(rvm_prompt_info)\
-$PR_RED>$PR_HBAR$PR_SPACE${(e)PR_FILLBAR}\
-$PR_RED$PR_HBAR<\
-$PR_GREEN%l$PR_RED>$PR_HBAR\
-
-$PR_RED$PR_HBAR<\
-%(?..$PR_LIGHT_RED%?$PR_BLUE:)\
-$PR_LIGHT_BLUE%(!.$PR_RED.$PR_WHITE)%#$PR_RED>$PR_HBAR\
-$PR_NO_COLOUR '
-
-}
-
-setprompt
diff --git a/common/.oh-my-zsh/themes/simple.zsh-theme b/common/.oh-my-zsh/themes/simple.zsh-theme
deleted file mode 100644
index a88d9d7..0000000
--- a/common/.oh-my-zsh/themes/simple.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-PROMPT='%{$fg[green]%}%~%{$fg_bold[blue]%}$(git_prompt_info)%{$reset_color%} '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")"
-ZSH_THEME_GIT_PROMPT_DIRTY=" ✗"
-ZSH_THEME_GIT_PROMPT_CLEAN=" ✔"
diff --git a/common/.oh-my-zsh/themes/skaro.zsh-theme b/common/.oh-my-zsh/themes/skaro.zsh-theme
deleted file mode 100644
index 84b7b11..0000000
--- a/common/.oh-my-zsh/themes/skaro.zsh-theme
+++ /dev/null
@@ -1,7 +0,0 @@
-PROMPT='%{$fg_bold[green]%}%h %{$fg[cyan]%}%2~ %{$fg_bold[blue]%}$(git_prompt_info) %{$reset_color%}» '
-
-ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
-
diff --git a/common/.oh-my-zsh/themes/smt.zsh-theme b/common/.oh-my-zsh/themes/smt.zsh-theme
deleted file mode 100644
index 7a28752..0000000
--- a/common/.oh-my-zsh/themes/smt.zsh-theme
+++ /dev/null
@@ -1,91 +0,0 @@
-# -----------------------------------------------------------------------------
-#          FILE: smt.zsh-theme
-#   DESCRIPTION: oh-my-zsh theme file, based on dogenpunk by Matthew Nelson.
-#        AUTHOR: Stephen Tudor (stephen@tudorstudio.com
-#       VERSION: 0.1
-#    SCREENSHOT: coming soon
-# -----------------------------------------------------------------------------
-
-MODE_INDICATOR="%{$fg_bold[red]%}❮%{$reset_color%}%{$fg[red]%}❮❮%{$reset_color%}"
-local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%} "
-
-ZSH_THEME_GIT_PROMPT_PREFIX="|"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}⚡%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg_bold[red]%}!%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}✓%{$reset_color%}"
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭"
-
-# Format for git_prompt_long_sha() and git_prompt_short_sha()
-ZSH_THEME_GIT_PROMPT_SHA_BEFORE="➤ %{$fg_bold[yellow]%}"
-ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$reset_color%}"
-
-function prompt_char() {
-  git branch >/dev/null 2>/dev/null && echo "%{$fg[green]%}±%{$reset_color%}" && return
-  hg root >/dev/null 2>/dev/null && echo "%{$fg_bold[red]%}☿%{$reset_color%}" && return
-  echo "%{$fg[cyan]%}◯%{$reset_color%}"
-}
-
-# Colors vary depending on time lapsed.
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}"
-ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}"
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}"
-ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[cyan]%}"
-
-# Determine the time since last commit. If branch is clean,
-# use a neutral color, otherwise colors will vary according to time.
-function git_time_since_commit() {
-    if git rev-parse --git-dir > /dev/null 2>&1; then
-        # Only proceed if there is actually a commit.
-        if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then
-            # Get the last commit.
-            last_commit=`git log --pretty=format:'%at' -1 2> /dev/null`
-            now=`date +%s`
-            seconds_since_last_commit=$((now-last_commit))
-
-            # Totals
-            MINUTES=$((seconds_since_last_commit / 60))
-            HOURS=$((seconds_since_last_commit/3600))
-
-            # Sub-hours and sub-minutes
-            DAYS=$((seconds_since_last_commit / 86400))
-            SUB_HOURS=$((HOURS % 24))
-            SUB_MINUTES=$((MINUTES % 60))
-
-            if [[ -n $(git status -s 2> /dev/null) ]]; then
-                if [ "$MINUTES" -gt 30 ]; then
-                    COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG"
-                elif [ "$MINUTES" -gt 10 ]; then
-                    COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM"
-                else
-                    COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT"
-                fi
-            else
-                COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
-            fi
-
-            if [ "$HOURS" -gt 24 ]; then
-                echo "[$COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}]"
-            elif [ "$MINUTES" -gt 60 ]; then
-                echo "[$COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}]"
-            else
-                echo "[$COLOR${MINUTES}m%{$reset_color%}]"
-            fi
-        else
-            COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
-            echo "[$COLOR~]"
-        fi
-    fi
-}
-
-PROMPT='
-%{$fg[blue]%}%m%{$reset_color%} 福 %{$fg[cyan]%}%~ %{$reset_color%}$(git_prompt_short_sha)$(git_prompt_info)
-%{$fg[red]%}%!%{$reset_color%} $(prompt_char) : '
-
-RPROMPT='${return_status}$(git_time_since_commit)$(git_prompt_status)%{$reset_color%}'
diff --git a/common/.oh-my-zsh/themes/sorin.zsh-theme b/common/.oh-my-zsh/themes/sorin.zsh-theme
deleted file mode 100644
index 601dbe5..0000000
--- a/common/.oh-my-zsh/themes/sorin.zsh-theme
+++ /dev/null
@@ -1,48 +0,0 @@
-# ------------------------------------------------------------------------------
-#          FILE:  sorin.zsh-theme
-#   DESCRIPTION:  oh-my-zsh theme file.
-#        AUTHOR:  Sorin Ionescu (sorin.ionescu@gmail.com)
-#       VERSION:  1.0.2
-#    SCREENSHOT:  http://i.imgur.com/aipDQ.png
-# ------------------------------------------------------------------------------
-
-
-if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then
-  MODE_INDICATOR="%{$fg_bold[red]%}❮%{$reset_color%}%{$fg[red]%}❮❮%{$reset_color%}"
-  local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%}"
-  
-  PROMPT='%{$fg[cyan]%}%c$(git_prompt_info) %(!.%{$fg_bold[red]%}#.%{$fg_bold[green]%}❯)%{$reset_color%} '
-
-  ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[blue]%}git%{$reset_color%}:%{$fg[red]%}"
-  ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-  ZSH_THEME_GIT_PROMPT_DIRTY=""
-  ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-  RPROMPT='${return_status}$(git_prompt_status)%{$reset_color%}'
-
-  ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚"
-  ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹"
-  ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖"
-  ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜"
-  ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═"
-  ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭"
-else 
-  MODE_INDICATOR="❮❮❮"
-  local return_status="%(?::⏎)"
-  
-  PROMPT='%c$(git_prompt_info) %(!.#.❯) '
-
-  ZSH_THEME_GIT_PROMPT_PREFIX=" git:"
-  ZSH_THEME_GIT_PROMPT_SUFFIX=""
-  ZSH_THEME_GIT_PROMPT_DIRTY=""
-  ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-  RPROMPT='${return_status}$(git_prompt_status)'
-
-  ZSH_THEME_GIT_PROMPT_ADDED=" ✚"
-  ZSH_THEME_GIT_PROMPT_MODIFIED=" ✹"
-  ZSH_THEME_GIT_PROMPT_DELETED=" ✖"
-  ZSH_THEME_GIT_PROMPT_RENAMED=" ➜"
-  ZSH_THEME_GIT_PROMPT_UNMERGED=" ═"
-  ZSH_THEME_GIT_PROMPT_UNTRACKED=" ✭"
-fi
diff --git a/common/.oh-my-zsh/themes/sporty_256.zsh-theme b/common/.oh-my-zsh/themes/sporty_256.zsh-theme
deleted file mode 100644
index db0fc42..0000000
--- a/common/.oh-my-zsh/themes/sporty_256.zsh-theme
+++ /dev/null
@@ -1,13 +0,0 @@
-# zsh theme requires 256 color enabled terminal
-# i.e TERM=xterm-256color
-# Preview - http://www.flickr.com/photos/adelcampo/4556482563/sizes/o/
-# based on robbyrussell's shell but louder!
-
-PROMPT='%{$fg_bold[blue]%}$(git_prompt_info) %F{208}%c%f
-%{$fg_bold[white]%}%# %{$reset_color%}'
-RPROMPT='%B%F{208}%n%f%{$fg_bold[white]%}@%F{039}%m%f%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%F{154}±|%f%F{124}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}%B✘%b%F{154}|%f%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%F{154}|"
diff --git a/common/.oh-my-zsh/themes/steeef.zsh-theme b/common/.oh-my-zsh/themes/steeef.zsh-theme
deleted file mode 100644
index 312229e..0000000
--- a/common/.oh-my-zsh/themes/steeef.zsh-theme
+++ /dev/null
@@ -1,100 +0,0 @@
-# prompt style and colors based on Steve Losh's Prose theme:
-# http://github.com/sjl/oh-my-zsh/blob/master/themes/prose.zsh-theme
-#
-# vcs_info modifications from Bart Trojanowski's zsh prompt:
-# http://www.jukie.net/bart/blog/pimping-out-zsh-prompt
-#
-# git untracked files modification from Brian Carper:
-# http://briancarper.net/blog/570/git-info-in-your-zsh-prompt
-
-function virtualenv_info {
-    [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
-}
-PR_GIT_UPDATE=1
-
-setopt prompt_subst
-autoload colors
-colors
-
-autoload -U add-zsh-hook
-autoload -Uz vcs_info
-
-#use extended color pallete if available
-if [[ $TERM = *256color* || $TERM = *rxvt* ]]; then
-    turquoise="%F{81}"
-    orange="%F{166}"
-    purple="%F{135}"
-    hotpink="%F{161}"
-    limegreen="%F{118}"
-else
-    turquoise="$fg[cyan]"
-    orange="$fg[yellow]"
-    purple="$fg[magenta]"
-    hotpink="$fg[red]"
-    limegreen="$fg[green]"
-fi
-
-# enable VCS systems you use
-zstyle ':vcs_info:*' enable git svn
-
-# check-for-changes can be really slow.
-# you should disable it, if you work with large repositories
-zstyle ':vcs_info:*:prompt:*' check-for-changes true
-
-# set formats
-# %b - branchname
-# %u - unstagedstr (see below)
-# %c - stagedstr (see below)
-# %a - action (e.g. rebase-i)
-# %R - repository path
-# %S - path in the repository
-PR_RST="%{${reset_color}%}"
-FMT_BRANCH="(%{$turquoise%}%b%u%c${PR_RST})"
-FMT_ACTION="(%{$limegreen%}%a${PR_RST})"
-FMT_UNSTAGED="%{$orange%}●"
-FMT_STAGED="%{$limegreen%}●"
-
-zstyle ':vcs_info:*:prompt:*' unstagedstr   "${FMT_UNSTAGED}"
-zstyle ':vcs_info:*:prompt:*' stagedstr     "${FMT_STAGED}"
-zstyle ':vcs_info:*:prompt:*' actionformats "${FMT_BRANCH}${FMT_ACTION}"
-zstyle ':vcs_info:*:prompt:*' formats       "${FMT_BRANCH}"
-zstyle ':vcs_info:*:prompt:*' nvcsformats   ""
-
-
-function steeef_preexec {
-    case "$(history $HISTCMD)" in
-        *git*)
-            PR_GIT_UPDATE=1
-            ;;
-        *svn*)
-            PR_GIT_UPDATE=1
-            ;;
-    esac
-}
-add-zsh-hook preexec steeef_preexec
-
-function steeef_chpwd {
-    PR_GIT_UPDATE=1
-}
-add-zsh-hook chpwd steeef_chpwd
-
-function steeef_precmd {
-    if [[ -n "$PR_GIT_UPDATE" ]] ; then
-        # check for untracked files or updated submodules, since vcs_info doesn't
-        if git ls-files --other --exclude-standard --directory 2> /dev/null | grep -q "."; then
-            PR_GIT_UPDATE=1
-            FMT_BRANCH="(%{$turquoise%}%b%u%c%{$hotpink%}●${PR_RST})"
-        else
-            FMT_BRANCH="(%{$turquoise%}%b%u%c${PR_RST})"
-        fi
-        zstyle ':vcs_info:*:prompt:*' formats       "${FMT_BRANCH}"
-
-        vcs_info 'prompt'
-        PR_GIT_UPDATE=
-    fi
-}
-add-zsh-hook precmd steeef_precmd
-
-PROMPT=$'
-%{$purple%}%n%{$reset_color%} at %{$orange%}%m%{$reset_color%} in %{$limegreen%}%~%{$reset_color%} $vcs_info_msg_0_
-$(virtualenv_info)$ '
diff --git a/common/.oh-my-zsh/themes/sunaku.zsh-theme b/common/.oh-my-zsh/themes/sunaku.zsh-theme
deleted file mode 100644
index 440fa90..0000000
--- a/common/.oh-my-zsh/themes/sunaku.zsh-theme
+++ /dev/null
@@ -1,26 +0,0 @@
-# Git-centric variation of the "fishy" theme.
-# See screenshot at http://ompldr.org/vOHcwZg
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%}+"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[magenta]%}!"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}-"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}>"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[cyan]%}#"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[yellow]%}?"
-
-ZSH_THEME_GIT_PROMPT_PREFIX=""
-ZSH_THEME_GIT_PROMPT_SUFFIX=" "
-ZSH_THEME_GIT_PROMPT_DIRTY=""
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-local user_color='green'
-test $UID -eq 0 && user_color='red'
-
-PROMPT='%(?..%{$fg_bold[red]%}exit %?
-%{$reset_color%})'\
-'%{$bold_color%}$(git_prompt_status)%{$reset_color%}'\
-'$(git_prompt_info)'\
-'%{$fg[$user_color]%}%~%{$reset_color%}'\
-'%(!.#.>) '
-
-PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
diff --git a/common/.oh-my-zsh/themes/sunrise.zsh-theme b/common/.oh-my-zsh/themes/sunrise.zsh-theme
deleted file mode 100644
index 88b371d..0000000
--- a/common/.oh-my-zsh/themes/sunrise.zsh-theme
+++ /dev/null
@@ -1,96 +0,0 @@
-#-------------------------------------------------------------------------------
-# Sunrise theme for oh-my-zsh by Adam Lindberg (eproxus@gmail.com)
-# Intended to be used with Solarized: http://ethanschoonover.com/solarized
-# (Needs Git plugin for current_branch method)
-#-------------------------------------------------------------------------------
-
-# Color shortcuts
-R=$fg[red]
-G=$fg[green]
-M=$fg[magenta]
-RB=$fg_bold[red]
-YB=$fg_bold[yellow]
-BB=$fg_bold[blue]
-RESET=$reset_color
-
-if [ "$(whoami)" = "root" ]; then
-    PROMPTCOLOR="%{$RB%}" PREFIX="-!-";
-else
-    PROMPTCOLOR="" PREFIX="---";
-fi
-
-local return_code="%(?..%{$R%}%? ↵%{$RESET%})"
-
-# Get the status of the working tree (copied and modified from git.zsh)
-custom_git_prompt_status() {
-  INDEX=$(git status --porcelain 2> /dev/null)
-  STATUS=""
-  # Non-staged
-  if $(echo "$INDEX" | grep '^?? ' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS"
-  fi
-  if $(echo "$INDEX" | grep '^UU ' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS"
-  fi
-  if $(echo "$INDEX" | grep '^ D ' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS"
-  fi
-  if $(echo "$INDEX" | grep '^.M ' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
-  elif $(echo "$INDEX" | grep '^AM ' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
-  elif $(echo "$INDEX" | grep '^ T ' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
-  fi
-  # Staged
-  if $(echo "$INDEX" | grep '^D  ' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_DELETED$STATUS"
-  fi
-  if $(echo "$INDEX" | grep '^R' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_RENAMED$STATUS"
-  fi
-  if $(echo "$INDEX" | grep '^M' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_MODIFIED$STATUS"
-  fi
-  if $(echo "$INDEX" | grep '^A' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_ADDED$STATUS"
-  fi
-
-  if $(echo -n "$STATUS" | grep '.*' &> /dev/null); then
-    STATUS="$ZSH_THEME_GIT_STATUS_PREFIX$STATUS"
-  fi
-
-  echo $STATUS
-}
-
-# get the name of the branch we are on (copied and modified from git.zsh)
-function custom_git_prompt() {
-  ref=$(git symbolic-ref HEAD 2> /dev/null) || return
-  echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$(git_prompt_ahead)$(custom_git_prompt_status)$ZSH_THEME_GIT_PROMPT_SUFFIX"
-}
-
-# %B sets bold text
-PROMPT='%B$PREFIX %2~ $(custom_git_prompt)%{$M%}%B»%b%{$RESET%} '
-RPS1="${return_code}"
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$YB%}‹"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$YB%}›%{$RESET%} "
-
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$R%}*"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-ZSH_THEME_GIT_PROMPT_AHEAD="%{$BB%}➔"
-
-ZSH_THEME_GIT_STATUS_PREFIX=" "
-
-# Staged
-ZSH_THEME_GIT_PROMPT_STAGED_ADDED="%{$G%}A"
-ZSH_THEME_GIT_PROMPT_STAGED_MODIFIED="%{$G%}M"
-ZSH_THEME_GIT_PROMPT_STAGED_RENAMED="%{$G%}R"
-ZSH_THEME_GIT_PROMPT_STAGED_DELETED="%{$G%}D"
-
-# Not-staged
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$R%}⁇"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$R%}M"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$R%}D"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$R%}UU"
diff --git a/common/.oh-my-zsh/themes/superjarin.zsh-theme b/common/.oh-my-zsh/themes/superjarin.zsh-theme
deleted file mode 100644
index 86955a5..0000000
--- a/common/.oh-my-zsh/themes/superjarin.zsh-theme
+++ /dev/null
@@ -1,24 +0,0 @@
-# Grab the current version of ruby in use (via RVM): [ruby-1.8.7]
-if [ -e ~/.rvm/bin/rvm-prompt ]; then
-  JARIN_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt i v)%{$fg[white]%}]%{$reset_color%}"
-else
-  if which rbenv &> /dev/null; then
-    JARIN_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[red]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$fg[white]%}]%{$reset_color%}"
-  fi
-fi
-
-# Grab the current filepath, use shortcuts: ~/Desktop
-# Append the current git branch, if in a git repository
-JARIN_CURRENT_LOCA_="%{$fg_bold[cyan]%}%~\$(git_prompt_info)%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%} <%{$fg[magenta]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-
-# Do nothing if the branch is clean (no changes).
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$reset_color%}>"
-
-# Add a yellow ✗ if the branch is dirty
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$reset_color%}> %{$fg[yellow]%}✗"
-
-# Put it all together!
-PROMPT="$JARIN_CURRENT_RUBY_ $JARIN_CURRENT_LOCA_ "
-
diff --git a/common/.oh-my-zsh/themes/suvash.zsh-theme b/common/.oh-my-zsh/themes/suvash.zsh-theme
deleted file mode 100644
index c87f645..0000000
--- a/common/.oh-my-zsh/themes/suvash.zsh-theme
+++ /dev/null
@@ -1,30 +0,0 @@
-function prompt_char {
-    git branch >/dev/null 2>/dev/null && echo '±' && return
-    hg root >/dev/null 2>/dev/null && echo 'Hg' && return
-    echo '○'
-}
-
-function virtualenv_info {
-    [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
-}
-
-function collapse_pwd {
-    echo $(pwd | sed -e "s,^$HOME,~,")
-}
-
-if which rvm-prompt &> /dev/null; then
-  PROMPT='%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) using %{$reset_color%}%{$fg[red]%}$(~/.rvm/bin/rvm-prompt)%{$reset_color%} 
-$(virtualenv_info)$(prompt_char) '
-else
-  if which rbenv &> /dev/null; then
-    PROMPT='%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) using %{$reset_color%}%{$fg[red]%}$(rbenv version | sed -e "s/ (set.*$//")%{$reset_color%} 
-$(virtualenv_info)$(prompt_char) '
-  fi
-fi
-
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
diff --git a/common/.oh-my-zsh/themes/takashiyoshida.zsh-theme b/common/.oh-my-zsh/themes/takashiyoshida.zsh-theme
deleted file mode 100644
index 419a8cf..0000000
--- a/common/.oh-my-zsh/themes/takashiyoshida.zsh-theme
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# PROMPT
-#
-PROMPT_BRACKET_BEGIN='%{$fg_bold[white]%}['
-PROMPT_HOST='%{$fg_bold[cyan]%}%m'
-PROMPT_SEPARATOR='%{$reset_color%}:'
-PROMPT_DIR='%{$fg_bold[yellow]%}%c'
-PROMPT_BRACKET_END='%{$fg_bold[white]%}]'
-
-PROMPT_USER='%{$fg_bold[white]%}%n'
-PROMPT_SIGN='%{$reset_color%}%#'
-
-GIT_PROMPT_INFO='$(git_prompt_info)'
-
-# My current prompt looks like:
-# [host:current_dir] (git_prompt_info)
-# [username]%
-PROMPT="${PROMPT_BRACKET_BEGIN}${PROMPT_HOST}${PROMPT_SEPARATOR}${PROMPT_DIR}${PROMPT_BRACKET_END}${GIT_PROMPT_INFO}
-${PROMPT_BRACKET_BEGIN}${PROMPT_USER}${PROMPT_BRACKET_END}${PROMPT_SIGN} "
-
-#
-# Git repository
-#
-ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
-ZSH_THEME_GIT_PROMPT_CLEAN=''
diff --git a/common/.oh-my-zsh/themes/terminalparty.zsh-theme b/common/.oh-my-zsh/themes/terminalparty.zsh-theme
deleted file mode 100644
index 216ce37..0000000
--- a/common/.oh-my-zsh/themes/terminalparty.zsh-theme
+++ /dev/null
@@ -1,9 +0,0 @@
-PROMPT='%{$fg[green]%} %% '
-# RPS1='%{$fg[blue]%}%~%{$reset_color%} '
-RPS1='%{$fg[white]%}%2~$(git_prompt_info) %{$fg_bold[blue]%}%m%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[yellow]%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%} ⚡%{$fg[yellow]%}"
-
diff --git a/common/.oh-my-zsh/themes/theunraveler.zsh-theme b/common/.oh-my-zsh/themes/theunraveler.zsh-theme
deleted file mode 100644
index e4bfb79..0000000
--- a/common/.oh-my-zsh/themes/theunraveler.zsh-theme
+++ /dev/null
@@ -1,16 +0,0 @@
-# Comment
-
-PROMPT='%{$fg[magenta]%}[%c] %{$reset_color%}'
-
-RPROMPT='%{$fg[magenta]%}$(git_prompt_info)%{$reset_color%} $(git_prompt_status)%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX=""
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_DIRTY=""
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✈"
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ✭"
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✗"
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➦"
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%} ✂"
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[grey]%} ✱"
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/tjkirch.zsh-theme b/common/.oh-my-zsh/themes/tjkirch.zsh-theme
deleted file mode 100644
index 446cde7..0000000
--- a/common/.oh-my-zsh/themes/tjkirch.zsh-theme
+++ /dev/null
@@ -1,15 +0,0 @@
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}⚡"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-function prompt_char {
-	if [ $UID -eq 0 ]; then echo "%{$fg[red]%}#%{$reset_color%}"; else echo $; fi
-}
-
-PROMPT='%(?, ,%{$fg[red]%}FAIL: $?%{$reset_color%}
-)
-%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}%m%{$reset_color%}: %{$fg_bold[blue]%}%~%{$reset_color%}$(git_prompt_info)
-%_$(prompt_char) '
-
-RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}'
diff --git a/common/.oh-my-zsh/themes/tjkirch_mod.zsh-theme b/common/.oh-my-zsh/themes/tjkirch_mod.zsh-theme
deleted file mode 100644
index 1b206a7..0000000
--- a/common/.oh-my-zsh/themes/tjkirch_mod.zsh-theme
+++ /dev/null
@@ -1,13 +0,0 @@
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[green]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}⚡"
-ZSH_THEME_GIT_PROMPT_CLEAN=""
-
-function prompt_char {
-	if [ $UID -eq 0 ]; then echo "%{$fg[red]%}#%{$reset_color%}"; else echo $; fi
-}
-
-PROMPT='%(?,,%{$fg[red]%}FAIL: $?%{$reset_color%}
-)%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}%m%{$reset_color%}: %{$fg_bold[blue]%}%~%{$reset_color%}$(git_prompt_info) %_$(prompt_char) '
-
-RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}'
diff --git a/common/.oh-my-zsh/themes/tonotdo.zsh-theme b/common/.oh-my-zsh/themes/tonotdo.zsh-theme
deleted file mode 100644
index a640703..0000000
--- a/common/.oh-my-zsh/themes/tonotdo.zsh-theme
+++ /dev/null
@@ -1,12 +0,0 @@
-PROMPT='%{$fg_no_bold[cyan]%}%n%{$fg_no_bold[magenta]%}➜%{$fg_no_bold[green]%}%3~$(git_prompt_info)%{$reset_color%}» '
-RPROMPT='[%*]'
-
-# git theming
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX=""
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[blue]%})"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[yellow]%}✗%{$fg_bold[blue]%})"
-
-# LS colors, made with http://geoff.greer.fm/lscolors/
-export LSCOLORS="Gxfxcxdxbxegedabagacad"
-export LS_COLORS='no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32:'
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/trapd00r.zsh-theme b/common/.oh-my-zsh/themes/trapd00r.zsh-theme
deleted file mode 100644
index cba14c4..0000000
--- a/common/.oh-my-zsh/themes/trapd00r.zsh-theme
+++ /dev/null
@@ -1,95 +0,0 @@
-# Name:   trapd00r zsh theme
-# Author: Magnus Woldrich 
-#
-# This theme needs a terminal supporting 256 colors as well as unicode. It also
-# needs the script that splits up the current path and makes it fancy as located
-# here: https://github.com/trapd00r/utils/blob/master/zsh_path
-#
-# By default it spans over two lines like so:
-#
-# scp1@shiva:pts/9-> /home » scp1 (0)
-# >
-#
-# that's  user@host:pts/-> splitted path (return status)
-#
-# If the current directory is a git repository, we span 3 lines;
-#
-# git❨ master ❩ DIRTY
-# scp1@shiva:pts/4-> /home » scp1 » dev » utils (0)
-# >
-
-autoload -U add-zsh-hook
-autoload -Uz vcs_info
-
-local c0=$( printf "\e[m")
-local c1=$( printf "\e[38;5;245m")
-local c2=$( printf "\e[38;5;250m")
-local c3=$( printf "\e[38;5;242m")
-local c4=$( printf "\e[38;5;197m")
-local c5=$( printf "\e[38;5;225m")
-local c6=$( printf "\e[38;5;240m")
-local c7=$( printf "\e[38;5;242m")
-local c8=$( printf "\e[38;5;244m")
-local c9=$( printf "\e[38;5;162m")
-local c10=$(printf "\e[1m")
-local c11=$(printf "\e[38;5;208m\e[1m")
-local c12=$(printf "\e[38;5;142m\e[1m")
-local c13=$(printf "\e[38;5;196m\e[1m")
-
-
-# We dont want to use the extended colorset in the TTY / VC.
-if [ "$TERM" = "linux" ]; then
-    c1=$( printf "\e[34;1m")
-    c2=$( printf "\e[35m")
-    c3=$( printf "\e[31m")
-    c4=$( printf "\e[31;1m")
-    c5=$( printf "\e[32m")
-    c6=$( printf "\e[32;1m")
-    c7=$( printf "\e[33m")
-    c8=$( printf "\e[33;1m")
-    c9=$( printf "\e[34m")
-
-    c11=$(printf "\e[35;1m")
-    c12=$(printf "\e[36m")
-    c13=$(printf "\e[31;1m")
-fi
-
-zstyle ':vcs_info:*' actionformats \
-    '%{$c8%}(%f%s)%{$c7%}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
-
-zstyle ':vcs_info:*' formats \
-    "%{$c8%}%s%%{$c7%}❨ %{$c9%}%{$c11%}%b%{$c7%} ❩%{$reset_color%}%f "
-
-zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'
-zstyle ':vcs_info:*' enable git
-
-add-zsh-hook precmd prompt_jnrowe_precmd
-
-prompt_jnrowe_precmd () {
-  vcs_info
-  if [ "${vcs_info_msg_0_}" = "" ]; then
-    dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$(zsh_path)%} %{$c0%}(%{$c5%}%?%{$c0%})"
-    PROMPT='%{$fg_bold[green]%}%p%{$reset_color%}${vcs_info_msg_0_}${dir_status} ${ret_status}%{$reset_color%}
-> '
-
-# modified, to be commited
-  elif [[ $(git diff --cached --name-status 2>/dev/null ) != "" ]]; then
-    dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$(zsh_path)%} %{$c0%}(%{$c5%}%?%{$c0%})"
-    PROMPT='${vcs_info_msg_0_}%{$30%} %{$bg_bold[red]%}%{$fg_bold[cyan]%}C%{$fg_bold[black]%}OMMIT%{$reset_color%}
-%{$fg_bold[green]%}%p%{$reset_color%}${dir_status}%{$reset_color%}
-> '
-
-  elif [[ $(git diff --name-status 2>/dev/null ) != "" ]]; then
-    dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$(zsh_path)%} %{$c0%}(%{$c5%}%?%{$c0%})"
-    PROMPT='${vcs_info_msg_0_}%{$bg_bold[red]%}%{$fg_bold[blue]%}D%{$fg_bold[black]%}IRTY%{$reset_color%}
-%{$fg_bold[green]%}%p%{$reset_color%}${dir_status}%{$reset_color%}
-%{$c13%}>%{$c0%} '
-  else
-    dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$(zsh_path)%} %{$c0%}(%{$c5%}%?%{$c0%})"
-    PROMPT='${vcs_info_msg_0_}
-%{$fg_bold[green]%}%p%{$reset_color%}${dir_status} ${vcs_info_msg_0_}%{$reset_color%}
-> '
-fi
-}
-
-#  vim: set ft=zsh sw=2 et tw=0:
diff --git a/common/.oh-my-zsh/themes/wedisagree.zsh-theme b/common/.oh-my-zsh/themes/wedisagree.zsh-theme
deleted file mode 100644
index 7cb2793..0000000
--- a/common/.oh-my-zsh/themes/wedisagree.zsh-theme
+++ /dev/null
@@ -1,107 +0,0 @@
-# On a mac with snow leopard, for nicer terminal colours:
-
-# - Install SIMBL: http://www.culater.net/software/SIMBL/SIMBL.php
-# - Download'Terminal-Colours': http://bwaht.net/code/TerminalColours.bundle.zip
-# - Place that bundle in ~/Library/Application\ Support/SIMBL/Plugins (create that folder if it doesn't exist)
-# - Open Terminal preferences. Go to Settings -> Text -> More
-# - Change default colours to your liking.
-# 
-# Here are the colours from Textmate's Monokai theme:
-# 
-# Black: 0, 0, 0
-# Red: 229, 34, 34
-# Green: 166, 227, 45
-# Yellow: 252, 149, 30
-# Blue: 196, 141, 255
-# Magenta: 250, 37, 115
-# Cyan: 103, 217, 240
-# White: 242, 242, 242
-
-# Thanks to Steve Losh: http://stevelosh.com/blog/2009/03/candy-colored-terminal/
-
-# The prompt
-
-PROMPT='%{$fg[magenta]%}[%c] %{$reset_color%}'
-
-# The right-hand prompt
-
-RPROMPT='${time} %{$fg[magenta]%}$(git_prompt_info)%{$reset_color%}$(git_prompt_status)%{$reset_color%}'
-
-# Add this at the start of RPROMPT to include rvm info showing ruby-version@gemset-name
-# %{$fg[yellow]%}$(~/.rvm/bin/rvm-prompt)%{$reset_color%} 
-
-# local time, color coded by last return code
-time_enabled="%(?.%{$fg[green]%}.%{$fg[red]%})%*%{$reset_color%}"
-time_disabled="%{$fg[green]%}%*%{$reset_color%}"
-time=$time_enabled
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" ☁  %{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%} ☂" # Ⓓ
-ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" # ⓣ
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%} ☀" # Ⓞ
-
-ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✚" # ⓐ ⑃
-ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ⚡"  # ⓜ ⑁
-ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" # ⓧ ⑂
-ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➜" # ⓡ ⑄
-ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[magenta]%} ♒" # ⓤ ⑊
-
-# More symbols to choose from:
-# ☀ ✹ ☄ ♆ ♀ ♁ ♐ ♇ ♈ ♉ ♚ ♛ ♜ ♝ ♞ ♟ ♠ ♣ ⚢ ⚲ ⚳ ⚴ ⚥ ⚤ ⚦ ⚒ ⚑ ⚐ ♺ ♻ ♼ ☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷
-# ✡ ✔ ✖ ✚ ✱ ✤ ✦ ❤ ➜ ➟ ➼ ✂ ✎ ✐ ⨀ ⨁ ⨂ ⨍ ⨎ ⨏ ⨷ ⩚ ⩛ ⩡ ⩱ ⩲ ⩵  ⩶ ⨠ 
-# ⬅ ⬆ ⬇ ⬈ ⬉ ⬊ ⬋ ⬒ ⬓ ⬔ ⬕ ⬖ ⬗ ⬘ ⬙ ⬟  ⬤ 〒 ǀ ǁ ǂ ĭ Ť Ŧ
-
-# Determine if we are using a gemset.
-function rvm_gemset() {
-    GEMSET=`rvm gemset list | grep '=>' | cut -b4-`
-    if [[ -n $GEMSET ]]; then
-        echo "%{$fg[yellow]%}$GEMSET%{$reset_color%}|"
-    fi 
-}
-
-# Determine the time since last commit. If branch is clean,
-# use a neutral color, otherwise colors will vary according to time.
-function git_time_since_commit() {
-    if git rev-parse --git-dir > /dev/null 2>&1; then
-        # Only proceed if there is actually a commit.
-        if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then
-            # Get the last commit.
-            last_commit=`git log --pretty=format:'%at' -1 2> /dev/null`
-            now=`date +%s`
-            seconds_since_last_commit=$((now-last_commit))
-
-            # Totals
-            MINUTES=$((seconds_since_last_commit / 60))
-            HOURS=$((seconds_since_last_commit/3600))
-           
-            # Sub-hours and sub-minutes
-            DAYS=$((seconds_since_last_commit / 86400))
-            SUB_HOURS=$((HOURS % 24))
-            SUB_MINUTES=$((MINUTES % 60))
-            
-            if [[ -n $(git status -s 2> /dev/null) ]]; then
-                if [ "$MINUTES" -gt 30 ]; then
-                    COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG"
-                elif [ "$MINUTES" -gt 10 ]; then
-                    COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM"
-                else
-                    COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT"
-                fi
-            else
-                COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
-            fi
-
-            if [ "$HOURS" -gt 24 ]; then
-                echo "($(rvm_gemset)$COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}|"
-            elif [ "$MINUTES" -gt 60 ]; then
-                echo "($(rvm_gemset)$COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}|"
-            else
-                echo "($(rvm_gemset)$COLOR${MINUTES}m%{$reset_color%}|"
-            fi
-        else
-            COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL"
-            echo "($(rvm_gemset)$COLOR~|"
-        fi
-    fi
-}
\ No newline at end of file
diff --git a/common/.oh-my-zsh/themes/wezm+.zsh-theme b/common/.oh-my-zsh/themes/wezm+.zsh-theme
deleted file mode 100644
index fee3eb0..0000000
--- a/common/.oh-my-zsh/themes/wezm+.zsh-theme
+++ /dev/null
@@ -1,7 +0,0 @@
-PROMPT='%{${fg_bold[yellow]}%}%n%{$reset_color%}%{${fg[yellow]}%}@%m%{$reset_color%} $(git_prompt_info)%(?,,%{${fg_bold[white]}%}[%?]%{$reset_color%} )%{$fg[yellow]%}%#%{$reset_color%} '
-RPROMPT='%{$fg[green]%}%~%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[blue]%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%})%{$fg[red]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/wezm.zsh-theme b/common/.oh-my-zsh/themes/wezm.zsh-theme
deleted file mode 100644
index 1881343..0000000
--- a/common/.oh-my-zsh/themes/wezm.zsh-theme
+++ /dev/null
@@ -1,7 +0,0 @@
-PROMPT='$(git_prompt_info)%(?,,%{${fg_bold[white]}%}[%?]%{$reset_color%} )%{$fg[yellow]%}%#%{$reset_color%} '
-RPROMPT='%{$fg[green]%}%~%{$reset_color%}'
-
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[blue]%}("
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%})%{$fg[red]%}⚡%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/themes/wuffers.zsh-theme b/common/.oh-my-zsh/themes/wuffers.zsh-theme
deleted file mode 100644
index 4019d0a..0000000
--- a/common/.oh-my-zsh/themes/wuffers.zsh-theme
+++ /dev/null
@@ -1,5 +0,0 @@
-ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}["
-ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%} "
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%} x%{$fg_bold[blue]%}"
-
-PROMPT='%{$(git_prompt_info)%}%{$fg_bold[green]%}{%{$(rvm current 2>/dev/null || rbenv version-name 2>/dev/null)%}}%{$reset_color%} %{$fg[cyan]%}%c%{$reset_color%} '
diff --git a/common/.oh-my-zsh/themes/xiong-chiamiov-plus.zsh-theme b/common/.oh-my-zsh/themes/xiong-chiamiov-plus.zsh-theme
deleted file mode 100644
index 095dae2..0000000
--- a/common/.oh-my-zsh/themes/xiong-chiamiov-plus.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-# user, host, full path, and time/date
-# on two lines for easier vgrepping
-# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
-PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%a %b %d, %I:%M"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
-%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B] <$(git_prompt_info)>%{\e[0m%}%b '
-PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
diff --git a/common/.oh-my-zsh/themes/xiong-chiamiov.zsh-theme b/common/.oh-my-zsh/themes/xiong-chiamiov.zsh-theme
deleted file mode 100644
index 7c4c2e4..0000000
--- a/common/.oh-my-zsh/themes/xiong-chiamiov.zsh-theme
+++ /dev/null
@@ -1,6 +0,0 @@
-# user, host, full path, and time/date
-# on two lines for easier vgrepping
-# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
-PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%a %b %d, %I:%M"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
-%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B]>%{\e[0m%}%b '
-PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
diff --git a/common/.oh-my-zsh/themes/ys.zsh-theme b/common/.oh-my-zsh/themes/ys.zsh-theme
deleted file mode 100644
index 3d31639..0000000
--- a/common/.oh-my-zsh/themes/ys.zsh-theme
+++ /dev/null
@@ -1,34 +0,0 @@
-# Clean, simple, compatible and meaningful.
-# Tested on Linux, Unix and Windows under ANSI colors.
-# It is recommended to use with a dark background and the font Inconsolata.
-# Colors: black, red, green, yellow, *blue, magenta, cyan, and white.
-# 
-# http://ysmood.org/wp/2013/03/my-ys-terminal-theme/
-# Mar 2013 ys
-
-# Machine name.
-function box_name {
-    [ -f ~/.box-name ] && cat ~/.box-name || hostname -s
-}
-
-# Directory info.
-local current_dir='${PWD/#$HOME/~}'
-
-# Git info.
-local git_info='$(git_prompt_info)'
-ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[white]%}on%{$reset_color%} git:%{$fg[cyan]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}x"
-ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}o"
-
-# Prompt format: \n # USER at MACHINE in DIRECTORY on git:BRANCH STATE [TIME] \n $ 
-PROMPT="
-%{$terminfo[bold]$fg[blue]%}#%{$reset_color%} \
-%{$fg[cyan]%}%n \
-%{$fg[white]%}at \
-%{$fg[green]%}$(box_name) \
-%{$fg[white]%}in \
-%{$terminfo[bold]$fg[yellow]%}${current_dir}%{$reset_color%}\
-${git_info} \
-%{$fg[white]%}[%*]
-%{$terminfo[bold]$fg[red]%}$ %{$reset_color%}"
diff --git a/common/.oh-my-zsh/themes/zhann.zsh-theme b/common/.oh-my-zsh/themes/zhann.zsh-theme
deleted file mode 100644
index 5c49fe7..0000000
--- a/common/.oh-my-zsh/themes/zhann.zsh-theme
+++ /dev/null
@@ -1,15 +0,0 @@
-PROMPT='%{$fg_bold[green]%}%p %{$fg[cyan]%}%c%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
-
-if [ -e ~/.rvm/bin/rvm-prompt ]; then
-  RPROMPT='%{$reset_color%} %{$fg[red]%}$(~/.rvm/bin/rvm-prompt i v g) %{$reset_color%}'
-else
-  if which rbenv &> /dev/null; then
-    RPROMPT='%{$reset_color%} %{$fg[red]%}$(rbenv version | sed -e "s/ (set.*$//") %{$reset_color%}'
-  fi
-fi
-
-
-ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[red]%}"
-ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
-ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
diff --git a/common/.oh-my-zsh/tools/check_for_upgrade.sh b/common/.oh-my-zsh/tools/check_for_upgrade.sh
deleted file mode 100644
index 581f03a..0000000
--- a/common/.oh-my-zsh/tools/check_for_upgrade.sh
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-
-function _current_epoch() {
-  echo $(($(date +%s) / 60 / 60 / 24))
-}
-
-function _update_zsh_update() {
-  echo "LAST_EPOCH=$(_current_epoch)" > ~/.zsh-update
-}
-
-function _upgrade_zsh() {
-  /usr/bin/env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh
-  # update the zsh file
-  _update_zsh_update
-}
-
-epoch_target=$UPDATE_ZSH_DAYS
-if [[ -z "$epoch_target" ]]; then
-  # Default to old behavior
-  epoch_target=13
-fi
-
-if [ -f ~/.zsh-update ]
-then
-  . ~/.zsh-update
-
-  if [[ -z "$LAST_EPOCH" ]]; then
-    _update_zsh_update && return 0;
-  fi
-
-  epoch_diff=$(($(_current_epoch) - $LAST_EPOCH))
-  if [ $epoch_diff -gt $epoch_target ]
-  then
-    if [ "$DISABLE_UPDATE_PROMPT" = "true" ]
-    then
-      _upgrade_zsh
-    else
-      echo "[Oh My Zsh] Would you like to check for updates?"
-      echo "Type Y to update oh-my-zsh: \c"
-      read line
-      if [ "$line" = Y ] || [ "$line" = y ]; then
-        _upgrade_zsh
-      else
-        _update_zsh_update
-      fi
-    fi
-  fi
-else
-  # create the zsh file
-  _update_zsh_update
-fi
-
diff --git a/common/.oh-my-zsh/tools/install.sh b/common/.oh-my-zsh/tools/install.sh
deleted file mode 100755
index a2bd566..0000000
--- a/common/.oh-my-zsh/tools/install.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-if [ -d ~/.oh-my-zsh ]
-then
-  echo "\033[0;33mYou already have Oh My Zsh installed.\033[0m You'll need to remove ~/.oh-my-zsh if you want to install"
-  exit
-fi
-
-echo "\033[0;34mCloning Oh My Zsh...\033[0m"
-hash git >/dev/null && /usr/bin/env git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh || {
-  echo "git not installed"
-  exit
-}
-
-echo "\033[0;34mLooking for an existing zsh config...\033[0m"
-if [ -f ~/.zshrc ] || [ -h ~/.zshrc ]
-then
-  echo "\033[0;33mFound ~/.zshrc.\033[0m \033[0;32mBacking up to ~/.zshrc.pre-oh-my-zsh\033[0m";
-  mv ~/.zshrc ~/.zshrc.pre-oh-my-zsh;
-fi
-
-echo "\033[0;34mUsing the Oh My Zsh template file and adding it to ~/.zshrc\033[0m"
-cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
-
-echo "\033[0;34mCopying your current PATH and adding it to the end of ~/.zshrc for you.\033[0m"
-echo "export PATH=\$PATH:$PATH" >> ~/.zshrc
-
-echo "\033[0;34mTime to change your default shell to zsh!\033[0m"
-chsh -s `which zsh`
-
-echo "\033[0;32m"'         __                                     __   '"\033[0m"
-echo "\033[0;32m"'  ____  / /_     ____ ___  __  __   ____  _____/ /_  '"\033[0m"
-echo "\033[0;32m"' / __ \/ __ \   / __ `__ \/ / / /  /_  / / ___/ __ \ '"\033[0m"
-echo "\033[0;32m"'/ /_/ / / / /  / / / / / / /_/ /    / /_(__  ) / / / '"\033[0m"
-echo "\033[0;32m"'\____/_/ /_/  /_/ /_/ /_/\__, /    /___/____/_/ /_/  '"\033[0m"
-echo "\033[0;32m"'                        /____/                       '"\033[0m"
-
-echo "\n\n \033[0;32m....is now installed.\033[0m"
-/usr/bin/env zsh
-source ~/.zshrc
diff --git a/common/.oh-my-zsh/tools/require_tool.sh b/common/.oh-my-zsh/tools/require_tool.sh
deleted file mode 100755
index 1fa77f7..0000000
--- a/common/.oh-my-zsh/tools/require_tool.sh
+++ /dev/null
@@ -1,161 +0,0 @@
-__require_tool_version_compare ()
-{
-  (
-    # Locally ignore failures, otherwise we'll exit whenever $1 and $2
-    # are not equal!
-    set +e
-
-awk_strverscmp='
-  # Use only awk features that work with 7th edition Unix awk (1978).
-  # My, what an old awk you have, Mr. Solaris!
-  END {
-    while (length(v1) || length(v2)) {
-      # Set d1 to be the next thing to compare from v1, and likewise for d2.
-      # Normally this is a single character, but if v1 and v2 contain digits,
-      # compare them as integers and fractions as strverscmp does.
-      if (v1 ~ /^[0-9]/ && v2 ~ /^[0-9]/) {
-	# Split v1 and v2 into their leading digit string components d1 and d2,
-	# and advance v1 and v2 past the leading digit strings.
-	for (len1 = 1; substr(v1, len1 + 1) ~ /^[0-9]/; len1++) continue
-	for (len2 = 1; substr(v2, len2 + 1) ~ /^[0-9]/; len2++) continue
-	d1 = substr(v1, 1, len1); v1 = substr(v1, len1 + 1)
-	d2 = substr(v2, 1, len2); v2 = substr(v2, len2 + 1)
-	if (d1 ~ /^0/) {
-	  if (d2 ~ /^0/) {
-	    # Compare two fractions.
-	    while (d1 ~ /^0/ && d2 ~ /^0/) {
-	      d1 = substr(d1, 2); len1--
-	      d2 = substr(d2, 2); len2--
-	    }
-	    if (len1 != len2 && ! (len1 && len2 && substr(d1, 1, 1) == substr(d2, 1, 1))) {
-	      # The two components differ in length, and the common prefix
-	      # contains only leading zeros.  Consider the longer to be less.
-	      d1 = -len1
-	      d2 = -len2
-	    } else {
-	      # Otherwise, compare as strings.
-	      d1 = "x" d1
-	      d2 = "x" d2
-	    }
-	  } else {
-	    # A fraction is less than an integer.
-	    exit 1
-	  }
-	} else {
-	  if (d2 ~ /^0/) {
-	    # An integer is greater than a fraction.
-	    exit 2
-	  } else {
-	    # Compare two integers.
-	    d1 += 0
-	    d2 += 0
-	  }
-	}
-      } else {
-	# The normal case, without worrying about digits.
-	if (v1 == "") d1 = v1; else { d1 = substr(v1, 1, 1); v1 = substr(v1,2) }
-	if (v2 == "") d2 = v2; else { d2 = substr(v2, 1, 1); v2 = substr(v2,2) }
-      }
-      if (d1 < d2) exit 1
-      if (d1 > d2) exit 2
-    }
-  }
-'
-    awk "$awk_strverscmp" v1="$1" v2="$2" /dev/null
-    case $? in
-      1)  echo '<';;
-      0)  echo '=';;
-      2)  echo '>';;
-    esac
-  )
-}
-
-
-__require_tool_fatal ()
-{
-    echo $@ >/dev/stderr
-    return 1
-}
-
-# Usage: require_tool program version
-# Returns: 0 if $1 version if greater equals than $2, 1 otherwise.
-# In case of error, message is written on error output.
-#
-# Example: require_tool gcc 4.6
-# Use GCC environment variable if defined instead of lookup for the tool
-# in the environment.
-require_tool ()
-{
-  envvar_name=$(echo $1 | tr '[:lower:]' '[:upper:]')
-  tool=$(printenv $envvar_name || echo $1)
-  local version=$($tool --version 2>/dev/null| \
-    sed -n 's/.*[^0-9.]\([0-9]*\.[0-9.]*\).*/\1/p;q')
-  if test x"$version" = x ; then
-      echo "$tool is required" >/dev/stderr
-      return 1
-  fi
-  case $(__require_tool_version_compare "$2" "$version") in
-    '>')
-	  echo "$1 $2 or better is required: this is $tool $version" >/dev/stderr
-	  return 1
-	  ;;
-  esac
-}
-
-usage() {
-    cat < /dev/null ; then
-        echo "Already in favlist"
-    else
-        echo $THEME_NAME >> $FAVLIST
-        echo "Saved to favlist"
-    fi
-
-}
-
-function theme_chooser() {
-    for THEME in $(ls $THEMES_DIR); do
-        echo
-        theme_preview $THEME
-        echo
-        if [[ -z $1 ]]; then
-            noyes "Do you want to add it to your favourite list ($FAVLIST)?" || \
-                  insert_favlist $THEME_NAME
-            echo
-        fi
-    done
-}
-
-while getopts ":lhs" Option
-do
-  case $Option in
-    l ) list_themes ;;
-    s ) theme_chooser 0 ;;
-    h ) usage ;;
-    * ) usage ;; # Default.
-  esac
-done
-
-if [[ -z $Option ]]; then
-    if [[ -z $1 ]]; then
-        banner
-        echo
-        theme_chooser
-    else
-        theme_preview $1".zsh-theme"
-    fi
-fi
diff --git a/common/.oh-my-zsh/tools/uninstall.sh b/common/.oh-my-zsh/tools/uninstall.sh
deleted file mode 100644
index 41d6015..0000000
--- a/common/.oh-my-zsh/tools/uninstall.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-echo "Removing ~/.oh-my-zsh"
-if [[ -d ~/.oh-my-zsh ]]
-then
-  rm -rf ~/.oh-my-zsh
-fi
-
-echo "Looking for original zsh config..."
-if [ -f ~/.zshrc.pre-oh-my-zsh ] || [ -h ~/.zshrc.pre-oh-my-zsh ]
-then
-  echo "Found ~/.zshrc.pre-oh-my-zsh -- Restoring to ~/.zshrc";
-
-  if [ -f ~/.zshrc ] || [ -h ~/.zshrc ]
-  then
-    ZSHRC_SAVE=".zshrc.omz-uninstalled-`date +%Y%m%d%H%M%S`";
-    echo "Found ~/.zshrc -- Renaming to ~/${ZSHRC_SAVE}";
-    mv ~/.zshrc ~/${ZSHRC_SAVE};
-  fi
-
-  mv ~/.zshrc.pre-oh-my-zsh ~/.zshrc;
-
-  source ~/.zshrc;
-else
-  echo "Switching back to bash"
-  chsh -s /bin/bash
-  source /etc/profile
-fi
-
-echo "Thanks for trying out Oh My Zsh. It's been uninstalled."
diff --git a/common/.oh-my-zsh/tools/upgrade.sh b/common/.oh-my-zsh/tools/upgrade.sh
deleted file mode 100644
index 0aeebde..0000000
--- a/common/.oh-my-zsh/tools/upgrade.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-current_path=`pwd`
-current_path=${current_path/ /\\ }
-printf '\033[0;34m%s\033[0m\n' "Upgrading Oh My Zsh"
-cd "$ZSH"
-
-if git pull origin master
-then
-  printf '\033[0;32m%s\033[0m\n' '         __                                     __   '
-  printf '\033[0;32m%s\033[0m\n' '  ____  / /_     ____ ___  __  __   ____  _____/ /_  '
-  printf '\033[0;32m%s\033[0m\n' ' / __ \/ __ \   / __ `__ \/ / / /  /_  / / ___/ __ \ '
-  printf '\033[0;32m%s\033[0m\n' '/ /_/ / / / /  / / / / / / /_/ /    / /_(__  ) / / / '
-  printf '\033[0;32m%s\033[0m\n' '\____/_/ /_/  /_/ /_/ /_/\__, /    /___/____/_/ /_/  '
-  printf '\033[0;32m%s\033[0m\n' '                        /____/                       '
-  printf '\033[0;34m%s\033[0m\n' 'Hooray! Oh My Zsh has been updated and/or is at the current version.'
-  printf '\033[0;34m%s\033[1m%s\033[0m\n' 'To keep up on the latest, be sure to follow Oh My Zsh on twitter: ' 'http://twitter.com/ohmyzsh'
-else
-  printf '\033[0;31m%s\033[0m\n' 'There was an error updating. Try again later?'
-fi
-
-cd "$current_path"
diff --git a/update-home.sh b/update-home.sh
index 48c082e..5a788de 100755
--- a/update-home.sh
+++ b/update-home.sh
@@ -1,5 +1,8 @@
 #!/usr/bin/env bash
 
+rm -rf ~/.oh-my-zsh
+git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
+
 if [ "$1" == '--graphic' ]
 then
     rsync -av graphic/ ~/