-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12014 from zapashcanon/master
oasis2debian 0.1.5 and fix urls
- Loading branch information
Showing
7 changed files
with
61 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Create and maintain Debian package for an OASIS package | ||
|
||
This program is a helper to translate _oasis file into a debian/ | ||
directory that is suitable to create a Debian package. | ||
|
||
When the _oasis file is lacking some information, a prompt is | ||
displayed to gather more data. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
etc: [ | ||
"setup.ml" | ||
"setup.data" | ||
"setup.log" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
opam-version: "1.2" | ||
name: "oasis2debian" | ||
maintainer: "Sylvain Le Gall <sylvain@le-gall.net>" | ||
authors: [ "Sylvain Le Gall" ] | ||
license: "GPL-3.0" | ||
homepage: "http://oasis.forge.ocamlcore.org/oasis2debian.html" | ||
dev-repo: "git://github.com/ocaml/oasis2debian.git" | ||
bug-reports: "https://github.com/ocaml/oasis2debian/issues" | ||
build: [ | ||
["oasis" "setup"] | ||
["ocaml" "setup.ml" "-configure" "--prefix" prefix] | ||
["ocaml" "setup.ml" "-build"] | ||
] | ||
install: ["ocaml" "setup.ml" "-install"] | ||
remove: [ | ||
["ocaml" "%{etc}%/oasis2debian/setup.ml" "-C" "%{etc}%/oasis2debian" | ||
"-uninstall"] | ||
] | ||
# TODO: reactivate when we can skip the package building part of it that fails | ||
# on Travis. | ||
#build-test: [ | ||
# ["oasis" "setup"] | ||
# ["ocaml" "setup.ml" "-configure" "--enable-tests"] | ||
# ["ocaml" "setup.ml" "-build"] | ||
# ["ocaml" "setup.ml" "-test"] | ||
#] | ||
depends: [ | ||
"base-unix" {test} | ||
"calendar" {build} | ||
"debian-formats" {build & >= "0.0.1"} | ||
"fileutils" {build & >= "0.4.2"} | ||
"oasis" {build & >= "0.4.7"} | ||
"ocaml-inifiles" {build & >= "1.2"} | ||
"ocaml-xdg-basedir" {build & >= "0.0.1"} | ||
"ocamlbuild" {build} | ||
"ocamlfind" {build} | ||
"ocamlmod" {test} | ||
"ounit" {test & >= "2.0.0"} | ||
"pcre" {build} | ||
"base-bytes" {build} | ||
] | ||
available: [ ocaml-version >= "3.12.1" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
archive: "https://forge.ocamlcore.org/frs/download.php/1760/oasis2debian-0.1.5.tar.gz" | ||
checksum: "4db8cb503728ef54d596b12738479e0f" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters