hongquan / CoBang

A QR code scanner desktop app for Linux
GNU General Public License v3.0
243 stars 28 forks source link

0.6.2 install fails #25

Closed lgbaldoni closed 3 years ago

lgbaldoni commented 3 years ago

Packaging CoBang for openSUSE linux, this is what I see after the last update:

+ /usr/bin/meson install -C noarch-suse-linux --no-rebuild
Relocate to /home/abuild/rpmbuild/BUILD/CoBang-0.6.2
running install
running build
running build_py
running compile_catalog
error: invalid command 'compile_catalog'
hongquan commented 3 years ago

Hi @lgbaldoni, could you modify openSUSE build script, so that it install Babel before building?

Currently, meson doesn't work because I haven't figured out why it doesn't see .*po files (issue), so you should build it with setup.py.

But that is not all of headache. Recently, there is a breaking change in pip, making Debian packaging tool fail, so I have to temporary exclude the step of install dependencies from setup.py file.

lgbaldoni commented 3 years ago

Hi @lgbaldoni, could you modify openSUSE build script, so that it install Babel before building?

That worked. Or at least the python bits were installed.

Currently, meson doesn't work because I haven't figured out why it doesn't see .*po files (issue), so you should build it with setup.py.

The .po files are indeed not processed. Will also have a look.

hongquan commented 3 years ago

Got rid of setup.py in favor of Meson.