Dmitry Bely
Dmitry Bely
I've just put it to github: https://github.com/db4/imageclipper
@RubenRBS I tested the PR correctness with the following script: ```python import subprocess options = { "with_zlib": False, "with_gif": False, "with_jpeg": False, "with_png": False, "with_tiff": False, "with_openjpeg": False, "with_webp": False,...
@planetmarshall, are you planning to complete this?
Once you're doing this, please also remove https://github.com/adegtyarev/streebog/blob/8e41694eb7b6d85c20b7c2d706876655970e9f7c/gost3411-2012-core.c#L119-L120 This command is useless in SSE2 mode (it's only needed to switch from MMX to x87), and it becomes an undefined function...
Also `_mm_cvtsi64_si128` should not be used in 32-bit mode: https://github.com/adegtyarev/streebog/blob/8e41694eb7b6d85c20b7c2d706876655970e9f7c/gost3411-2012-sse2.h#L127-L128 that translates to 64-bit `movq`, that is only available in x64 mode. Somehow GCC is able to translate it to...
Hi @memsharded, > but if you want to give it a try, that would be useful Unfortunately, I can't. When I started the issue, I tried to make the feature...
Well, I tried your approach with `swap_child_folder`. It seems to be problematic: `swap_child_folder` cannot correctly handle child folders consisting of several directories (like `packages/pkg1`) and fails if the directory tree...
For the record, here is my implementation of swap_child_folder: ```python def move_child_folder(parent_folder, child_folder): """ move child_folder subtree into parent_folder """ child_path = os.path.join(parent_folder, child_folder) for (root, dirs, files) in os.walk(child_path):...
Hi @memsharded Unfortunately, it doesn't work for me: ```python def source(self): sources = self.conan_data["sources"][self.version] git = Git(self) git.clone(url=sources["url"], target=".") git.checkout(commit=sources["revision"]) src_folder = os.path.normpath(self.source_folder) dst_folder = os.path.dirname(os.path.dirname(src_folder)) self.output.info(f"{src_folder=} {dst_folder=}") move_folder_contents(src_folder, dst_folder)...
> @db4 Could you please provide the logs? Ok, here they are: [build_log.txt](https://github.com/conan-io/conan-center-index/files/15377322/build_log.txt)