ghc-aeson package is retired on branch c10s for BAKERY-412
This commit is contained in:
parent
54bff12153
commit
c54d49c5b5
25
.gitignore
vendored
25
.gitignore
vendored
@ -1,25 +0,0 @@
|
|||||||
/aeson-0.6.0.0.tar.gz
|
|
||||||
/aeson-0.6.0.2.tar.gz
|
|
||||||
/aeson-0.6.1.0.tar.gz
|
|
||||||
/aeson-0.6.2.1.tar.gz
|
|
||||||
/aeson-0.8.0.2.tar.gz
|
|
||||||
/aeson-1.0.2.1.tar.gz
|
|
||||||
/time-locale-compat-0.1.1.3.tar.gz
|
|
||||||
/aeson-1.2.3.0.tar.gz
|
|
||||||
/aeson-1.2.4.0.tar.gz
|
|
||||||
/aeson-1.3.1.1.tar.gz
|
|
||||||
/aeson-1.4.2.0.tar.gz
|
|
||||||
/aeson-1.4.6.0.tar.gz
|
|
||||||
/aeson-1.4.7.1.tar.gz
|
|
||||||
/aeson-1.5.5.1.tar.gz
|
|
||||||
/aeson-1.5.6.0.tar.gz
|
|
||||||
/aeson-2.0.3.0.tar.gz
|
|
||||||
/OneTuple-0.3.1.tar.gz
|
|
||||||
/semialign-1.2.0.1.tar.gz
|
|
||||||
/witherable-0.4.2.tar.gz
|
|
||||||
/indexed-traversable-instances-0.1.1.1.tar.gz
|
|
||||||
/aeson-2.1.2.1.tar.gz
|
|
||||||
/OneTuple-0.4.1.1.tar.gz
|
|
||||||
/semialign-1.3.tar.gz
|
|
||||||
/indexed-traversable-instances-0.1.1.2.tar.gz
|
|
||||||
/generically-0.1.1.tar.gz
|
|
@ -1,240 +0,0 @@
|
|||||||
name: aeson
|
|
||||||
version: 2.1.2.1
|
|
||||||
x-revision: 3
|
|
||||||
license: BSD3
|
|
||||||
license-file: LICENSE
|
|
||||||
category: Text, Web, JSON
|
|
||||||
copyright:
|
|
||||||
(c) 2011-2016 Bryan O'Sullivan
|
|
||||||
(c) 2011 MailRank, Inc.
|
|
||||||
|
|
||||||
author: Bryan O'Sullivan <bos@serpentine.com>
|
|
||||||
maintainer: Adam Bergmark <adam@bergmark.nl>
|
|
||||||
stability: experimental
|
|
||||||
tested-with:
|
|
||||||
GHC ==8.0.2
|
|
||||||
|| ==8.2.2
|
|
||||||
|| ==8.4.4
|
|
||||||
|| ==8.6.5
|
|
||||||
|| ==8.8.4
|
|
||||||
|| ==8.10.7
|
|
||||||
|| ==9.0.2
|
|
||||||
|| ==9.2.7
|
|
||||||
|| ==9.4.4
|
|
||||||
|| ==9.6.1
|
|
||||||
|
|
||||||
synopsis: Fast JSON parsing and encoding
|
|
||||||
cabal-version: >=1.10
|
|
||||||
homepage: https://github.com/haskell/aeson
|
|
||||||
bug-reports: https://github.com/haskell/aeson/issues
|
|
||||||
build-type: Simple
|
|
||||||
description:
|
|
||||||
A JSON parsing and encoding library optimized for ease of use
|
|
||||||
and high performance.
|
|
||||||
.
|
|
||||||
To get started, see the documentation for the @Data.Aeson@ module
|
|
||||||
below.
|
|
||||||
.
|
|
||||||
(A note on naming: in Greek mythology, Aeson was the father of Jason.)
|
|
||||||
|
|
||||||
extra-source-files:
|
|
||||||
*.yaml
|
|
||||||
benchmarks/json-data/*.json
|
|
||||||
cbits/*.c
|
|
||||||
changelog.md
|
|
||||||
README.markdown
|
|
||||||
src-ffi/Data/Aeson/Parser/*.hs
|
|
||||||
src-pure/Data/Aeson/Parser/*.hs
|
|
||||||
tests/golden/*.expected
|
|
||||||
tests/JSONTestSuite/results/*.tok
|
|
||||||
tests/JSONTestSuite/results/*.txt
|
|
||||||
tests/JSONTestSuite/test_parsing/*.json
|
|
||||||
tests/JSONTestSuite/test_transform/*.json
|
|
||||||
|
|
||||||
flag cffi
|
|
||||||
description:
|
|
||||||
Controls whether to include c-ffi bits or pure haskell. Default to False for security.
|
|
||||||
|
|
||||||
default: False
|
|
||||||
manual: True
|
|
||||||
|
|
||||||
flag ordered-keymap
|
|
||||||
description: Use ordered @Data.Map.Strict@ for KeyMap implementation.
|
|
||||||
default: True
|
|
||||||
manual: True
|
|
||||||
|
|
||||||
library
|
|
||||||
default-language: Haskell2010
|
|
||||||
hs-source-dirs: src attoparsec-iso8601/src
|
|
||||||
exposed-modules:
|
|
||||||
Data.Aeson
|
|
||||||
Data.Aeson.Decoding
|
|
||||||
Data.Aeson.Decoding.ByteString
|
|
||||||
Data.Aeson.Decoding.ByteString.Lazy
|
|
||||||
Data.Aeson.Decoding.Tokens
|
|
||||||
Data.Aeson.Encoding
|
|
||||||
Data.Aeson.Encoding.Internal
|
|
||||||
Data.Aeson.Internal
|
|
||||||
Data.Aeson.Internal.Time
|
|
||||||
Data.Aeson.Key
|
|
||||||
Data.Aeson.KeyMap
|
|
||||||
Data.Aeson.Parser
|
|
||||||
Data.Aeson.Parser.Internal
|
|
||||||
Data.Aeson.QQ.Simple
|
|
||||||
Data.Aeson.Text
|
|
||||||
Data.Aeson.TH
|
|
||||||
Data.Aeson.Types
|
|
||||||
|
|
||||||
other-modules:
|
|
||||||
Data.Aeson.Decoding.Internal
|
|
||||||
Data.Aeson.Encoding.Builder
|
|
||||||
Data.Aeson.Internal.ByteString
|
|
||||||
Data.Aeson.Internal.Functions
|
|
||||||
Data.Aeson.Internal.Integer
|
|
||||||
Data.Aeson.Internal.Text
|
|
||||||
Data.Aeson.Internal.TH
|
|
||||||
Data.Aeson.Internal.Word8
|
|
||||||
Data.Aeson.Parser.Time
|
|
||||||
Data.Aeson.Parser.Unescape
|
|
||||||
Data.Aeson.Types.Class
|
|
||||||
Data.Aeson.Types.FromJSON
|
|
||||||
Data.Aeson.Types.Generic
|
|
||||||
Data.Aeson.Types.Internal
|
|
||||||
Data.Aeson.Types.ToJSON
|
|
||||||
Data.Attoparsec.Time
|
|
||||||
Data.Attoparsec.Time.Internal
|
|
||||||
|
|
||||||
-- GHC bundled libs
|
|
||||||
build-depends:
|
|
||||||
base >=4.9.0.0 && <5
|
|
||||||
, bytestring >=0.10.8.1 && <0.12
|
|
||||||
, containers >=0.5.7.1 && <0.7
|
|
||||||
, deepseq >=1.4.2.0 && <1.5
|
|
||||||
, exceptions >=0.10.4 && <0.11
|
|
||||||
, ghc-prim >=0.5.0.0 && <0.11
|
|
||||||
, template-haskell >=2.11.0.0 && <2.21
|
|
||||||
, text >=1.2.3.0 && <1.3 || >=2.0 && <2.1
|
|
||||||
, time >=1.6.0.1 && <1.13
|
|
||||||
|
|
||||||
-- Compat
|
|
||||||
build-depends:
|
|
||||||
base-compat-batteries >=0.10.0 && <0.14
|
|
||||||
, generically >=0.1 && <0.2
|
|
||||||
, time-compat >=1.9.6 && <1.10
|
|
||||||
|
|
||||||
if !impl(ghc >=8.6)
|
|
||||||
build-depends: contravariant >=1.4.1 && <1.6
|
|
||||||
|
|
||||||
-- Other dependencies
|
|
||||||
build-depends:
|
|
||||||
attoparsec >=0.14.2 && <0.15
|
|
||||||
, data-fix >=0.3.2 && <0.4
|
|
||||||
, dlist >=0.8.0.4 && <1.1
|
|
||||||
, hashable >=1.3.5.0 && <1.5
|
|
||||||
, indexed-traversable >=0.1.2 && <0.2
|
|
||||||
, OneTuple >=0.3.1 && <0.5
|
|
||||||
, primitive >=0.7.3.0 && <0.9
|
|
||||||
, QuickCheck >=2.14.2 && <2.15
|
|
||||||
, scientific >=0.3.7.0 && <0.4
|
|
||||||
, semialign >=1.2 && <1.4
|
|
||||||
, strict >=0.4 && <0.6
|
|
||||||
, tagged >=0.8.6 && <0.9
|
|
||||||
, text-short >=0.1.5 && <0.2
|
|
||||||
, th-abstraction >=0.3.0.0 && <0.6
|
|
||||||
, these >=1.1.1.1 && <1.3
|
|
||||||
, unordered-containers >=0.2.10.0 && <0.3
|
|
||||||
, uuid-types >=1.0.5 && <1.1
|
|
||||||
, vector >=0.12.0.1 && <0.14
|
|
||||||
, witherable >=0.4.2 && <0.5
|
|
||||||
|
|
||||||
ghc-options: -Wall
|
|
||||||
|
|
||||||
if (impl(ghcjs) || !flag(cffi))
|
|
||||||
hs-source-dirs: src-pure
|
|
||||||
other-modules: Data.Aeson.Parser.UnescapePure
|
|
||||||
|
|
||||||
else
|
|
||||||
c-sources: cbits/unescape_string.c
|
|
||||||
cpp-options: -DCFFI
|
|
||||||
hs-source-dirs: src-ffi
|
|
||||||
other-modules: Data.Aeson.Parser.UnescapeFFI
|
|
||||||
build-depends: text <2.0
|
|
||||||
|
|
||||||
if flag(ordered-keymap)
|
|
||||||
cpp-options: -DUSE_ORDEREDMAP=1
|
|
||||||
|
|
||||||
test-suite aeson-tests
|
|
||||||
default-language: Haskell2010
|
|
||||||
type: exitcode-stdio-1.0
|
|
||||||
hs-source-dirs: tests
|
|
||||||
main-is: Tests.hs
|
|
||||||
ghc-options: -Wall -threaded -rtsopts
|
|
||||||
other-modules:
|
|
||||||
DataFamilies.Encoders
|
|
||||||
DataFamilies.Instances
|
|
||||||
DataFamilies.Properties
|
|
||||||
DataFamilies.Types
|
|
||||||
Encoders
|
|
||||||
ErrorMessages
|
|
||||||
Functions
|
|
||||||
Instances
|
|
||||||
JSONTestSuite
|
|
||||||
Options
|
|
||||||
Properties
|
|
||||||
PropertyGeneric
|
|
||||||
PropertyKeys
|
|
||||||
PropertyQC
|
|
||||||
PropertyRoundTrip
|
|
||||||
PropertyRTFunctors
|
|
||||||
PropertyTH
|
|
||||||
PropUtils
|
|
||||||
Regression.Issue967
|
|
||||||
SerializationFormatSpec
|
|
||||||
Types
|
|
||||||
UnitTests
|
|
||||||
UnitTests.NullaryConstructors
|
|
||||||
|
|
||||||
build-depends:
|
|
||||||
aeson
|
|
||||||
, attoparsec
|
|
||||||
, base
|
|
||||||
, base-compat
|
|
||||||
, base-orphans >=0.5.3 && <0.10
|
|
||||||
, base16-bytestring
|
|
||||||
, bytestring
|
|
||||||
, containers
|
|
||||||
, data-fix
|
|
||||||
, Diff >=0.4 && <0.5
|
|
||||||
, directory
|
|
||||||
, dlist
|
|
||||||
, filepath
|
|
||||||
, generic-deriving >=1.10 && <1.15
|
|
||||||
, generically
|
|
||||||
, ghc-prim >=0.2
|
|
||||||
, hashable
|
|
||||||
, indexed-traversable
|
|
||||||
, integer-logarithms >=1 && <1.1
|
|
||||||
, OneTuple
|
|
||||||
, primitive
|
|
||||||
, QuickCheck >=2.14.2 && <2.15
|
|
||||||
, quickcheck-instances >=0.3.29 && <0.4
|
|
||||||
, scientific
|
|
||||||
, strict
|
|
||||||
, tagged
|
|
||||||
, tasty
|
|
||||||
, tasty-golden
|
|
||||||
, tasty-hunit
|
|
||||||
, tasty-quickcheck
|
|
||||||
, template-haskell
|
|
||||||
, text
|
|
||||||
, text-short
|
|
||||||
, these
|
|
||||||
, time
|
|
||||||
, time-compat
|
|
||||||
, unordered-containers
|
|
||||||
, uuid-types
|
|
||||||
, vector
|
|
||||||
|
|
||||||
source-repository head
|
|
||||||
type: git
|
|
||||||
location: git://github.com/haskell/aeson.git
|
|
1
dead.package
Normal file
1
dead.package
Normal file
@ -0,0 +1 @@
|
|||||||
|
ghc-aeson package is retired on branch c10s for BAKERY-412
|
371
ghc-aeson.spec
371
ghc-aeson.spec
@ -1,371 +0,0 @@
|
|||||||
# generated by cabal-rpm-2.1.2 --subpackage
|
|
||||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
|
||||||
|
|
||||||
%global pkg_name aeson
|
|
||||||
%global pkgver %{pkg_name}-%{version}
|
|
||||||
|
|
||||||
%global indexedtraversableinstances indexed-traversable-instances-0.1.1.2
|
|
||||||
%global OneTuple OneTuple-0.4.1.1
|
|
||||||
%global semialign semialign-1.3
|
|
||||||
%global witherable witherable-0.4.2
|
|
||||||
%global generically generically-0.1.1
|
|
||||||
%global subpkgs %{OneTuple} %{indexedtraversableinstances} %{semialign} %{witherable} %{generically}
|
|
||||||
|
|
||||||
# testsuite missing deps: quickcheck-instances tasty-golden
|
|
||||||
|
|
||||||
Name: ghc-%{pkg_name}
|
|
||||||
Version: 2.1.2.1
|
|
||||||
# can only be reset when all subpkgs bumped
|
|
||||||
Release: 3%{?dist}
|
|
||||||
Summary: Fast JSON parsing and encoding
|
|
||||||
|
|
||||||
License: BSD-3-Clause
|
|
||||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
|
||||||
# Begin cabal-rpm sources:
|
|
||||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
|
||||||
Source1: https://hackage.haskell.org/package/%{OneTuple}/%{OneTuple}.tar.gz
|
|
||||||
Source2: https://hackage.haskell.org/package/%{semialign}/%{semialign}.tar.gz
|
|
||||||
Source3: https://hackage.haskell.org/package/%{witherable}/%{witherable}.tar.gz
|
|
||||||
Source4: https://hackage.haskell.org/package/%{indexedtraversableinstances}/%{indexedtraversableinstances}.tar.gz
|
|
||||||
Source5: https://hackage.haskell.org/package/%{generically}/%{generically}.tar.gz
|
|
||||||
Source6: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal
|
|
||||||
# End cabal-rpm sources
|
|
||||||
|
|
||||||
# Begin cabal-rpm deps:
|
|
||||||
BuildRequires: ghc-Cabal-devel
|
|
||||||
BuildRequires: ghc-rpm-macros-extra
|
|
||||||
#BuildRequires: ghc-OneTuple-devel
|
|
||||||
BuildRequires: ghc-QuickCheck-devel
|
|
||||||
BuildRequires: ghc-attoparsec-devel
|
|
||||||
BuildRequires: ghc-base-devel
|
|
||||||
BuildRequires: ghc-base-compat-batteries-devel
|
|
||||||
BuildRequires: ghc-bytestring-devel
|
|
||||||
BuildRequires: ghc-containers-devel
|
|
||||||
BuildRequires: ghc-data-fix-devel
|
|
||||||
BuildRequires: ghc-deepseq-devel
|
|
||||||
BuildRequires: ghc-dlist-devel
|
|
||||||
BuildRequires: ghc-exceptions-devel
|
|
||||||
#BuildRequires: ghc-generically-devel
|
|
||||||
BuildRequires: ghc-hashable-devel
|
|
||||||
BuildRequires: ghc-indexed-traversable-devel
|
|
||||||
BuildRequires: ghc-primitive-devel
|
|
||||||
BuildRequires: ghc-scientific-devel
|
|
||||||
#BuildRequires: ghc-semialign-devel
|
|
||||||
BuildRequires: ghc-strict-devel
|
|
||||||
BuildRequires: ghc-tagged-devel
|
|
||||||
BuildRequires: ghc-template-haskell-devel
|
|
||||||
BuildRequires: ghc-text-devel
|
|
||||||
BuildRequires: ghc-text-short-devel
|
|
||||||
BuildRequires: ghc-th-abstraction-devel
|
|
||||||
BuildRequires: ghc-these-devel
|
|
||||||
BuildRequires: ghc-time-devel
|
|
||||||
BuildRequires: ghc-time-compat-devel
|
|
||||||
BuildRequires: ghc-unordered-containers-devel
|
|
||||||
BuildRequires: ghc-uuid-types-devel
|
|
||||||
BuildRequires: ghc-vector-devel
|
|
||||||
#BuildRequires: ghc-witherable-devel
|
|
||||||
%if %{with ghc_prof}
|
|
||||||
#BuildRequires: ghc-OneTuple-prof
|
|
||||||
BuildRequires: ghc-QuickCheck-prof
|
|
||||||
BuildRequires: ghc-attoparsec-prof
|
|
||||||
BuildRequires: ghc-base-prof
|
|
||||||
BuildRequires: ghc-base-compat-batteries-prof
|
|
||||||
BuildRequires: ghc-bytestring-prof
|
|
||||||
BuildRequires: ghc-containers-prof
|
|
||||||
BuildRequires: ghc-data-fix-prof
|
|
||||||
BuildRequires: ghc-deepseq-prof
|
|
||||||
BuildRequires: ghc-dlist-prof
|
|
||||||
BuildRequires: ghc-exceptions-prof
|
|
||||||
#BuildRequires: ghc-generically-prof
|
|
||||||
BuildRequires: ghc-hashable-prof
|
|
||||||
BuildRequires: ghc-indexed-traversable-prof
|
|
||||||
BuildRequires: ghc-primitive-prof
|
|
||||||
BuildRequires: ghc-scientific-prof
|
|
||||||
#BuildRequires: ghc-semialign-prof
|
|
||||||
BuildRequires: ghc-strict-prof
|
|
||||||
BuildRequires: ghc-tagged-prof
|
|
||||||
BuildRequires: ghc-template-haskell-prof
|
|
||||||
BuildRequires: ghc-text-prof
|
|
||||||
BuildRequires: ghc-text-short-prof
|
|
||||||
BuildRequires: ghc-th-abstraction-prof
|
|
||||||
BuildRequires: ghc-these-prof
|
|
||||||
BuildRequires: ghc-time-prof
|
|
||||||
BuildRequires: ghc-time-compat-prof
|
|
||||||
BuildRequires: ghc-unordered-containers-prof
|
|
||||||
BuildRequires: ghc-uuid-types-prof
|
|
||||||
BuildRequires: ghc-vector-prof
|
|
||||||
#BuildRequires: ghc-witherable-prof
|
|
||||||
%endif
|
|
||||||
# for missing dep 'semialign':
|
|
||||||
BuildRequires: ghc-semigroupoids-devel
|
|
||||||
BuildRequires: ghc-transformers-devel
|
|
||||||
%if %{with ghc_prof}
|
|
||||||
BuildRequires: ghc-semigroupoids-prof
|
|
||||||
BuildRequires: ghc-transformers-prof
|
|
||||||
%endif
|
|
||||||
# for missing dep 'witherable':
|
|
||||||
BuildRequires: ghc-base-orphans-devel
|
|
||||||
BuildRequires: ghc-transformers-devel
|
|
||||||
%if %{with ghc_prof}
|
|
||||||
BuildRequires: ghc-base-orphans-prof
|
|
||||||
BuildRequires: ghc-transformers-prof
|
|
||||||
%endif
|
|
||||||
# for missing dep 'generically':
|
|
||||||
BuildRequires: ghc-base-orphans-devel
|
|
||||||
%if %{with ghc_prof}
|
|
||||||
BuildRequires: ghc-base-orphans-prof
|
|
||||||
%endif
|
|
||||||
# End cabal-rpm deps
|
|
||||||
|
|
||||||
%description
|
|
||||||
A JSON parsing and encoding library optimized for ease of use and
|
|
||||||
high performance. Aeson was the father of Jason in Greek mythology.
|
|
||||||
|
|
||||||
|
|
||||||
%package devel
|
|
||||||
Summary: Haskell %{pkg_name} library development files
|
|
||||||
Provides: %{name}-static = %{version}-%{release}
|
|
||||||
Provides: %{name}-static%{?_isa} = %{version}-%{release}
|
|
||||||
%if %{defined ghc_version}
|
|
||||||
Requires: ghc-compiler = %{ghc_version}
|
|
||||||
%endif
|
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
|
||||||
This package provides the Haskell %{pkg_name} library development files.
|
|
||||||
|
|
||||||
|
|
||||||
%if %{with haddock}
|
|
||||||
%package doc
|
|
||||||
Summary: Haskell %{pkg_name} library documentation
|
|
||||||
BuildArch: noarch
|
|
||||||
Requires: ghc-filesystem
|
|
||||||
|
|
||||||
%description doc
|
|
||||||
This package provides the Haskell %{pkg_name} library documentation.
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%if %{with ghc_prof}
|
|
||||||
%package prof
|
|
||||||
Summary: Haskell %{pkg_name} profiling library
|
|
||||||
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
|
|
||||||
Supplements: (%{name}-devel and ghc-prof)
|
|
||||||
|
|
||||||
%description prof
|
|
||||||
This package provides the Haskell %{pkg_name} profiling library.
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%global main_version %{version}
|
|
||||||
|
|
||||||
%if %{defined ghclibdir}
|
|
||||||
%ghc_lib_subpackage -l BSD-2-Clause %{indexedtraversableinstances}
|
|
||||||
%ghc_lib_subpackage -l BSD-3-Clause %{OneTuple}
|
|
||||||
%ghc_lib_subpackage -l BSD-3-Clause %{semialign}
|
|
||||||
%ghc_lib_subpackage -l BSD-3-Clause %{witherable}
|
|
||||||
%ghc_lib_subpackage -l BSD-3-Clause %{generically}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%global version %{main_version}
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
|
||||||
# Begin cabal-rpm setup:
|
|
||||||
%setup -q -n %{pkgver} -a1 -a2 -a3 -a4 -a5
|
|
||||||
cp -bp %{SOURCE6} %{pkg_name}.cabal
|
|
||||||
# End cabal-rpm setup
|
|
||||||
(
|
|
||||||
cd %{witherable}
|
|
||||||
cabal-tweak-dep-ver base-orphans '<0.9' '<0.10'
|
|
||||||
cabal-tweak-dep-ver hashable '<1.4' '<1.5'
|
|
||||||
cabal-tweak-dep-ver vector '<0.13' '<0.14'
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
|
||||||
# Begin cabal-rpm build:
|
|
||||||
%ghc_libs_build %{subpkgs}
|
|
||||||
%ghc_lib_build
|
|
||||||
# End cabal-rpm build
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
|
||||||
# Begin cabal-rpm install
|
|
||||||
%ghc_libs_install %{subpkgs}
|
|
||||||
%ghc_lib_install
|
|
||||||
# End cabal-rpm install
|
|
||||||
|
|
||||||
|
|
||||||
%files -f %{name}.files
|
|
||||||
# Begin cabal-rpm files:
|
|
||||||
%license LICENSE
|
|
||||||
# End cabal-rpm files
|
|
||||||
|
|
||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
|
||||||
%doc README.markdown changelog.md
|
|
||||||
|
|
||||||
|
|
||||||
%if %{with haddock}
|
|
||||||
%files doc -f %{name}-doc.files
|
|
||||||
%license LICENSE
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%if %{with ghc_prof}
|
|
||||||
%files prof -f %{name}-prof.files
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Sun Jul 23 2023 Jens Petersen <petersen@redhat.com> - 2.1.2.1-3
|
|
||||||
- https://hackage.haskell.org/package/aeson-2.1.2.1/changelog
|
|
||||||
|
|
||||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Jan 22 2023 Jens Petersen <petersen@redhat.com> - 2.0.3.0-1
|
|
||||||
- https://hackage.haskell.org/package/aeson-2.0.3.0/changelog
|
|
||||||
- refresh to cabal-rpm-2.1.0 with SPDX migration
|
|
||||||
|
|
||||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.6.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 17 2022 Jens Petersen <petersen@redhat.com> - 1.5.6.0-3
|
|
||||||
- rebuild
|
|
||||||
|
|
||||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.6.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Aug 5 2021 Jens Petersen <petersen@redhat.com> - 1.5.6.0-1
|
|
||||||
- update to 1.5.6.0
|
|
||||||
|
|
||||||
* Thu Aug 5 2021 Jens Petersen <petersen@redhat.com> - 1.5.5.1-1
|
|
||||||
- update to 1.5.5.1
|
|
||||||
|
|
||||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.7.1-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.7.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.7.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Jun 07 2020 Jens Petersen <petersen@redhat.com> - 1.4.7.1-1
|
|
||||||
- update to 1.4.7.1
|
|
||||||
|
|
||||||
* Sun Feb 09 2020 Jens Petersen <petersen@redhat.com> - 1.4.6.0-1
|
|
||||||
- update to 1.4.6.0
|
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 25 2019 Jens Petersen <petersen@redhat.com> - 1.4.2.0-1
|
|
||||||
- update to 1.4.2.0
|
|
||||||
|
|
||||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Feb 21 2019 Jens Petersen <petersen@redhat.com> - 1.3.1.1-1
|
|
||||||
- update to 1.3.1.1
|
|
||||||
|
|
||||||
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 1.2.4.0-3
|
|
||||||
- refresh to cabal-rpm-0.13
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 28 2018 Jens Petersen <petersen@redhat.com> - 1.2.4.0-1
|
|
||||||
- update to 1.2.4.0
|
|
||||||
|
|
||||||
* Mon Jul 23 2018 Miro Hrončok <mhroncok@redhat.com> - 1.2.3.0-4
|
|
||||||
- Rebuilt for #1607054
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 24 2018 Jens Petersen <petersen@redhat.com> - 1.2.3.0-1
|
|
||||||
- update to 1.2.3.0
|
|
||||||
|
|
||||||
* Fri Jan 12 2018 Jens Petersen <petersen@redhat.com> - 1.0.2.1-8
|
|
||||||
- time-locale-compat is now packaged
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2.1-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2.1-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Feb 21 2017 Jens Petersen <petersen@redhat.com> - 1.0.2.1-5
|
|
||||||
- update to 1.0.2.1
|
|
||||||
- subpackage time-locale-compat
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0.2-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Aug 31 2015 Peter Robinson <pbrobinson@fedoraproject.org> 0.8.0.2-3
|
|
||||||
- Rebuild (aarch64 vector hashes)
|
|
||||||
|
|
||||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.0.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 26 2015 Jens Petersen <petersen@redhat.com> - 0.8.0.2-1
|
|
||||||
- update to 0.8.0.2
|
|
||||||
|
|
||||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.2.1-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.2.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Apr 20 2014 Jens Petersen <petersen@redhat.com> - 0.6.2.1-2
|
|
||||||
- disable TH module on arch's without ghci
|
|
||||||
|
|
||||||
* Wed Jan 22 2014 Jens Petersen <petersen@redhat.com> - 0.6.2.1-1
|
|
||||||
- update to 0.6.2.1
|
|
||||||
|
|
||||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 07 2013 Jens Petersen <petersen@redhat.com> - 0.6.1.0-2
|
|
||||||
- update to new simplified Haskell Packaging Guidelines
|
|
||||||
|
|
||||||
* Mon Mar 11 2013 Jens Petersen <petersen@redhat.com> - 0.6.1.0-1
|
|
||||||
- update to 0.6.1.0
|
|
||||||
|
|
||||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0.2-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Nov 17 2012 Jens Petersen <petersen@redhat.com> - 0.6.0.2-5
|
|
||||||
- update with cabal-rpm
|
|
||||||
|
|
||||||
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jun 21 2012 Jens Petersen <petersen@redhat.com> - 0.6.0.2-3
|
|
||||||
- rebuild
|
|
||||||
|
|
||||||
* Fri Jun 15 2012 Jens Petersen <petersen@redhat.com> - 0.6.0.2-2
|
|
||||||
- rebuild
|
|
||||||
|
|
||||||
* Sun May 6 2012 Jens Petersen <petersen@redhat.com> - 0.6.0.2-1
|
|
||||||
- update to 0.6.0.2
|
|
||||||
- build needs ghci
|
|
||||||
|
|
||||||
* Sat Mar 24 2012 Jens Petersen <petersen@redhat.com> - 0.6.0.0-2
|
|
||||||
- depends on dlist for ghc > 7.2
|
|
||||||
|
|
||||||
* Mon Feb 27 2012 Jens Petersen <petersen@redhat.com> - 0.6.0.0-1
|
|
||||||
- BSD license
|
|
||||||
- doc files
|
|
||||||
|
|
||||||
* Mon Feb 27 2012 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org>
|
|
||||||
- spec file template generated by cabal2spec-0.25.4
|
|
6
sources
6
sources
@ -1,6 +0,0 @@
|
|||||||
SHA512 (aeson-2.1.2.1.tar.gz) = c7e3c5d61ac99b7e66a468cdcd0a20c9d0f42142b2398086aa1a3a992c60814c9d7505e4c15120fb00f0015ab1fb5592d6acdb31995e7af956f2867b95f12a40
|
|
||||||
SHA512 (OneTuple-0.4.1.1.tar.gz) = ee82a427558ad81ec95884794871c1a9245fefe32e21500e82d4f0539e4677dd6048e82bfd0f2b02c6d1a52d4d2392bb8f969c4fd663c35f4f7348a97aba8a26
|
|
||||||
SHA512 (semialign-1.3.tar.gz) = 4f8ce9c01a145e16f5b203c4ffc0131c42f1d348e2d9c812fc83107a8a4515507da335fa2690f3740d9c89d4d8f2c88fd3b9c9e1862f4726a0874f773a3569b3
|
|
||||||
SHA512 (witherable-0.4.2.tar.gz) = 14ad590e24b93fc25f16fecaf71d6f9f891a903dd76e052d9f6c21b464f0d28df4f019d33ac36086341a6c5bd20833d7b0c2d19543460d1530899c0c25cea852
|
|
||||||
SHA512 (indexed-traversable-instances-0.1.1.2.tar.gz) = 8e4e53054105155e2bc6637348f91548e49c422c87de659193aa917a1ca69e5b157c30f5bfb213661112d28185f87bb9cc453a57e5960042c82b5654d444ba1f
|
|
||||||
SHA512 (generically-0.1.1.tar.gz) = 029c96a5567fea56572ad5522c70d3b41a22ddac15483aee0045f4aa15bc45bf177a69bf42986391de681ab98aedf5b748a91d5bd5486427062f72e2a22a1844
|
|
Loading…
Reference in New Issue
Block a user