One of the comments above has already mentioned this, but I would put this as the answer for your question.
All you need to do to install Chromium (read Chrome) in Ubuntu:
sudo apt-get install chromium-browser
(it’s in the universe repository)
Consider installing Chromium instead. This is what is maintained by the community. Among their differences is it lacks Google branding, it doesn’t have a built-in Flash Player and doesn’t have a built-in PDF viewer. You still use the same plugins (even from the same Google webpage), themes etc. Using Chromium you will be sure to receive all the security and other updates, etc. If you still want the Chrome instead, just add their PPA.
P.S. Here are some useful commands to check your packages when something like that you experienced happens:
sudo apt-get update # updates lists of packages (for example, you run this when you add new repositories or PPA's)
sudo apt-get check # verifies that there are no broken dependencies
sudo apt-get -f install # -f auto-corrects broken dependencies

Uno из наиболее распространенных проблем, которые обычно возникают в Ubuntu или любые его производные когда пользователь устанавливает пакеты deb, которые он загружает с какого-то веб-сайта, Это известная проблема с невыполненными зависимостями, она возникает из-за того, что для указанного пакета требуется определенная версия приложения, или он будет выпущен, и его нет в системе, или что менеджер пакетов не может найти правильные зависимые пакеты, необходимые для выполнения программы Ubuntu.
Хотя такого рода проблемы возникают все реже и реже, В связи с тем, что многие пользователи уже склонны предпочитать использование приложений Flatpak, AppImage или Snap, в дополнение к тому факту, что у них уже есть достойный каталог с самыми популярными приложениями, и все больше разработчиков продолжают добавлять свои приложения в этот тип формат.
Индекс
- 1 Выявление проблемы
- 1.1 Применение первого решения
- 1.2 Второе решение, установка необходимых зависимостей
- 2 Третий и последний вариант. При распаковке необходимо изменить зависимости и переупаковку.
Выявление проблемы
Первым шагом к решению этой досадной ошибки является определение проблемы, поскольку в общем, это обычно скачкообразно, когда мы пытаемся установить пакет или приложение из пакета deb или даже репозитория.
Эта ошибка сообщается нам из терминала, который сообщает нам, что определенные зависимости не могут быть выполнены. или в случае установки через программный центр Ubuntu просто не устанавливает приложение.
Здесь важно проверить, не пытаемся ли мы установить устаревший пакет. Что ж, возможно, есть более свежий пакет или проверьте репозиторий, на какую дату датируются пакеты и до какой версии доступна.
Если конфликтующий пакет уже установлен, при попытке запустить команду:
sudo apt update
o
sudo apt upgrade
Это проинформирует нас о конфликте и попросит нас выполнить команду для решения проблемы.
Применение первого решения
Самый прямой способ исправить ошибки Зависимость в Ubuntu от диспетчера пакетов по умолчанию, чтобы начать исправление, просто откройте терминал и выполните команду:
sudo apt install -f
При выполнении вышеуказанной команды Диспетчер пакетов Ubuntu попытается исправить проблемы зависимость, стоящая перед и он напечатает внесенные вами изменения.
Здесь важно учитывать изменения, которые вы печатаете поскольку, если он не разрешается в конфликте с зависимостями, он продолжит удаление конфликтующего пакета или пакетов и сообщит нам, какие зависимости конфликтуют с пакетом.
Таким же образом вы можете выбрать другое решение:

Теме статьи:
Как скачать пакеты DEB с зависимостями локально?
Второе решение, установка необходимых зависимостей
Принимая во внимание предыдущий шаг, на котором мы записываем пакеты или библиотеки, необходимые для решения ошибок зависимостей, здесь мы собираемся установить пакеты один за другим с терминала, или мы можем помочь себе с помощью Synaptic
Например, в терминале нам показывают что-то вроде этого:
"Error: Dependency is not satisfiable: libgtk-3-0 (>=3.16.2)"
Следует отметить, что Это указывает на то, что выпуск «libgtk 3.0» больше или равен версии «3.16.2». за то, что мы должныs в этом случае загрузите версию указанной библиотеки. Здесь важно учитывать, что для библиотек многие приложения зависят от одной или определенной версии, поэтому лично я не советую вам сюда прикладывать руку.
Чтобы найти конкретную версию, мы можем положиться на страница пакетов ubuntu (packages.ubuntu.com) чтобы проверить, какая это версия Ubuntu и в каком репозитории, поскольку очень часто некоторые из них не включены.
Здесь вы можете скачать и установить нужные вам пакеты.
В качестве рекомендации, если при установке определенной версии библиотеки, которая запрашивается, указывает, что от нее зависит больше пакетов, лучше отказаться, так как вы можете испортить свою графическую среду или в конечном итоге разрушить свою систему.
Третий и последний вариант. При распаковке необходимо изменить зависимости и переупаковку.
Последний вариант по идее лучший вариант, поскольку обычно разработчики обычно указывают, что приложение работает с определенной версией выпуска, но они не принимают во внимание, что указанная библиотека может быть обновлена в течение нескольких дней или в тот момент, когда они выпускают свое приложение.
Итак, если они ограничивают работу приложения под определенной версией, Это тот, который вызывает конфликт.
Итак мы собираемся распаковать пакет deb и изменить зависимости к той версии, которая у нас есть в системе (поэтому было важно отметить, какие зависимости конфликтуют с конкретной версией).
Для этого мы наберем команду:
dpkg-deb -R “ruta-de-paquete-deb” “nombre-de-carpeta-que-tendra-los -archivos”
Например:
dpkg-deb -R gimp.deb Gimp
Мы собираемся получить доступ к папке и идем по маршруту «/ ДЕБИАН»
cd Gimp/DEBIAN
И мы собираемся редактировать файл «control» с нашим любимым редактором
sudo gedit control
Здесь мы будем искать строки, указывающие на зависимости с которыми у нас есть конфликты и мы собираемся их редактировать.
Например, мы найдем что-то вроде этого:
Package: XXXX Version: XXXX Depends: libgtk3-0 (>= 3.16.xx"
Мы собираемся перейти на ту версию, которая у нас есть. Сохраняем изменения и переупаковываем для переустановки с помощью:
dpkg-deb -b Gimp Gimp-new.deb
И для установки создается новый пакет deb.
Содержание статьи соответствует нашим принципам редакционная этика. Чтобы сообщить об ошибке, нажмите здесь.
Вы можете быть заинтересованы
- Печать
Страницы: [1] Вниз
Тема: Dependency is not satisfiable со ссылкой на установленный пакет (Прочитано 13609 раз)
0 Пользователей и 1 Гость просматривают эту тему.

music
Не первый раз с таким сталкиваюсь, терпение кончилось, хочу узнать, как побороть эту проблему.
Устанавливаемая программа ссылается на невозможность удовлетворения зависимости, тогда как нужный пакет нужной версии присутствует в системе.
Отсюда вопросы:
1. Отчего такое может возникать?
2. Как правильно это лечить?
и, наконец
3. Как установить готовый deb-пакет, игнорируя зависимости? (просто из интереса).
Ubuntu 8.04 LTS

Mam(O)n
Устанавливаемая программа ссылается на невозможность удовлетворения зависимости, тогда как нужный пакет нужной версии присутствует в системе.
Неверю (с)
3. Как установить готовый deb-пакет, игнорируя зависимости? (просто из интереса).
— cut —
—force-things, —no-force-things, —refuse-thingsForce or refuse (no-force and refuse mean the same thing)
to do some things. things is a comma separated list of
things specified below. —force-help displays a message
describing them. Things marked with (*) are forced by
default.Warning: These options are mostly intended to be used by
experts only. Using them without fully understanding
their effects may break your whole system.
— cut —
depends: Turn all dependency problems into warnings.depends-version: Don’t care about versions when checking
dependencies.
— cut —
Перевод нужен?

arrecck
Не первый раз с таким сталкиваюсь, терпение кончилось, хочу узнать, как побороть эту проблему.
Устанавливаемая программа ссылается на невозможность удовлетворения зависимости, тогда как нужный пакет нужной версии присутствует в системе.
а) что apt-get -f install не помогает?
б) установить пакет для разрабов (имя_пакета-dev.deb), как то так, это если ручками собираешь
вообще apt мне понравилась, хорошо за всем следит, единственный минус тянет иногда много ненужного хлама

music
Неверю (с)
Сделать скрин одновременно открытых синаптика и установщика пакетов? 
Перевод нужен?
Перевод не нужен. Каюсь, не уточнил в вопросе главное — как установить пакет, игнорируя зависимости, с помощью GUI? Ведь если есть строчные ключи, то должны быть где-то и флажки настроек. Или нет?
Мне не лень попытаться установить пакет через консоль, просто интересуюсь в плане расширения кругозора.

Mam(O)n
Лучше копипаст консоли при установке пакетов. sudo aptitude install имя_пакета.
А synaptic это другая программа, с другими возможностями…

music
А synaptic это другая программа, с другими возможностями…
Насколько я помню, это просто графическая надстройка над apt.
Смысл я понял, попробую консоль и напишу результаты.
Получается, Gdebi нельзя заставить игнорировать неразрешимые зависимости?

j0n
Попробовал консоль? Такая же ошибка…
- Печать
Страницы: [1] Вверх

