Skip to content

Commit

Permalink
add the link to an implementation of digestif for git-unix
Browse files Browse the repository at this point in the history
                                                      # Veuillez saisir le message de validation pour vos modifications. Les lignes
                                                                                                                             # commençant par '#' seront ignorées, et un message vide abandonne la validation.
                                                                                                                                                                                                       #
                                                                                                                                                                                                         # Sur la branche master
                                                                                                                                                                                                                          # Votre branche est à jour avec 'origin/master'.
                                                                                                                                                                                                                                                                     #
                                                                                                                                                                                                                                                                       # Modifications qui seront validées :
                                                                                                                                                                       #	modifié :         plotkicadsch.opam
                                                                                                                                                                                             #	modifié :         plotkicadsch/src/dune
                                                                                                                                                                                                                                    #
                                                                                                                                                                                                                                      # Fichiers non suivis:
                                                                                                                                                                       #	.plotkicadsch.opam.swp
                                                                                                                                                                       #	.pyre/
                                                                                                                                                                       #	kicadsch.install
                                                                                                                                                                       #	plotkicadsch.install
                                                                                                                                                                       #	plotkicadsch/test/
                                                                                                                                                                       #
  • Loading branch information
jnavila committed Sep 12, 2019
1 parent ffc2a17 commit e970ae3
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 43 deletions.
46 changes: 23 additions & 23 deletions plotkicadsch.opam
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
opam-version: "2.0"
maintainer: "Jean-Noel Avila <jn.avila@free.fr>"
author: "Jean-Noel Avila <jn.avila@free.fr>"
homepage: "https://jnavila.github.io/plotkicadsch/"
bug-reports: "https://github.com/jnavila/plotkicadsch/issues"
doc: "https://jnavila.github.io/plotkicadsch/index"
synopsis: "Utilities to print and compare version of Kicad schematics"
description: """
maintainer: "Jean-Noel Avila <jn.avila@free.fr>"
author: "Jean-Noel Avila <jn.avila@free.fr>"
homepage: "https://jnavila.github.io/plotkicadsch/"
bug-reports: "https://github.com/jnavila/plotkicadsch/issues"
doc: "https://jnavila.github.io/plotkicadsch/index"
synopsis: "Utilities to print and compare version of Kicad schematics"
description: """
Two utilities:
* plotkicadsch is able to plot schematic sheets to SVG files
* plotgitsch is able to compare git revisions of schematics
"""
license: "ISC"
dev-repo: "git+https://github.com/jnavila/plotkicadsch.git"
build: [
license: "ISC"
dev-repo: "git+https://github.com/jnavila/plotkicadsch.git"
build: [
[ "dune" "subst" ] {pinned}
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "build" "-p" name ]
]
depends: [
depends: [
"dune" {build}
"kicadsch" {= "0.5.1"}
"tyxml" {>= "4.0.0"}
"lwt"
"lwt_ppx" {build}
"sha"
"git" {>= "2.0.0"}
"git-unix"
"base64" {>= "3.0.0"}
"patience_diff" { < "v0.12.0" }
"core_kernel"
"cmdliner"
"kicadsch" {= "0.5.1"}
"tyxml" {>= "4.0.0"}
"lwt"
"lwt_ppx" {build}
"sha"
"git" {>= "2.0.0"}
"git-unix"
"base64" {>= "3.0.0"}
"patience_diff" { < "v0.12.0" }
"core_kernel"
"cmdliner"
]
41 changes: 21 additions & 20 deletions plotkicadsch/src/dune
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
(executables
(names plotgitsch plotkicadsch)
(public_names plotgitsch plotkicadsch)
(package plotkicadsch)
(preprocess (pps lwt_ppx))
(libraries
kicadsch
tyxml
git-unix
lwt
lwt.unix
sha
base64
patience_diff
core_kernel
cmdliner
(names plotgitsch plotkicadsch)
(public_names plotgitsch plotkicadsch)
(package plotkicadsch)
(preprocess (pps lwt_ppx))
(libraries
kicadsch
tyxml
digestif.c
git-unix
lwt
lwt.unix
sha
base64
patience_diff
core_kernel
cmdliner
)
(flags (:standard -w -3 -safe-string))
(flags (:standard -w -3 -safe-string))
)

(install
(package plotkicadsch)
(section bin)
(files git-imgdiff)
(install
(package plotkicadsch)
(section bin)
(files git-imgdiff)
)

0 comments on commit e970ae3

Please sign in to comment.