update to 0.2.6.0

This commit is contained in:
Jens Petersen 2023-01-23 01:37:07 +08:00
parent bc93b592ae
commit 407f4dc74c
4 changed files with 50 additions and 29 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/serialise-0.2.2.0.tar.gz
/serialise-0.2.3.0.tar.gz
/serialise-0.2.4.0.tar.gz
/serialise-0.2.6.0.tar.gz

View File

@ -1,4 +1,4 @@
# generated by cabal-rpm-2.0.9
# generated by cabal-rpm-2.1.0
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
%global pkg_name serialise
@ -7,11 +7,11 @@
# testsuite missing deps: quickcheck-instances
Name: ghc-%{pkg_name}
Version: 0.2.4.0
Release: 2%{?dist}
Version: 0.2.6.0
Release: 1%{?dist}
Summary: A binary serialisation library for Haskell values
License: BSD
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
@ -21,6 +21,21 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#
# Begin cabal-rpm deps:
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-rpm-macros
BuildRequires: ghc-array-devel
BuildRequires: ghc-base-devel
BuildRequires: ghc-bytestring-devel
BuildRequires: ghc-cborg-devel
BuildRequires: ghc-containers-devel
BuildRequires: ghc-half-devel
BuildRequires: ghc-hashable-devel
BuildRequires: ghc-primitive-devel
BuildRequires: ghc-strict-devel
BuildRequires: ghc-text-devel
BuildRequires: ghc-these-devel
BuildRequires: ghc-time-devel
BuildRequires: ghc-unordered-containers-devel
BuildRequires: ghc-vector-devel
%if %{with ghc_prof}
BuildRequires: ghc-array-prof
BuildRequires: ghc-base-prof
BuildRequires: ghc-bytestring-prof
@ -35,6 +50,7 @@ BuildRequires: ghc-these-prof
BuildRequires: ghc-time-prof
BuildRequires: ghc-unordered-containers-prof
BuildRequires: ghc-vector-prof
%endif
# End cabal-rpm deps
%description
@ -130,6 +146,10 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
%changelog
* Sun Jan 22 2023 Jens Petersen <petersen@redhat.com> - 0.2.6.0-1
- https://hackage.haskell.org/package/serialise-0.2.6.0/changelog
- refresh to cabal-rpm-2.1.0 with SPDX migration
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild

View File

