sarum9in

Results 15 comments of sarum9in

https://developer.github.com/webhooks/#delivery-headers Supported hooks we are interested in: - *commit* - create - delete - repository - *create* - *delete* - TODO figure out how *rename* works

One thing to care about is branch creation that should not trigger revision 1 creation. This is probably achieved by the fact that master is copied so there is no...

The first is probably a bug that was fixed in #57 (wrong ordering), the usual practice is to install the latest wrap. Currently you should always use the latest one,...

Alternative is to push patch zips to github repos as releases and generate links to them in wrapfile that project acquires. This splits wrap creation and wrap hosting paths into...

As @jpakkane noticed this has a disadvantage of tying wrapdb to github. The way to solve it is to proxy `get_zip` calls to github, the service itself is stateless and...

The idea to address this is to run multiple read-only mirrors with eventual consistency. Meson should be able to select a working one from the pool (TBD how).

Do you mean https://wrapdb.mesonbuild.com/v1/projects/box2d/2.3.1/7/get_zip for instance?

I think you have a minor misconception about that. `gzip` doesn't store permissions, it is a compression algorithm. `tar` or `cpio` is used to create an archive first and `gzip`...

Workaround will definitely be implemented. As for the initial request to support other archive formats I don't think it's worth it. I don't see a use-case for that. These files...

In the past overridden archive handler was used in https://github.com/mesonbuild/meson/pull/4327 in meson. That might be useful for development on this bug as an example. In particular it was removed in...