Could not find MANIFEST for package source
#132
Closed
opened 3 years ago by kthth
·
7 comments
Loading…
Reference in New Issue
There is no content yet.
Delete Branch '%!s(<nil>)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
I'm using Debian in WSL (Windows Subsystem for Linux) and installed racket with apt. It is version 7.9 [bc].
When trying to install pollen with
raco pkg install pollen
, I getHow do I get around that?
As I understand, the fix is to register
pollen
on pkgs.racket-lang.org with thegit+https
protocol. E.g.,git+https://git.sr.ht/~mbutterick/pollen
Thanks. I didn”t know the
git+https
notation. I’ve updated the package.I was having the same issue. It's now working after the fix. Thanks.
I now get
Solved it differently now by cloning the source code and installing with the local copy:
raco pkg install --link pollen
. All dependencies were installed without problems.@sorawee Where does this
git+https
fix come from?OK, I see that support for
git+https
was added to Racket in March 2021 (2606ae3d8e
) for compatibility with Sourcehut, among others.But this only fixes
raco pkg ···
for versions of Racket released after March 2021 — I’ll assume v8.1 and thereafter. Pollen, however, supports Racket v6.3+. Therefore I have to conclude that Pollen is not compatible with Sourcehut (see #131)I just switched the package-server link back to GitHub. There is a note on the package-server admin page confirming that
git+http
is only available for Racket 8.1+.