Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / opam-file-format
Commits:
-
3040d5d0
by Stephane Glondu at 2023-07-21T06:36:12+02:00
-
0e0bac98
by Stephane Glondu at 2023-07-21T06:36:12+02:00
-
7fdf765b
by Stephane Glondu at 2023-07-21T06:36:19+02:00
-
ce509b00
by Stephane Glondu at 2023-07-21T06:37:38+02:00
-
2080ed08
by Stephane Glondu at 2023-07-21T06:38:16+02:00
6 changed files:
- CHANGES
- debian/changelog
- debian/control
- opam-file-format.opam
- src/opamLexer.mll
- tests/legacy/Makefile
Changes:
1 | +2.1.6 [20 March 2023]
|
|
2 | +------------------------
|
|
3 | +* Remove deprecated usage of `Printf.ksprintf`, ocaml 5 compatibility
|
|
4 | + |
|
1 | 5 | 2.1.5 [14 December 2022]
|
2 | 6 | ------------------------
|
3 | 7 | * Fix extra lines on non empty headers [#49 @hhugo]
|
1 | +opam-file-format (2.1.6-1) unstable; urgency=medium
|
|
2 | + |
|
3 | + * Team upload
|
|
4 | + * New upstream release
|
|
5 | + * Bump Standards-Version to 4.6.2
|
|
6 | + |
|
7 | + -- Stéphane Glondu <glondu@debian.org> Fri, 21 Jul 2023 06:38:12 +0200
|
|
8 | + |
|
1 | 9 | opam-file-format (2.1.5-1) unstable; urgency=medium
|
2 | 10 | |
3 | 11 | * Team upload
|
... | ... | @@ -6,9 +6,9 @@ Priority: optional |
6 | 6 | Build-Depends: debhelper-compat (= 13),
|
7 | 7 | dh-ocaml,
|
8 | 8 | ocaml-findlib,
|
9 | - ocaml-nox
|
|
9 | + ocaml
|
|
10 | 10 | Rules-Requires-Root: no
|
11 | -Standards-Version: 4.6.0
|
|
11 | +Standards-Version: 4.6.2
|
|
12 | 12 | Homepage: https://github.com/ocaml/opam-file-format/
|
13 | 13 | Vcs-Git: https://salsa.debian.org/ocaml-team/opam-file-format.git
|
14 | 14 | Vcs-Browser: https://salsa.debian.org/ocaml-team/opam-file-format
|
1 | 1 | opam-version: "2.0"
|
2 | -version: "2.1.5"
|
|
2 | +version: "2.1.6"
|
|
3 | 3 | synopsis: "Parser and printer for the opam file syntax"
|
4 | 4 | maintainer: "Louis Gesbert <louis.gesbert@ocamlpro.com>"
|
5 | 5 | authors: "Louis Gesbert <louis.gesbert@ocamlpro.com>"
|
... | ... | @@ -14,7 +14,7 @@ build: [ |
14 | 14 | ]
|
15 | 15 | install: [make "install" "PREFIX=%{prefix}%"] {!dune:installed}
|
16 | 16 | depends: [
|
17 | - "ocaml"
|
|
17 | + "ocaml" {>= "3.09.0"}
|
|
18 | 18 | "alcotest" {with-test}
|
19 | 19 | ]
|
20 | 20 | depopts: [
|
... | ... | @@ -18,7 +18,7 @@ exception Error of string |
18 | 18 | |
19 | 19 | let newline lexbuf = Lexing.new_line lexbuf
|
20 | 20 | let error fmt =
|
21 | - Printf.kprintf (fun msg -> raise (Error msg)) fmt
|
|
21 | + Printf.ksprintf (fun msg -> raise (Error msg)) fmt
|
|
22 | 22 | |
23 | 23 | let relop = function
|
24 | 24 | | "=" -> `Eq
|
1 | 1 | .PHONY: test
|
2 | -test: legacy.byte legacy.native
|
|
2 | +test:: legacy.byte
|
|
3 | + |
|
4 | +ifneq "$(shell ocamlopt -vnum 2>/dev/null)" ""
|
|
5 | +test:: legacy.native
|
|
6 | +endif
|
|
3 | 7 | |
4 | 8 | src/%:
|
5 | 9 | $(MAKE) -C src $*
|