From owner-svn-ports-head@freebsd.org Thu Apr 18 19:37:02 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 958B7157A80F; Thu, 18 Apr 2019 19:37:02 +0000 (UTC) (envelope-from kai@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 37E5D7635B; Thu, 18 Apr 2019 19:37:02 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 07FBE2388A; Thu, 18 Apr 2019 19:37:02 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3IJb1o4035966; Thu, 18 Apr 2019 19:37:01 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3IJb17q035962; Thu, 18 Apr 2019 19:37:01 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201904181937.x3IJb17q035962@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 18 Apr 2019 19:37:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r499310 - in head/devel: . py-funcy X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/devel: . py-funcy X-SVN-Commit-Revision: 499310 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 37E5D7635B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Apr 2019 19:37:02 -0000 Author: kai Date: Thu Apr 18 19:37:00 2019 New Revision: 499310 URL: https://svnweb.freebsd.org/changeset/ports/499310 Log: New port: devel/py-funcy A collection of fancy functional tools focused on practicality. It was designed to be a layer of functional tools over Python. It was inspired by Clojure and Underscore (JS library). WWW: https://github.com/Suor/funcy Approved by: mentors (implicit) Added: head/devel/py-funcy/ head/devel/py-funcy/Makefile (contents, props changed) head/devel/py-funcy/distinfo (contents, props changed) head/devel/py-funcy/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Apr 18 19:16:36 2019 (r499309) +++ head/devel/Makefile Thu Apr 18 19:37:00 2019 (r499310) @@ -4600,6 +4600,7 @@ SUBDIR += py-funcparserlib SUBDIR += py-funcsigs SUBDIR += py-functools32 + SUBDIR += py-funcy SUBDIR += py-fusefs SUBDIR += py-fusepy SUBDIR += py-future Added: head/devel/py-funcy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-funcy/Makefile Thu Apr 18 19:37:00 2019 (r499310) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= funcy +DISTVERSION= 1.12 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= kai@FreeBSD.org +COMMENT= Fancy and practical functional tools + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/devel/py-funcy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-funcy/distinfo Thu Apr 18 19:37:00 2019 (r499310) @@ -0,0 +1,3 @@ +TIMESTAMP = 1555580042 +SHA256 (funcy-1.12.tar.gz) = 3f3fb0387c6083ac692a8ac90565a08c257cc4283dc3b136c15bcb3a3d80ab6d +SIZE (funcy-1.12.tar.gz) = 376940 Added: head/devel/py-funcy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-funcy/pkg-descr Thu Apr 18 19:37:00 2019 (r499310) @@ -0,0 +1,6 @@ +A collection of fancy functional tools focused on practicality. It +was designed to be a layer of functional tools over Python. + +It was inspired by Clojure and Underscore (JS library). + +WWW: https://github.com/Suor/funcy