summaryrefslogtreecommitdiff
path: root/www/contao211
diff options
context:
space:
mode:
authortaca <taca>2012-03-11 13:16:55 +0000
committertaca <taca>2012-03-11 13:16:55 +0000
commit2bc1edb4222e20353a66991ebd24a42e5e444674 (patch)
tree6a16c49e319ca4199b4cdc6e958943298eda3cc5 /www/contao211
parent5f1f1de118d4e24cf5db34d86133c58899b7ae75 (diff)
downloadpkgsrc-2bc1edb4222e20353a66991ebd24a42e5e444674.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/contao211')
-rw-r--r--www/contao211/distinfo9
-rw-r--r--www/contao211/patches/patch-plugins_idna_idna__convert.class.php15
2 files changed, 4 insertions, 20 deletions
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));
- }
-
- /**