-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdbmigrations-mysql.cabal
87 lines (74 loc) · 2.6 KB
/
dbmigrations-mysql.cabal
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
Name: dbmigrations-mysql
Version: 2.0.0
Synopsis: The dbmigrations tool built for MySQL databases
Description: This package contains the executable to work with
the dbmigrations package when the database backend
is MySQL. See the package dbmigrations for details
about the dbmigrations project in general.
To get started, see the 'README.md'
(https://github.com/jtdaugherty/dbmigrations/blob/master/README.md)
and 'MOO.TXT'
(https://github.com/jtdaugherty/dbmigrations/blob/master/MOO.TXT)
files included in the dbmigrations package and the
usage output for the 'moo-sqlite' command.
Category: Database
Author: Jonathan Daugherty <[email protected]>
Maintainer: Jonathan Daugherty <[email protected]>
Build-Type: Simple
License: BSD3
License-File: LICENSE
Cabal-Version: >= 1.10
Source-Repository head
type: git
location: git://github.com/jtdaugherty/dbmigrations-mysql.git
Library
default-language: Haskell2010
if impl(ghc >= 6.12.0)
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-unused-do-bind
else
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
Build-Depends:
base >= 4 && < 5,
dbmigrations >= 2,
time >= 1.4,
mysql >= 0.1.2,
mysql-simple >= 0.2.2.5,
split >= 0.2.2
Hs-Source-Dirs: src
Exposed-Modules:
Database.Schema.Migrations.Backend.MySQL
Executable moo-mysql
default-language: Haskell2010
Build-Depends:
base >= 4 && < 5,
dbmigrations-mysql,
dbmigrations >= 2
if impl(ghc >= 6.12.0)
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-unused-do-bind
else
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields
Hs-Source-Dirs: programs
Main-is: MooMySQL.hs
test-suite dbmigrations-mysql-tests
default-language: Haskell2010
type: exitcode-stdio-1.0
Build-Depends:
base >= 4 && < 5,
dbmigrations >= 2,
dbmigrations-mysql >= 2,
mysql-simple >= 0.2.2.5,
mysql >= 0.1.1.8,
process >= 1.1,
HUnit >= 1.2
other-modules:
BackendTest
TestDriver
if impl(ghc >= 6.12.0)
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-unused-do-bind -Wwarn
else
ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields
Hs-Source-Dirs: test
Main-is: TestDriver.hs