diff options
author | taca <taca@pkgsrc.org> | 2012-03-11 13:16:55 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2012-03-11 13:16:55 +0000 |
commit | beb6bb1b8b1acebfd515c758d6258d11c0795d62 (patch) | |
tree | 6a16c49e319ca4199b4cdc6e958943298eda3cc5 /www | |
parent | ac4eece7c0220690c928c624df9a711e10bc901e (diff) | |
download | pkgsrc-beb6bb1b8b1acebfd515c758d6258d11c0795d62.tar.gz |
Contao 2.11.1's distfile has been updated without changing the file name.
Nothing would not change with binary package, no PKGREVISION change again.
Diffstat (limited to 'www')
-rw-r--r-- | www/contao/Makefile.common | 3 | ||||
-rw-r--r-- | www/contao211/distinfo | 9 | ||||
-rw-r--r-- | www/contao211/patches/patch-plugins_idna_idna__convert.class.php | 15 |
3 files changed, 6 insertions, 21 deletions
diff --git a/www/contao/Makefile.common b/www/contao/Makefile.common index 8ead8d1e168..c5f5fb6c0f7 100644 --- a/www/contao/Makefile.common +++ b/www/contao/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.11 2012/03/10 03:41:42 taca Exp $ +# $NetBSD: Makefile.common,v 1.12 2012/03/11 13:16:55 taca Exp $ # # used by www/contao29/Makefile # used by www/contao29-example/Makefile @@ -25,6 +25,7 @@ CT_VERSION= ${CT210_VERSION} CT_DIST_SUBDIR= contao210-201201020 .elif ${CT_VERS} == "211" CT_VERSION= ${CT211_VERSION} +CT_DIST_SUBDIR= contao211-201203090 .else .error "Illegal version specified: ${CT_VERS}" .endif diff --git a/www/contao211/distinfo b/www/contao211/distinfo index 52048211651..2865ae7ae59 100644 --- a/www/contao211/distinfo +++ b/www/contao211/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.3 2012/03/10 03:43:09 taca Exp $ +$NetBSD: distinfo,v 1.4 2012/03/11 13:16:55 taca Exp $ -SHA1 (contao-2.11.1.tar.gz) = ba48d9f7a8b9596b910679c0ccf5f29c2e0f6cc5 -RMD160 (contao-2.11.1.tar.gz) = 94d5971b94f1da885d0613122df3fb5100dc2e63 -Size (contao-2.11.1.tar.gz) = 5318332 bytes -SHA1 (patch-plugins_idna_idna__convert.class.php) = 44b825f9a53a9cee4529d0b50f4660f701224bcc +SHA1 (contao211-201203090/contao-2.11.1.tar.gz) = 131359c47be5a720d4b34eeccab1503cabc9d1c8 +RMD160 (contao211-201203090/contao-2.11.1.tar.gz) = 98bed892f4cabeeee262d943886117fd29e9bda4 +Size (contao211-201203090/contao-2.11.1.tar.gz) = 5318338 bytes diff --git a/www/contao211/patches/patch-plugins_idna_idna__convert.class.php b/www/contao211/patches/patch-plugins_idna_idna__convert.class.php deleted file mode 100644 index f0424d6c150..00000000000 --- a/www/contao211/patches/patch-plugins_idna_idna__convert.class.php +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-plugins_idna_idna__convert.class.php,v 1.1 2012/03/10 03:42:30 taca Exp $ - -* Fix problem on PHP 5.2. - ---- plugins/idna/idna_convert.class.php.orig 2012-03-09 11:31:02.000000000 +0000 -+++ plugins/idna/idna_convert.class.php -@@ -973,7 +973,7 @@ class idna_convert - } - // PATCH: support PHP 5.2 (see #4044) - //return strlen((binary) $string); -- return version_compare(PHP_VERSION, '5.3.0', '>=') ? strlen((binary) $string) : strlen(unpack('c*', $string)); -+ return version_compare(PHP_VERSION, '5.3.0', '>=') ? strlen((binary) $string) : count(unpack('c*', $string)); - } - - /** |