[Git][haskell-team/package-plan][master] 5 commits: Remove superfluous curry-frontend from additional-cabals

Ilias Tsitsimpis gitlab at salsa.debian.org
Tue Nov 26 09:59:32 GMT 2019



Ilias Tsitsimpis pushed to branch master at Debian Haskell Group / package-plan


Commits:
1ff4c99b by Ilias Tsitsimpis at 2019-11-26T09:08:56Z
Remove superfluous curry-frontend from additional-cabals

- - - - -
6748f1a0 by Ilias Tsitsimpis at 2019-11-26T09:09:52Z
Mark ShellCheck as ahead

- - - - -
724664d8 by Ilias Tsitsimpis at 2019-11-26T09:10:23Z
Update git-annex to v7.20191114

- - - - -
327af762 by Ilias Tsitsimpis at 2019-11-26T09:52:16Z
Remove unused hspec-megaparsec

- - - - -
d845ecd3 by Ilias Tsitsimpis at 2019-11-26T09:52:33Z
Patch lambdabot-core to remove dep to network-bsd

- - - - -


4 changed files:

- − additional-cabals/curry-frontend-1.0.4.cabal
- packages.txt
- + patches/lambdabot-core/5.2/no-network-bsd
- + patches/lambdabot-core/5.2/series


Changes:

