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
69 changes: 69 additions & 0 deletions packages/soupault/soupault.5.2.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
opam-version: "2.0"
name: "soupault"
version: "5.2.0"
Comment on lines +2 to +3
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
name: "soupault"
version: "5.2.0"

To satisfy the linter:

- Warning in soupault.5.2.0: Unnecessary field 'version'. It is suggested to remove it.
- Warning in soupault.5.2.0: Unnecessary field 'name'. It is suggested to remove it.

synopsis: "Static website generator based on HTML element tree rewriting"
description: """
A website generator that works with page element trees rather than text
and allows you to manipulate pages and retrieve metadata from
existing HTML using arbitrary CSS selectors.

With soupault you can:

* Generate ToC and footnotes.
* Insert file content or an HTML snippet in any element.
* Preprocess element content with external programs (e.g. run `<pre>` tags through a highlighter)
* Extract page metadata (think microformats) and render it using a Jingoo template,
a Lua plugin, or an external script.

Soupault is extensible with Lua (2.5) plugins and provides an API for element tree manipulation,
similar to web browsers.

The website generator mode is optional, you can use it as post-processor for existing sites.
"""
maintainer: "Daniil Baturin <[email protected]>"
authors: "Daniil Baturin <[email protected]>"
license: "MIT"
homepage: "https://www.soupault.net"
bug-reports: "https://github.com/PataphysicalSociety/soupault/issues"
dev-repo: "git+https://github.com/PataphysicalSociety/soupault"
x-maintenance-intent: ["(latest)"]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "5.3.0"}
"dune" {>= "2.0.0"}
"containers" {>= "3.9"}
"fileutils" {>= "0.6.3"}
"logs" {>= "0.7.0"}
"fmt" {>= "0.8.9"}
"lambdasoup" {>= "1.1.1"}
"markup" {>= "1.0.0-1"}
"otoml" {>= "1.0.5"}
"ezjsonm" {>= "1.2.0"}
"yaml" {>= "2.0.0"}
"csv" {>= "2.4"}
"re" {>= "1.9.0"}
"odate" {>= "0.6"}
"spelll" {>= "0.4"}
"base64" {>= "3.0.0"}
"jingoo" {>= "1.4.2"}
"camomile" {>= "2.0.0"}
"digestif" {>= "0.7.3"}
"tsort" {>= "2.2.0"}
"lua-ml" {>= "0.9.3"}
"cmarkit" {>= "0.3.0"}
]

conflicts: [
"result" {< "1.5"}
]

url {
src:
"https://github.com/PataphysicalSociety/soupault/archive/refs/tags/5.2.0.zip"
checksum: [
"sha512=ad490894f052c0bedd1f2687afc0f042af377ed751002599b8d03a2335bd4ffe23db339c98cc78bb1406071f5c38b292afea8624f9390a96d5582d877c482fbb"
Copy link
Member

Choose a reason for hiding this comment

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

The checksum is off:
https://opam.ci.ocaml.org/github/ocaml/opam-repository/commit/4099d6357f1aa2db163f020f8475527b70655839/variant/(lint)

Linting opam-repository at /tmp/git-checkout21957e4e/. ...
https://github.com/PataphysicalSociety/soupault/archive/refs/tags/5.2.0.zip (Bad checksum, expected sha512=ad490894f052c0bedd1f2687afc0f042af377ed751002599b8d03a2335bd4ffe23db339c98cc78bb1406071f5c38b292afea8624f9390a96d5582d877c482fbb)
Error in soupault.5.2.0:              error 60: Upstream check failed: "The archive doesn't match checksum:
                - archive: sha512=9cdd7b785272f5e41f6b93e9a97506d39ca53032c70c9afc63cca14861959a5a68f491dd2c88353b62eb5326e8d69d95ab501228eff463114fbe4301fa3fcfef, in opam file: sha512=ad490894f052c0bedd1f2687afc0f042af377ed751002599b8d03a2335bd4ffe23db339c98cc78bb1406071f5c38b292afea8624f9390a96d5582d877c482fbb
              ."

]
}
Loading