osc copypac from project:devel:languages:haskell:ghc-8.6.x package:ghc-base64-bytestring revision:8, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-base64-bytestring?expand=0&rev=47
This commit is contained in:
parent
868f63cf16
commit
05490da0ee
3
base64-bytestring-1.0.0.2.tar.gz
Normal file
3
base64-bytestring-1.0.0.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:193654ed9bd9e7f20163c9b70bab32d33010be50a5e1e8e2258229faf32a608c
|
||||||
|
size 9830
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3746c15de0b4d107cf00eab6b16856d688b003e15e98555be15956afd76ae4ef
|
|
||||||
size 13430
|
|
@ -1,42 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Tue Aug 18 10:44:07 UTC 2020 - Peter Simons <psimons@suse.com>
|
|
||||||
|
|
||||||
- Replace %setup -q with the more modern %autosetup macro.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sat Aug 15 02:02:13 UTC 2020 - psimons@suse.com
|
|
||||||
|
|
||||||
- Update base64-bytestring to version 1.2.0.0.
|
|
||||||
# 1.2.0.0
|
|
||||||
|
|
||||||
* Security fix: reject non-canonical base64 encoded values - ([#38](https://github.com/haskell/base64-bytestring/pull/38)) fixing issue [#24](https://github.com/haskell/base64-bytestring/issues/24).
|
|
||||||
|
|
||||||
* Security fix: reject bytestrings with improper padding that can be "completed" by the unpadded-Base64url workflow, and homogenize error messages ([#33](https://github.com/haskell/base64-bytestring/pull/33))
|
|
||||||
|
|
||||||
* Test coverage expanded to 98% of the library. All critical paths covered.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Jun 9 09:10:56 UTC 2020 - psimons@suse.com
|
|
||||||
|
|
||||||
- Update base64-bytestring to version 1.1.0.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/base64-bytestring-1.1.0.0/src/CHANGELOG.md
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue Jan 14 03:03:06 UTC 2020 - psimons@suse.com
|
|
||||||
|
|
||||||
- Update base64-bytestring to version 1.0.0.3.
|
|
||||||
# 1.0.0.3
|
|
||||||
|
|
||||||
* Made performance more robust
|
|
||||||
([#27](https://github.com/haskell/base64-bytestring/pull/27)).
|
|
||||||
* Improved documentation
|
|
||||||
([#23](https://github.com/haskell/base64-bytestring/pull/23)).
|
|
||||||
* Improved the performance of decodeLenient a bit
|
|
||||||
([#21](https://github.com/haskell/base64-bytestring/pull/21)).
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 8 16:13:16 UTC 2019 - Peter Simons <psimons@suse.com>
|
Fri Nov 8 16:13:16 UTC 2019 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-base64-bytestring
|
# spec file for package ghc-base64-bytestring
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%global pkg_name base64-bytestring
|
%global pkg_name base64-bytestring
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 1.2.0.0
|
Version: 1.0.0.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Fast base64 encoding and decoding for ByteStrings
|
Summary: Fast base64 encoding and decoding for ByteStrings
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -41,10 +41,7 @@ BuildRequires: ghc-test-framework-quickcheck2-devel
|
|||||||
%description
|
%description
|
||||||
This package provides support for encoding and decoding binary data according
|
This package provides support for encoding and decoding binary data according
|
||||||
to 'base64' (see also <https://tools.ietf.org/html/rfc4648 RFC 4648>) for
|
to 'base64' (see also <https://tools.ietf.org/html/rfc4648 RFC 4648>) for
|
||||||
strict and lazy ByteStrings
|
strict and lazy ByteStrings.
|
||||||
|
|
||||||
For a fuller-featured and better-performing Base64 library, see the
|
|
||||||
<https://hackage.haskell.org/package/base64 base64> package.
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Haskell %{pkg_name} library development files
|
Summary: Haskell %{pkg_name} library development files
|
||||||
@ -58,7 +55,7 @@ This package provides the Haskell %{pkg_name} library development
|
|||||||
files.
|
files.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{pkg_name}-%{version}
|
%setup -q -n %{pkg_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%ghc_lib_build
|
%ghc_lib_build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user