-
The problem with using LaTeX in make or tup is that it generates output files which are its own input, so running latex multiple times changes the output. The issue is that LaTeX cannot go back to pag…
-
-
Okay, so this is a bit of a weird feature request, but there are some circumstances, for example when writing a CAS, where you want to dispatch on whether some type `T` occurs *anywhere* in an args li…
-
I was dealing with a document triggered this error in `papermage/rasterizers/rasterizer.py`:
raise ValueError(f"Failed to attach. {len(images)} `images` != {len(pages)} pages in `doc`.")
I did a…
-
### Summary of Feature
**Description:**
Wanting to assign a value to every index in a tuple.
```chapel
var x: 4 * int = 0; // can't do this :(
```
**Is this issue currently blocking your …
-
I have a fresh install of Clearlinux on my laptop (not in a container);
installed ```tup``` from ```brew```; I also built it from ```master```
both of them show this error upon running ```/path/to/t…
-
Tup currently only ignores the `.gitignore` file if there is no user content inside. This behavior was added in 627aa5659b2faaadb8c86022a759197ee48349d0.
This approach has the problem of not ignoring…
evur updated
7 months ago
-
It would be really neat if we could specify:
```Tupfile
: package.json |> npm install --omit=dev --no-package-lock |> node_modules/
```
And for Tup to then automatically rerun `npm` any time t…
-
Fedora splits development packages, so when tup requires FUSE to bootstrap, it fails even though the fuse package is installed. ./bootstrap-nofuse.sh does not seem to work; the correct workaround is t…
-
Since there are `=` and `:=` for makefile kinda-compatibility I think it could be added too.
I have a makefile which requires specifying some args like: `make ARG1=VAL1 ARG2=VAL2 ARG3=VAL3`, where …