From owner-svn-ports-all@freebsd.org Tue Aug 25 03:09:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24ABF9C2906; Tue, 25 Aug 2015 03:09:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0A4B1C02; Tue, 25 Aug 2015 03:09:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7P39l9t082866; Tue, 25 Aug 2015 03:09:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7P39lIH082864; Tue, 25 Aug 2015 03:09:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508250309.t7P39lIH082864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 25 Aug 2015 03:09:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395212 - head/devel/p5-Scalar-String X-SVN-Group: ports-head 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.20 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: Tue, 25 Aug 2015 03:09:48 -0000 Author: sunpoet Date: Tue Aug 25 03:09:46 2015 New Revision: 395212 URL: https://svnweb.freebsd.org/changeset/ports/395212 Log: - Simplify COMMENT - Fix LICENSE section - Strip shared library - Reformat pkg-descr - Take maintainership Modified: head/devel/p5-Scalar-String/Makefile head/devel/p5-Scalar-String/pkg-descr Modified: head/devel/p5-Scalar-String/Makefile ============================================================================== --- head/devel/p5-Scalar-String/Makefile Tue Aug 25 03:09:41 2015 (r395211) +++ head/devel/p5-Scalar-String/Makefile Tue Aug 25 03:09:46 2015 (r395212) @@ -8,12 +8,16 @@ CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= ports@FreeBSD.org -COMMENT= Perl module for string aspects of scalars +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= String aspects of scalars -LICENSE_COMB= dual LICENSE= ART10 GPLv1 -USES= perl5 +LICENSE_COMB= dual + USE_PERL5= modbuild +USES= perl5 + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Scalar/String/String.so .include Modified: head/devel/p5-Scalar-String/pkg-descr ============================================================================== --- head/devel/p5-Scalar-String/pkg-descr Tue Aug 25 03:09:41 2015 (r395211) +++ head/devel/p5-Scalar-String/pkg-descr Tue Aug 25 03:09:46 2015 (r395212) @@ -1,14 +1,13 @@ -This module is about the string part of plain Perl scalars. A scalar -has a string value, which is notionally a sequence of Unicode -codepoints, but may be internally encoded in either ISO-8859-1 or -UTF-8. In places, and more so in older versions of Perl, the internal -encoding shows through. To fully understand Perl strings it is -necessary to understand these implementation details. +This module is about the string part of plain Perl scalars. A scalar has a +string value, which is notionally a sequence of Unicode codepoints, but may be +internally encoded in either ISO-8859-1 or UTF-8. In places, and more so in +older versions of Perl, the internal encoding shows through. To fully understand +Perl strings it is necessary to understand these implementation details. -This module provides functions to classify a string by encoding and to -encode a string in a desired way. +This module provides functions to classify a string by encoding and to encode a +string in a desired way. -This module is implemented in XS, with a pure Perl backup version for -systems that can't handle XS. +This module is implemented in XS, with a pure Perl backup version for systems +that can't handle XS. WWW: http://search.cpan.org/dist/Scalar-String/