-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.0.0.0 New epoch time! lots of changes to the API. Please see MIGRATION.md for more info: Add support for GHC 9.x Bumped bounds to more modern dependency set Introduced Base64 newtype, located in Data.Base64.Types, as well as ADT for associated alphabets. Signature for encodeBase64 has changed so that it produces a Base64 wrapped value. decodeBase64 and its URLsafe variants now consume a value of type Base64 and produces a decoded value of the underlying type. The old decodeBase64 and its URLsafe variants is now renamed to decodeBase64Untyped*. Fix for 32-bit systems in which memory barriers were not respected in the encoe loop (see: #56) Optimize encode and decode loops to achieve significant speedup across the board. Thanks to everyone who contributed (especially @sofia-m-a!).
- Loading branch information
1 parent
61f6d85
commit fd59ae1
Showing
4 changed files
with
20 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
# $NetBSD: Makefile,v 1.7 2023/11/02 06:36:11 pho Exp $ | ||
# $NetBSD: Makefile,v 1.8 2024/05/01 14:16:03 pho Exp $ | ||
|
||
DISTNAME= base64-0.4.2.4 | ||
PKGREVISION= 3 | ||
DISTNAME= base64-1.0 | ||
CATEGORIES= converters | ||
|
||
MAINTAINER= [email protected] | ||
COMMENT= Modern RFC 4648-compliant Base64 library | ||
LICENSE= modified-bsd | ||
|
||
HASKELL_UNRESTRICT_DEPENDENCIES+= \ | ||
base \ | ||
text | ||
|
||
.include "../../textproc/hs-text-short/buildlink3.mk" | ||
.include "../../mk/haskell.mk" | ||
.include "../../mk/bsd.pkg.mk" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.3 2023/01/30 11:49:15 wiz Exp $ | ||
$NetBSD: distinfo,v 1.4 2024/05/01 14:16:03 pho Exp $ | ||
|
||
BLAKE2s (base64-0.4.2.4.tar.gz) = 6792db2de83a162db8b8fbdf55333541ebdcac75a496a817e53c355d88b9da0f | ||
SHA512 (base64-0.4.2.4.tar.gz) = cf7e0f3b7dbd336ecee0aad8df93793c9f72dbfc882f2f5491e3910693f2c530bb2d9762baea729cb7c5cc2a4c3bf130fdff2aa2661fc23e0c8d726de58deb6f | ||
Size (base64-0.4.2.4.tar.gz) = 22065 bytes | ||
BLAKE2s (base64-1.0.tar.gz) = f3a6e38cf237aa24e4a4546609e00a183e6e93b48355e8c62fb87d1170940d31 | ||
SHA512 (base64-1.0.tar.gz) = ba37eeaafff55a4ddb5b59253b1e7a00ebf543fa2745583e476e3fbd45257e9ab0f69061ff83291356318f5952d6101e0779808df7bf5a8aa340638637866e8a | ||
Size (base64-1.0.tar.gz) = 30399 bytes |