this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25794 from chetmurthy/release-not-ocamlfind-0.13

release not-ocamlfind 0.13

authored by

Marcello Seri and committed by
GitHub
c1bf247e 9548b038

+45 -4
+2 -1
packages/camlp5/camlp5.8.00.05/opam
··· 34 34 "conf-diffutils" { with-test & os-distribution = "alpine" } 35 35 "re" 36 36 "pcre" 37 - "ounit" { with-test } 37 + "ounit2" { with-test } 38 38 "rresult" 39 39 "bos" 40 40 "fmt" ··· 51 51 conflicts: [ 52 52 "ocaml-option-bytecode-only" 53 53 ] 54 + x-ci-accept-failures: ["freebsd"] 54 55 dev-repo: "git+https://github.com/camlp5/camlp5.git" 55 56 url { 56 57 src: "https://github.com/camlp5/camlp5/archive/refs/tags/8.00.05.tar.gz"
+2 -1
packages/camlp5/camlp5.8.01.00/opam
··· 35 35 "conf-diffutils" { with-test & os-distribution = "alpine" } 36 36 "re" 37 37 "pcre" 38 - "ounit" { with-test } 38 + "ounit2" { with-test } 39 39 "rresult" 40 40 "bos" 41 41 "fmt" ··· 52 52 conflicts: [ 53 53 "ocaml-option-bytecode-only" 54 54 ] 55 + x-ci-accept-failures: ["freebsd"] 55 56 dev-repo: "git+https://github.com/camlp5/camlp5.git" 56 57 url { 57 58 src: "https://github.com/camlp5/camlp5/archive/refs/tags/8.01.00.tar.gz"
+2 -1
packages/camlp5/camlp5.8.02.00/opam
··· 35 35 "conf-diffutils" { with-test & os-distribution = "alpine" } 36 36 "re" 37 37 "pcre" 38 - "ounit" { with-test } 38 + "ounit2" { with-test } 39 39 "rresult" 40 40 "bos" 41 41 "fmt" ··· 52 52 conflicts: [ 53 53 "ocaml-option-bytecode-only" 54 54 ] 55 + x-ci-accept-failures: ["freebsd"] 55 56 dev-repo: "git+https://github.com/camlp5/camlp5.git" 56 57 url { 57 58 src: "https://github.com/camlp5/camlp5/archive/refs/tags/8.02.00.tar.gz"
+2 -1
packages/camlp5/camlp5.8.02.01/opam
··· 34 34 "camlp5-buildscripts" { >= "0.02" } 35 35 "conf-diffutils" { with-test & os-distribution = "alpine" } 36 36 "re" { >= "1.11.0" } 37 - "ounit" { with-test } 37 + "ounit2" { with-test } 38 38 "pcre2" { with-test } 39 39 "rresult" 40 40 "bos" ··· 52 52 conflicts: [ 53 53 "ocaml-option-bytecode-only" 54 54 ] 55 + x-ci-accept-failures: ["freebsd"] 55 56 dev-repo: "git+https://github.com/camlp5/camlp5.git" 56 57 url { 57 58 src: "https://github.com/camlp5/camlp5/archive/refs/tags/8.02.01.tar.gz"
+37
packages/not-ocamlfind/not-ocamlfind.0.13/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A small frontend for ocamlfind that adds a few useful commands" 3 + license: "MIT" 4 + maintainer: "Chet Murthy <chetsky@gmail.com>" 5 + 6 + (* Gerd wrote most of this code; I just modified it (and probably 7 + introduced bugs. This is to silence opam *) 8 + 9 + authors: "Chet Murthy <chetsky@gmail.com>" 10 + homepage: "https://github.com/chetmurthy/not-ocamlfind" 11 + bug-reports: "Chet Murthy <chetsky@gmail.com>" 12 + depends: [ 13 + "ocamlfind" {>= "1.8.0"} 14 + "camlp-streams" 15 + "conf-m4" {build} 16 + "fmt" {>= "0.8.8"} 17 + "rresult" {>= "0.6.0"} 18 + "ocamlgraph" {>= "2.0.0"} 19 + "conf-which" 20 + ] 21 + depexts: [ 22 + [ 23 + "xdot" 24 + ] {os-family = "debian"} 25 + ] 26 + build: [ 27 + ["./configure" "-bindir" bin "-sitelib" lib "-mandir" man "-config" "%{lib}%/findlib.conf" "-no-custom" "-no-topfind" {preinstalled}] 28 + [make "all"] 29 + ] 30 + install: [make "install"] 31 + dev-repo: "git+https://github.com/chetmurthy/not-ocamlfind" 32 + url { 33 + src: "https://github.com/chetmurthy/not-ocamlfind/archive/refs/tags/0.13.tar.gz" 34 + checksum: [ 35 + "sha512=cbac79e3b6801ad64d6842506f0ba29a6eddc5d92d9c6375a2057ff3d0ee0c12937694fbd27db79c90095d2b98cf275d3203335107fa44b876b1386b2ad83ea3" 36 + ] 37 + }