Skip to content

Commit

Permalink
release for coq-8.18, configure.ac and meta.yml edited by hand, the rest
Browse files Browse the repository at this point in the history
generated by templates/generate.sh
  • Loading branch information
ybertot committed Oct 24, 2023
1 parent 8b42915 commit 712311f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 23 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Docker CI
on:
push:
branches:
- coq-master
- coq-v8.18
pull_request:
branches:
- '**'
Expand All @@ -17,17 +17,15 @@ jobs:
strategy:
matrix:
image:
- 'coqorg/coq:dev'
- 'coqorg/coq:8.18'
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: coq-community/docker-coq-action@v1
with:
opam_file: 'coq-dpdgraph.opam'
custom_image: ${{ matrix.image }}
export: 'OPAMWITHTEST'
env:
OPAMWITHTEST: 'true'


# See also:
# https://github.com/coq-community/docker-coq-action#readme
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Follow the instructions on https://github.com/coq-community/templates to regener
[![Code of Conduct][conduct-shield]][conduct-link]
[![Zulip][zulip-shield]][zulip-link]

[docker-action-shield]: https://github.com/coq-community/coq-dpdgraph/workflows/Docker%20CI/badge.svg?branch=coq-master
[docker-action-shield]: https://github.com/coq-community/coq-dpdgraph/workflows/Docker%20CI/badge.svg?branch=coq-v8.18
[docker-action-link]: https://github.com/coq-community/coq-dpdgraph/actions?query=workflow:"Docker%20CI"

[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
Expand Down Expand Up @@ -37,7 +37,7 @@ to visualize dependency graphs and find unused definitions.
- Anne Pacalet ([**@Karmaki**](https://github.com/Karmaki))
- Yves Bertot ([**@ybertot**](https://github.com/ybertot))
- License: [GNU Lesser General Public License v2.1](LICENSE)
- Compatible Coq versions: master (use the corresponding branch or release for other Coq versions)
- Compatible Coq versions: 8.18 (use the corresponding branch or release for other Coq versions)
- Compatible OCaml versions: 4.05.0 or later
- Additional dependencies:
- autoconf (except for releases)
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# will set several variables: (see AC_SUBST at the end of this file)
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

AC_INIT(coq-dpdgraph,1.0)
AC_INIT(coq-dpdgraph,1.0-8.18)
AC_MSG_NOTICE(AC_PACKAGE_NAME version AC_PACKAGE_VERSION)

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
16 changes: 7 additions & 9 deletions coq-dpdgraph.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# This file was generated from `meta.yml`, please do not edit manually.
# Follow the instructions on https://github.com/coq-community/templates to regenerate.

opam-version: "2.0"
maintainer: "[email protected]"
version: "dev"
version: "8.18.dev"

homepage: "https://github.com/coq-community/coq-dpdgraph"
dev-repo: "git+https://github.com/coq-community/coq-dpdgraph.git"
Expand All @@ -13,16 +16,11 @@ Coq plugin that extracts the dependencies between Coq objects,
and produces files with dependency information. Includes tools
to visualize dependency graphs and find unused definitions."""

build: [
["autoconf"] {dev}
["./configure"]
[make "-j%{jobs}%" "WARN_ERR="]
]
run-test: [make "test-suite"]
install: [make "install" "BINDIR=%{bin}%"]
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"ocaml" {>= "4.05.0"}
"coq" {= "dev"}
"coq" {>= "8.18 & "8.19~"}
"conf-autoconf" {build & dev}
"ocamlgraph"
]
Expand Down
10 changes: 5 additions & 5 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ organization: coq-community
community: true
action: true
plugin: true
branch: 'coq-master'
branch: 'coq-v8.18'

synopsis: >-
Compute dependencies between Coq objects (definitions, theorems) and produce graphs
Expand All @@ -29,15 +29,15 @@ maintainers:

opam-file-maintainer: [email protected]

opam-file-version: dev
opam-file-version: 8.18.dev

license:
fullname: GNU Lesser General Public License v2.1
identifier: LGPL-2.1-only

supported_coq_versions:
text: master (use the corresponding branch or release for other Coq versions)
opam: '{= "dev"}'
text: 8.18 (use the corresponding branch or release for other Coq versions)
opam: '{>= "8.18 & < "8.19~"}'

supported_ocaml_versions:
text: 4.05.0 or later
Expand All @@ -55,7 +55,7 @@ dependencies:
[OCamlgraph](https://github.com/backtracking/ocamlgraph)
tested_coq_opam_versions:
- version: dev
- version: 8.18

namespace: dpdgraph

Expand Down

0 comments on commit 712311f

Please sign in to comment.