Thanks all for report feedback.
Yes Josep you are right I removed i386 arch and now you need to add Architectures: amd64 in /etc/apt/sources.list.d/qelectrotech.sources
2) use pinning to force 0.100-dev versions:
sudo echo -e 'Package: qelectrotech* \nPin: version 0.100.* \nPin-Priority: 1001' > /etc/apt/preferences.d/40qelectrotech-devel
https://qelectrotech.org/wiki_new/doc/i … an_pinning
Laurent
Thanks.
I could not use your command from a normal user as redirection > is not run as root (sudo applies only to echo command). One solution is to use tee:
echo -e 'Package: qelectrotech* \nPin: version 0.100.* \nPin-Priority: 1001' | sudo tee /etc/apt/preferences.d/40qelectrotech-devel > /dev/null
Thanks for all,
Josep