Thomas Broyer
Thomas Broyer
AFAICT, overwriting archive entries' `modTime` to `0` would help, and might even be enough. (there are a few uses of `new Date()` in `DebMaker`, but AFAICT only when signing with...
FWIW, it looks to me like `Mapper`s could set `modTime` (when jdeb is used from other tools, e.g. Nebula plugins for Gradle), but there does not seem to be a...
gradle-ospackage-plugin has a few show-stopper limitations, so I used the JDeb API right from my Gradle build file: ``` groovy def resolver = new MapVariableResolver([ name: ext.packageName.toString(), version: ext.getVersion().toString(), description:...
> Could you add the showstoppers as issues so we can address them on gradle-ospackage? Done: nebula-plugins/gradle-ospackage-plugin#84, nebula-plugins/gradle-ospackage-plugin#114 and nebula-plugins/gradle-ospackage-plugin#115 (to be fair, only # 114 was a real showstopper...
I don't know of any, so I created one for testing (just an `npm init` and `touch binding.gyp` ; I also tested building it with `npm install` and it failed...
Chrome 64 is out, meaning that everyone using this extension starts seeing deprecation warnings in the console.  cf. https://www.chromestatus.com/features/5637885046816768
Fwiw @kkirby, it changed at https://github.com/parcel-bundler/parcel/commit/aa21e8990fb6a95a0df8ce6cdf1ebada2342230a (i.e. ~2 months before the 2.0.0 release, but not in any beta or RC, so unpublished at the time you initially created your plugin...
I wonder if that's not going to be required (forking, not necessarily using toolchains) to support JDK 16 for Google Java Format: https://github.com/google/google-java-format/releases/tag/v1.10.0
It doesn't: * https://github.com/gradle/gradle/blob/v7.0.0-RC1/subprojects/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java * https://github.com/gradle/gradle/blob/v7.0.0-RC1/subprojects/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java#L40 BTW, to support Java Toolchains, I believe you'd have to start by using the [Worker API](https://docs.gradle.org/current/userguide/worker_api.html), with process isolation (possibly conditionally) so you can...