ghc-aeson/ghc-aeson.spec
Peter Trommler a02b34da79 Accepting request 304886 from devel:languages:haskell:lts
- update to 0.8.0.2
* Fix ToJSON instance for 15-tuples.
* Support time-1.5.
* Add ToJSON and FromJSON instances for tuples of up to 15 elements.
* Major compiler and library compatibility changes: we have dropped
  support for GHC older than 7.4, text older than 1.1, and bytestring
  older than 0.10.4.0.  Supporting the older versions had become
  increasingly difficult, to the point where it was no longer worth
  it.
* The performance of encoding to and decoding of bytestrings have both
  improved by up to 2x, while also using less memory.
* New dependency: the scientific package lets us parse floating point
  numbers more quickly and accurately.
* eitherDecode, decodeStrictWith: fixed bugs.
* Added FromJSON and ToJSON instances for Tree and Scientific.
* Fixed the ToJSON instances for UTCTime and ZonedTime.

OBS-URL: https://build.opensuse.org/request/show/304886
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-aeson?expand=0&rev=8
2015-05-04 18:21:44 +00:00

147 lines
3.9 KiB
RPMSpec

#
# spec file for package ghc-aeson
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%global pkg_name aeson
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.8.0.2
Release: 0
Summary: Fast JSON parsing and encoding
License: BSD-3-Clause
Group: System/Libraries
Url: https://hackage.haskell.org/package/%{pkg_name}
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
# Begin cabal-rpm deps:
BuildRequires: ghc-attoparsec-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-containers-devel
BuildRequires: ghc-deepseq-devel
BuildRequires: ghc-dlist-devel
BuildRequires: ghc-hashable-devel
BuildRequires: ghc-mtl-devel
BuildRequires: ghc-old-locale-devel
BuildRequires: ghc-scientific-devel
BuildRequires: ghc-syb-devel
BuildRequires: ghc-template-haskell-devel
BuildRequires: ghc-text-devel
BuildRequires: ghc-time-devel
BuildRequires: ghc-unordered-containers-devel
BuildRequires: ghc-vector-devel
%if %{with tests}
BuildRequires: ghc-HUnit-devel
BuildRequires: ghc-QuickCheck-devel
BuildRequires: ghc-test-framework-devel
BuildRequires: ghc-test-framework-hunit-devel
BuildRequires: ghc-test-framework-quickcheck2-devel
%endif
# End cabal-rpm deps
%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.
Parsing performance on an early 2011 MacBook Pro (2.2GHz Core i7), running
64-bit GHC 7.6.3, for mostly-English tweets from Twitter's JSON search API:
* 0.8 KB: 34124 msg/sec (27.8 MB/sec)
* 6.4 KB: 6833 msg/sec (43.0 MB/sec)
* 11.8 KB: 3410 msg/sec (39.2 MB/sec)
* 31.2 KB: 1157 msg/sec (35.3 MB/sec)
* 61.5 KB: 542 msg/sec (32.5 MB/sec)
Handling heavily-escaped text is a little more work. Here is parsing
performance with Japanese tweets, where much of the text is entirely
Unicode-escaped.
* 14.6 KB: 2101 msg/sec (30.0 MB/sec)
* 44.1 KB: 667 msg/sec (28.7 MB/sec)
* 82.9 KB: 360 msg/sec (29.2 MB/sec)
Encoding performance on the same machine and data:
* English, 0.8 KB: 109697 msg/sec (89.3 MB/sec)
* English, 6.4 KB: 18517 msg/sec (116.4 MB/sec)
* Engish, 61.5 KB: 1963 msg/sec (118.0 MB/sec)
* Japanese, 14.6 KB: 12140 msg/sec (173.5 MB/sec)
* Japanese, 44.1 KB: 3980 msg/sec (171.3 MB/sec)
(A note on naming: in Greek mythology, Aeson was the father of Jason.).
%package devel
Summary: Haskell %{pkg_name} library development files
Group: Development/Libraries/Other
Requires: ghc-compiler = %{ghc_version}
Requires(post): ghc-compiler = %{ghc_version}
Requires(postun): ghc-compiler = %{ghc_version}
Requires: %{name} = %{version}-%{release}
%description devel
This package provides the Haskell %{pkg_name} library development files.
%prep
%setup -q -n %{pkg_name}-%{version}
%build
%define cabal_configure_options -f"old-time"
%ghc_lib_build
%install
%ghc_lib_install
%check
%if %{with tests}
%cabal test
%endif
%post devel
%ghc_pkg_recache
%postun devel
%ghc_pkg_recache
%files -f %{name}.files
%defattr(-,root,root,-)
%doc LICENSE
%files devel -f %{name}-devel.files
%defattr(-,root,root,-)
%doc README.markdown examples
%changelog