Frank Dana

Results 954 comments of Frank Dana

@Jessegerard The [Lodash Per-Method Packages document](https://lodash.com/per-method-packages) already notes, > ## Per Method Packages > Lodash methods are available in standalone [per method packages](https://www.npmjs.com/browse/keyword/lodash-modularized) like `lodash.mapvalues`, `lodash.pickby`, etc. These packages contain...

> The .spdx file is auto-generated by the `reuse` tool, we don't go and modify it by hand. So any changes done here would be overwritten the next time we...

`REUSE.toml` can also host a header with general package metadata, which is probably also of use in generating `.spdx` files: ```toml version = 1 SPDX-PackageName = "Some project" SPDX-PackageSupplier =...

...Needless to say, if the `.spdx` file is being treated as a generated file, rules for generating it should probably also be added to the `Makefile.am`. Since, right now, there's...

> I'll be moving this to use meson instead of autoutils "soon" Thank f*ck! \o/ (No, I'm not biased at all. ...Actually, I'm personally more comfortable/familiar with CMake, but Meson...

> Yes, the .spdx file needs to be generated all the time, but really, I only do it when a release happens as that's the only important time it is...

@daniellandau The other option would be to replace that shell script with a Python script (we know Python is available, if we're running Meson) and use its built-in `zipfile` module...

Oh! We could also probably use `gnome-extensions pack` to create the zip, the same way we now use `gnome-extensions install` to install it. In fact that's arguably the Right Way™...

@florealcab @craigahobbs (Four years later...) I was able to reproduce this, but only by making some modifications to the example setup @craigahobbs provided above. The changes I made were: 1....

It doesn't actually have to be a star import. I just confirmed that the same behavior occurs if `src/mypkg/__init__.py` contains this: ```python from .mypkg import myfunc ``` The key factor...