Paul Cody
Paul Cody
This PR refactors the `mtree_spec` rule: Instead of emitting the `.spec` output file directly in it's final formatted form, it has been changed to emit a jsonl equivalent. This intermediate...
### What happened? The `mtree_spec` rule generates an invalid mtree entries for filenames with special characters. For example: ``` server.runfiles/pypi/_lock/[email protected]/site-packages/setuptools/command/launcher manifest.xml uid=0 gid=0 time=1672560000 mode=0755 type=file content=bazel-out/darwin_arm64-fastbuild-ST-5b66dcbb8b68/bin/external/pypi/_lock/[email protected]/site-packages/setuptools/command/launcher manifest.xml ``` Causes:...
Curious why this repo has seen no love for ~2 years... Has it been replaced with something else? Considered feature complete?
`GO_PATH` no longer needed. The dependency that was previously named in `make go_deps` is not actually used, so this was removed.
Commit `485ac91f55d29aa83ba86515ca7a6b2bff940503` generates the following code: Input: ```json { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "ssl_certificate.jschema", "title": "sslcertificate", "type": "object", "additionalProperties": false, "properties": { "code": { "type": "string", "pattern": "^[a-z0-9]{3,10}$" }, "key-url": {...
I've adopted something like: ``` find src/main/java -name '*.java' | xargs java -jar ./bin/google-java-format-0.1-alpha.jar --aosp --replace ``` as a precommit hook for java projects. Curious if there is any interest...
For windows compatibility: https://github.com/bazelbuild/bazel/issues/3699#issuecomment-331258907
Please add an example android application to this repo (android_binary). There is no guidance whatsoever on how to use these rules, how to fetch android dependencies, etc...