LGTM

On Thu, Jun 9, 2016 at 10:13 PM, Iustin Pop <ius...@k1024.org> wrote:

> From: Iustin Pop <ius...@google.com>
>
> In Haskell world (at least as far as I know), dependencies of type "<=
> A.B.C"
> are rarely used, because incrementing the fourth version component (i.e. D
> in
> A.B.C.D) doesn't change the API, hence this form is overly restrictive.
>
> Fixup the cabal dependencies by changing all "<= A.B.C" into "< A.B.(C+1)".
> This allows building/configuring on latest Debian unstable.
>
> Signed-off-by: Iustin Pop <ius...@google.com>
> ---
>  cabal/ganeti.template.cabal | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/cabal/ganeti.template.cabal b/cabal/ganeti.template.cabal
> index b619a85..bf8aeed 100644
> --- a/cabal/ganeti.template.cabal
> +++ b/cabal/ganeti.template.cabal
> @@ -54,7 +54,7 @@ library
>      , transformers                  >= 0.3.0.0
>      , unix                          >= 2.5.1.0
>
> -    , attoparsec                    >= 0.10.1.1   && <= 0.13.0.1
> +    , attoparsec                    >= 0.10.1.1   && < 0.13.1
>      , base64-bytestring             >= 1.0.0.1    && < 1.1
>      , case-insensitive              >= 0.4.0.1    && < 1.3
>      , Crypto                        >= 4.2.4      && < 4.3
> @@ -62,7 +62,7 @@ library
>      , hinotify                      >= 0.3.2      && < 0.4
>      , hslogger                      >= 1.1.4      && < 1.3
>      , json                          >= 0.5        && < 1.0
> -    , lens                          >= 3.10       && <= 4.13.1
> +    , lens                          >= 3.10       && < 4.13.2
>      , lifted-base                   >= 0.2.0.3    && < 0.3
>      , monad-control                 >= 0.3.1.3    && < 1.1
>      , MonadCatchIO-transformers     >= 0.3.0.0    && < 0.4
> @@ -71,8 +71,8 @@ library
>      , regex-pcre                    >= 0.94.2     && < 0.95
>      , temporary                     >= 1.1.2.3    && < 1.3
>      , transformers-base             >= 0.4.1      && < 0.5
> -    , utf8-string                   >= 0.3.7      && <= 1.0.1.1
> -    , zlib                          >= 0.5.3.3    && <= 0.6.1.1
> +    , utf8-string                   >= 0.3.7      && < 1.0.2
> +    , zlib                          >= 0.5.3.3    && < 0.6.2
>
>      -- Executables:
>      -- , happy
> @@ -81,8 +81,8 @@ library
>
>    if flag(htest)
>      build-depends:
> -        HUnit                         >= 1.2.4.2    && <= 1.3.1.0
> -      , QuickCheck                    >= 2.4.2      && <= 2.8.2
> +        HUnit                         >= 1.2.4.2    && < 1.3.2
> +      , QuickCheck                    >= 2.4.2      && < 2.8.3
>        , test-framework                >= 0.6        && < 0.9
>        , test-framework-hunit          >= 0.2.7      && < 0.4
>        , test-framework-quickcheck2    >= 0.2.12.1   && < 0.4
> --
> 2.8.1
>
>

Reply via email to