From owner-svn-ports-all@freebsd.org Sun Jun 17 20:07:09 2018 Return-Path: Delivered-To: svn-ports-all@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 DBCF11008067; Sun, 17 Jun 2018 20:07:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 888547C84C; Sun, 17 Jun 2018 20:07:08 +0000 (UTC) (envelope-from yuri@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 6B0E11A046; Sun, 17 Jun 2018 20:07:08 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HK78PF006227; Sun, 17 Jun 2018 20:07:08 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HK77lf006223; Sun, 17 Jun 2018 20:07:07 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806172007.w5HK77lf006223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 17 Jun 2018 20:07:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472631 - in head/math: . py-permutation X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-permutation X-SVN-Commit-Revision: 472631 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jun 2018 20:07:09 -0000 Author: yuri Date: Sun Jun 17 20:07:07 2018 New Revision: 472631 URL: https://svnweb.freebsd.org/changeset/ports/472631 Log: New port: math/py-permutation: Permutations of finitely many positive integers Added: head/math/py-permutation/ head/math/py-permutation/Makefile (contents, props changed) head/math/py-permutation/distinfo (contents, props changed) head/math/py-permutation/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Jun 17 19:24:48 2018 (r472630) +++ head/math/Makefile Sun Jun 17 20:07:07 2018 (r472631) @@ -691,6 +691,7 @@ SUBDIR += py-pandas SUBDIR += py-pandas-datareader SUBDIR += py-patsy + SUBDIR += py-permutation SUBDIR += py-petsc4py SUBDIR += py-piranha SUBDIR += py-plastex Added: head/math/py-permutation/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-permutation/Makefile Sun Jun 17 20:07:07 2018 (r472631) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= permutation +DISTVERSIONPREFIX= v +DISTVERSION= 0.1.0-2 +DISTVERSIONSUFFIX= -g42654bb +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Permutations of finitely many positive integers + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= jwodder +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/math/py-permutation/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-permutation/distinfo Sun Jun 17 20:07:07 2018 (r472631) @@ -0,0 +1,3 @@ +TIMESTAMP = 1529265718 +SHA256 (jwodder-permutation-v0.1.0-2-g42654bb_GH0.tar.gz) = 20419731be9aaba9efa74842769c88f8db3da3be83779e77cbf0fb42c386b10c +SIZE (jwodder-permutation-v0.1.0-2-g42654bb_GH0.tar.gz) = 12979 Added: head/math/py-permutation/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-permutation/pkg-descr Sun Jun 17 20:07:07 2018 (r472631) @@ -0,0 +1,7 @@ +permutation provides a Permutation class for representing permutations of +finitely many positive integers in Python. Supported operations & properties +include inverses, (group theoretic) order, parity, composition/multiplication, +cycle decomposition, cycle notation, word representation, Lehmer codes, and, +of course, use as a callable on integers. + +WWW: https://github.com/jwodder/permutation