From owner-dev-commits-ports-main@freebsd.org Sun Sep 19 06:07:29 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D5A356AB8F1; Sun, 19 Sep 2021 06:07:29 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HBy011Yqyz3MrH; Sun, 19 Sep 2021 06:07:29 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6BEFB183AE; Sun, 19 Sep 2021 06:07:28 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 18J67SD1053280; Sun, 19 Sep 2021 06:07:28 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18J67StT053279; Sun, 19 Sep 2021 06:07:28 GMT (envelope-from git) Date: Sun, 19 Sep 2021 06:07:28 GMT Message-Id: <202109190607.18J67StT053279@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: a70f71ce733d - main - devel/pear-HTML_Template_Sigma: Update COMMENT MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: a70f71ce733d86200190b02e5c851094ce3c887e Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Sep 2021 06:07:30 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=a70f71ce733d86200190b02e5c851094ce3c887e commit a70f71ce733d86200190b02e5c851094ce3c887e Author: Po-Chuan Hsieh AuthorDate: 2021-09-19 05:28:59 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-09-19 06:00:01 +0000 devel/pear-HTML_Template_Sigma: Update COMMENT - Add NO_ARCH - Update pkg-descr - Update WWW --- devel/pear-HTML_Template_Sigma/Makefile | 6 ++++-- devel/pear-HTML_Template_Sigma/pkg-descr | 36 ++++++++++++++++---------------- 2 files changed, 22 insertions(+), 20 deletions(-) diff --git a/devel/pear-HTML_Template_Sigma/Makefile b/devel/pear-HTML_Template_Sigma/Makefile index 772ddf0fe404..1e953de2822a 100644 --- a/devel/pear-HTML_Template_Sigma/Makefile +++ b/devel/pear-HTML_Template_Sigma/Makefile @@ -5,11 +5,13 @@ PORTVERSION= 1.3.0 CATEGORIES= devel www pear MAINTAINER= sunpoet@FreeBSD.org -COMMENT= PEAR template API +COMMENT= Implementation of Integrated Templates API with template 'compilation' added LICENSE= PHP301 -USES= pear php +USES= pear USE_PHP= ctype +NO_ARCH= yes + .include diff --git a/devel/pear-HTML_Template_Sigma/pkg-descr b/devel/pear-HTML_Template_Sigma/pkg-descr index 7e2400771708..5f8ed5187e21 100644 --- a/devel/pear-HTML_Template_Sigma/pkg-descr +++ b/devel/pear-HTML_Template_Sigma/pkg-descr @@ -1,22 +1,22 @@ HTML_Template_Sigma implements Integrated Templates API designed by Ulf Wendel. Features: - * Nested blocks. Nesting is controlled by the engine. - * Ability to include files from within template: - * Automatic removal of empty blocks and unknown variables - (methods to manually tweak/override this are also available) - * Methods for runtime addition and replacement of blocks in templates - * Ability to insert simple function calls into templates: - func_uppercase('Hello world!') and to define callback functions for these - * 'Compiled' templates: the engine has to parse a template file using regular - expressions to find all the blocks and variable placeholders. - This is a very "expensive" operation and is an overkill to do on every page - request: templates seldom change on production websites. - Thus this feature: an internal representation of the template structure is - saved into a file and this file gets loaded instead of the source one on - subsequent requests (unless the source changes) - * PHPUnit-based tests to define correct behaviour - * Usage examples for most of the features are available, look in the docs/ - directory +- Nested blocks. Nesting is controlled by the engine. +- Ability to include files from within template: +- Automatic removal of empty blocks and unknown variables (methods to manually + tweak/override this are also available) +- Methods for runtime addition and replacement of blocks in templates +- Ability to insert simple function calls into templates: func_uppercase('Hello + world!') and to define callback functions for these +- 'Compiled' templates: the engine has to parse a template file using regular + expressions to find all the blocks and variable placeholders. This is a very + "expensive" operation and is an overkill to do on every page request: + templates seldom change on production websites. Thus this feature: an internal + representation of the template structure is saved into a file and this file + gets loaded instead of the source one on subsequent requests (unless the + source changes) +- PHPUnit-based tests to define correct behaviour +- Usage examples for most of the features are available, look in the docs/ + directory -WWW: https://pear.php.net/package-info.php?package=HTML_Template_Sigma +WWW: https://pear.php.net/package/HTML_Template_Sigma