From 28ee3f6bb2c89e71ef830762fff37e0e52bdcececc4097f06f7ec770b4317f3a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 9 Feb 2022 13:44:54 +0000 Subject: [PATCH 1/2] osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-language-c revision:14, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-language-c?expand=0&rev=12 --- ghc-language-c.changes | 6 ++ ghc-language-c.spec | 4 +- language-c.cabal | 131 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 140 insertions(+), 1 deletion(-) create mode 100644 language-c.cabal diff --git a/ghc-language-c.changes b/ghc-language-c.changes index 26a6a81..93655be 100644 --- a/ghc-language-c.changes +++ b/ghc-language-c.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Feb 8 12:04:49 UTC 2022 - psimons@suse.com + +- Update language-c to version 0.9.0.1 revision 1. + Upstream has revised the Cabal build instructions on Hackage. + ------------------------------------------------------------------- Sun Dec 20 13:15:08 UTC 2020 - psimons@suse.com diff --git a/ghc-language-c.spec b/ghc-language-c.spec index 0294bc8..5f859c5 100644 --- a/ghc-language-c.spec +++ b/ghc-language-c.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-language-c # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,6 +25,7 @@ Summary: Analysis and generation of C code License: BSD-3-Clause URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: alex BuildRequires: ghc-Cabal-devel BuildRequires: ghc-array-devel @@ -57,6 +58,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep %autosetup -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal find . -type f -exec chmod -x {} + %build diff --git a/language-c.cabal b/language-c.cabal new file mode 100644 index 0000000..d003b7c --- /dev/null +++ b/language-c.cabal @@ -0,0 +1,131 @@ +Name: language-c +Version: 0.9.0.1 +x-revision: 1 +Cabal-Version: >= 1.10 +Build-Type: Simple +License: BSD3 +License-File: LICENSE +Copyright: LICENSE +Author: AUTHORS +Maintainer: language.c@monoid.al +Stability: experimental +Homepage: http://visq.github.io/language-c/ +Bug-reports: https://github.com/visq/language-c/issues/ + +Synopsis: Analysis and generation of C code +Description: Language C is a haskell library for the analysis and generation of C code. + It features a complete, well tested parser and pretty printer for all of C99 and a large + set of C11 and clang/GNU extensions. +Category: Language +Tested-With: GHC == 8.0.*, GHC == 8.2.*, GHC == 8.4.*, GHC == 8.6.*, GHC == 8.8.*, GHC == 8.10.* + +Extra-Source-Files: AUTHORS AUTHORS.c2hs ChangeLog README + src/Language/C/Parser/Lexer.x + src/Language/C/Parser/Parser.y + +Source-Repository head + type: git + location: https://github.com/visq/language-c.git + +Flag useByteStrings + Description: Use ByteString as InputStream datatype + Default: True +Flag allWarnings + Description: Turn on all warnings for building (development) + Default: False +Flag iecFpExtension + Description: Support IEC 60559 floating point extension (defines _Float128) + Default: True +Library + default-extensions: CPP, DeriveDataTypeable, DeriveGeneric, PatternGuards, BangPatterns, ExistentialQuantification, GeneralizedNewtypeDeriving, ScopedTypeVariables + Build-Depends: base >= 4.8 && < 5, + array, + containers >= 0.3, + deepseq >= 1.4.0.0 && < 1.5, + directory, + filepath, + mtl, + pretty < 1.2.0, + process + if flag(allWarnings) + if impl(ghc >= 8.0) + ghc-options: -Wall -Wno-redundant-constraints + else + ghc-options: -Wall + + Build-Depends: + base >=4 && <5 + + if flag(useByteStrings) + Build-Depends: bytestring >= 0.9.0 + else + cpp-options: -DNO_BYTESTRING + + if flag(iecFpExtension) + cpp-options: -DIEC_60559_TYPES_EXT + + -- GHC.Generics lived in `ghc-prim` for GHC 7.2 & GHC 7.4 + if impl(ghc == 7.4.*) + build-depends: ghc-prim == 0.2.* + + Build-Tools: happy, alex + + Hs-Source-Dirs: src + Exposed-Modules: + -- top-level + Language.C + -- data + Language.C.Data + Language.C.Data.Position + Language.C.Data.Ident + Language.C.Data.Error + Language.C.Data.Name + Language.C.Data.Node + Language.C.Data.InputStream + -- syntax + Language.C.Syntax + Language.C.Syntax.AST + Language.C.Syntax.Constants + Language.C.Syntax.Ops + Language.C.Syntax.Utils + -- parser + Language.C.Parser + -- pretty printer + Language.C.Pretty + -- system + Language.C.System.Preprocess + Language.C.System.GCC + -- analysis [experimental] + Language.C.Analysis + Language.C.Analysis.ConstEval + Language.C.Analysis.Builtins + Language.C.Analysis.SemError + Language.C.Analysis.SemRep + Language.C.Analysis.DefTable + Language.C.Analysis.TravMonad + Language.C.Analysis.AstAnalysis + Language.C.Analysis.DeclAnalysis + Language.C.Analysis.Debug + Language.C.Analysis.TypeCheck + Language.C.Analysis.TypeConversions + Language.C.Analysis.TypeUtils + Language.C.Analysis.NameSpaceMap + Language.C.Analysis.MachineDescs + -- semrep -> code [alpha] + Language.C.Analysis.Export + Other-Modules: + Language.C.Data.RList + -- parser implementation + Language.C.Parser.Builtin + Language.C.Parser.Lexer + Language.C.Parser.ParserMonad + Language.C.Parser.Tokens + Language.C.Parser.Parser + default-language: Haskell2010 + +-- test description +Test-Suite language-c-harness + type: exitcode-stdio-1.0 + main-is: test/harness/run-harness.hs + build-depends: base, directory, process, filepath + default-language: Haskell2010 From 92772be6f8866d35116759d818e86003120f50caf75d646e83a986425604c7ea Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Feb 2022 02:02:19 +0000 Subject: [PATCH 2/2] osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-language-c revision:15, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-language-c?expand=0&rev=13 --- ghc-language-c.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-language-c.changes b/ghc-language-c.changes index 93655be..1c97751 100644 --- a/ghc-language-c.changes +++ b/ghc-language-c.changes @@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Tue Feb 8 12:04:49 UTC 2022 - psimons@suse.com +Sat Feb 5 00:26:26 UTC 2022 - Peter Simons - Update language-c to version 0.9.0.1 revision 1. Upstream has revised the Cabal build instructions on Hackage.