From owner-svn-ports-head@FreeBSD.ORG Thu Nov 7 15:07:05 2013 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 ESMTP id 897F964A; Thu, 7 Nov 2013 15:07:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) 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 760A72660; Thu, 7 Nov 2013 15:07:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA7F75eZ027546; Thu, 7 Nov 2013 15:07:05 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA7F742Z027543; Thu, 7 Nov 2013 15:07:04 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201311071507.rA7F742Z027543@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 7 Nov 2013 15:07:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333110 - head/textproc/p5-Spreadsheet-WriteExcel 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.14 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: Thu, 07 Nov 2013 15:07:05 -0000 Author: sunpoet Date: Thu Nov 7 15:07:04 2013 New Revision: 333110 URL: http://svnweb.freebsd.org/changeset/ports/333110 Log: - Update to 2.40 - Add LICENSE - Sort *_DEPENDS - Convert to new options framework - Use USES=shebangfix - Respect EXAMPLES Changes: http://search.cpan.org/dist/Spreadsheet-WriteExcel/Changes Modified: head/textproc/p5-Spreadsheet-WriteExcel/Makefile head/textproc/p5-Spreadsheet-WriteExcel/distinfo (contents, props changed) head/textproc/p5-Spreadsheet-WriteExcel/pkg-plist (contents, props changed) Modified: head/textproc/p5-Spreadsheet-WriteExcel/Makefile ============================================================================== --- head/textproc/p5-Spreadsheet-WriteExcel/Makefile Thu Nov 7 15:06:56 2013 (r333109) +++ head/textproc/p5-Spreadsheet-WriteExcel/Makefile Thu Nov 7 15:07:04 2013 (r333110) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Spreadsheet-WriteExcel -PORTVERSION= 2.39 +PORTVERSION= 2.40 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,19 +10,25 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Write to a cross-platform Excel binary file -BUILD_DEPENDS= p5-Parse-RecDescent>=0:${PORTSDIR}/devel/p5-Parse-RecDescent \ +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Date-Calc>=0:${PORTSDIR}/devel/p5-Date-Calc \ + p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip \ p5-OLE-Storage_Lite>=0:${PORTSDIR}/devel/p5-OLE-Storage_Lite \ - p5-Date-Calc>=0:${PORTSDIR}/devel/p5-Date-Calc \ - p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip + p5-Parse-RecDescent>=0:${PORTSDIR}/devel/p5-Parse-RecDescent RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= perl5 -USE_PERL5= configure +OPTIONS_DEFINE= DOCS EXAMPLES + +USES= perl5 shebangfix USE_DOS2UNIX= yes +USE_PERL5= configure DOS2UNIX_REGEX= "*.p[lm]" +SHEBANG_FILES= examples/*.pl + post-install: -.ifndef(NOPORTDOCS) @${ECHO_MSG} "===> Installing documentation for ${PKGNAME}" @${MKDIR} ${STAGEDIR}${DOCSDIR}/images @${MKDIR} ${STAGEDIR}${DOCSDIR}/tpj_images @@ -35,6 +41,5 @@ post-install: ${WRKSRC}/examples/republic.png ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/*.txt ${STAGEDIR}${EXAMPLESDIR} -.endif .include Modified: head/textproc/p5-Spreadsheet-WriteExcel/distinfo ============================================================================== --- head/textproc/p5-Spreadsheet-WriteExcel/distinfo Thu Nov 7 15:06:56 2013 (r333109) +++ head/textproc/p5-Spreadsheet-WriteExcel/distinfo Thu Nov 7 15:07:04 2013 (r333110) @@ -1,2 +1,2 @@ -SHA256 (Spreadsheet-WriteExcel-2.39.tar.gz) = 545e8c7426aea1748bd73669cb9f3019d70f3d23b5b48f876634769ba2f2ea45 -SIZE (Spreadsheet-WriteExcel-2.39.tar.gz) = 494383 +SHA256 (Spreadsheet-WriteExcel-2.40.tar.gz) = e356aad6866cf135731268ee0e979a197443c15a04878e9cf3e80d022ad6c07e +SIZE (Spreadsheet-WriteExcel-2.40.tar.gz) = 480975 Modified: head/textproc/p5-Spreadsheet-WriteExcel/pkg-plist ============================================================================== --- head/textproc/p5-Spreadsheet-WriteExcel/pkg-plist Thu Nov 7 15:06:56 2013 (r333109) +++ head/textproc/p5-Spreadsheet-WriteExcel/pkg-plist Thu Nov 7 15:07:04 2013 (r333110) @@ -53,104 +53,104 @@ man/man1/chartex.1.gz %%PORTDOCS%%%%DOCSDIR%%/tpj_images/tpj0503-0004-03.gif %%PORTDOCS%%%%DOCSDIR%%/tpj_images/tpj0503-0004-04.gif %%PORTDOCS%%%%DOCSDIR%%/tpj_images/tpj0503-0004-05.gif -%%PORTDOCS%%%%EXAMPLESDIR%%/README -%%PORTDOCS%%%%EXAMPLESDIR%%/a_simple.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/autofilter.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/autofit.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/bigfile.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/bug_report.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/cgi.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/chart_area.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/chart_bar.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/chart_column.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/chart_line.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/chart_pie.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/chart_scatter.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/chart_stock.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/chess.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/colors.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/comments1.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/comments2.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/convertA1.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/copyformat.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/csv2xls.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/data_validate.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/date_time.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/datecalc1.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/datecalc2.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/defined_name.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/demo.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/diag_border.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/easter_egg.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/filehandle.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/formats.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/formula_result.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/function_locale.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/gen_examples_pod.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/headers.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/hide_sheet.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/hyperlink1.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/hyperlink2.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/images.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/indent.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/lecxe.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/merge1.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/merge2.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/merge3.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/merge4.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/merge5.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/merge6.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/mod_perl1.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/mod_perl2.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/outline.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/outline_collapsed.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/panes.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/properties.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/protection.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/regions.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/repeat.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/republic.png -%%PORTDOCS%%%%EXAMPLESDIR%%/right_to_left.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/row_wrap.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/sales.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/sendmail.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/stats.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/stats_ext.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/stocks.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/tab2xls.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/tab_colors.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/textwrap.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_2022_jp.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_2022_jp.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_8859_11.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_8859_11.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_8859_7.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_8859_7.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_big5.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_big5.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_cp1251.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_cp1251.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_cp1256.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_cp1256.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_cyrillic.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_koi8r.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_koi8r.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_list.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_polish_utf8.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_polish_utf8.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_shift_jis.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_shift_jis.txt -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_utf16.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/unicode_utf16_japan.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/win32ole.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/writeA1.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/write_arrays.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/write_handler1.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/write_handler2.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/write_handler3.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/write_handler4.pl -%%PORTDOCS%%%%EXAMPLESDIR%%/write_to_scalar.pl -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/a_simple.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/autofilter.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/autofit.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bigfile.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bug_report.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cgi.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chart_area.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chart_bar.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chart_column.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chart_line.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chart_pie.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chart_scatter.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chart_stock.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chess.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/colors.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comments1.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comments2.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/convertA1.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copyformat.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csv2xls.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/data_validate.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/date_time.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/datecalc1.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/datecalc2.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/defined_name.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diag_border.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/easter_egg.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/filehandle.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formats.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/formula_result.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/function_locale.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gen_examples_pod.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/headers.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hide_sheet.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hyperlink1.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hyperlink2.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/images.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/indent.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lecxe.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/merge1.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/merge2.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/merge3.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/merge4.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/merge5.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/merge6.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_perl1.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mod_perl2.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/outline.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/outline_collapsed.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/panes.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/properties.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/protection.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/regions.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/repeat.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/republic.png +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/right_to_left.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/row_wrap.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sales.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sendmail.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stats.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stats_ext.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stocks.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tab2xls.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tab_colors.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/textwrap.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_2022_jp.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_2022_jp.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_8859_11.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_8859_11.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_8859_7.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_8859_7.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_big5.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_big5.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_cp1251.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_cp1251.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_cp1256.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_cp1256.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_cyrillic.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_koi8r.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_koi8r.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_list.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_polish_utf8.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_polish_utf8.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_shift_jis.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_shift_jis.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_utf16.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/unicode_utf16_japan.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/win32ole.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/writeA1.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write_arrays.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write_handler1.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write_handler2.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write_handler3.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write_handler4.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write_to_scalar.pl +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/tpj_images %%PORTDOCS%%@dirrm %%DOCSDIR%%/images %%PORTDOCS%%@dirrm %%DOCSDIR%%