Hi,
as an exercise I developed a data structure, a double linked ring.
I create a github repository and I put it in the Racket catalog.
I took Ring Buffer and Priority Queues as examples.
Everything is fine except the package dependencies.
I installed the package through raco pkg install double-linked-ring
and it
installed the data/double-linked-ring
collection.
Then I tryed raco setup --check-pkg-deps double-linked-ring
and
raco setup --check-pkg-deps data/double-linked-ring
but they didn't work.
The error message was collection-path: collection not found
.
Then tried raco setup --check-pkg-deps data
and it worked, but
I can't understand the dependency messages:
raco setup: --- checking package dependencies ---
raco setup: found undeclared dependency:
raco setup: mode: run
raco setup: for package: "double-linked-ring"
raco setup: on package: "rackunit-lib"
raco setup: dependent source: C:\Users\scacco matto\AppData\Roaming\Racket\8.10\pkgs\double-linked-ring\data\compiled\test_rkt.zo
raco setup: used module: (lib "rackunit/main.rkt")
raco setup: found undeclared dependency:
raco setup: mode: run
raco setup: for package: "double-linked-ring"
raco setup: on package: "rackunit-lib"
raco setup: dependent source: C:\Users\scacco matto\AppData\Roaming\Racket\8.10\pkgs\double-linked-ring\data\compiled\test_rkt.zo
raco setup: used module: (lib "rackunit/text-ui.rkt")
raco setup: --- summary of package problems ---
raco setup: undeclared dependency detected
raco setup: for package: "double-linked-ring"
raco setup: on package:
raco setup: "rackunit-lib"
Can you help me?