Date: Tue, 18 Feb 2014 16:06:46 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344918 - in head/math: . p5-Math-Fleximal Message-ID: <201402181606.s1IG6k1N026553@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: matthew Date: Tue Feb 18 16:06:46 2014 New Revision: 344918 URL: http://svnweb.freebsd.org/changeset/ports/344918 QAT: https://qat.redports.org/buildarchive/r344918/ Log: This is a package for doing integer arithmetic while using a different base representation than normal. In base n arithmetic you have n symbols which have a representation. I was going to call them "glyphs", but being text strings they are not really. On Tye McQueen's whimsical suggestion I settled on the name Math::Fleximal, the set of text representations is called a "flex", and the representation of individual digits are the "flecks". These names are somewhat unofficial... This allows you to do basic arithmetic using whatever digits you want, and to convert from one to another. WWW: http://search.cpan.org/dist/Math-Fleximal/ Submitted by: Matthew Seaman <matthew@FreeBSD.org> Added: head/math/p5-Math-Fleximal/ head/math/p5-Math-Fleximal/Makefile (contents, props changed) head/math/p5-Math-Fleximal/distinfo (contents, props changed) head/math/p5-Math-Fleximal/pkg-descr (contents, props changed) head/math/p5-Math-Fleximal/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Feb 18 16:02:31 2014 (r344917) +++ head/math/Makefile Tue Feb 18 16:06:46 2014 (r344918) @@ -416,6 +416,7 @@ SUBDIR += p5-Math-Expr SUBDIR += p5-Math-FFT SUBDIR += p5-Math-FixedPrecision + SUBDIR += p5-Math-Fleximal SUBDIR += p5-Math-GMP SUBDIR += p5-Math-GMPf SUBDIR += p5-Math-GMPq Added: head/math/p5-Math-Fleximal/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/p5-Math-Fleximal/Makefile Tue Feb 18 16:06:46 2014 (r344918) @@ -0,0 +1,21 @@ +# Created by: Matthew Seaman <matthew@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= Math-Fleximal +PORTVERSION= 0.06 +CATEGORIES= math perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Integers with flexible representations + +NO_ARCH= yes + +USES= perl5 +USE_PERL5= configure + +regression-test: build + @cd ${WRKSRC} && ${MAKE} test + +.include <bsd.port.mk> Added: head/math/p5-Math-Fleximal/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/p5-Math-Fleximal/distinfo Tue Feb 18 16:06:46 2014 (r344918) @@ -0,0 +1,2 @@ +SHA256 (Math-Fleximal-0.06.tar.gz) = f642606b58d823bef931db6a0301c22813d4f761e5fcc346e2a77836fcb981dc +SIZE (Math-Fleximal-0.06.tar.gz) = 6807 Added: head/math/p5-Math-Fleximal/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/p5-Math-Fleximal/pkg-descr Tue Feb 18 16:06:46 2014 (r344918) @@ -0,0 +1,13 @@ +This is a package for doing integer arithmetic while using a different +base representation than normal. In base n arithmetic you have n +symbols which have a representation. I was going to call them +"glyphs", but being text strings they are not really. On Tye McQueen's +whimsical suggestion I settled on the name Math::Fleximal, the set of +text representations is called a "flex", and the representation of +individual digits are the "flecks". These names are somewhat +unofficial... + +This allows you to do basic arithmetic using whatever digits you want, +and to convert from one to another. + +WWW: http://search.cpan.org/dist/Math-Fleximal/ Added: head/math/p5-Math-Fleximal/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/p5-Math-Fleximal/pkg-plist Tue Feb 18 16:06:46 2014 (r344918) @@ -0,0 +1,6 @@ +%%PERL5_MAN3%%/Math::Fleximal.3.gz +%%SITE_PERL%%/Math/Fleximal.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Fleximal/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Fleximal +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math +@dirrmtry %%SITE_PERL%%/Math
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402181606.s1IG6k1N026553>