Date: Fri, 8 Jan 2016 04:34:35 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405514 - in head/devel: . py-unpaddedbase64 Message-ID: <201601080434.u084YZ0i085923@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Fri Jan 8 04:34:34 2016 New Revision: 405514 URL: https://svnweb.freebsd.org/changeset/ports/405514 Log: [NEW] devel/py-unpaddedbase64: Unpadded Base64 Encode and decode Base64 without "=" padding. RFC 4648 specifies that Base64 should be padded to a multiple of 4 bytes using "=" characters. However this conveys no benefit so many protocols choose to use Base64 without the "=" padding. WWW: https://github.com/matrix-org/python-unpaddedbase64 PR: 205914 Submitted by: Brendan Molloy <brendan+freebsd@bbqsrc.net> Added: head/devel/py-unpaddedbase64/ head/devel/py-unpaddedbase64/Makefile (contents, props changed) head/devel/py-unpaddedbase64/distinfo (contents, props changed) head/devel/py-unpaddedbase64/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jan 8 04:31:43 2016 (r405513) +++ head/devel/Makefile Fri Jan 8 04:34:34 2016 (r405514) @@ -4394,6 +4394,7 @@ SUBDIR += py-unipath SUBDIR += py-unittest2 SUBDIR += py-unittestplus + SUBDIR += py-unpaddedbase64 SUBDIR += py-urlimport SUBDIR += py-urwid SUBDIR += py-urwidtrees Added: head/devel/py-unpaddedbase64/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-unpaddedbase64/Makefile Fri Jan 8 04:34:34 2016 (r405514) @@ -0,0 +1,30 @@ +# Created by: Brendan Molloy <brendan+freebsd@bbqsrc.net> +# $FreeBSD$ + +PORTNAME= unpaddedbase64 +PORTVERSION= 1.0.1 +DISTVERSIONPREFIX= v +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= brendan+freebsd@bbqsrc.net +COMMENT= Unpadded Base64 + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest + +USES= python +USE_GITHUB= yes +USE_PYTHON= autoplist distutils + +GH_ACCOUNT= matrix-org +GH_PROJECT= python-unpaddedbase64 + +NO_ARCH= yes + +do-test: + @(cd ${WRKSRC} && ${PYTHON_CMD} -m pytest) + +.include <bsd.port.mk> Added: head/devel/py-unpaddedbase64/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-unpaddedbase64/distinfo Fri Jan 8 04:34:34 2016 (r405514) @@ -0,0 +1,2 @@ +SHA256 (matrix-org-python-unpaddedbase64-v1.0.1_GH0.tar.gz) = 5ed4493a8af7083e8a5dba8364712d0d96b9e7c01207599a1b7c1b0c117334e6 +SIZE (matrix-org-python-unpaddedbase64-v1.0.1_GH0.tar.gz) = 5759 Added: head/devel/py-unpaddedbase64/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-unpaddedbase64/pkg-descr Fri Jan 8 04:34:34 2016 (r405514) @@ -0,0 +1,7 @@ +Encode and decode Base64 without "=" padding. + +RFC 4648 specifies that Base64 should be padded to a multiple of 4 bytes using +"=" characters. However this conveys no benefit so many protocols choose to use +Base64 without the "=" padding. + +WWW: https://github.com/matrix-org/python-unpaddedbase64
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601080434.u084YZ0i085923>