Rok Mandeljc
Rok Mandeljc
> Either way, whatever is at LBA -150 through LBA -1. That's a pregap on the first track, which I think is always 2 seconds (150 sectors) long. > Is...
> > No, because pregap data is provided by some image formats > > Which ones? If there are image formats that support it, I'll use those, but I haven't...
Or actually, you could probably also hack `mirage_parser_add_redbook_pregap` to add a file-based data fragment for the pregap it creates.
That's because `numpy` hook explicitly collects dynamic libs from the package into top-level application directory: [upstream](https://github.com/numpy/numpy/blob/282c79ebc9b61ebc5f0755736ec953b8d954922c/numpy/_pyinstaller/hook-numpy.py#L13) and [our (original) copy](https://github.com/pyinstaller/pyinstaller/blob/ca8a976a4d28118d91d728362bfd43c48e21666d/PyInstaller/hooks/hook-numpy.py#L28). With 1.26.x and 2.x series, that's not a problem because...
> This is another case though where giving numpy the numpy hook is doing more harm than good. Might be worth undoing that. Yeah, I second that. I think in...
> Can you confirm that numpy 2.0.1 on latest pyinstaller is NOT bloated? That should be the case, since the duplication issue is limited to < 1.26. Do you have...
And if you're interested in further "non-bloated" comparisons, you can manually fix the `hook-numpy.py` file your local numpy and PyInstaller 6.x installation; change the `binaries = collect_dynamic_libs("numpy", ".")` line into...
I don't think automatic inference is a good idea, as it might lead to mismatch between expectations/intentions of the executable creator and actual permissions being set on the target system...
> Yeah, that sounds better. Should we use a fully generalised `--runtime-tempdir-permissions=0o755` option or reduce it to a boolean switch which toggles it from `0o700` to `0o755`? I'd prefer an...
> The problem I see with _not_ following the ACLs on the target executable is that the _end-user_ is no longer in control of permissions. Normally they have the ultimate...