diff --git a/ghc-language-c.changes b/ghc-language-c.changes index 239b0f0..ddf808e 100644 --- a/ghc-language-c.changes +++ b/ghc-language-c.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Sat Jan 20 15:44:41 UTC 2024 - Peter Simons + +- Update language-c to version 0.9.3. + Upstream has renamed and modified the change log file(s) in this + release. Unfortunately, the automatic updater cannot reliable + determine relevant entries for this release. + ------------------------------------------------------------------- Tue Nov 7 17:32:33 UTC 2023 - Peter Simons diff --git a/ghc-language-c.spec b/ghc-language-c.spec index 61166da..ce4ccc4 100644 --- a/ghc-language-c.spec +++ b/ghc-language-c.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-language-c # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,13 +20,12 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.9.2 +Version: 0.9.3 Release: 0 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 @@ -86,7 +85,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep %autosetup -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build @@ -107,7 +105,7 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %license LICENSE %files devel -f %{name}-devel.files -%doc AUTHORS AUTHORS.c2hs ChangeLog README +%doc AUTHORS AUTHORS.c2hs ChangeLog.md README.md %files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files %license LICENSE diff --git a/language-c-0.9.2.tar.gz b/language-c-0.9.2.tar.gz deleted file mode 100644 index 3e477c2..0000000 --- a/language-c-0.9.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b2310d2fda16df72e9f8f63ef18bec2e09ae3aff5891dc948c3d9cb72cef6cb3 -size 125202 diff --git a/language-c-0.9.3.tar.gz b/language-c-0.9.3.tar.gz new file mode 100644 index 0000000..5c0f1d8 --- /dev/null +++ b/language-c-0.9.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01713fb6c2174fb043d62237019d5c4f0e1b7deb185735c4b51ce97fb86ce253 +size 125062 diff --git a/language-c.cabal b/language-c.cabal deleted file mode 100644 index f3d5823..0000000 --- a/language-c.cabal +++ /dev/null @@ -1,124 +0,0 @@ -Name: language-c -Version: 0.9.2 -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.4.*, GHC == 8.6.*, GHC == 8.8.*, GHC == 8.10.*, GHC == 9.0.*, GHC == 9.2.* - -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.6, - 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 - - if flag(useByteStrings) - Build-Depends: bytestring >= 0.9.0 - else - cpp-options: -DNO_BYTESTRING - - if flag(iecFpExtension) - cpp-options: -DIEC_60559_TYPES_EXT - - 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