summaryrefslogtreecommitdiff
path: root/devel/ice/files/patch-cpp-test-Ice-properties-run.py
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2014-01-09 01:57:20 +0000
committerMatthias Andree <mandree@FreeBSD.org>2014-01-09 01:57:20 +0000
commit35717bde57f174079aca7b413f3f04576e86fdd1 (patch)
tree3949c3a70930dbf0a4a925df2f214886b4bd20cf /devel/ice/files/patch-cpp-test-Ice-properties-run.py
parentAdd LIBOWN and LIBGRP to uidfix (diff)
Overhaul devel/ice, devel/py-ice and devel/php5-ice:
Changes from [*]: - Update Ice to 3.5.1. - Stageify all three ports. - Convert py-ice and php5-ice to slave ports. - Use ICONV_LIB, so it builds ok with native iconv [1]. - Workaround for FreeBSD 10's static destructor order disaster [2]. - Install man pages. - Allow package build for non-root users. [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-iconv.html [2] http://lists.freebsd.org/pipermail/freebsd-ports/2013-June/084580.html Changes from [3]: - Convert LIB_DEPENDS to new syntax. - USE_GMAKE -> USES - list Berkeley DB 6 invalid, requires upstream changes, but upstream is loathe to make those due to licensing change in BDB - remove BDB 2 and 3 from invalid listing, we no longer have these ports PR: ports/184453 [*] PR: ports/185569 [3] Submitted by: Michael Gmelin (maintainer) [*] Submitted by: mandree [3] Approved by: Michael Gmelin (maintainer) [3]
Notes
Notes: svn path=/head/; revision=339196
Diffstat (limited to 'devel/ice/files/patch-cpp-test-Ice-properties-run.py')
-rw-r--r--devel/ice/files/patch-cpp-test-Ice-properties-run.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/devel/ice/files/patch-cpp-test-Ice-properties-run.py b/devel/ice/files/patch-cpp-test-Ice-properties-run.py
deleted file mode 100644
index 9537cffd0de1..000000000000
--- a/devel/ice/files/patch-cpp-test-Ice-properties-run.py
+++ /dev/null
@@ -1,29 +0,0 @@
---- cpp.orig/test/Ice/properties/run.py 2013-03-11 15:19:47.000000000 +0000
-+++ cpp/test/Ice/properties/run.py 2013-05-21 03:48:13.020195761 +0000
-@@ -28,15 +28,15 @@
- #
- if sys.version_info[0] == 2:
- configPath = "./config/\xe4\xb8\xad\xe5\x9b\xbd_client.config".decode("utf-8")
-- TestUtil.createConfig(configPath,
-+ TestUtil.createConfig(configPath.encode("utf-8"),
- ["# Automatically generated by Ice test driver.",
- "Ice.Trace.Protocol=1",
- "Ice.Trace.Network=1",
- "Ice.ProgramName=PropertiesClient",
-- "Config.Path=./config/中国_client.config"])
-+ "Config.Path=" + configPath.encode("utf-8")])
- else:
- configPath = "./config/\u4e2d\u56fd_client.config"
-- TestUtil.createConfig(configPath,
-+ TestUtil.createConfig(configPath.encode("utf-8"),
- ["# Automatically generated by Ice test driver.",
- "Ice.Trace.Protocol=1",
- "Ice.Trace.Network=1",
-@@ -46,5 +46,5 @@
-
- TestUtil.simpleTest(client)
-
--if os.path.exists(configPath):
-- os.remove(configPath)
-+if os.path.exists(configPath.encode("utf-8")):
-+ os.remove(configPath.encode("utf-8"))