Compare commits
1 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| dc6742cd74 |
@@ -1,68 +1,17 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 23 23:25:12 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
Mon Jun 10 20:39:23 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update serialise to version 0.2.6.0 revision 1.
|
||||
- Update serialise to version 0.2.6.1 revision 3.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 24 16:42:42 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
Wed Apr 10 11:46:57 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update serialise to version 0.2.6.0.
|
||||
## 0.2.6.0 -- 2022-09-24
|
||||
|
||||
* Support GHC 9.4
|
||||
|
||||
* Drop GHC 8.0 and 8.2 support
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 22 22:45:33 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update serialise to version 0.2.5.0.
|
||||
Upstream has edited the change log file since the last release in
|
||||
a non-trivial way, i.e. they did more than just add a new entry
|
||||
at the top. You can review the file at:
|
||||
http://hackage.haskell.org/package/serialise-0.2.5.0/src/ChangeLog.md
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 7 20:13:42 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update serialise to version 0.2.4.0 revision 1.
|
||||
- Update serialise to version 0.2.6.1 revision 2.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 1 08:27:02 UTC 2021 - psimons@suse.com
|
||||
Thu Dec 28 19:16:17 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update serialise to version 0.2.4.0.
|
||||
## 0.2.4.0 -- 2021-10-31
|
||||
|
||||
* Add instances for `Data.Void`, `strict`, and `these`.
|
||||
|
||||
* Compatibility with GHC 9.0 and 9.2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 23 08:33:03 UTC 2021 - psimons@suse.com
|
||||
|
||||
- Update serialise to version 0.2.3.0 revision 2.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||
|
||||
- disable %{ix86} build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 31 09:34:34 UTC 2020 - psimons@suse.com
|
||||
|
||||
- Update serialise to version 0.2.3.0 revision 1.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 18 10:45:59 UTC 2020 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Replace %setup -q with the more modern %autosetup macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 8 16:48:00 UTC 2020 - psimons@suse.com
|
||||
|
||||
- Add serialise at version 0.2.3.0.
|
||||
- Add serialise at version 0.2.6.1 revision 1.
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ghc-serialise
|
||||
#
|
||||
# Copyright (c) 2022 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
|
||||
@@ -17,39 +17,62 @@
|
||||
|
||||
|
||||
%global pkg_name serialise
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
%bcond_with tests
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.2.6.0
|
||||
Version: 0.2.6.1
|
||||
Release: 0
|
||||
Summary: A binary serialisation library for Haskell values
|
||||
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
|
||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/3.cabal#/%{pkg_name}.cabal
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-array-devel
|
||||
BuildRequires: ghc-array-prof
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-base-prof
|
||||
BuildRequires: ghc-bytestring-devel
|
||||
BuildRequires: ghc-bytestring-prof
|
||||
BuildRequires: ghc-cborg-devel
|
||||
BuildRequires: ghc-cborg-prof
|
||||
BuildRequires: ghc-containers-devel
|
||||
BuildRequires: ghc-containers-prof
|
||||
BuildRequires: ghc-half-devel
|
||||
BuildRequires: ghc-half-prof
|
||||
BuildRequires: ghc-hashable-devel
|
||||
BuildRequires: ghc-hashable-prof
|
||||
BuildRequires: ghc-primitive-devel
|
||||
BuildRequires: ghc-primitive-prof
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-strict-devel
|
||||
BuildRequires: ghc-strict-prof
|
||||
BuildRequires: ghc-text-devel
|
||||
BuildRequires: ghc-text-prof
|
||||
BuildRequires: ghc-these-devel
|
||||
BuildRequires: ghc-these-prof
|
||||
BuildRequires: ghc-time-devel
|
||||
BuildRequires: ghc-time-prof
|
||||
BuildRequires: ghc-unordered-containers-devel
|
||||
BuildRequires: ghc-unordered-containers-prof
|
||||
BuildRequires: ghc-vector-devel
|
||||
BuildRequires: ghc-vector-prof
|
||||
ExcludeArch: %{ix86}
|
||||
%if %{with tests}
|
||||
BuildRequires: ghc-QuickCheck-devel
|
||||
BuildRequires: ghc-QuickCheck-prof
|
||||
BuildRequires: ghc-directory-devel
|
||||
BuildRequires: ghc-directory-prof
|
||||
BuildRequires: ghc-filepath-devel
|
||||
BuildRequires: ghc-filepath-prof
|
||||
BuildRequires: ghc-quickcheck-instances-devel
|
||||
BuildRequires: ghc-quickcheck-instances-prof
|
||||
BuildRequires: ghc-tasty-devel
|
||||
BuildRequires: ghc-tasty-hunit-devel
|
||||
BuildRequires: ghc-tasty-hunit-prof
|
||||
BuildRequires: ghc-tasty-prof
|
||||
BuildRequires: ghc-tasty-quickcheck-devel
|
||||
BuildRequires: ghc-tasty-quickcheck-prof
|
||||
%endif
|
||||
|
||||
%description
|
||||
@@ -78,6 +101,22 @@ Requires(postun): ghc-compiler = %{ghc_version}
|
||||
%description devel
|
||||
This package provides the Haskell %{pkg_name} library development files.
|
||||
|
||||
%package -n ghc-%{pkg_name}-doc
|
||||
Summary: Haskell %{pkg_name} library documentation
|
||||
Requires: ghc-filesystem
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n ghc-%{pkg_name}-doc
|
||||
This package provides the Haskell %{pkg_name} library documentation.
|
||||
|
||||
%package -n ghc-%{pkg_name}-prof
|
||||
Summary: Haskell %{pkg_name} profiling library
|
||||
Requires: ghc-%{pkg_name}-devel = %{version}-%{release}
|
||||
Supplements: (ghc-%{pkg_name}-devel and ghc-prof)
|
||||
|
||||
%description -n ghc-%{pkg_name}-prof
|
||||
This package provides the Haskell %{pkg_name} profiling library.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{pkg_name}-%{version}
|
||||
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
@@ -103,4 +142,9 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||
%files devel -f %{name}-devel.files
|
||||
%doc ChangeLog.md
|
||||
|
||||
%files -n ghc-%{pkg_name}-doc -f ghc-%{pkg_name}-doc.files
|
||||
%license LICENSE.txt
|
||||
|
||||
%files -n ghc-%{pkg_name}-prof -f ghc-%{pkg_name}-prof.files
|
||||
|
||||
%changelog
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:93ff1888e1972999f14663072b38efcfd0c1481b4ec8e30ddc9c5ce97681a516
|
||||
size 75077
|
||||
BIN
serialise-0.2.6.1.tar.gz
LFS
Normal file
BIN
serialise-0.2.6.1.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,6 +1,6 @@
|
||||
name: serialise
|
||||
version: 0.2.6.0
|
||||
x-revision: 1
|
||||
version: 0.2.6.1
|
||||
x-revision: 3
|
||||
synopsis: A binary serialisation library for Haskell values.
|
||||
description:
|
||||
This package (formerly @binary-serialise-cbor@) provides pure, efficient
|
||||
@@ -70,24 +70,24 @@ library
|
||||
Codec.Serialise.Internal.GeneralisedUTF8
|
||||
|
||||
build-depends:
|
||||
base >= 4.11 && < 4.18,
|
||||
base >= 4.11 && < 4.21,
|
||||
array >= 0.4 && < 0.6,
|
||||
bytestring >= 0.10.4 && < 0.12,
|
||||
bytestring >= 0.10.4 && < 0.13,
|
||||
cborg == 0.2.*,
|
||||
containers >= 0.5 && < 0.7,
|
||||
ghc-prim >= 0.3.1.0 && < 0.10,
|
||||
containers >= 0.5 && < 0.8,
|
||||
ghc-prim >= 0.3.1.0 && < 0.12,
|
||||
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 && < 2.1,
|
||||
these >= 1.1 && < 1.2,
|
||||
primitive >= 0.5 && < 0.10,
|
||||
strict >= 0.4 && < 0.6,
|
||||
text >= 1.1 && < 2.2,
|
||||
these >= 1.1 && < 2.2,
|
||||
unordered-containers >= 0.2 && < 0.3,
|
||||
vector >= 0.10 && < 0.14
|
||||
|
||||
if flag(newtime15)
|
||||
build-depends:
|
||||
time >= 1.5 && < 1.14
|
||||
time >= 1.5 && < 1.15
|
||||
else
|
||||
build-depends:
|
||||
time >= 1.4 && < 1.5,
|
||||
@@ -125,19 +125,19 @@ test-suite tests
|
||||
Tests.GeneralisedUTF8
|
||||
|
||||
build-depends:
|
||||
base >= 4.11 && < 4.18,
|
||||
bytestring >= 0.10.4 && < 0.12,
|
||||
base >= 4.11 && < 4.20,
|
||||
bytestring >= 0.10.4 && < 0.13,
|
||||
directory >= 1.0 && < 1.4,
|
||||
filepath >= 1.0 && < 1.5,
|
||||
text >= 1.1 && < 2.1,
|
||||
filepath >= 1.0 && < 1.6,
|
||||
text >= 1.1 && < 2.2,
|
||||
time >= 1.4 && < 1.14,
|
||||
containers >= 0.5 && < 0.7,
|
||||
containers >= 0.5 && < 0.8,
|
||||
unordered-containers >= 0.2 && < 0.3,
|
||||
primitive >= 0.5 && < 0.8,
|
||||
primitive >= 0.5 && < 0.10,
|
||||
cborg,
|
||||
serialise,
|
||||
QuickCheck >= 2.9 && < 2.15,
|
||||
tasty >= 0.11 && < 1.5,
|
||||
QuickCheck >= 2.9 && < 2.16,
|
||||
tasty >= 0.11 && < 1.6,
|
||||
tasty-hunit >= 0.9 && < 0.11,
|
||||
tasty-quickcheck >= 0.8 && < 0.11,
|
||||
quickcheck-instances >= 0.3.12 && < 0.4,
|
||||
@@ -162,19 +162,19 @@ benchmark instances
|
||||
Instances.Time
|
||||
|
||||
build-depends:
|
||||
base >= 4.11 && < 4.18,
|
||||
base >= 4.11 && < 4.21,
|
||||
binary >= 0.7 && < 0.11,
|
||||
bytestring >= 0.10.4 && < 0.12,
|
||||
bytestring >= 0.10.4 && < 0.13,
|
||||
vector >= 0.10 && < 0.14,
|
||||
cborg,
|
||||
serialise,
|
||||
|
||||
deepseq >= 1.0 && < 1.5,
|
||||
criterion >= 1.0 && < 1.6
|
||||
deepseq >= 1.0 && < 1.6,
|
||||
criterion >= 1.0 && < 1.7
|
||||
|
||||
if flag(newtime15)
|
||||
build-depends:
|
||||
time >= 1.5 && < 1.14
|
||||
time >= 1.5 && < 1.15
|
||||
else
|
||||
build-depends:
|
||||
time >= 1.4 && < 1.5,
|
||||
@@ -206,17 +206,17 @@ benchmark micro
|
||||
SimpleVersus
|
||||
|
||||
build-depends:
|
||||
base >= 4.11 && < 4.18,
|
||||
base >= 4.11 && < 4.20,
|
||||
binary >= 0.7 && < 0.11,
|
||||
bytestring >= 0.10.4 && < 0.12,
|
||||
ghc-prim >= 0.3.1.0 && < 0.10,
|
||||
bytestring >= 0.10.4 && < 0.13,
|
||||
ghc-prim >= 0.3.1.0 && < 0.12,
|
||||
vector >= 0.10 && < 0.14,
|
||||
cborg,
|
||||
serialise,
|
||||
|
||||
aeson >= 0.7 && < 2.2,
|
||||
deepseq >= 1.0 && < 1.5,
|
||||
criterion >= 1.0 && < 1.6,
|
||||
aeson >= 0.7 && < 2.3,
|
||||
deepseq >= 1.0 && < 1.6,
|
||||
criterion >= 1.0 && < 1.7,
|
||||
cereal >= 0.5.2.0 && < 0.6,
|
||||
cereal-vector >= 0.2 && < 0.3,
|
||||
semigroups >= 0.18 && < 0.21,
|
||||
@@ -252,34 +252,34 @@ benchmark versus
|
||||
Macro.CBOR
|
||||
|
||||
build-depends:
|
||||
base >= 4.11 && < 4.18,
|
||||
base >= 4.11 && < 4.20,
|
||||
array >= 0.4 && < 0.6,
|
||||
binary >= 0.7 && < 0.11,
|
||||
bytestring >= 0.10.4 && < 0.12,
|
||||
bytestring >= 0.10.4 && < 0.13,
|
||||
directory >= 1.0 && < 1.4,
|
||||
ghc-prim >= 0.3.1.0 && < 0.10,
|
||||
ghc-prim >= 0.3.1.0 && < 0.12,
|
||||
fail >= 4.9.0.0 && < 4.10,
|
||||
text >= 1.1 && < 2.1,
|
||||
text >= 1.1 && < 2.2,
|
||||
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.2,
|
||||
filepath >= 1.0 && < 1.6,
|
||||
containers >= 0.5 && < 0.8,
|
||||
deepseq >= 1.0 && < 1.6,
|
||||
aeson >= 0.7 && < 2.3,
|
||||
cereal >= 0.5.2.0 && < 0.6,
|
||||
half >= 0.2.2.3 && < 0.4,
|
||||
tar >= 0.4 && < 0.6,
|
||||
zlib >= 0.5 && < 0.7,
|
||||
tar >= 0.4 && < 0.7,
|
||||
zlib >= 0.5 && < 0.8,
|
||||
pretty >= 1.0 && < 1.2,
|
||||
criterion >= 1.0 && < 1.6,
|
||||
criterion >= 1.0 && < 1.7,
|
||||
store >= 0.7.1 && < 0.8,
|
||||
semigroups
|
||||
|
||||
if flag(newtime15)
|
||||
build-depends:
|
||||
time >= 1.5 && < 1.14
|
||||
time >= 1.5 && < 1.15
|
||||
else
|
||||
build-depends:
|
||||
time >= 1.4 && < 1.5,
|
||||
|
||||
Reference in New Issue
Block a user