=====================================
additional-cabals/curry-frontend-1.0.4.cabal deleted
=====================================
@@ -1,166 +0,0 @@
-Name:          curry-frontend
-Version:       1.0.4
-Cabal-Version: >= 1.10
-Synopsis:      Compile the functional logic language Curry to several
-               intermediate formats
-Description:   The Curry front end consists of the executable program
-               "curry-frontend".
-               It is used by various backends to compile Curry programs to
-               an intermediate representation.
-               The code is a stripped-down version of an early version of
-               the Muenster Curry Compiler
-               (<http://danae.uni-muenster.de/curry/>)
-               which has been extended to produce different intermediate
-               representations.
-               For further information, please check
-               <http://curry-language.org>
-Category:      Language
-License:       BSD3
-License-File:  LICENSE
-Author:        Wolfgang Lux, Martin Engelke, Bernd Brassel, Holger Siegel,
-               Bjoern Peemoeller, Finn Teegen
-Maintainer:    fte at informatik.uni-kiel.de
-Homepage:      http://curry-language.org
-Build-Type:    Simple
-Stability:     experimental
-
-Extra-Source-Files: LIESMICH CHANGELOG.md
-
-Data-Dir:   data
-Data-Files: currysource.css
-
-source-repository head
-  type:     git
-  location: https://git.ps.informatik.uni-kiel.de/curry/curry-frontend.git
-
-Flag network-uri
-   description: Get Network.URI from the network-uri package
-   default: True
-
-Library
-  hs-source-dirs:   src
-  default-language:  Haskell2010
-  Build-Depends:
-      base == 4.*
-    , containers
-    , curry-base == 1.1.0
-    , directory
-    , extra >= 1.4.6
-    , filepath
-    , mtl
-    , pretty
-    , process
-    , set-extra
-    , transformers
-  if flag(network-uri)
-    build-depends: network-uri >= 2.6
-  else
-    build-depends: network < 2.6
-  Exposed-Modules:
-      Base.AnnotExpr
-    , Base.CurryKinds
-    , Base.CurryTypes
-    , Base.Expr
-    , Base.KindSubst
-    , Base.Kinds
-    , Base.Messages
-    , Base.NestEnv
-    , Base.PrettyKinds
-    , Base.PrettyTypes
-    , Base.SCC
-    , Base.Subst
-    , Base.TopEnv
-    , Base.TypeExpansion
-    , Base.TypeSubst
-    , Base.Types
-    , Base.Typing
-    , Base.Utils
-    , Checks
-    , Checks.DeriveCheck
-    , Checks.ExportCheck
-    , Checks.ExtensionCheck
-    , Checks.ImportSyntaxCheck
-    , Checks.InstanceCheck
-    , Checks.InterfaceCheck
-    , Checks.InterfaceSyntaxCheck
-    , Checks.KindCheck
-    , Checks.PrecCheck
-    , Checks.SyntaxCheck
-    , Checks.TypeCheck
-    , Checks.TypeSyntaxCheck
-    , Checks.WarnCheck
-    , CompilerEnv
-    , CompilerOpts
-    , CondCompile
-    , CurryBuilder
-    , CurryDeps
-    , Env.Class
-    , Env.Instance
-    , Env.Interface
-    , Env.ModuleAlias
-    , Env.OpPrec
-    , Env.Type
-    , Env.TypeConstructor
-    , Env.Value
-    , Exports
-    , Files.CymakePath
-    , Generators
-    , Generators.GenAbstractCurry
-    , Generators.GenFlatCurry
-    , Generators.GenTypedFlatCurry
-    , Generators.GenTypeAnnotatedFlatCurry
-    , Html.CurryHtml
-    , Html.SyntaxColoring
-    , IL
-    , IL.Pretty
-    , IL.ShowModule
-    , IL.Type
-    , IL.Typing
-    , Imports
-    , Interfaces
-    , Modules
-    , TokenStream
-    , Transformations
-    , Transformations.CaseCompletion
-    , Transformations.CurryToIL
-    , Transformations.Derive
-    , Transformations.Desugar
-    , Transformations.Dictionary
-    , Transformations.Lift
-    , Transformations.Newtypes
-    , Transformations.Qual
-    , Transformations.Simplify
-  Other-Modules:
-    Paths_curry_frontend
-  ghc-options:       -Wall -fno-warn-orphans
-
-Executable curry-frontend
-  hs-source-dirs: src
-  Main-is:        cymake.hs
-  default-language:  Haskell2010
-  Build-Depends:
-      base == 4.*
-    , containers
-    , curry-base == 1.1.0
-    , curry-frontend
-    , directory
-    , extra >= 1.4.6
-    , filepath
-    , mtl
-    , pretty
-    , process
-    , set-extra
-    , transformers
-  if flag(network-uri)
-    build-depends: network-uri >= 2.6
-  else
-    build-depends: network < 2.6
-  ghc-options: -Wall -fno-warn-orphans
-
-Test-Suite test-frontend
-  type:           detailed-0.9
-  hs-source-dirs: test
-  default-language:  Haskell2010
-  test-module:    TestFrontend
-  build-depends:  base == 4.*, Cabal >= 1.20, curry-base == 1.1.0
-    , curry-frontend, filepath


=====================================
packages.txt
=====================================
@@ -94,7 +94,7 @@ call-stack 0.1.0 notest
 carettah 0.5.1 binary
 case-insensitive 1.2.0.11
 cassava 0.5.1.0 notest # cassava-0.5.1.0:test => QuickCheck==2.10.*
-cassava-megaparsec 2.0.0
+cassava-megaparsec 2.0.0 notest # avoid dependency on hspec-megaparsec
 categories 1.0.7 key
 cborg 0.2.1.0
 cborg-json 0.2.1.0
@@ -327,7 +327,7 @@ gi-gtk 3.0.27
 gi-gtk-hs 0.3.6.3
 gio 0.13.6.0
 gi-pango 1.0.19
-git-annex 7.20191024 binary key -f-ConcurrentOutput
+git-annex 7.20191114 binary key -f-ConcurrentOutput
 git-lfs 1.1.0
 githash 0.1.3.1
 github 0.20 ignore # BROKEN:
@@ -447,7 +447,6 @@ hspec-contrib 0.5.1
 hspec-core 2.6.1 notest
 hspec-discover 2.6.1 notest binary
 hspec-expectations 0.8.2 notest
-hspec-megaparsec 2.0.0
 hspec-meta 2.6.0 avoid
 hspec-smallcheck 0.5.2
 hspec-wai 0.9.2
@@ -627,7 +626,6 @@ neat-interpolation 0.3.2.4 notest # Disable tests to avoid dep on HTF
 nettle 0.3.0
 netwire 5.0.3 key
 network 2.8.0.1
-network-bsd 2.8.0.0
 network-byte-order 0.0.0.0
 network-conduit 1.1.0 avoid
 network-conduit-tls 1.3.2
@@ -819,7 +817,7 @@ SHA 1.6.4.4
 shake 0.17.9
 shakespeare 2.0.20
 shakespeare-text 1.1.0 avoid
-ShellCheck 0.7.0 binary=shellcheck key
+ShellCheck 0.7.0 binary=shellcheck key ahead
 shell-conduit 4.7.0
 shelltestrunner 1.9 binary key notest
 shelly 1.8.1 ahead


=====================================
patches/lambdabot-core/5.2/no-network-bsd
=====================================
@@ -0,0 +1,12 @@
+Index: b/lambdabot-core.cabal
+===================================================================
+--- a/lambdabot-core.cabal
++++ b/lambdabot-core.cabal
+@@ -85,7 +85,6 @@ library
+                         monad-control           >= 1.0,
+                         mtl                     >= 2,
+                         network                 >= 2.7 && < 3.2,
+-                        network-bsd             >= 2.7 && < 2.9,
+                         parsec                  >= 3,
+                         prim-uniq               == 0.1.*,
+                         random                  >= 1,


=====================================
patches/lambdabot-core/5.2/series
=====================================
@@ -0,0 +1 @@
+no-network-bsd



View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/compare/d4cee431fd35bdce35bb9eb1e7b728a971455729...d845ecd361e5562104e57d2d07a1cce2758b9a7c

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/compare/d4cee431fd35bdce35bb9eb1e7b728a971455729...d845ecd361e5562104e57d2d07a1cce2758b9a7c
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-haskell-commits/attachments/20191126/02974e7f/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list