paperless-ng icon indicating copy to clipboard operation
paperless-ng copied to clipboard

[BUG] ansible fails on ubuntu 21.04 for name: install jbig2enc

Open beardedfool opened this issue 3 years ago • 4 comments

TASK [paperless-ng : install jbig2enc] ************************************************************************************************************* fatal: [paperless]: FAILED! => changed=false msg: No package matching 'jbig2enc' is available

Can be installed with snap sudo snap install jbig2enc --edge

beardedfool avatar Jun 19 '21 16:06 beardedfool

I have got the same problem. Despite snap install jbig2enc --edge was successfull, this solution did not solve the problem.

I am using RaspberryPi OS.

Schrello avatar Nov 15 '21 09:11 Schrello

Please see my comment here.

siancu avatar Nov 27 '21 18:11 siancu

The ansible role is pulling jbig2enc from a third-party PPA. The maintainer has not published the builds for 21.04 or 21.10 there (yet). No blame on him, he is running this as a private individual. If you want that to be resolved sooner rather than later, you should maybe give @AlexanderP some :dollar: incentive.

If you need help fixing the problem on 21.04 and 21.10 in the meantime:

snap install jbig2enc --edge or

git clone https://github.com/agl/jbig2enc
cd jbig2enc
./autogen.sh
./configure && make
make install

and then comment out a few lines in the ansible role.

C0nsultant avatar Jan 23 '22 18:01 C0nsultant

Hi. Added jbig2enc for Ubuntu 21.04 and 21.10 to: https://launchpad.net/~alex-p/+archive/ubuntu/jbig2enc and https://notesalexp.org/packages/en/ubuntu/hirsute/amd64/libjbig2enc0/

AlexanderP avatar Jan 23 '22 20:01 AlexanderP