Skip to content
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
27 changes: 27 additions & 0 deletions packages/dspml/dspml.1.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
opam-version: "2.0"
maintainer: "Philippe Strauss <catseyechandra@proton.me>"
authors: [ "Philippe Strauss <catseyechandra@proton.me>" ]
license: "LGPL-3.0-or-later"
homepage: "https://codeberg.org/catseyechandra/dspml"
dev-repo: "git+https://codeberg.org/catseyechandra/dspml.git"
bug-reports: "https://codeberg.org/catseyechandra/dspml/issues"
doc: "https://codeberg.org/catseyechandra/dspml"
build: [
[
"dune" "build" "-p" name "-j" jobs
]
]
depends: [
"ocaml"
"dune" {>= "2.0.0"}
"dune-configurator"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

This is missing dependencies, causing CI to fail across the board:
4.11
dspml.1.0.2 (failed: Library "gnuplot" not found.)

#=== ERROR while compiling dspml.1.0.2 ========================================#
# context              2.5.2 | linux/x86_64 | ocaml-base-compiler.4.11.2 | pinned(https://codeberg.org/catseyechandra/dspml/archive/v1.0.2.tar.gz)
# path                 ~/.opam/4.11/.opam-switch/build/dspml.1.0.2
# command              ~/.opam/opam-init/hooks/sandbox.sh build dune build -p dspml -j 71
# exit-code            1
# env-file             ~/.opam/log/dspml-7-0394ae.env
# output-file          ~/.opam/log/dspml-7-0394ae.out
### output ###
# File "src/dune", line 3, characters 58-65:
# 3 |   (libraries batteries logs sndfile bigarray lacaml fftw3 gnuplot)
#                                                               ^^^^^^^
# Error: Library "gnuplot" not found.
# -> required by library "dspml" in _build/default/src
# -> required by _build/default/META.dspml
# -> required by _build/install/default/lib/dspml/META
# -> required by _build/default/dspml.install
# -> required by alias install
# File "src/dune", line 4, characters 19-27:
# 4 |   (preprocess (pps logs-ppx))
#                        ^^^^^^^^
# Error: Library "logs-ppx" not found.
# -> required by _build/default/src/.merlin-conf/lib-dspml
# -> required by _build/default/src/dspml.a
# -> required by _build/install/default/lib/dspml/dspml.a
# -> required by _build/default/dspml.install
# -> required by alias install

You'll need to list the opam-packages providing the above libraries:
batteries logs sndfile bigarray lacaml fftw3 gnuplot
potentially with (lower) bounds, as library APIs tend to evolve... 馃檪

]
synopsis: "One-dimension DSP in OCaml"
description: "DSPML is a small library for unidimensional (one dimension, 1D, vector) based discrete-time signal processing"
url {
src: "https://codeberg.org/catseyechandra/dspml/archive/v1.0.2.tar.gz"
checksum: [
"md5=089da2196aa00ce449374fe19ae791bd"
"sha512=698b441d8bfdf5ac9cb449dcb62f5e443cce7679e194feeb427262089e6f74314db027342bfbb006593214adf50d4f0c8db45cfbdc6f7860a3de1672a634736f"
]
}
Loading