This is one of the strange problems of VirtualBox which drives me crazy until I figured out, how simple the solution was.
If you are running from the same problem, don’t worry. Just make sure you are using the right installer for your distribution/OS
By the way, Error: Dependency is not satisfiable: libc6 (>=2.28) or libc6 (>=2.29) is referred to as the same problem
OK, Let me explain a bit further, A few months ago I was wanted to install VirtualBox on my Linux Mint computer, So, I went to the VirtualBox Official website (https://www.virtualbox.org/wiki/Linux_Downloads) but I won’t found the installer for Linux Mint Version there ( It’s still not present here as you can see in the picture below)

So, I choose Ubuntu 19.10 / 20.04 / 20.10 / 21.04 from the available list because I knew Linux Mint is based on Ubuntu. so, whatever works on Ubuntu should be work on Linux Mint as well. It was not a big deal. But in the installation, it just won’t worked and threw this Dependency is not satisfiable: libc6 (>=2.28) error.

At that moment I reconsider my OS. I was using Linux Mint 19.3 Cinnamon. OS version placed a critical role here. I simply Googled «Linux Mint 19.3 Ubuntu Version» and found Mint 19.3 is based on Ubuntu 18.04 .
I revisit the download page and download it again but now from the Ubuntu 18.04 / 18.10 / 19.04 option and run the installer and Guess what, It was running absolutely fine without any issue. Through the installer required some extra dependency, not an issue, just allowed it
](https://res.cloudinary.com/practicaldev/image/fetch/s--qsnDS5k3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yd64o9ba1ocih6e23zrj.png)
Maybe you downloaded the Debian 10 version installer, not working.. then download it for Debian 9. Fedora 33/34 not working… download it for Fedora 32. Just make sure that the VirtualBox installer is compatible with your OS version 🙂
OR,
just download the VirtualBox from the Software Center. that will work fine too
Share your thoughts if you find something more interesting…
Watch on YouTube
Thanks for reading. Have a great day 🙂
Coffee https://www.buymeacoffee.com/rahedmir
Stop sifting through your feed.
Find the content you want to see.
Change your feed algorithm by adjusting your experience level and give weights to the tags you follow.
Since you are trying to install Virtual Box try either of the following methods.
Method 1: Command line
The installation guide has documented detailed instructions which might help you. First try to follow these steps and if you have any question at any of the following steps the general guide might come handy, just scroll down and you would see more details for Linux.
Alternatively, you can also refer to this: How to install Virtual Box on Linux Mint 18.
Steps:
- Open
/etc/apt/sources.listin your favorite text editor as root (gedit, Emacs, vim, nano, Visual Studio Code, etc.)
e.g.
$ sudo atom /etc/apt/sources.list
enter root password if prompted
- add the following line to your /etc/apt/sources.list file:
(For Linux mint, according to your version, replace ‘xenial’ by ‘yakkety’, ‘vivid’, ‘utopic’, ‘trusty’, ‘raring’, ‘quantal’, ‘precise’, ‘lucid’, ‘jessie’, ‘wheezy’, or ‘squeeze’, if needed.)
deb http://download.virtualbox.org/virtualbox/debian xenial contrib
- Download and register public keys
execute:
$ wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
$ wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
- To install Virtual Box,
execute:
$ sudo apt-get update
$ sudo apt-get install virtualbox-5.2
- Finally, install dkms
execute:
$ sudo apt-get install dkms
Method 2: Via User Interface
Try to see if you can get around it using either of the package manager UIs. I’d include all steps below, just in case if you run into any other issues
- Launch «Ubuntu Software Center» (alternatively
$ software-center) - Launch Synaptic Package manager (if not present, I can be installed by running
$ sudo apt-get install synaptic) (FAQs) - Once either software center or synaptic is launched, you can search for Virtual Box as shown below:

Now search for VirtualBox and then try to install it:

If you are in the synaptic package manager interface just search for «virtualbox» as shown below and select the entry that says just «virtualbox» (right click —> mark for installation) doing so, the program might and should ask you to install dependencies, you should accept the changes and click the apply button in the menu strip on top, a window would open for confirming changes. Verify your changes and click apply again, without changing any settings.

References:
- Synaptic «How To…» — Ubuntu documentation
I am trying to install the package skype-ubuntu-intrepid_2.1.0.91-1.i386.deb on Ubuntu 8.04. But in the Package installer, I get:
Error Dependency is not satisfiable: libascound2
And I have tried:
$ sudo apt-get install libasound2
Reading package lists... Done
Building dependency tree
Reading state information... Done
libasound2 is already the newest version.
The following packages were automatically installed and are no longer required:
linux-headers-2.6.24-24-generic libdns35 linux-headers-2.6.24-24
Use 'apt-get autoremove' to remove them.
I appreciate if anyone can help me with it.
quack quixote
41.7k14 gold badges104 silver badges130 bronze badges
asked Mar 23, 2010 at 2:57
Are you sure you have the right package to install? Intrepid is Ubuntu 8.10; Ubuntu 8.04 is Hardy. The package may not install properly on your system.
-
The Skype Linux Download page also offers a version for Debian Lenny and a static binary; one of these might install cleanly on your system. I wouldn’t bother trying the Fedora or OpenSUSE versions. This post gives instructions for installing the static binary on Ubuntu 8.04.
-
If your post is accurately recording the error, the package appears to have a broken dependency (libascound2 should probably be libasound2). You might be able to fix the package manually with this procedure — it involves extracting the .deb package contents, correcting the broken dependency, and rebuilding a corrected package.
-
A final option would be to try forcing the installation anyways. Make sure you have the required libraries installed, and use one of these to force the installation:
dpkg --ignore-depends=libascound2 -i package.debdpkg --force-depends -i package.deb
The current libraries required by the Skype package are:
- Qt 4.4.0
- D-Bus 1.0.0
- libasound2 1.0.18
- PulseAudio 0.9.16 (optional)
- BlueZ 4.0.0 (optional)
answered Mar 23, 2010 at 6:33
quack quixotequack quixote
41.7k14 gold badges104 silver badges130 bronze badges
I think it should be noted that it seems the required dependencies are no longer available for Hardy Heron (8.04). Rather, they exist, but the updated versions requested do not work with Hardy. I found that an older version of Skype will work just fine.
pnuts
6,0523 gold badges27 silver badges41 bronze badges
answered Sep 1, 2010 at 22:23
Indeed it is, @Nuts2U; latest version per Debian web site. Unfortunately no matter what I try to allow installation of lsb 3.2 compliant packages I can’t ditch:
Code: Select all
Error: Dependency is not satisfiable: lsb (>=3.2)
and got … skip to last line regarding «no installation candidate.»
Code: Select all
william@william-aspire-z1620:~$ sudo apt-get install lsb 3.2
[sudo] password for william:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'librust-gtk+v3-22-27-dev' for regex '3.2'
Note, selecting 'libopencv3.2-java' for regex '3.2'
Note, selecting 'libghc-zlib-bindings-prof-0.1.1.5-87312' for regex '3.2'
Note, selecting 'libsoci-sqlite3-3.2' for regex '3.2'
Note, selecting 'libghc-warp-tls-dev-3.2.4.3-8c353' for regex '3.2'
Note, selecting 'libghc-warp-tls-prof-3.2.4.3-8c353' for regex '3.2'
Note, selecting 'libopencv-photo3.2' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7.0+v3-22-26-dev' for regex '3.2'
Note, selecting 'libghc-io-storage-dev-0.3-24f73' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7+v3-22-26-dev' for regex '3.2'
Note, selecting 'libsoci-mysql3.2' for regex '3.2'
Note, selecting 'libghc-equivalence-prof-0.3.2-603ba:i386' for regex '3.2'
Note, selecting 'ruby-activesupport-3.2' for regex '3.2'
Note, selecting 'libghc-resource-pool-dev-0.2.3.2-25cef' for regex '3.2'
Note, selecting 'libnl-route-3-200' for regex '3.2'
Note, selecting 'libghc-asn1-types-dev-0.3.2-2fc86' for regex '3.2'
Note, selecting 'libghc-missingh-dev-1.4.0.1-63c22' for regex '3.2'
Note, selecting 'libghc-regex-base-prof-0.93.2-586a1:i386' for regex '3.2'
Note, selecting 'librust-crossbeam-0.3.2+default-dev' for regex '3.2'
Note, selecting 'libghc-attoparsec-prof-0.13.2.2-25c6f' for regex '3.2'
Note, selecting 'libghc-relational-query-prof-0.12.1.0-362da:i386' for regex '3.2'
Note, selecting 'librust-foreign-types-0.3.2+default-dev' for regex '3.2'
Note, selecting 'libghc-edisoncore-dev-1.3.2.1-6c774' for regex '3.2'
Note, selecting 'libghc-text-format-dev-0.3.2-33b8d' for regex '3.2'
Note, selecting 'libghc-reflection-dev-2.1.4-ba352:i386' for regex '3.2'
Note, selecting 'librust-gdk-0.9.0+v3-22-dev' for regex '3.2'
Note, selecting 'libghc-io-storage-prof-0.3-24f73' for regex '3.2'
Note, selecting 'libghc-uri-bytestring-prof-0.3.2.0-ea430:i386' for regex '3.2'
Note, selecting 'libghc-equivalence-dev-0.3.2-603ba:i386' for regex '3.2'
Note, selecting 'libghc-parallel-prof-3.2.2.0-bf6f2' for regex '3.2'
Note, selecting 'libghc-attoparsec-prof-0.13.2.2-2bcfd:i386' for regex '3.2'
Note, selecting 'libsoci-postgresql3.2' for regex '3.2'
Note, selecting 'libghc-edisonapi-prof-1.3.1-be3a2' for regex '3.2'
Note, selecting 'librust-gtk-0.5.0+v3-22-29-dev' for regex '3.2'
Note, selecting 'librust-gdk-0.9.0+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-test-framework-prof-0.8.2.0-73b25' for regex '3.2'
Note, selecting 'libownet-3.2-3' for regex '3.2'
Note, selecting 'libghc-tasty-golden-prof-2.3.2-87ffa' for regex '3.2'
Note, selecting 'libghc-edisoncore-prof-1.3.2.1-6c774' for regex '3.2'
Note, selecting 'libopencv-video3.2' for regex '3.2'
Note, selecting 'libsignal-protocol-c2.3.2' for regex '3.2'
Note, selecting 'libghc-email-validate-dev-2.3.2.7-2f2a3' for regex '3.2'
Note, selecting 'librust-gtk-0.5.0+v3-22-27-dev' for regex '3.2'
Note, selecting 'libghc-neat-interpolation-dev-0.3.2.2-46bf0:i386' for regex '3.2'
Note, selecting 'libghc-network-conduit-tls-prof-1.3.2-59ce3' for regex '3.2'
Note, selecting 'libghc-text-format-dev-0.3.2-edfc9:i386' for regex '3.2'
Note, selecting 'libopencv-imgcodecs3.2' for regex '3.2'
Note, selecting 'clang-3.2' for regex '3.2'
Note, selecting 'libnl-genl-3-200' for regex '3.2'
Note, selecting 'librust-gtk-sys+v3-22-26-dev' for regex '3.2'
Note, selecting 'libghc-test-framework-dev-0.8.2.0-73b25' for regex '3.2'
Note, selecting 'librust-opener-0.3.2-dev' for regex '3.2'
Note, selecting 'libghc-monad-control-prof-1.0.2.3-2b34d:i386' for regex '3.2'
Note, selecting 'libghc-userid-dev-0.1.3.2-ec1eb' for regex '3.2'
Note, selecting 'libghc-tree-monad-prof-0.3-211bd:i386' for regex '3.2'
Note, selecting 'libghc-debian-dev-3.93.2-995d2:i386' for regex '3.2'
Note, selecting 'libghc-relational-query-prof-0.12.1.0-3f297' for regex '3.2'
Note, selecting 'librust-gtk-sys-0+v3-22-26-dev' for regex '3.2'
Note, selecting 'librust-gtk-0.5+v3-22-29-dev' for regex '3.2'
Note, selecting 'libghc-mueval-prof-0.9.3-21214' for regex '3.2'
Note, selecting 'librust-gtk-0+v3-22-29-dev' for regex '3.2'
Note, selecting 'librust-dtoa-short-0.3.2-dev' for regex '3.2'
Note, selecting 'libghc-data-binary-ieee754-prof-0.4.4-96332:i386' for regex '3.2'
Note, selecting 'libghc-uri-bytestring-dev-0.3.2.0-ba5b3' for regex '3.2'
Note, selecting 'librust-crossbeam-0.3.2+nightly-dev' for regex '3.2'
Note, selecting 'librust-opener-0.3.2+default-dev' for regex '3.2'
Note, selecting 'librust-gtk-0.5+v3-22-27-dev' for regex '3.2'
Note, selecting 'libghc-incremental-parser-dev-0.3.1.1-473b2' for regex '3.2'
Note, selecting 'libghc-network-conduit-tls-dev-1.3.2-aae25:i386' for regex '3.2'
Note, selecting 'librust-foreign-types-0.3.2-dev' for regex '3.2'
Note, selecting 'libghc-juicypixels-prof-3.2.9.5-1ebaa' for regex '3.2'
Note, selecting 'libpfm3-3.2-dev' for regex '3.2'
Note, selecting 'librust-gtk-0+v3-22-27-dev' for regex '3.2'
Note, selecting 'libghc-wai-logger-prof-2.3.2-f9499' for regex '3.2'
Note, selecting 'libghc-equivalence-prof-0.3.2-d7e29' for regex '3.2'
Note, selecting 'libghc-userid-prof-0.1.3.2-61382:i386' for regex '3.2'
Note, selecting 'libnl-3-200-dbg' for regex '3.2'
Note, selecting 'librust-gtk-sys+v3-22-6-dev' for regex '3.2'
Note, selecting 'librust-rustc-serialize-0.3.24+default-dev' for regex '3.2'
Note, selecting 'antlr3.2' for regex '3.2'
Note, selecting 'libghc-strict-prof-0.3.2-b974d:i386' for regex '3.2'
Note, selecting 'libnl-idiag-3-200' for regex '3.2'
Note, selecting 'libghc-wai-logger-dev-2.3.2-f9499' for regex '3.2'
Note, selecting 'libdune-pdelab-2.6.20180302' for regex '3.2'
Note, selecting 'librust-hex-0.3.2+benchmarks-dev' for regex '3.2'
Note, selecting 'id3v2' for regex '3.2'
Note, selecting 'libghc-mueval-dev-0.9.3-21214' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7.0+v3-22-dev' for regex '3.2'
Note, selecting 'libghc-equivalence-dev-0.3.2-d7e29' for regex '3.2'
Note, selecting 'libghc-snap-core-prof-1.0.3.2-5363f' for regex '3.2'
Note, selecting 'libghc-fmlist-prof-0.9.2-d2392' for regex '3.2'
Note, selecting 'libopencv-highgui3.2' for regex '3.2'
Note, selecting 'libghc-juicypixels-dev-3.2.9.5-84f21:i386' for regex '3.2'
Note, selecting 'libghc-cipher-blowfish-prof-0.0.3-2d87f' for regex '3.2'
Note, selecting 'libopencv-calib3d3.2' for regex '3.2'
Note, selecting 'libsimgrid3.21' for regex '3.2'
Note, selecting 'librust-pocket-resources-0.3.2-dev' for regex '3.2'
Note, selecting 'libghc-wai-logger-prof-2.3.2-30841:i386' for regex '3.2'
Note, selecting 'libghc-missingh-prof-1.4.0.1-63c22' for regex '3.2'
Note, selecting 'liberis-1.3-21' for regex '3.2'
Note, selecting 'libghc-quickcheck-unicode-prof-1.0.1.0-3e21b:i386' for regex '3.2'
Note, selecting 'libopencv-ml3.2' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7.0+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-debian-prof-3.93.2-b2d7b' for regex '3.2'
Note, selecting 'libopencv-imgproc3.2' for regex '3.2'
Note, selecting 'libghc-snap-core-prof-1.0.3.2-9cb7e:i386' for regex '3.2'
Note, selecting 'libopencv-shape3.2' for regex '3.2'
Note, selecting 'libghc-call-stack-prof-0.1.0-63d2e' for regex '3.2'
Note, selecting 'libghc-asn1-types-prof-0.3.2-2fc86' for regex '3.2'
Note, selecting 'libghc-tasty-golden-dev-2.3.2-87ffa' for regex '3.2'
Note, selecting 'libghc-wai-logger-dev-2.3.2-30841:i386' for regex '3.2'
Note, selecting 'libopencv-objdetect3.2' for regex '3.2'
Note, selecting 'libnl-nf-3-200' for regex '3.2'
Note, selecting 'libghc-http-conduit-dev-2.3.2-9f93c' for regex '3.2'
Note, selecting 'libghc-resource-pool-prof-0.2.3.2-2fc6b:i386' for regex '3.2'
Note, selecting 'librust-gdk-sys-0+v3-22-dev' for regex '3.2'
Note, selecting 'libghc-parallel-prof-3.2.2.0-eccbc:i386' for regex '3.2'
Note, selecting 'libghc-regex-base-prof-0.93.2-f5054' for regex '3.2'
Note, selecting 'libghc-agda-dev-2.5.4.1-a3829:i386' for regex '3.2'
Note, selecting 'libghc-heredoc-prof-0.2.0.0-2a3f2' for regex '3.2'
Note, selecting 'libghc-monad-logger-dev-0.3.29-cfc16' for regex '3.2'
Note, selecting 'libghc-http-conduit-prof-2.3.2-4fb18:i386' for regex '3.2'
Note, selecting 'libghc-monad-logger-prof-0.3.29-13390:i386' for regex '3.2'
Note, selecting 'librust-hex-0.3.2+default-dev' for regex '3.2'
Note, selecting 'libghc-neat-interpolation-dev-0.3.2.2-ed01e' for regex '3.2'
Note, selecting 'libghc-strict-prof-0.3.2-e3bc9' for regex '3.2'
Note, selecting 'libghc-attoparsec-dev-0.13.2.2-25c6f' for regex '3.2'
Note, selecting 'librust-gdk-sys-0+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-tasty-golden-prof-2.3.2-14015:i386' for regex '3.2'
Note, selecting 'notion-api-3+2017050501' for regex '3.2'
Note, selecting 'antlr3.2-gunit-maven-plugin' for regex '3.2'
Note, selecting 'libghc-regex-base-dev-0.93.2-586a1:i386' for regex '3.2'
Note, selecting 'libghc-wai-dev-3.2.1.2-0f258:i386' for regex '3.2'
Note, selecting 'libghc-tasty-kat-prof-0.0.3-21a7c:i386' for regex '3.2'
Note, selecting 'librust-gtk+v3-22-dev' for regex '3.2'
Note, selecting 'librust-gtk-sys-0+v3-22-dev' for regex '3.2'
Note, selecting 'libgeronimo-ejb-3.2-spec-java' for regex '3.2'
Note, selecting 'libgeotranz3.2' for regex '3.2'
Note, selecting 'libghc-x509-dev-1.7.3-2378e:i386' for regex '3.2'
Note, selecting 'libghc-terminal-size-prof-0.3.2.1-1523f:i386' for regex '3.2'
Note, selecting 'libghc-attoparsec-dev-0.13.2.2-2bcfd:i386' for regex '3.2'
Note, selecting 'libghc-text-format-prof-0.3.2-33b8d' for regex '3.2'
Note, selecting 'libghc-wai-prof-3.2.1.2-72ff6' for regex '3.2'
Note, selecting 'libghc-email-validate-prof-2.3.2.7-ba2c2:i386' for regex '3.2'
Note, selecting 'libghc-lambdabot-haskell-plugins-dev-5.1.0.3-286bb' for regex '3.2'
Note, selecting 'libghc-parallel-dev-3.2.2.0-bf6f2' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7.0+v3-22-29-dev' for regex '3.2'
Note, selecting 'libghc-graphviz-dev-2999.20.0.2-28302' for regex '3.2'
Note, selecting 'librust-gdk-0+v3-22-30-dev' for regex '3.2'
Note, selecting 'libbamf3-2' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7+v3-22-29-dev' for regex '3.2'
Note, selecting 'libghc-userid-prof-0.1.3.2-ec1eb' for regex '3.2'
Note, selecting 'librust-gtk+v3-20-dev' for regex '3.2'
Note, selecting 'librust-gtk-sys-0+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-relational-query-dev-0.12.1.0-362da:i386' for regex '3.2'
Note, selecting 'libowcapi-3.2-3' for regex '3.2'
Note, selecting 'libghc-incremental-parser-prof-0.3.1.1-473b2' for regex '3.2'
Note, selecting 'libxerces-c3.2' for regex '3.2'
Note, selecting 'librust-gtk-sys+v3-22-dev' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7+v3-22-dev' for regex '3.2'
Note, selecting 'libghc-hsh-prof-2.1.3-83724:i386' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7.0+v3-22-27-dev' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7+v3-22-27-dev' for regex '3.2'
Note, selecting 'libtorch3c2' for regex '3.2'
Note, selecting 'libghc-call-stack-dev-0.1.0-63d2e' for regex '3.2'
Note, selecting 'libghc-x509-prof-1.7.3-2378e:i386' for regex '3.2'
Note, selecting 'libghc-tasty-prof-1.1.0.3-29854' for regex '3.2'
Note, selecting 'libgfs-1.3-2' for regex '3.2'
Note, selecting 'nvidia-352-updates' for regex '3.2'
Note, selecting 'libghc-asn1-types-dev-0.3.2-f440e:i386' for regex '3.2'
Note, selecting 'libghc-generics-sop-dev-0.3.2.0-2ef9f:i386' for regex '3.2'
Note, selecting 'libopencv-features2d3.2' for regex '3.2'
Note, selecting 'librust-gtk+v3-22-26-dev' for regex '3.2'
Note, selecting 'libghc-resource-pool-prof-0.2.3.2-25cef' for regex '3.2'
Note, selecting 'librust-gtk-sys+v3-20-dev' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7+v3-20-dev' for regex '3.2'
Note, selecting 'librust-gdk-0.9+v3-22-30-dev' for regex '3.2'
Note, selecting 'libghc-rvar-prof-0.2.0.3-2c18d:i386' for regex '3.2'
Note, selecting 'libghc-network-conduit-tls-dev-1.3.2-59ce3' for regex '3.2'
Note, selecting 'libghc-linear-prof-1.20.8-713c2:i386' for regex '3.2'
Note, selecting 'librust-gtk+v3-22-30-dev' for regex '3.2'
Note, selecting 'librust-gdk+v3-22-dev' for regex '3.2'
Note, selecting 'libghc-text-format-prof-0.3.2-edfc9:i386' for regex '3.2'
Note, selecting 'libghc-monad-par-extras-dev-0.3.3-2e85b:i386' for regex '3.2'
Note, selecting 'libghc-hdbc-postgresql-dev-2.3.2.5-3daec:i386' for regex '3.2'
Note, selecting 'librust-gdk-0.9.0+v3-22-30-dev' for regex '3.2'
Note, selecting 'libghc-debian-prof-3.93.2-995d2:i386' for regex '3.2'
Note, selecting 'libghc-url-prof-2.1.3-2505e' for regex '3.2'
Note, selecting 'libghc-url-dev-2.1.3-2505e' for regex '3.2'
Note, selecting 'libghc-warp-prof-3.2.25-6e1f2:i386' for regex '3.2'
Note, selecting 'libgfs-mpi-1.3-2' for regex '3.2'
Note, selecting 'librust-gdk+v3-20-dev' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7+v3-22-6-dev' for regex '3.2'
Note, selecting 'libopencv-stitching3.2' for regex '3.2'
Note, selecting 'libnl-3-200' for regex '3.2'
Note, selecting 'librust-gdk-sys-0.7.0+v3-22-dev' for regex '3.2'
Note, selecting 'libopencv-viz3.2' for regex '3.2'
Note, selecting 'libghc-uri-bytestring-dev-0.3.2.0-ea430:i386' for regex '3.2'
Note, selecting 'libow-3.2-3' for regex '3.2'
Note, selecting 'libghc-relational-query-dev-0.12.1.0-3f297' for regex '3.2'
Note, selecting 'librust-gtk-sys+v3-22-29-dev' for regex '3.2'
Note, selecting 'libghc-quickcheck-unicode-dev-1.0.1.0-3e21b:i386' for regex '3.2'
Note, selecting 'librust-crossbeam-0.3.2-dev' for regex '3.2'
Note, selecting 'librust-gtk-sys-0+v3-22-29-dev' for regex '3.2'
Note, selecting 'librust-gtk+v3-22-20-dev' for regex '3.2'
Note, selecting 'libghc-edisoncore-dev-1.3.2.1-fe798:i386' for regex '3.2'
Note, selecting 'librust-gdk-sys-0.7.0+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-terminal-size-prof-0.3.2.1-66c83' for regex '3.2'
Note, selecting 'libghc-tasty-golden-dev-2.3.2-14015:i386' for regex '3.2'
Note, selecting 'libghc-hdbc-postgresql-dev-2.3.2.5-c7a21' for regex '3.2'
Note, selecting 'libghc-hsx2hs-prof-0.14.1.3-09372:i386' for regex '3.2'
Note, selecting 'libghc-hsx2hs-dev-0.14.1.3-09372:i386' for regex '3.2'
Note, selecting 'libghc-tree-monad-dev-0.3-211bd:i386' for regex '3.2'
Note, selecting 'libnfft3-2' for regex '3.2'
Note, selecting 'libopencv-flann3.2' for regex '3.2'
Note, selecting 'libghc-graphviz-prof-2999.20.0.2-28302' for regex '3.2'
Note, selecting 'libghc-tldr-prof-0.4.0-a2342:i386' for regex '3.2'
Note, selecting 'librust-gtk-sys+v3-22-27-dev' for regex '3.2'
Note, selecting 'libopencv3.2-jni' for regex '3.2'
Note, selecting 'libghc-hsh-dev-2.1.3-83724:i386' for regex '3.2'
Note, selecting 'librust-gtk-sys-0+v3-22-27-dev' for regex '3.2'
Note, selecting 'librust-gtk-0.5.0+v3-22-26-dev' for regex '3.2'
Note, selecting 'libghc-edisonapi-dev-1.3.1-be3a2' for regex '3.2'
Note, selecting 'librust-rustc-serialize-0.3.24-dev' for regex '3.2'
Note, selecting 'libghc-warp-dev-3.2.25-6e1f2:i386' for regex '3.2'
Note, selecting 'librust-gtk-sys-0+v3-22-6-dev' for regex '3.2'
Note, selecting 'libghc-iconv-prof-0.4.1.3-2069f' for regex '3.2'
Note, selecting 'librust-gdk-0.9+v3-22-dev' for regex '3.2'
Note, selecting 'librust-gtk-0.5.0+v3-22-30-dev' for regex '3.2'
Note, selecting 'libghc-tasty-dev-1.1.0.3-29854' for regex '3.2'
Note, selecting 'libghc-constraints-dev-0.10.1-332c1:i386' for regex '3.2'
Note, selecting 'libghc-uri-bytestring-prof-0.3.2.0-ba5b3' for regex '3.2'
Note, selecting 'libghc-operational-prof-0.2.3.5-ef302:i386' for regex '3.2'
Note, selecting 'libghc-edisoncore-prof-1.3.2.1-fe798:i386' for regex '3.2'
Note, selecting 'libghc-generics-sop-dev-0.3.2.0-4052f' for regex '3.2'
Note, selecting 'librust-gtk-0.5.0+v3-22-dev' for regex '3.2'
Note, selecting 'librust-gdk-0.9+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-linear-dev-1.20.8-713c2:i386' for regex '3.2'
Note, selecting 'libghc-data-binary-ieee754-dev-0.4.4-96332:i386' for regex '3.2'
Note, selecting 'libghc-terminal-size-dev-0.3.2.1-1523f:i386' for regex '3.2'
Note, selecting 'ruby-actionmailer-3.2' for regex '3.2'
Note, selecting 'libghc-email-validate-dev-2.3.2.7-ba2c2:i386' for regex '3.2'
Note, selecting 'libghc-fmlist-dev-0.9.2-d2392' for regex '3.2'
Note, selecting 'libghc-neat-interpolation-prof-0.3.2.2-46bf0:i386' for regex '3.2'
Note, selecting 'librust-gdk-0+v3-22-dev' for regex '3.2'
Note, selecting 'libxqdbm3c2' for regex '3.2'
Note, selecting 'libmpeg3-2' for regex '3.2'
Note, selecting 'librust-gtk-0.5+v3-22-26-dev' for regex '3.2'
Note, selecting 'libopencv-videostab3.2' for regex '3.2'
Note, selecting 'libghc-parallel-dev-3.2.2.0-eccbc:i386' for regex '3.2'
Note, selecting 'librust-gtk-0.5.0+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-iconv-dev-0.4.1.3-2069f' for regex '3.2'
Note, selecting 'libghc-juicypixels-dev-3.2.9.5-1ebaa' for regex '3.2'
Note, selecting 'librust-gtk-sys-0.7.0+v3-22-6-dev' for regex '3.2'
Note, selecting 'librust-gtk-0+v3-22-26-dev' for regex '3.2'
Note, selecting 'libsoci-firebird3.2' for regex '3.2'
Note, selecting 'libghc-warp-prof-3.2.25-590b9' for regex '3.2'
Note, selecting 'librust-gtk-0.5+v3-22-30-dev' for regex '3.2'
Note, selecting 'libghc-strict-dev-0.3.2-b974d:i386' for regex '3.2'
Note, selecting 'librust-gtk-0.5+v3-22-dev' for regex '3.2'
Note, selecting 'libghc-generics-sop-prof-0.3.2.0-2ef9f:i386' for regex '3.2'
Note, selecting 'libghc-regex-base-dev-0.93.2-f5054' for regex '3.2'
Note, selecting 'librust-gtk-0.5.0+v3-22-20-dev' for regex '3.2'
Note, selecting 'libsoci-odbc3.2' for regex '3.2'
Note, selecting 'librust-gtk-0+v3-22-30-dev' for regex '3.2'
Note, selecting 'librust-gdk-0+v3-20-dev' for regex '3.2'
Note, selecting 'librust-dtoa-short-0.3.2+default-dev' for regex '3.2'
Note, selecting 'gnat-3.2' for regex '3.2'
Note, selecting 'libantlr3.2-gunit-java' for regex '3.2'
Note, selecting 'libslepc2.3.2-dev' for regex '3.2'
Note, selecting 'librust-gdk+v3-22-30-dev' for regex '3.2'
Note, selecting 'libghc-snap-core-dev-1.0.3.2-5363f' for regex '3.2'
Note, selecting 'libghc-juicypixels-prof-3.2.9.5-84f21:i386' for regex '3.2'
Note, selecting 'libopencv-contrib3.2' for regex '3.2'
Note, selecting 'libghc-hsx2hs-prof-0.14.1.3-253df' for regex '3.2'
Note, selecting 'libghc-hsx2hs-dev-0.14.1.3-253df' for regex '3.2'
Note, selecting 'librust-gtk-0.5+v3-20-dev' for regex '3.2'
Note, selecting 'libnl-xfrm-3-200' for regex '3.2'
Note, selecting 'libghc-snap-core-dev-1.0.3.2-9cb7e:i386' for regex '3.2'
Note, selecting 'libghc-constraints-prof-0.10.1-332c1:i386' for regex '3.2'
Note, selecting 'libghc-asn1-types-prof-0.3.2-f440e:i386' for regex '3.2'
Note, selecting 'libghc-monad-logger-prof-0.3.29-cfc16' for regex '3.2'
Note, selecting 'libopencv-superres3.2' for regex '3.2'
Note, selecting 'librust-hex-0.3.2-dev' for regex '3.2'
Note, selecting 'libcaf-core0.13.2' for regex '3.2'
Note, selecting 'libghc-hdbc-postgresql-prof-2.3.2.5-3daec:i386' for regex '3.2'
Note, selecting 'antlr3.2-maven-plugin' for regex '3.2'
Note, selecting 'librust-gtk-0+v3-22-dev' for regex '3.2'
Note, selecting 'libghc-http-conduit-dev-2.3.2-4fb18:i386' for regex '3.2'
Note, selecting 'libghc-tasty-kat-dev-0.0.3-21a7c:i386' for regex '3.2'
Note, selecting 'libghc-cipher-blowfish-dev-0.0.3-2d87f' for regex '3.2'
Note, selecting 'libghc-network-conduit-tls-prof-1.3.2-aae25:i386' for regex '3.2'
Note, selecting 'librust-gtk-0.5+v3-22-20-dev' for regex '3.2'
Note, selecting 'libcaf-io0.13.2' for regex '3.2'
Note, selecting 'libghc-warp-tls-dev-3.2.4.3-ace21:i386' for regex '3.2'
Note, selecting 'libghc-warp-dev-3.2.25-590b9' for regex '3.2'
Note, selecting 'virtualbox-3.2' for regex '3.2'
Note, selecting 'libghc-warp-tls-prof-3.2.4.3-ace21:i386' for regex '3.2'
Note, selecting 'librust-gtk-0+v3-22-20-dev' for regex '3.2'
Note, selecting 'librust-pocket-resources-0.3.2+default-dev' for regex '3.2'
Note, selecting 'libghc-resource-pool-dev-0.2.3.2-2fc6b:i386' for regex '3.2'
Note, selecting 'libopencv-core3.2' for regex '3.2'
Note, selecting 'libghc-heredoc-dev-0.2.0.0-2a3f2' for regex '3.2'
Note, selecting 'librust-gtk-0+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-rvar-dev-0.2.0.3-2c18d:i386' for regex '3.2'
Note, selecting 'libogdi3.2' for regex '3.2'
Note, selecting 'libghc-email-validate-prof-2.3.2.7-2f2a3' for regex '3.2'
Note, selecting 'libghc-zlib-bindings-dev-0.1.1.5-87312' for regex '3.2'
Note, selecting 'libghc-reflection-prof-2.1.4-ba352:i386' for regex '3.2'
Note, selecting 'libatd-ocaml-9d3y2' for regex '3.2'
Note, selecting 'libghc-strict-dev-0.3.2-e3bc9' for regex '3.2'
Note, selecting 'libghc-operational-dev-0.2.3.5-ef302:i386' for regex '3.2'
Note, selecting 'libatd-ocaml-dev-9d3y2' for regex '3.2'
Note, selecting 'libnl-cli-3-200' for regex '3.2'
Note, selecting 'libghc-terminal-size-dev-0.3.2.1-66c83' for regex '3.2'
Note, selecting 'libghc-lambdabot-haskell-plugins-prof-5.1.0.3-286bb' for regex '3.2'
Note, selecting 'libsoci-core3.2' for regex '3.2'
Note, selecting 'libghc-http-conduit-prof-2.3.2-9f93c' for regex '3.2'
Note, selecting 'libs3-2' for regex '3.2'
Note, selecting 'libghc-hdbc-postgresql-prof-2.3.2.5-c7a21' for regex '3.2'
Note, selecting 'libogdi3.2-dev' for regex '3.2'
Note, selecting 'libghc-wai-prof-3.2.1.2-0f258:i386' for regex '3.2'
Note, selecting 'nvidia-experimental-352' for regex '3.2'
Note, selecting 'librust-gdk-sys-0.7+v3-22-dev' for regex '3.2'
Note, selecting 'libghc-userid-dev-0.1.3.2-61382:i386' for regex '3.2'
Note, selecting 'libopencv-videoio3.2' for regex '3.2'
Note, selecting 'libpolymake3.2' for regex '3.2'
Note, selecting 'libghc-debian-dev-3.93.2-b2d7b' for regex '3.2'
Note, selecting 'libghc-generics-sop-prof-0.3.2.0-4052f' for regex '3.2'
Note, selecting 'librust-gdk-sys+v3-22-dev' for regex '3.2'
Note, selecting 'libid3-3.8.3c2a' for regex '3.2'
Note, selecting 'libghc-wai-dev-3.2.1.2-72ff6' for regex '3.2'
Note, selecting 'nvidia-352' for regex '3.2'
Note, selecting 'libs3d2' for regex '3.2'
Note, selecting 'libghc-monad-logger-dev-0.3.29-13390:i386' for regex '3.2'
Note, selecting 'librust-gtk+v3-22-29-dev' for regex '3.2'
Note, selecting 'libslepc2.3.2' for regex '3.2'
Note, selecting 'libid3-3.8.3c2' for regex '3.2'
Note, selecting 'librust-gdk-sys-0.7+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-neat-interpolation-prof-0.3.2.2-ed01e' for regex '3.2'
Note, selecting 'librust-gdk-sys+v3-20-dev' for regex '3.2'
Note, selecting 'libghc-monad-par-extras-prof-0.3.3-2e85b:i386' for regex '3.2'
Note, selecting 'libghc-monad-control-dev-1.0.2.3-2b34d:i386' for regex '3.2'
Note, selecting 'libzthread-2.3-2' for regex '3.2'
Note, selecting 'libghc-tldr-dev-0.4.0-a2342:i386' for regex '3.2'
Note, selecting 'xmms2-plugin-id3v2' for regex '3.2'
Note, selecting 'libghc-edison-core-dev' instead of 'libghc-edisoncore-dev-1.3.2.1-6c774'
Note, selecting 'libghc-equivalence-dev' instead of 'libghc-equivalence-dev-0.3.2-d7e29'
Note, selecting 'libghc-strict-dev' instead of 'libghc-strict-dev-0.3.2-e3bc9'
Note, selecting 'libdune-pdelab-dev' instead of 'libdune-pdelab-2.6.20180302'
Note, selecting 'libghc-missingh-dev' instead of 'libghc-missingh-dev-1.4.0.1-63c22'
Note, selecting 'libghc-missingh-prof' instead of 'libghc-missingh-prof-1.4.0.1-63c22'
Note, selecting 'libghc-http-conduit-dev' instead of 'libghc-http-conduit-dev-2.3.2-9f93c'
Note, selecting 'libghc-uri-bytestring-dev' instead of 'libghc-uri-bytestring-dev-0.3.2.0-ba5b3'
Note, selecting 'libghc-url-dev' instead of 'libghc-url-dev-2.1.3-2505e'
Note, selecting 'libghc-http-conduit-prof' instead of 'libghc-http-conduit-prof-2.3.2-9f93c'
Note, selecting 'libghc-uri-bytestring-prof' instead of 'libghc-uri-bytestring-prof-0.3.2.0-ba5b3'
Note, selecting 'libghc-url-prof' instead of 'libghc-url-prof-2.1.3-2505e'
Note, selecting 'libghc-attoparsec-dev' instead of 'libghc-attoparsec-dev-0.13.2.2-25c6f'
Note, selecting 'libghc-attoparsec-prof' instead of 'libghc-attoparsec-prof-0.13.2.2-25c6f'
Note, selecting 'libghc-asn1-types-dev' instead of 'libghc-asn1-types-dev-0.3.2-2fc86'
Note, selecting 'libghc-asn1-types-prof' instead of 'libghc-asn1-types-prof-0.3.2-2fc86'
Note, selecting 'libghc-generics-sop-dev' instead of 'libghc-generics-sop-dev-0.3.2.0-4052f'
Note, selecting 'libghc-generics-sop-prof' instead of 'libghc-generics-sop-prof-0.3.2.0-4052f'
Note, selecting 'libghc-call-stack-dev' instead of 'libghc-call-stack-dev-0.1.0-63d2e'
Note, selecting 'libghc-call-stack-prof' instead of 'libghc-call-stack-prof-0.1.0-63d2e'
Note, selecting 'libghc-cipher-blowfish-dev' instead of 'libghc-cipher-blowfish-dev-0.0.3-2d87f'
Note, selecting 'libghc-cipher-blowfish-prof' instead of 'libghc-cipher-blowfish-prof-0.0.3-2d87f'
Note, selecting 'libghc-terminal-size-dev' instead of 'libghc-terminal-size-dev-0.3.2.1-66c83'
Note, selecting 'libghc-terminal-size-prof' instead of 'libghc-terminal-size-prof-0.3.2.1-66c83'
Note, selecting 'libghc-test-framework-dev' instead of 'libghc-test-framework-dev-0.8.2.0-73b25'
Note, selecting 'libghc-test-framework-prof' instead of 'libghc-test-framework-prof-0.8.2.0-73b25'
Note, selecting 'libghc-heredoc-dev' instead of 'libghc-heredoc-dev-0.2.0.0-2a3f2'
Note, selecting 'libghc-heredoc-prof' instead of 'libghc-heredoc-prof-0.2.0.0-2a3f2'
Note, selecting 'libghc-strict-prof' instead of 'libghc-strict-prof-0.3.2-e3bc9'
Note, selecting 'libghc-debian-dev' instead of 'libghc-debian-dev-3.93.2-b2d7b'
Note, selecting 'libghc-debian-prof' instead of 'libghc-debian-prof-3.93.2-b2d7b'
Note, selecting 'libghc-juicypixels-dev' instead of 'libghc-juicypixels-dev-3.2.9.5-1ebaa'
Note, selecting 'libghc-juicypixels-prof' instead of 'libghc-juicypixels-prof-3.2.9.5-1ebaa'
Note, selecting 'libghc-parallel-dev' instead of 'libghc-parallel-dev-3.2.2.0-bf6f2'
Note, selecting 'libghc-parallel-prof' instead of 'libghc-parallel-prof-3.2.2.0-bf6f2'
Note, selecting 'libghc-io-storage-dev' instead of 'libghc-io-storage-dev-0.3-24f73'
Note, selecting 'libghc-io-storage-prof' instead of 'libghc-io-storage-prof-0.3-24f73'
Note, selecting 'libghc-edison-api-dev' instead of 'libghc-edisonapi-dev-1.3.1-be3a2'
Note, selecting 'libghc-edison-api-prof' instead of 'libghc-edisonapi-prof-1.3.1-be3a2'
Note, selecting 'libghc-edison-core-prof' instead of 'libghc-edisoncore-prof-1.3.2.1-6c774'
Note, selecting 'libghc-snap-core-dev' instead of 'libghc-snap-core-dev-1.0.3.2-5363f'
Note, selecting 'libghc-snap-core-prof' instead of 'libghc-snap-core-prof-1.0.3.2-5363f'
Note, selecting 'libghc-email-validate-dev' instead of 'libghc-email-validate-dev-2.3.2.7-2f2a3'
Note, selecting 'libghc-email-validate-prof' instead of 'libghc-email-validate-prof-2.3.2.7-2f2a3'
Note, selecting 'libghc-equivalence-prof' instead of 'libghc-equivalence-prof-0.3.2-d7e29'
Note, selecting 'libghc-monad-logger-dev' instead of 'libghc-monad-logger-dev-0.3.29-cfc16'
Note, selecting 'libghc-monad-logger-prof' instead of 'libghc-monad-logger-prof-0.3.29-cfc16'
Note, selecting 'libghc-fmlist-dev' instead of 'libghc-fmlist-dev-0.9.2-d2392'
Note, selecting 'libghc-fmlist-prof' instead of 'libghc-fmlist-prof-0.9.2-d2392'
Note, selecting 'libghc-graphviz-dev' instead of 'libghc-graphviz-dev-2999.20.0.2-28302'
Note, selecting 'libghc-graphviz-prof' instead of 'libghc-graphviz-prof-2999.20.0.2-28302'
Note, selecting 'libghc-wai-dev' instead of 'libghc-wai-dev-3.2.1.2-72ff6'
Note, selecting 'libghc-warp-dev' instead of 'libghc-warp-dev-3.2.25-590b9'
Note, selecting 'libghc-wai-prof' instead of 'libghc-wai-prof-3.2.1.2-72ff6'
Note, selecting 'libghc-warp-prof' instead of 'libghc-warp-prof-3.2.25-590b9'
Note, selecting 'libghc-hsx2hs-dev' instead of 'libghc-hsx2hs-dev-0.14.1.3-253df'
Note, selecting 'libghc-userid-dev' instead of 'libghc-userid-dev-0.1.3.2-ec1eb'
Note, selecting 'libghc-hsx2hs-prof' instead of 'libghc-hsx2hs-prof-0.14.1.3-253df'
Note, selecting 'libghc-userid-prof' instead of 'libghc-userid-prof-0.1.3.2-ec1eb'
Note, selecting 'libghc-resource-pool-dev' instead of 'libghc-resource-pool-dev-0.2.3.2-25cef'
Note, selecting 'libghc-resource-pool-prof' instead of 'libghc-resource-pool-prof-0.2.3.2-25cef'
Note, selecting 'libghc-wai-logger-dev' instead of 'libghc-wai-logger-dev-2.3.2-f9499'
Note, selecting 'libghc-warp-tls-dev' instead of 'libghc-warp-tls-dev-3.2.4.3-8c353'
Note, selecting 'libghc-wai-logger-prof' instead of 'libghc-wai-logger-prof-2.3.2-f9499'
Note, selecting 'libghc-warp-tls-prof' instead of 'libghc-warp-tls-prof-3.2.4.3-8c353'
Note, selecting 'libghc-incremental-parser-dev' instead of 'libghc-incremental-parser-dev-0.3.1.1-473b2'
Note, selecting 'libghc-incremental-parser-prof' instead of 'libghc-incremental-parser-prof-0.3.1.1-473b2'
Note, selecting 'libghc-regex-base-dev' instead of 'libghc-regex-base-dev-0.93.2-f5054'
Note, selecting 'libghc-regex-base-prof' instead of 'libghc-regex-base-prof-0.93.2-f5054'
Note, selecting 'libghc-iconv-dev' instead of 'libghc-iconv-dev-0.4.1.3-2069f'
Note, selecting 'libghc-iconv-prof' instead of 'libghc-iconv-prof-0.4.1.3-2069f'
Note, selecting 'libghc-zlib-bindings-dev' instead of 'libghc-zlib-bindings-dev-0.1.1.5-87312'
Note, selecting 'libghc-zlib-bindings-prof' instead of 'libghc-zlib-bindings-prof-0.1.1.5-87312'
Note, selecting 'libghc-mueval-dev' instead of 'libghc-mueval-dev-0.9.3-21214'
Note, selecting 'libghc-lambdabot-haskell-plugins-dev' instead of 'libghc-lambdabot-haskell-plugins-dev-5.1.0.3-286bb'
Note, selecting 'libghc-mueval-prof' instead of 'libghc-mueval-prof-0.9.3-21214'
Note, selecting 'libghc-lambdabot-haskell-plugins-prof' instead of 'libghc-lambdabot-haskell-plugins-prof-5.1.0.3-286bb'
Note, selecting 'libghc-neat-interpolation-dev' instead of 'libghc-neat-interpolation-dev-0.3.2.2-ed01e'
Note, selecting 'libghc-neat-interpolation-prof' instead of 'libghc-neat-interpolation-prof-0.3.2.2-ed01e'
Note, selecting 'libghc-network-conduit-tls-dev' instead of 'libghc-network-conduit-tls-dev-1.3.2-59ce3'
Note, selecting 'libghc-network-conduit-tls-prof' instead of 'libghc-network-conduit-tls-prof-1.3.2-59ce3'
Note, selecting 'libghc-relational-query-dev' instead of 'libghc-relational-query-dev-0.12.1.0-3f297'
Note, selecting 'libghc-relational-query-prof' instead of 'libghc-relational-query-prof-0.12.1.0-3f297'
Note, selecting 'libghc-tasty-dev' instead of 'libghc-tasty-dev-1.1.0.3-29854'
Note, selecting 'libghc-tasty-prof' instead of 'libghc-tasty-prof-1.1.0.3-29854'
Note, selecting 'libghc-tasty-golden-dev' instead of 'libghc-tasty-golden-dev-2.3.2-87ffa'
Note, selecting 'libghc-tasty-golden-prof' instead of 'libghc-tasty-golden-prof-2.3.2-87ffa'
Note, selecting 'libghc-text-format-dev' instead of 'libghc-text-format-dev-0.3.2-33b8d'
Note, selecting 'libghc-text-format-prof' instead of 'libghc-text-format-prof-0.3.2-33b8d'
Note, selecting 'libghc-hdbc-postgresql-dev' instead of 'libghc-hdbc-postgresql-dev-2.3.2.5-c7a21'
Note, selecting 'libghc-hdbc-postgresql-prof' instead of 'libghc-hdbc-postgresql-prof-2.3.2.5-c7a21'
Note, selecting 'libatd-ocaml' instead of 'libatd-ocaml-9d3y2'
Note, selecting 'libatd-ocaml-dev' instead of 'libatd-ocaml-dev-9d3y2'
Note, selecting 'librust-dtoa-short-dev' instead of 'librust-dtoa-short-0.3.2+default-dev'
Note, selecting 'librust-dtoa-short-dev' instead of 'librust-dtoa-short-0.3.2-dev'
Note, selecting 'librust-foreign-types-dev' instead of 'librust-foreign-types-0.3.2+default-dev'
Note, selecting 'librust-foreign-types-dev' instead of 'librust-foreign-types-0.3.2-dev'
Note, selecting 'librust-gdk-sys-dev' instead of 'librust-gdk-sys-0.7+v3-20-dev'
Note, selecting 'librust-gdk+v3-20-dev' instead of 'librust-gdk-0+v3-20-dev'
Note, selecting 'librust-gdk+v3-20-dev' instead of 'librust-gdk-0.9+v3-20-dev'
Note, selecting 'librust-gdk+v3-20-dev' instead of 'librust-gdk-0.9.0+v3-20-dev'
Note, selecting 'librust-gdk+v3-22-30-dev' instead of 'librust-gdk-0+v3-22-30-dev'
Note, selecting 'librust-gdk+v3-22-30-dev' instead of 'librust-gdk-0.9+v3-22-30-dev'
Note, selecting 'librust-gdk+v3-22-30-dev' instead of 'librust-gdk-0.9.0+v3-22-30-dev'
Note, selecting 'librust-gdk-sys-dev' instead of 'librust-gdk-sys-0.7+v3-22-dev'
Note, selecting 'librust-gdk+v3-22-dev' instead of 'librust-gdk-0+v3-22-dev'
Note, selecting 'librust-gdk+v3-22-dev' instead of 'librust-gdk-0.9+v3-22-dev'
Note, selecting 'librust-gdk+v3-22-dev' instead of 'librust-gdk-0.9.0+v3-22-dev'
Note, selecting 'librust-gdk-sys-dev' instead of 'librust-gdk-sys+v3-20-dev'
Note, selecting 'librust-gdk-sys-dev' instead of 'librust-gdk-sys+v3-22-dev'
Note, selecting 'librust-gdk-sys-dev' instead of 'librust-gdk-sys-0+v3-20-dev'
Note, selecting 'librust-gdk-sys-dev' instead of 'librust-gdk-sys-0+v3-22-dev'
Note, selecting 'librust-gdk-sys-dev' instead of 'librust-gdk-sys-0.7.0+v3-20-dev'
Note, selecting 'librust-gdk-sys-dev' instead of 'librust-gdk-sys-0.7.0+v3-22-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7+v3-20-dev'
Note, selecting 'librust-gtk+v3-20-dev' instead of 'librust-gtk-0+v3-20-dev'
Note, selecting 'librust-gtk+v3-20-dev' instead of 'librust-gtk-0.5+v3-20-dev'
Note, selecting 'librust-gtk+v3-20-dev' instead of 'librust-gtk-0.5.0+v3-20-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7+v3-22-26-dev'
Note, selecting 'librust-gtk+v3-22-20-dev' instead of 'librust-gtk-0+v3-22-20-dev'
Note, selecting 'librust-gtk+v3-22-20-dev' instead of 'librust-gtk-0.5+v3-22-20-dev'
Note, selecting 'librust-gtk+v3-22-20-dev' instead of 'librust-gtk-0.5.0+v3-22-20-dev'
Note, selecting 'librust-gtk+v3-22-26-dev' instead of 'librust-gtk-0+v3-22-26-dev'
Note, selecting 'librust-gtk+v3-22-26-dev' instead of 'librust-gtk-0.5+v3-22-26-dev'
Note, selecting 'librust-gtk+v3-22-26-dev' instead of 'librust-gtk-0.5.0+v3-22-26-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7+v3-22-27-dev'
Note, selecting 'librust-gtk+v3-22-27-dev' instead of 'librust-gtk-0+v3-22-27-dev'
Note, selecting 'librust-gtk+v3-22-27-dev' instead of 'librust-gtk-0.5+v3-22-27-dev'
Note, selecting 'librust-gtk+v3-22-27-dev' instead of 'librust-gtk-0.5.0+v3-22-27-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7+v3-22-29-dev'
Note, selecting 'librust-gtk+v3-22-29-dev' instead of 'librust-gtk-0+v3-22-29-dev'
Note, selecting 'librust-gtk+v3-22-29-dev' instead of 'librust-gtk-0.5+v3-22-29-dev'
Note, selecting 'librust-gtk+v3-22-29-dev' instead of 'librust-gtk-0.5.0+v3-22-29-dev'
Note, selecting 'librust-gtk+v3-22-30-dev' instead of 'librust-gtk-0+v3-22-30-dev'
Note, selecting 'librust-gtk+v3-22-30-dev' instead of 'librust-gtk-0.5+v3-22-30-dev'
Note, selecting 'librust-gtk+v3-22-30-dev' instead of 'librust-gtk-0.5.0+v3-22-30-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7+v3-22-dev'
Note, selecting 'librust-gtk+v3-22-dev' instead of 'librust-gtk-0+v3-22-dev'
Note, selecting 'librust-gtk+v3-22-dev' instead of 'librust-gtk-0.5+v3-22-dev'
Note, selecting 'librust-gtk+v3-22-dev' instead of 'librust-gtk-0.5.0+v3-22-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys+v3-20-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys+v3-22-26-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys+v3-22-27-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys+v3-22-29-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys+v3-22-6-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys+v3-22-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0+v3-20-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0+v3-22-26-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0+v3-22-27-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0+v3-22-29-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0+v3-22-6-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0+v3-22-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7+v3-22-6-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7.0+v3-20-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7.0+v3-22-26-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7.0+v3-22-27-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7.0+v3-22-29-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7.0+v3-22-6-dev'
Note, selecting 'librust-gtk-sys-dev' instead of 'librust-gtk-sys-0.7.0+v3-22-dev'
Note, selecting 'librust-hex-dev' instead of 'librust-hex-0.3.2+benchmarks-dev'
Note, selecting 'librust-hex-dev' instead of 'librust-hex-0.3.2+default-dev'
Note, selecting 'librust-hex-dev' instead of 'librust-hex-0.3.2-dev'
Note, selecting 'librust-opener-dev' instead of 'librust-opener-0.3.2+default-dev'
Note, selecting 'librust-opener-dev' instead of 'librust-opener-0.3.2-dev'
Note, selecting 'librust-pocket-resources-dev' instead of 'librust-pocket-resources-0.3.2+default-dev'
Note, selecting 'librust-pocket-resources-dev' instead of 'librust-pocket-resources-0.3.2-dev'
Note, selecting 'librust-rustc-serialize-dev' instead of 'librust-rustc-serialize-0.3.24+default-dev'
Note, selecting 'librust-rustc-serialize-dev' instead of 'librust-rustc-serialize-0.3.24-dev'
Note, selecting 'libghc-edison-core-dev:i386' instead of 'libghc-edisoncore-dev-1.3.2.1-fe798:i386'
Note, selecting 'libghc-equivalence-dev:i386' instead of 'libghc-equivalence-dev-0.3.2-603ba:i386'
Note, selecting 'libghc-strict-dev:i386' instead of 'libghc-strict-dev-0.3.2-b974d:i386'
Note, selecting 'libghc-agda-dev:i386' instead of 'libghc-agda-dev-2.5.4.1-a3829:i386'
Note, selecting 'libghc-http-conduit-dev:i386' instead of 'libghc-http-conduit-dev-2.3.2-4fb18:i386'
Note, selecting 'libghc-uri-bytestring-dev:i386' instead of 'libghc-uri-bytestring-dev-0.3.2.0-ea430:i386'
Note, selecting 'libghc-http-conduit-prof:i386' instead of 'libghc-http-conduit-prof-2.3.2-4fb18:i386'
Note, selecting 'libghc-uri-bytestring-prof:i386' instead of 'libghc-uri-bytestring-prof-0.3.2.0-ea430:i386'
Note, selecting 'libghc-linear-dev:i386' instead of 'libghc-linear-dev-1.20.8-713c2:i386'
Note, selecting 'libghc-linear-prof:i386' instead of 'libghc-linear-prof-1.20.8-713c2:i386'
Note, selecting 'libghc-attoparsec-dev:i386' instead of 'libghc-attoparsec-dev-0.13.2.2-2bcfd:i386'
Note, selecting 'libghc-attoparsec-prof:i386' instead of 'libghc-attoparsec-prof-0.13.2.2-2bcfd:i386'
Note, selecting 'libghc-asn1-types-dev:i386' instead of 'libghc-asn1-types-dev-0.3.2-f440e:i386'
Note, selecting 'libghc-asn1-types-prof:i386' instead of 'libghc-asn1-types-prof-0.3.2-f440e:i386'
Note, selecting 'libghc-monad-control-dev:i386' instead of 'libghc-monad-control-dev-1.0.2.3-2b34d:i386'
Note, selecting 'libghc-monad-control-prof:i386' instead of 'libghc-monad-control-prof-1.0.2.3-2b34d:i386'
Note, selecting 'libghc-generics-sop-dev:i386' instead of 'libghc-generics-sop-dev-0.3.2.0-2ef9f:i386'
Note, selecting 'libghc-generics-sop-prof:i386' instead of 'libghc-generics-sop-prof-0.3.2.0-2ef9f:i386'
Note, selecting 'libghc-operational-dev:i386' instead of 'libghc-operational-dev-0.2.3.5-ef302:i386'
Note, selecting 'libghc-operational-prof:i386' instead of 'libghc-operational-prof-0.2.3.5-ef302:i386'
Note, selecting 'libghc-terminal-size-dev:i386' instead of 'libghc-terminal-size-dev-0.3.2.1-1523f:i386'
Note, selecting 'libghc-terminal-size-prof:i386' instead of 'libghc-terminal-size-prof-0.3.2.1-1523f:i386'
Note, selecting 'libghc-x509-dev:i386' instead of 'libghc-x509-dev-1.7.3-2378e:i386'
Note, selecting 'libghc-x509-prof:i386' instead of 'libghc-x509-prof-1.7.3-2378e:i386'
Note, selecting 'libghc-constraints-dev:i386' instead of 'libghc-constraints-dev-0.10.1-332c1:i386'
Note, selecting 'libghc-constraints-prof:i386' instead of 'libghc-constraints-prof-0.10.1-332c1:i386'
Note, selecting 'libghc-strict-prof:i386' instead of 'libghc-strict-prof-0.3.2-b974d:i386'
Note, selecting 'libghc-data-binary-ieee754-dev:i386' instead of 'libghc-data-binary-ieee754-dev-0.4.4-96332:i386'
Note, selecting 'libghc-data-binary-ieee754-prof:i386' instead of 'libghc-data-binary-ieee754-prof-0.4.4-96332:i386'
Note, selecting 'libghc-debian-dev:i386' instead of 'libghc-debian-dev-3.93.2-995d2:i386'
Note, selecting 'libghc-debian-prof:i386' instead of 'libghc-debian-prof-3.93.2-995d2:i386'
Note, selecting 'libghc-juicypixels-dev:i386' instead of 'libghc-juicypixels-dev-3.2.9.5-84f21:i386'
Note, selecting 'libghc-juicypixels-prof:i386' instead of 'libghc-juicypixels-prof-3.2.9.5-84f21:i386'
Note, selecting 'libghc-parallel-dev:i386' instead of 'libghc-parallel-dev-3.2.2.0-eccbc:i386'
Note, selecting 'libghc-parallel-prof:i386' instead of 'libghc-parallel-prof-3.2.2.0-eccbc:i386'
Note, selecting 'libghc-edison-core-prof:i386' instead of 'libghc-edisoncore-prof-1.3.2.1-fe798:i386'
Note, selecting 'libghc-snap-core-dev:i386' instead of 'libghc-snap-core-dev-1.0.3.2-9cb7e:i386'
Note, selecting 'libghc-snap-core-prof:i386' instead of 'libghc-snap-core-prof-1.0.3.2-9cb7e:i386'
Note, selecting 'libghc-email-validate-dev:i386' instead of 'libghc-email-validate-dev-2.3.2.7-ba2c2:i386'
Note, selecting 'libghc-email-validate-prof:i386' instead of 'libghc-email-validate-prof-2.3.2.7-ba2c2:i386'
Note, selecting 'libghc-equivalence-prof:i386' instead of 'libghc-equivalence-prof-0.3.2-603ba:i386'
Note, selecting 'libghc-monad-logger-dev:i386' instead of 'libghc-monad-logger-dev-0.3.29-13390:i386'
Note, selecting 'libghc-monad-logger-prof:i386' instead of 'libghc-monad-logger-prof-0.3.29-13390:i386'
Note, selecting 'libghc-wai-dev:i386' instead of 'libghc-wai-dev-3.2.1.2-0f258:i386'
Note, selecting 'libghc-warp-dev:i386' instead of 'libghc-warp-dev-3.2.25-6e1f2:i386'
Note, selecting 'libghc-wai-prof:i386' instead of 'libghc-wai-prof-3.2.1.2-0f258:i386'
Note, selecting 'libghc-warp-prof:i386' instead of 'libghc-warp-prof-3.2.25-6e1f2:i386'
Note, selecting 'libghc-hsx2hs-dev:i386' instead of 'libghc-hsx2hs-dev-0.14.1.3-09372:i386'
Note, selecting 'libghc-userid-dev:i386' instead of 'libghc-userid-dev-0.1.3.2-61382:i386'
Note, selecting 'libghc-hsx2hs-prof:i386' instead of 'libghc-hsx2hs-prof-0.14.1.3-09372:i386'
Note, selecting 'libghc-userid-prof:i386' instead of 'libghc-userid-prof-0.1.3.2-61382:i386'
Note, selecting 'libghc-resource-pool-dev:i386' instead of 'libghc-resource-pool-dev-0.2.3.2-2fc6b:i386'
Note, selecting 'libghc-resource-pool-prof:i386' instead of 'libghc-resource-pool-prof-0.2.3.2-2fc6b:i386'
Note, selecting 'libghc-wai-logger-dev:i386' instead of 'libghc-wai-logger-dev-2.3.2-30841:i386'
Note, selecting 'libghc-warp-tls-dev:i386' instead of 'libghc-warp-tls-dev-3.2.4.3-ace21:i386'
Note, selecting 'libghc-wai-logger-prof:i386' instead of 'libghc-wai-logger-prof-2.3.2-30841:i386'
Note, selecting 'libghc-warp-tls-prof:i386' instead of 'libghc-warp-tls-prof-3.2.4.3-ace21:i386'
Note, selecting 'libghc-regex-base-dev:i386' instead of 'libghc-regex-base-dev-0.93.2-586a1:i386'
Note, selecting 'libghc-hsh-dev:i386' instead of 'libghc-hsh-dev-2.1.3-83724:i386'
Note, selecting 'libghc-regex-base-prof:i386' instead of 'libghc-regex-base-prof-0.93.2-586a1:i386'
Note, selecting 'libghc-hsh-prof:i386' instead of 'libghc-hsh-prof-2.1.3-83724:i386'
Note, selecting 'libghc-reflection-dev:i386' instead of 'libghc-reflection-dev-2.1.4-ba352:i386'
Note, selecting 'libghc-reflection-prof:i386' instead of 'libghc-reflection-prof-2.1.4-ba352:i386'
Note, selecting 'libghc-monad-par-extras-dev:i386' instead of 'libghc-monad-par-extras-dev-0.3.3-2e85b:i386'
Note, selecting 'libghc-monad-par-extras-prof:i386' instead of 'libghc-monad-par-extras-prof-0.3.3-2e85b:i386'
Note, selecting 'libghc-neat-interpolation-dev:i386' instead of 'libghc-neat-interpolation-dev-0.3.2.2-46bf0:i386'
Note, selecting 'libghc-neat-interpolation-prof:i386' instead of 'libghc-neat-interpolation-prof-0.3.2.2-46bf0:i386'
Note, selecting 'libghc-network-conduit-tls-dev:i386' instead of 'libghc-network-conduit-tls-dev-1.3.2-aae25:i386'
Note, selecting 'libghc-network-conduit-tls-prof:i386' instead of 'libghc-network-conduit-tls-prof-1.3.2-aae25:i386'
Note, selecting 'libghc-tree-monad-dev:i386' instead of 'libghc-tree-monad-dev-0.3-211bd:i386'
Note, selecting 'libghc-tree-monad-prof:i386' instead of 'libghc-tree-monad-prof-0.3-211bd:i386'
Note, selecting 'libghc-relational-query-dev:i386' instead of 'libghc-relational-query-dev-0.12.1.0-362da:i386'
Note, selecting 'libghc-relational-query-prof:i386' instead of 'libghc-relational-query-prof-0.12.1.0-362da:i386'
Note, selecting 'libghc-quickcheck-unicode-dev:i386' instead of 'libghc-quickcheck-unicode-dev-1.0.1.0-3e21b:i386'
Note, selecting 'libghc-quickcheck-unicode-prof:i386' instead of 'libghc-quickcheck-unicode-prof-1.0.1.0-3e21b:i386'
Note, selecting 'libghc-rvar-dev:i386' instead of 'libghc-rvar-dev-0.2.0.3-2c18d:i386'
Note, selecting 'libghc-rvar-prof:i386' instead of 'libghc-rvar-prof-0.2.0.3-2c18d:i386'
Note, selecting 'libghc-tasty-golden-dev:i386' instead of 'libghc-tasty-golden-dev-2.3.2-14015:i386'
Note, selecting 'libghc-tasty-golden-prof:i386' instead of 'libghc-tasty-golden-prof-2.3.2-14015:i386'
Note, selecting 'libghc-tasty-kat-dev:i386' instead of 'libghc-tasty-kat-dev-0.0.3-21a7c:i386'
Note, selecting 'libghc-tasty-kat-prof:i386' instead of 'libghc-tasty-kat-prof-0.0.3-21a7c:i386'
Note, selecting 'libghc-text-format-dev:i386' instead of 'libghc-text-format-dev-0.3.2-edfc9:i386'
Note, selecting 'libghc-text-format-prof:i386' instead of 'libghc-text-format-prof-0.3.2-edfc9:i386'
Note, selecting 'libghc-tldr-dev:i386' instead of 'libghc-tldr-dev-0.4.0-a2342:i386'
Note, selecting 'libghc-tldr-prof:i386' instead of 'libghc-tldr-prof-0.4.0-a2342:i386'
Note, selecting 'libghc-hdbc-postgresql-dev:i386' instead of 'libghc-hdbc-postgresql-dev-2.3.2.5-3daec:i386'
Note, selecting 'libghc-hdbc-postgresql-prof:i386' instead of 'libghc-hdbc-postgresql-prof-2.3.2.5-3daec:i386'
Note, selecting 'notion' instead of 'notion-api-3+2017050501'
Package lsb is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'lsb' has no installation candidate
Linux Mint 18 Beta was recently released. Though it’s beta since its release, I have been using it without any issue. There is no crash, no stuck. Pretty stable. But, today when I tried to install VirtualBox in Linux mint, it gave me an error that the dependency not satisfied libvpx1. If you’re using Linux Mint 18 Beta then you’ll not be able to install Virtualbox or any other app if that depends on libvpx1.
How To Fix ‘Dependency is not satisfiable: libvpx1’ Error In Linux Mint 18 Beta?

It looks like the above screenshot when you try to install Virtualbox in Linux Mint 18 Beta. I don’t know if they’ll add this dependency in the stable version that is going to be released next month. A similar dependency problem was in Ubuntu 15.10 but they fixed it in their next release.
To solve dependency is not satisfiable: libvpx1 error in Linux Mint, simply download the dependency clicking the button below and install it. It’s all you’ve to do.
Download
Information
libvpx1 is no longer available to download.
After you’ve installed libvpx1 for your particular system architecture, now install VirtualBox. It’ll install without any issue.
