Skip to content

Package ocaml-fsrs.0.1.0-alpha3 #27920

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions packages/ocaml-fsrs/ocaml-fsrs.0.1.0-alpha3/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml implementation of the FSRS scheduler"
description:
"A library implementing the FSRS (Free Spaced Repetition Scheduler) algorithm in OCaml."
maintainer: ["Lómenoirë Mortecc. <[email protected]>"]
authors: ["Lómenoirë Mortecc. <[email protected]>"]
license: "MIT"
tags: ["fsrs"]
homepage: "https://github.com/chaosarium/ocaml-fsrs"
doc: "https://url/to/documentation"
bug-reports: "https://github.com/chaosarium/ocaml-fsrs/issues"
depends: [
"dune" {>= "3.17"}
"ocaml"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you like to specify a lower bound for ocaml dependency?

"base"
"timedesc"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/chaosarium/ocaml-fsrs.git"

url {
src: "https://github.com/chaosarium/ocaml-fsrs/archive/refs/tags/0.1.0-alpha3.tar.gz"
checksum: "sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
checksum: "sha256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
checksum: "sha256=c59a658e8bb848e84df0e89703b1bde5199022ba1e682886fba93e8a401575c1"

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure that's what you need, but it'll fix the CI error related to the checksum

}
available: opam-version >= "2.1.0"
flags: avoid-version
Loading