[Git][haskell-team/package-plan][master] 2 commits: Update curry-frontend to 2.0.0

Ilias Tsitsimpis gitlab at salsa.debian.org
Wed Feb 10 15:36:05 GMT 2021



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


Commits:
330a6d08 by Ilias Tsitsimpis at 2021-02-10T17:35:21+02:00
Update curry-frontend to 2.0.0

- - - - -
6063498d by Ilias Tsitsimpis at 2021-02-10T17:35:21+02:00
Mark xmobar as binary

- - - - -


2 changed files:

- + additional-cabals/curry-frontend-2.0.0.cabal
- packages.txt


Changes:

=====================================
additional-cabals/curry-frontend-2.0.0.cabal
=====================================
@@ -0,0 +1,207 @@
+name:          curry-frontend
+version:       2.0.0
+cabal-version: 2.0
+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: README.md 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
+
+library
+  hs-source-dirs:   src
+  default-language: Haskell2010
+  other-extensions: CPP, TemplateHaskell
+  ghc-options:      -Wall
+  build-depends:
+      base >= 4.11
+    , template-haskell >= 2.10
+    , extra >= 1.4.6
+    , transformers
+    , mtl
+    , directory >= 1.2.0.1
+    , filepath
+    , file-embed
+    , containers
+    , set-extra
+    , bytestring >= 0.10
+    , process
+    , network-uri >= 2.6
+    , pretty
+    , binary
+    , time
+    , parsec
+  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
+    , Curry.AbstractCurry
+    , Curry.AbstractCurry.Files
+    , Curry.AbstractCurry.Type
+    , Curry.Base.Ident
+    , Curry.Base.LexComb
+    , Curry.Base.LLParseComb
+    , Curry.Base.Message
+    , Curry.Base.Monad
+    , Curry.Base.Position
+    , Curry.Base.Pretty
+    , Curry.Base.Span
+    , Curry.Base.SpanInfo
+    , Curry.CondCompile.Parser
+    , Curry.CondCompile.Transform
+    , Curry.CondCompile.Type
+    , Curry.Files.Filenames
+    , Curry.Files.PathUtils
+    , Curry.Files.Unlit
+    , Curry.FlatCurry
+    , Curry.FlatCurry.Files
+    , Curry.FlatCurry.Goodies
+    , Curry.FlatCurry.InterfaceEquivalence
+    , Curry.FlatCurry.Pretty
+    , Curry.FlatCurry.Type
+    , Curry.FlatCurry.Typeable
+    , Curry.FlatCurry.Annotated.Goodies
+    , Curry.FlatCurry.Annotated.Type
+    , Curry.FlatCurry.Typed.Goodies
+    , Curry.FlatCurry.Typed.Type
+    , Curry.Syntax
+    , Curry.Syntax.Extension
+    , Curry.Syntax.InterfaceEquivalence
+    , Curry.Syntax.Lexer
+    , Curry.Syntax.Parser
+    , Curry.Syntax.Pretty
+    , Curry.Syntax.ShowModule
+    , Curry.Syntax.Type
+    , Curry.Syntax.Utils
+    , 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.GenAnnotatedFlatCurry
+    , 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
+    , Paths_curry_frontend
+  autogen-modules:
+      Paths_curry_frontend
+
+executable curry-frontend
+  hs-source-dirs:   app
+  main-is:          cymake.hs
+  default-language: Haskell2010
+  ghc-options:      -Wall
+  build-depends:
+      base >= 4.11
+    , curry-frontend
+
+test-suite test-frontend
+  type:             detailed-0.9
+  hs-source-dirs:   test
+  test-module:      TestFrontend
+  default-language: Haskell2010
+  other-extensions: CPP, TemplateHaskell
+  ghc-options:      -Wall
+  build-depends:
+      base >= 4.11
+    , Cabal >= 1.20
+    , template-haskell >= 2.10
+    , extra >= 1.4.6
+    , transformers
+    , mtl
+    , directory >= 1.2.0.1
+    , filepath
+    , file-embed
+    , containers
+    , set-extra
+    , bytestring >= 0.10
+    , process
+    , network-uri >= 2.6
+    , pretty
+    , curry-frontend


=====================================
packages.txt
=====================================
@@ -182,7 +182,7 @@ csv 0.1.2
 csv-conduit 0.7.1.0
 curl 1.3.8
 curry-base 1.1.1
-curry-frontend 1.0.4
+curry-frontend 2.0.0
 czipwith 1.0.1.3
 darcs 2.14.5 key binary=darcs -fpkgconfig -fcurl -f-http -fterminfo notest
 darcs-monitor 0.4.2 binary=darcs-monitor key
@@ -1093,7 +1093,7 @@ xml-helpers 1.0.0
 xmlhtml 0.2.5.2
 xml-html-qq 0.1.0.1
 xml-types 0.3.8
-xmobar 0.36
+xmobar 0.36 binary
 xmonad 0.15 key
 xmonad-contrib 0.16 key
 xmonad-extras 0.15.2



View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/-/compare/741bbce67065a08abff39be49f811045e28eeab1...6063498d859d427b2311ed7d6ad2d30e91b31f9d

-- 
View it on GitLab: https://salsa.debian.org/haskell-team/package-plan/-/compare/741bbce67065a08abff39be49f811045e28eeab1...6063498d859d427b2311ed7d6ad2d30e91b31f9d
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/20210210/41665cf2/attachment-0001.html>


More information about the Pkg-haskell-commits mailing list