Compare commits
43 Commits
Author | SHA256 | Date | |
---|---|---|---|
40c1feb6b1 | |||
2920715ebc | |||
e83161dbec | |||
258c1cba4d | |||
748325de26 | |||
f3e36cf2a4 | |||
3b2d91e8cb | |||
bfaa89e361 | |||
8b7602c584 | |||
c21414a958 | |||
66847f916f | |||
0de94fd730 | |||
b2e9504c1a | |||
ea0dbce3f3 | |||
971cacbfce | |||
ef7c300b3f | |||
3a00baade3 | |||
5728161c16 | |||
2dae56f6bd | |||
5cb0f6e77c | |||
2ab9ff7e6f | |||
77ffb573c2 | |||
29e118951f | |||
c3da4f0d58 | |||
0d3f5630df | |||
66170d599c | |||
8a2f1aeca9 | |||
7b17210cf1 | |||
eb884e0489 | |||
cd174fef9b | |||
6371d82314 | |||
86fb067694 | |||
4688540e39 | |||
10fa920c5d | |||
c98ae15e32 | |||
7b3e279510 | |||
3b4541ceee | |||
c734117ce6 | |||
55cca87614 | |||
fa0cba990f | |||
64d74a735e | |||
2d1d784042 | |||
a15f58346b |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c7827c391919227711e1cff0a762b1678fd8739f9c902fc183041ff34f59259c
|
|
||||||
size 12853
|
|
@@ -1,103 +0,0 @@
|
|||||||
cabal-version: 1.12
|
|
||||||
name: regex-posix
|
|
||||||
version: 0.96.0.1
|
|
||||||
x-revision: 3
|
|
||||||
|
|
||||||
build-type: Simple
|
|
||||||
license: BSD3
|
|
||||||
license-file: LICENSE
|
|
||||||
copyright: Copyright (c) 2007-2010, Christopher Kuklewicz
|
|
||||||
author: Christopher Kuklewicz
|
|
||||||
maintainer: Andreas Abel
|
|
||||||
bug-reports: https://github.com/haskell-hvr/regex-posix
|
|
||||||
synopsis: POSIX Backend for "Text.Regex" (regex-base)
|
|
||||||
category: Text
|
|
||||||
description:
|
|
||||||
The POSIX regex backend for <//hackage.haskell.org/package/regex-base regex-base>.
|
|
||||||
.
|
|
||||||
The main appeal of this backend is that it's very lightweight due to its reliance on the ubiquitous <https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/regex.h.html POSIX.2 regex> facility that is provided by the standard C library on most POSIX platforms.
|
|
||||||
.
|
|
||||||
See also <https://wiki.haskell.org/Regular_expressions> for more information.
|
|
||||||
|
|
||||||
extra-source-files:
|
|
||||||
ChangeLog.md
|
|
||||||
cbits/myfree.h
|
|
||||||
|
|
||||||
tested-with:
|
|
||||||
GHC == 9.8.0
|
|
||||||
GHC == 9.6.3
|
|
||||||
GHC == 9.4.7
|
|
||||||
GHC == 9.2.8
|
|
||||||
GHC == 9.0.2
|
|
||||||
GHC == 8.10.7
|
|
||||||
GHC == 8.8.4
|
|
||||||
GHC == 8.6.5
|
|
||||||
GHC == 8.4.4
|
|
||||||
GHC == 8.2.2
|
|
||||||
GHC == 8.0.2
|
|
||||||
GHC == 7.10.3
|
|
||||||
|
|
||||||
source-repository head
|
|
||||||
type: git
|
|
||||||
location: https://github.com/haskell-hvr/regex-posix.git
|
|
||||||
|
|
||||||
source-repository this
|
|
||||||
type: git
|
|
||||||
location: https://github.com/haskell-hvr/regex-base.git
|
|
||||||
tag: v0.96.0.1-r3
|
|
||||||
|
|
||||||
flag _regex-posix-clib
|
|
||||||
manual: False
|
|
||||||
default: False
|
|
||||||
description: Use <//hackage.haskell.org/package/regex-posix-clib regex-posix-clib> package (used by default on Windows)
|
|
||||||
|
|
||||||
library
|
|
||||||
hs-source-dirs: src
|
|
||||||
exposed-modules:
|
|
||||||
Text.Regex.Posix
|
|
||||||
Text.Regex.Posix.Wrap
|
|
||||||
Text.Regex.Posix.String
|
|
||||||
Text.Regex.Posix.Sequence
|
|
||||||
Text.Regex.Posix.ByteString
|
|
||||||
Text.Regex.Posix.ByteString.Lazy
|
|
||||||
|
|
||||||
other-modules:
|
|
||||||
Paths_regex_posix
|
|
||||||
|
|
||||||
c-sources: cbits/myfree.c
|
|
||||||
include-dirs: cbits
|
|
||||||
|
|
||||||
if flag(_regex-posix-clib) || os(windows)
|
|
||||||
build-depends: regex-posix-clib == 2.7.*
|
|
||||||
-- Otherwise, use POSIX.2 regex implementation from @libc@.
|
|
||||||
-- However, Windows/msys2 doesn't provide a POSIX.2 regex impl in its @libc@.
|
|
||||||
|
|
||||||
default-language: Haskell2010
|
|
||||||
default-extensions:
|
|
||||||
MultiParamTypeClasses
|
|
||||||
FunctionalDependencies
|
|
||||||
ForeignFunctionInterface
|
|
||||||
GeneralizedNewtypeDeriving
|
|
||||||
FlexibleContexts
|
|
||||||
TypeSynonymInstances
|
|
||||||
-- ^ for ghc 7.0, subsumed under FlexibleInstances later
|
|
||||||
FlexibleInstances
|
|
||||||
|
|
||||||
build-depends: regex-base == 0.94.*
|
|
||||||
, base >= 4.3 && < 5
|
|
||||||
, containers >= 0.4 && < 0.8
|
|
||||||
, bytestring >= 0.9 && < 0.13
|
|
||||||
, array >= 0.3 && < 0.6
|
|
||||||
|
|
||||||
if impl(ghc < 8)
|
|
||||||
build-depends: fail == 4.9.*
|
|
||||||
|
|
||||||
-- Warnings
|
|
||||||
|
|
||||||
ghc-options:
|
|
||||||
-Wall
|
|
||||||
-fno-warn-unused-imports
|
|
||||||
|
|
||||||
if impl(ghc >= 8)
|
|
||||||
ghc-options:
|
|
||||||
-Wcompat
|
|
Reference in New Issue
Block a user