В PHP5-GD в тестировании Debian отсутствует зависимость libvpx1

Я запускаю тестирование Debian на моем dev-сервере. К сожалению, мне приходится работать с mysqli (который не включен в php7) и php-gd одновременно.

кошка / etc / issue

Debian GNU/Linux stretch/sid

apt-get установить php5-gd

Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
php5-gd : Depends: libvpx1 (>= 1.0.0) but it is not installable
E: Unable to correct problems, you have held broken packages.

больше источников.лист

deb http://ftp.de.debian.org/debian testing main contrib non-free
deb-src http://ftp.de.debian.org/debian testing main contrib non-free

deb http://ftp.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.debian.org/debian/ jessie-updates main contrib non-free

deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

Где-то я нашел информацию, что нужный libvpx1 больше не включен в тестирование. Но мне все еще это нужно. Кажется, мне придется как-то установить его вручную. Какой способ вы бы порекомендовали?

Кстати, apt-get install -f и другие не решают проблему, поскольку libvpx1 вообще не включен в тестирование. https://packages.debian.org/sid/libvpx1

1

Решение

ОК, это было довольно легко:

wget http://ftp.de.debian.org/debian/pool/main/libv/libvpx/libvpx1_1.3.0-3_amd64.deb
sudo dpkg -i libvpx1_1.3.0-3_amd64.deb
apt-get install php5-gd

Работал.

1

Другие решения

Других решений пока нет …