This repository has been archived by the owner on Sep 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_oasis
104 lines (92 loc) · 2.52 KB
/
_oasis
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
OASISFormat: 0.4
OCamlVersion: >= 3.12.0
Name: savete
Version: 0.0.6
Synopsis: Data dumper for backup system.
Authors: Sylvain Le Gall
Copyrights: (C) 2015 Sylvain Le Gall
License: GPL-3
Plugins: DevFiles (0.4), META (0.4), StdFiles (0.4)
BuildTools: ocamlbuild
FilesAB: src/bin/savete/conf.ml.ab
Homepage: https://forge.ocamlcore.org/projects/savete/
Description:
Software and library to auto-detect what needs to be snapshoted. It includes
the following system to detect and dump data:
.
- MySQL databases dump
- PostgreSQL database dump
- Debian installed packages list
#
# Library and executable.
#
Library savete
Path: src/lib/savete
InternalModules: Command
Modules: Savete
BuildDepends: fileutils (>= 0.4.2)
Executable savete
Path: src/bin/savete
MainIs: main.ml
CompiledObject: best
BuildDepends: savete, cmdliner
#
# Documentation
#
Document "api-savete"
Title: API reference for Savete
Type: OCamlbuild (0.4)
InstallDir: $htmldir/savete
BuildTools+: ocamldoc
XOCamlbuildPath: src/lib/savete
XOCamlbuildLibraries: savete
Document "savete.1"
Title: Manpage for savete.
Type: Custom (0.4)
Format: Other
XCustom: $savete --help=groff > doc/savete.1
XCustomClean: $rm doc/savete.1
InstallDir: $mandir/man1
DataFiles: doc/savete.1
BuildTools: savete
Document "savete-dump.1"
Title: Manpage for 'savete dump'.
Type: Custom (0.4)
Format: Other
XCustom: $savete dump --help=groff > doc/savete-dump.1
XCustomClean: $rm doc/savete-dump.1
InstallDir: $mandir/man1
DataFiles: doc/savete-dump.1
BuildTools: savete
Document "savete-restore.1"
Title: Manpage for 'savete restore'.
Type: Custom (0.4)
Format: Other
XCustom: $savete restore --help=groff > doc/savete-restore.1
XCustomClean: $rm doc/savete-restore.1
InstallDir: $mandir/man1
DataFiles: doc/savete-restore.1
BuildTools: savete
Document "savete-help.1"
Title: Manpage for 'savete help'.
Type: Custom (0.4)
Format: Other
XCustom: $savete help --help=groff > doc/savete-help.1
XCustomClean: $rm doc/savete-help.1
InstallDir: $mandir/man1
DataFiles: doc/savete-help.1
BuildTools: savete
#
# Tests
#
Executable test
Path: test
Build$: flag(tests)
MainIs: test.ml
BuildDepends:
savete,
oUnit (>= 2.0),
fileutils (>= 0.4.2)
Test main
Command: $test -savete $savete
TestTools: test, dar, savete