Raoul Hidalgo Charman
Raoul Hidalgo Charman
Hackage seems to allow tarballs to contain both soft and hard links [here](https://github.com/haskell/hackage-server/blob/master/src/Distribution/Server/Packages/Unpack.hs#L140-L145) so it may be worth also allowing it. In testing #452 I didn't encounter this at all,...
At the moment we get quite a few warnings about importing methods and types from `Streamly.Prelude` which is deprecated (entirely in `Flora.Import.Package.Bulk`). Would be nice to clear these up.
The algorithm we use to store releases files works well with concurrency, where separate releases might be trying to store the same files, but if an import fails midway for...
We only support returning the full tarball now but we'll want source code to be browsable and to do that we'll need to be able to query single files in...
The initial implementation of the blob store just writes blobs to file, but it would good to be able to configure a S3 like backend.
Once we have tarballs hosting (#452) we'll be importing some data twice such as the readme and the changelog. We'll need to be able to render these as HTML but...
The following code fails to parse in the f90 and above parsers ```fortran program main integer x select case(x) ! comment uno ! comment dos case (2): print *, "foo"...
At the moment the rewriter is hard coded to split lines according to fixed form, which end at column 72, and use `+` on column 5 for continuations. This gives...
Functions that have their types declared with old style kinds before the function keyword fail to parse: ```fortran integer*4 function foo() end function ``` ``` $ stack exec fortran-src --...
If you want to use a single server and have matchbox signalling at a specific route it's useful to be able to get the router directly and work with that....