summaryrefslogtreecommitdiff
path: root/textproc/php-intl
AgeCommit message (Collapse)AuthorFilesLines
2012-10-25Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-07-20- Reset PKG_REVISION by both php53 and php54 are updated.taca1-2/+1
- Remove supporting php5 (PHP 5.2.x) supporting codes.
2012-06-18Remove PHP 5.2.x supporting code.taca3-30/+1
2012-06-16Use bundled version instead of PECL release for PHP 5.2.x.taca1-3/+11
2012-04-27Recursive bump from icu shlib major bumped to 49.obache1-1/+2
2012-04-25Changes 2.0.0:adam13-368/+14
* Fixed bug 61487 - bad bounds check in grapheme_strpos. * Fixed several tests.
2011-12-17Change default PKGNAME scheme for PECL packages.obache1-1/+2
Drop ${PHP_BASE_VARS} from PKGVERSION by default. It used to be required to support multiple php version. But after PHP version based ${PHP_PKG_PREFIX} was introduced, such trick is not required anymore. In addition to this, such version name schme invokes unwanted version bump when base php version is bumped, plus, such version scheme is hard to use for DEPENDS pattern. To avoid downgrading of package using such legacy version scheme, PECL_LEGACY_VERSION_SCHEME is introduced. If it is defined, current version scheme is still used for currently supported PHP version (5 and 53), but instead of ${PHP_BASE_VARS}, current fixed PHP base version in pkgsrc is used to avoid unwanted version bump from update of PHP base package. With newer PHP (54, or so on), new version scheme will be used if it is defined. This trick will not be required and should be removed after php5 and php53 will be gone away from pkgsrc.
2011-10-29Do not change PHP_VERSIONS_ACCEPTED in phpversion.mk.cheusov1-3/+1
It is not necessary anymore. No objections in tech-pkg@.
2011-06-10recursive bump from textproc/icu shlib major bump.obache1-2/+2
2011-02-26Add a fix for CVE-2011-0420 (CERT: VU#210829) from PHP's repository, r306449.taca3-2/+30
Bump PKGREVISION.
2011-01-07Reset PKGREVISION because of base php5/php53 version's updates.taca1-2/+1
2010-12-17Bump PKGREVISION from icu shlib major bump.obache1-1/+2
2010-12-16Update php-intl package to 1.1.2.taca3-11/+12
Changelog says only "* Bugfixes" but it is really fix CVE-2010-4409.
2010-03-21Add php-intl package, using PECL version 1.1.1, modified to compile withjdolecek12-0/+386
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.