Thomas Klausner
Thomas Klausner
So I tried extracting enough information from this to make a HEIF gallery, but I didn't get it to work. I have sigal 2.3 and pillow_heif 0.10.0. I changed the...
@bigcat88 : Fails the same way with version 0.9.3 of pillow_heif.
I'll try that, thanks. This file has interesting code btw: ```python try: # Pillow 7.2+ from PIL.TiffImagePlugin import IFDRational except ImportError: IFDRational = None ``` I think it'd be good...
Ok, so with: ``` --- sigal/gallery.py.orig 2022-04-08 18:19:56.000000000 +0000 +++ sigal/gallery.py @@ -235,6 +235,7 @@ class Image(Media): super().__init__(filename, path, settings) imgformat = settings.get('img_format') + PILImage.registered_extensions() if imgformat and PILImage.EXTENSION[self.src_ext] !=...
I'm asking in particular for the source files distributed via pypi. (Are the github ones up-to-date?)
Thanks for looking at this. The symbol I reported this for, `si_signo`, has not been changed by the commit, and the build still fails on NetBSD.
Thanks. I don't know what exactly blink is doing, but NetBSD by default enables PaX MPROTECT, so pages can not be mapped writable and executable at the same time. If...
Thanks for the explanation! If all frontends can make use of this, then a common package they all depend on sounds like the best solution for my use case. So...
@t-8ch Thanks! The problem is quite easy to understand even without the build scripts - see https://github.com/transmission/transmission/issues/4864#issuecomment-1428185948 above - the same files are installed if either the daemon, the gtk...
Thanks for the analysis! I think the retry-on-`EBUSY` sounds good, but no, I don't know if or how often that can repeat. Right now, I have 5.9.5 installed but it...