-
Notifications
You must be signed in to change notification settings - Fork 78
Open
Labels
Description
Describe the bug
dpkg -I wok-3.0.0-0.ubuntu.noarch.deb
shows typo python-m2crypto
instead of python3-m2crypto
To Reproduce
As above
Expected behavior
shows python3-m2crypto
when run dpkg -I
so that wok could be installed on Ubuntu 20.10
just sharing my workaround, in case anyone faced the same issue.
#dpkg -I wok-3.0.0-0.ubuntu.noarch.deb
dpkg-deb -x wok-3.0.0-0.ubuntu.noarch.deb wok3a
dpkg-deb --control wok-3.0.0-0.ubuntu.noarch.deb wok3a/DEBIAN
sed -i "s/python-m2crypto/python3-m2crypto/" wok3a/DEBIAN/control
dpkg -b wok3a wok-3.0.0-1.ubuntu.noarch.deb
rm -rf wok3a
sudo apt install -y ./wok-3.0.0-1.ubuntu.noarch.deb
Pomdre, Ran-Xing, Maveruri, kokoye2007, liucodeing and 3 morekaetemi, Maveruri and liucodeing