From owner-svn-ports-head@FreeBSD.ORG Tue Feb 18 16:06:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDA84217; Tue, 18 Feb 2014 16:06:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A21FA1648; Tue, 18 Feb 2014 16:06:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1IG6lno026558; Tue, 18 Feb 2014 16:06:47 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1IG6k1N026553; Tue, 18 Feb 2014 16:06:46 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201402181606.s1IG6k1N026553@svn.freebsd.org> From: Matthew Seaman Date: Tue, 18 Feb 2014 16:06:46 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 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: Tue, 18 Feb 2014 16:06:47 -0000 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 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 +# $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 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