apteryks

Results 426 comments of apteryks

Hm, I spoke too soon: ``` ld: cannot find -lwatcher: No such file or directory collect2: error: ld returned 1 exit status ``` It's header only library. I'm not sure...

> Hm, I spoke too soon: > > ``` > ld: cannot find -lwatcher: No such file or directory > collect2: error: ld returned 1 exit status > ``` >...

@JoshuaVandaele thanks for the re-run. It looks like the alias created by `dolphin_find_optional_system_library_pkgconfig` is only created if when the system library is found. I've thus adjusted the alias name to...

Yes, testing with current Python in Guix, which is 3.11.11 in the build container.

Could we have a pytest marker to disable all these freetype/pinned dependent tests? Otherwise the various distributions (which build using an up-to-date freetype) have to either disable the whole test...

Found a relatively concise way to express the tests to be skipped, but would still be nice to have a marker: ```scheme (define-public python-matplotlib (package (name "python-matplotlib") (version "3.10.8") (source...

It was relatively easy, in a "build many packages in parallel" scenario using GNU Guix, IIRC. The machine would have been under some load.

Adding gtk+ (v3) to the build resolves the issue. I'm not sure what that means, perhaps the cairo pkg-config dependencies were not satisfied on my system without it? (GNU Guix).

Just verified, the cairo pkg-config requirements are satisfied by the cairo package alone, so it propagates needed things correctly: ``` $ guix shell --container pkg-config cairo -- pkg-config --cflags cairo...