@ -1,5 +1,5 @@
name: serialise
version: 0.2.4.0
version: 0.2.6.0
x-revision: 1
synopsis: A binary serialisation library for Haskell values.
description:
@ -31,13 +31,13 @@ cabal-version: >=1.10
category: Codec
build-type: Simple
tested-with:
GHC == 8.0.2,
GHC == 8.2.2,
GHC == 8.4.4,
GHC == 8.6.5,
GHC == 8.8.3,
GHC == 8.10.1,
GHC == 9.0.1
GHC == 8.10.7,
GHC == 9.0.1,
GHC == 9.2.2,
GHC == 9.4.2
extra-source-files:
ChangeLog.md
@ -70,20 +70,20 @@ library
Codec.Serialise.Internal.GeneralisedUTF8
build-depends:
base >= 4.11 && < 4.18,
array >= 0.4 && < 0.6,
base >= 4.7 && < 4.17,
bytestring >= 0.10.4 && < 0.12,
cborg == 0.2.*,
containers >= 0.5 && < 0.7,
ghc-prim >= 0.3.1.0 && < 0.9,
ghc-prim >= 0.3.1.0 && < 0.10,
half >= 0.2.2.3 && < 0.4,
hashable >= 1.2 && < 2.0,
primitive >= 0.5 && < 0.8,
strict >= 0.4 && < 0.5,
text >= 1.1 && < 1.3 || >= 2.0 && < 2.1,
text >= 1.1 && < 2.1,
these >= 1.1 && < 1.2,
unordered-containers >= 0.2 && < 0.3,
vector >= 0.10 && < 0.13
vector >= 0.10 && < 0.14
if flag(newtime15)
build-depends:
@ -125,11 +125,11 @@ test-suite tests
Tests.GeneralisedUTF8
build-depends:
base >= 4.7 && < 4.17,
base >= 4.11 && < 4.18,
bytestring >= 0.10.4 && < 0.12,
directory >= 1.0 && < 1.4,
filepath >= 1.0 && < 1.5,
text >= 1.1 && < 1.3 || >= 2.0 && < 2.1,
text >= 1.1 && < 2.1,
time >= 1.4 && < 1.14,
containers >= 0.5 && < 0.7,
unordered-containers >= 0.2 && < 0.3,
@ -141,7 +141,7 @@ test-suite tests
tasty-hunit >= 0.9 && < 0.11,
tasty-quickcheck >= 0.8 && < 0.11,
quickcheck-instances >= 0.3.12 && < 0.4,
vector >= 0.10 && < 0.13
vector >= 0.10 && < 0.14
--------------------------------------------------------------------------------
-- Benchmarks
@ -162,10 +162,10 @@ benchmark instances
Instances.Time
build-depends:
base >= 4.7 && < 4.17,
base >= 4.11 && < 4.18,
binary >= 0.7 && < 0.11,
bytestring >= 0.10.4 && < 0.12,
vector >= 0.10 && < 0.13,
vector >= 0.10 && < 0.14,
cborg,
serialise,
@ -206,20 +206,20 @@ benchmark micro
SimpleVersus
build-depends:
base >= 4.7 && < 4.17,
base >= 4.11 && < 4.18,
binary >= 0.7 && < 0.11,
bytestring >= 0.10.4 && < 0.12,
ghc-prim >= 0.3.1.0 && < 0.9,
vector >= 0.10 && < 0.13,
ghc-prim >= 0.3.1.0 && < 0.10,
vector >= 0.10 && < 0.14,
cborg,
serialise,
aeson >= 0.7 && < 2.1,
aeson >= 0.7 && < 2.2,
deepseq >= 1.0 && < 1.5,
criterion >= 1.0 && < 1.6,
cereal >= 0.5.2.0 && < 0.6,
cereal-vector >= 0.2 && < 0.3,
semigroups >= 0.18 && < 0.20,
semigroups >= 0.18 && < 0.21,
store >= 0.7.1 && < 0.8
benchmark versus
@ -252,22 +252,22 @@ benchmark versus
Macro.CBOR
build-depends:
base >= 4.11 && < 4.18,
array >= 0.4 && < 0.6,
base >= 4.7 && < 4.17,
binary >= 0.7 && < 0.11,
bytestring >= 0.10.4 && < 0.12,
directory >= 1.0 && < 1.4,
ghc-prim >= 0.3.1.0 && < 0.9,
ghc-prim >= 0.3.1.0 && < 0.10,
fail >= 4.9.0.0 && < 4.10,
text >= 1.1 && < 1.3 || >= 2.0 && < 2.1,
vector >= 0.10 && < 0.13,
text >= 1.1 && < 2.1,
vector >= 0.10 && < 0.14,
cborg,
serialise,
filepath >= 1.0 && < 1.5,
containers >= 0.5 && < 0.7,
deepseq >= 1.0 && < 1.5,
aeson >= 0.7 && < 2.1,
aeson >= 0.7 && < 2.2,
cereal >= 0.5.2.0 && < 0.6,
half >= 0.2.2.3 && < 0.4,
tar >= 0.4 && < 0.6,

View File

@ -1 +1 @@
SHA512 (serialise-0.2.4.0.tar.gz) = de575c239ae8802ef8f1342a8a3c3360e83971a9178369cb0e9eaa1698ffe189a51de62ba7b6f4ff25a582f10bf0e346daf39a4e56792ba34d6df550eb34043f
SHA512 (serialise-0.2.6.0.tar.gz) = 708e6a735d6569d9959026cdf08030a270c0b703e3e2e08c5e379e63aff81bece27bc43d492a867fd073d8a7ccf4bce570acc822478899b01b960403865c3616