head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.4 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.2 pkgsrc-2012Q4-base:1.3 pkgsrc-2012Q1:1.2.0.12 pkgsrc-2012Q1-base:1.2 pkgsrc-2011Q4:1.2.0.10 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q3:1.2.0.8 pkgsrc-2011Q3-base:1.2 pkgsrc-2011Q2:1.2.0.6 pkgsrc-2011Q2-base:1.2 pkgsrc-2011Q1:1.2.0.4 pkgsrc-2011Q1-base:1.2 pkgsrc-2010Q4:1.2.0.2 pkgsrc-2010Q4-base:1.2 pkgsrc-2010Q3:1.1.1.1.0.6 pkgsrc-2010Q3-base:1.1.1.1 pkgsrc-2010Q2:1.1.1.1.0.4 pkgsrc-2010Q2-base:1.1.1.1 pkgsrc-2010Q1:1.1.1.1.0.2 pkgsrc-2010Q1-base:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.3 date 2012.04.25.18.55.39; author adam; state dead; branches; next 1.2; 1.2 date 2010.12.16.03.37.28; author taca; state Exp; branches; next 1.1; 1.1 date 2010.03.21.16.57.13; author jdolecek; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2010.03.21.16.57.13; author jdolecek; state Exp; branches 1.1.1.1.6.1; next ; 1.1.1.1.6.1 date 2010.12.23.10.28.38; author sbd; state Exp; branches; next ; desc @@ 1.3 log @Changes 2.0.0: * Fixed bug 61487 - bad bounds check in grapheme_strpos. * Fixed several tests. @ text @$NetBSD: patch-aa,v 1.2 2010/12/16 03:37:28 taca Exp $ --- php_intl.h.orig 1970-01-01 09:14:21.000000000 +0000 +++ php_intl.h @@@@ -65,6 +65,13 @@@@ PHP_MINFO_FUNCTION(intl); #define PHP_INTL_VERSION "1.1.1" +#if (PHP_VERSION_ID >= 50300) +# define PHP_INTL_ZEND_ARG_STATIC +#else +# define PHP_INTL_ZEND_ARG_STATIC static +# define Z_DELREF_P(object) (object)->refcount-- +#endif + #endif /* PHP_INTL_H */ /* @ 1.2 log @Update php-intl package to 1.1.2. Changelog says only "* Bugfixes" but it is really fix CVE-2010-4409. @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.1.1.1 2010/03/21 16:57:13 jdolecek Exp $ @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD$ d3 1 a3 1 --- php_intl.h.orig 2010-03-15 23:03:31.000000000 +0100 d5 1 a5 1 @@@@ -65,6 +65,12 @@@@ PHP_MINFO_FUNCTION(intl); d7 1 a7 1 #define PHP_INTL_VERSION "1.0.3" d15 1 @ 1.1.1.1 log @Add php-intl package, using PECL version 1.1.1, modified to compile with both PHP 5.3.2 and PHP 5.3.12 compile tested on Mac OS X 10.6.2 and NetBSD 5.0.1 This module is an internationalization extension, enabling PHP programmers to perform UCA-conformant collation and date/time/number/currency formatting in their scripts. It tends to closely follow ICU APIs, so that people having experience working with ICU in either C/C++ or Java could easily use the PHP API. Also, this way ICU documentation would be useful to understand various ICU functions. Intl consists of several modules, each of them exposes the corresponding ICU API: * Collator: provides string comparison capability with support for appropriate locale-sensitive sort orderings. * Number Formatter: allows to display number according to the localized format or given pattern or set of rules, and to parse strings into numbers. * Message Formatter: allows to create messages incorporating data (such as numbers or dates) formatted according to given pattern and locale rules, and parse messages extracting data from them. * Normalizer: provides a function to transform text into one of the Unicode normalization forms, and provides a routine to test if a given string is already normalized. * Locale: provides interaction with locale identifiers in the form of functions to get subtags from locale identifier; parse, compose, match(lookup and filter) locale identifiers. @ text @@ 1.1.1.1.6.1 log @Pullup ticket #3309 - requested by taca Revisions pulled up: - pkgsrc/textproc/php-intl/Makefile 1.2 - pkgsrc/textproc/php-intl/distinfo 1.2 - pkgsrc/textproc/php-intl/patches/patch-aa 1.2 ------------------------------------------------------------------------- Module Name: pkgsrc Committed By: taca Date: Thu Dec 16 03:37:28 UTC 2010 Modified Files: pkgsrc/textproc/php-intl: Makefile distinfo pkgsrc/textproc/php-intl/patches: patch-aa Log Message: Update php-intl package to 1.1.2. Changelog says only "* Bugfixes" but it is really fix CVE-2010-4409. @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.2 2010/12/16 03:37:28 taca Exp $ d3 1 a3 1 --- php_intl.h.orig 1970-01-01 09:14:21.000000000 +0000 d5 1 a5 1 @@@@ -65,6 +65,13 @@@@ PHP_MINFO_FUNCTION(intl); d7 1 a7 1 #define PHP_INTL_VERSION "1.1.1" a14 1 + @