From owner-dev-commits-ports-all@freebsd.org Sun May 16 15:25:49 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3403E645003; Sun, 16 May 2021 15:25:49 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FjmLP0wvgz4YxR; Sun, 16 May 2021 15:25:49 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F19DB1B31B; Sun, 16 May 2021 15:25:48 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14GFPma9065578; Sun, 16 May 2021 15:25:48 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14GFPmEw065577; Sun, 16 May 2021 15:25:48 GMT (envelope-from git) Date: Sun, 16 May 2021 15:25:48 GMT Message-Id: <202105161525.14GFPmEw065577@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 9b34e118944b - main - devel/py-rstr: Add py-rstr 2.2.6 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 9b34e118944b02b756b2978f4c81a28a23f47608 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 May 2021 15:25:49 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=9b34e118944b02b756b2978f4c81a28a23f47608 commit 9b34e118944b02b756b2978f4c81a28a23f47608 Author: Po-Chuan Hsieh AuthorDate: 2021-05-16 15:12:38 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-05-16 15:23:43 +0000 devel/py-rstr: Add py-rstr 2.2.6 rstr is a helper module for easily generating random strings of various types. It could be useful for fuzz testing, generating dummy data, or other applications. It has no dependencies outside the standard library. WWW: https://github.com/leapfrogonline/rstr --- devel/Makefile | 1 + devel/py-rstr/Makefile | 20 ++++++++++++++++++++ devel/py-rstr/distinfo | 3 +++ devel/py-rstr/pkg-descr | 7 +++++++ 4 files changed, 31 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 7fc93e877862..b649c2ec79db 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5088,6 +5088,7 @@ SUBDIR += py-rply SUBDIR += py-rq SUBDIR += py-rq-scheduler + SUBDIR += py-rstr SUBDIR += py-rtree SUBDIR += py-rtslib-fb SUBDIR += py-ruamel.yaml diff --git a/devel/py-rstr/Makefile b/devel/py-rstr/Makefile new file mode 100644 index 000000000000..ebd9cb42b893 --- /dev/null +++ b/devel/py-rstr/Makefile @@ -0,0 +1,20 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= rstr +PORTVERSION= 2.2.6 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Generate random strings in Python + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include diff --git a/devel/py-rstr/distinfo b/devel/py-rstr/distinfo new file mode 100644 index 000000000000..0b46a111c4b5 --- /dev/null +++ b/devel/py-rstr/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1620928527 +SHA256 (rstr-2.2.6.tar.gz) = 5dea822326e418e0c9816c9cd14ae9c7be2d4cd4334043c397f202bc2ae2eda4 +SIZE (rstr-2.2.6.tar.gz) = 11197 diff --git a/devel/py-rstr/pkg-descr b/devel/py-rstr/pkg-descr new file mode 100644 index 000000000000..e838e340e0fa --- /dev/null +++ b/devel/py-rstr/pkg-descr @@ -0,0 +1,7 @@ +rstr is a helper module for easily generating random strings of various types. +It could be useful for fuzz testing, generating dummy data, or other +applications. + +It has no dependencies outside the standard library. + +WWW: https://github.com/leapfrogonline/rstr