Re: git: 5679cabff6b1 - main - devel/cppcodec: Library to encode/decode base64, base64url, etc.
- Reply: Jason Bacon : "Re: git: 5679cabff6b1 - main - devel/cppcodec: Library to encode/decode base64, base64url, etc."
- In reply to: Jason W. Bacon: "git: 5679cabff6b1 - main - devel/cppcodec: Library to encode/decode base64, base64url, etc."
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 06 Sep 2025 19:15:53 UTC
On 9/6/25 01:29, Jason W. Bacon wrote: > The branch main has been updated by jwb: > > URL: https://cgit.FreeBSD.org/ports/commit/?id=5679cabff6b10a7bd2719a88d59eae2bf4f4b0a9 > > commit 5679cabff6b10a7bd2719a88d59eae2bf4f4b0a9 > Author: Jason W. Bacon <jwb@FreeBSD.org> > AuthorDate: 2025-09-05 23:28:56 +0000 > Commit: Jason W. Bacon <jwb@FreeBSD.org> > CommitDate: 2025-09-05 23:28:56 +0000 > > devel/cppcodec: Library to encode/decode base64, base64url, etc. > > Header-only C++11 library to encode/decode base64, base64url, base32, > base32hex and hex (a.k.a. base16) as specified in RFC 4648, plus > Crockford's base32. > > MIT licensed with consistent, flexible API. Supports raw pointers, > std::string and (templated) character vectors without unnecessary > allocations. Cross-platform with measured decent performance and > without compiler warnings. > --- > devel/Makefile | 1 + > devel/cppcodec/Makefile | 19 +++++++++++++++++++ > devel/cppcodec/distinfo | 3 +++ > devel/cppcodec/pkg-descr | 8 ++++++++ > devel/cppcodec/pkg-plist | 26 ++++++++++++++++++++++++++ > 5 files changed, 57 insertions(+) > > diff --git a/devel/Makefile b/devel/Makefile > index a43c0f742cae..63502b83ed68 100644 > --- a/devel/Makefile > +++ b/devel/Makefile > @@ -500,6 +500,7 @@ > SUBDIR += covtool > SUBDIR += cpan-upload > SUBDIR += cpan-upload-http > + SUBDIR += cpp-codec > SUBDIR += cpp-netlib > SUBDIR += cpp-utilities > SUBDIR += cpp2py Hi! Looks like there is a typo here, SUBDIR is "cpp-codec" but the actual path is "cppcodec". I think one of them needs to be corrected. > diff --git a/devel/cppcodec/Makefile b/devel/cppcodec/Makefile Thanks! -- Guido Falsi <madpilot@FreeBSD.org>