Compare commits
2 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 68551fd180 | |||
| adfd8e68fc |
BIN
cborg-0.2.10.0.tar.gz
LFS
Normal file
BIN
cborg-0.2.10.0.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2e59c827c273b57af0fcbbfb62f6d15faeb399e0d89d57baf8adcc60e62ab01e
|
||||
size 91143
|
||||
34
cborg.cabal
34
cborg.cabal
@@ -1,5 +1,5 @@
|
||||
name: cborg
|
||||
version: 0.2.8.0
|
||||
version: 0.2.10.0
|
||||
x-revision: 1
|
||||
synopsis: Concise Binary Object Representation (CBOR)
|
||||
license: BSD3
|
||||
@@ -20,7 +20,8 @@ tested-with:
|
||||
GHC == 8.10.7,
|
||||
GHC == 9.0.1,
|
||||
GHC == 9.2.2,
|
||||
GHC == 9.4.2
|
||||
GHC == 9.4.2,
|
||||
GHC == 9.6.1
|
||||
|
||||
extra-source-files:
|
||||
ChangeLog.md
|
||||
@@ -90,14 +91,14 @@ library
|
||||
|
||||
build-depends:
|
||||
array >= 0.4 && < 0.6,
|
||||
base >= 4.11 && < 4.18,
|
||||
bytestring >= 0.10.4 && < 0.12,
|
||||
containers >= 0.5 && < 0.7,
|
||||
deepseq >= 1.0 && < 1.5,
|
||||
ghc-prim >= 0.3.1.0 && < 0.10,
|
||||
base >= 4.11 && < 4.21,
|
||||
bytestring >= 0.10.4 && < 0.13,
|
||||
containers >= 0.5 && < 0.8,
|
||||
deepseq >= 1.0 && < 1.6,
|
||||
ghc-prim >= 0.3.1.0 && < 0.12,
|
||||
half >= 0.2.2.3 && < 0.4,
|
||||
primitive >= 0.5 && < 0.8,
|
||||
text >= 1.1 && < 1.3 || >= 2.0 && <2.1
|
||||
primitive >= 0.5 && < 0.10,
|
||||
text >= 1.1 && < 1.3 || >= 2.0 && <2.2
|
||||
|
||||
if flag(optimize-gmp)
|
||||
cpp-options: -DOPTIMIZE_GMP
|
||||
@@ -148,20 +149,21 @@ test-suite tests
|
||||
|
||||
build-depends:
|
||||
array >= 0.4 && < 0.6,
|
||||
base >= 4.11 && < 4.18,
|
||||
base >= 4.11 && < 4.21,
|
||||
base-orphans,
|
||||
bytestring >= 0.10.4 && < 0.12,
|
||||
text >= 1.1 && < 2.1,
|
||||
bytestring >= 0.10.4 && < 0.13,
|
||||
text >= 1.1 && < 2.2,
|
||||
primitive >= 0.5 && < 0.10,
|
||||
cborg,
|
||||
aeson >= 0.7 && < 2.2,
|
||||
aeson >= 0.7 && < 2.3,
|
||||
base64-bytestring >= 1.0 && < 1.3,
|
||||
base16-bytestring >= 1.0 && < 1.1,
|
||||
deepseq >= 1.0 && < 1.5,
|
||||
deepseq >= 1.0 && < 1.6,
|
||||
half >= 0.2.2.3 && < 0.4,
|
||||
QuickCheck >= 2.9 && < 2.15,
|
||||
QuickCheck >= 2.9 && < 2.16,
|
||||
random,
|
||||
scientific >= 0.3 && < 0.4,
|
||||
tasty >= 0.11 && < 1.5,
|
||||
tasty >= 0.11 && < 1.6,
|
||||
tasty-hunit >= 0.9 && < 0.11,
|
||||
tasty-quickcheck >= 0.8 && < 0.11,
|
||||
vector >= 0.10 && < 0.14
|
||||
|
||||
@@ -1,88 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 23 23:12:41 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
Mon Jun 10 20:33:52 UTC 2024 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update cborg to version 0.2.8.0 revision 1.
|
||||
- Update cborg to version 0.2.10.0 revision 1.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 24 16:34:43 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
Tue Nov 14 01:01:02 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update cborg to version 0.2.8.0.
|
||||
## 0.2.8.0 -- 2022-09-24
|
||||
|
||||
* Support GHC 9.4
|
||||
|
||||
* Fix compatibility with primitive 0.7.4.0
|
||||
|
||||
* Drop GHC 8.0 and 8.2 support
|
||||
|
||||
* Support aeson 2.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat May 21 09:30:28 UTC 2022 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update cborg to version 0.2.7.0 revision 1.
|
||||
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/cborg-0.2.7.0/src/ChangeLog.md
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Nov 20 17:35:49 UTC 2021 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update cborg to version 0.2.6.0 revision 1.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 1 08:22:00 UTC 2021 - psimons@suse.com
|
||||
|
||||
- Update cborg to version 0.2.6.0.
|
||||
## 0.2.6.0 -- 2021-10-31
|
||||
|
||||
* Support for GHC 9.2
|
||||
|
||||
* Support for `text-2.0` and zero-copy `Text` serialisation support
|
||||
|
||||
## 0.2.5.0 -- 2021-04-08
|
||||
|
||||
* Support for `ghc-bignum` and GHC 9.0
|
||||
|
||||
## 0.2.4.0 -- 2021-07-05
|
||||
|
||||
* Fix decoding on 32-bit systems (#244)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 3 13:45:32 UTC 2021 - psimons@suse.com
|
||||
|
||||
- Update cborg to version 0.2.5.0 revision 1.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 9 08:55:09 UTC 2021 - psimons@suse.com
|
||||
|
||||
- Update cborg 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/cborg-0.2.5.0/src/ChangeLog.md
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||
|
||||
- disable %{ix86} build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 10 11:52:24 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||
|
||||
- relax dep constraints
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 18 10:44:16 UTC 2020 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Replace %setup -q with the more modern %autosetup macro.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 8 16:48:12 UTC 2020 - psimons@suse.com
|
||||
|
||||
- Add cborg at version 0.2.4.0.
|
||||
- Add cborg at version 0.2.10.0.
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ghc-cborg
|
||||
#
|
||||
# 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,9 +17,10 @@
|
||||
|
||||
|
||||
%global pkg_name cborg
|
||||
%global pkgver %{pkg_name}-%{version}
|
||||
%bcond_with tests
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 0.2.8.0
|
||||
Version: 0.2.10.0
|
||||
Release: 0
|
||||
Summary: Concise Binary Object Representation (CBOR)
|
||||
License: BSD-3-Clause
|
||||
@@ -28,26 +29,46 @@ Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg
|
||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.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-containers-devel
|
||||
BuildRequires: ghc-containers-prof
|
||||
BuildRequires: ghc-deepseq-devel
|
||||
BuildRequires: ghc-deepseq-prof
|
||||
BuildRequires: ghc-half-devel
|
||||
BuildRequires: ghc-half-prof
|
||||
BuildRequires: ghc-primitive-devel
|
||||
BuildRequires: ghc-primitive-prof
|
||||
BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-text-devel
|
||||
BuildRequires: ghc-text-prof
|
||||
ExcludeArch: %{ix86}
|
||||
%if %{with tests}
|
||||
BuildRequires: ghc-QuickCheck-devel
|
||||
BuildRequires: ghc-QuickCheck-prof
|
||||
BuildRequires: ghc-aeson-devel
|
||||
BuildRequires: ghc-aeson-prof
|
||||
BuildRequires: ghc-base-orphans-devel
|
||||
BuildRequires: ghc-base-orphans-prof
|
||||
BuildRequires: ghc-base16-bytestring-devel
|
||||
BuildRequires: ghc-base16-bytestring-prof
|
||||
BuildRequires: ghc-base64-bytestring-devel
|
||||
BuildRequires: ghc-base64-bytestring-prof
|
||||
BuildRequires: ghc-random-devel
|
||||
BuildRequires: ghc-random-prof
|
||||
BuildRequires: ghc-scientific-devel
|
||||
BuildRequires: ghc-scientific-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
|
||||
BuildRequires: ghc-vector-devel
|
||||
BuildRequires: ghc-vector-prof
|
||||
%endif
|
||||
|
||||
%description
|
||||
@@ -76,6 +97,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
|
||||
@@ -101,4 +138,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
|
||||
|
||||
Reference in New Issue
Block a user