Date: Sun, 17 Jun 2018 20:07:07 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472631 - in head/math: . py-permutation Message-ID: <201806172007.w5HK77lf006223@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806172007.w5HK77lf006223>