summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-11-07 06:16:25 +0000
committerMamoru Komachi <usata@gentoo.org>2004-11-07 06:16:25 +0000
commitbcad61ba8c9ab19bf2faa14e4a02962229f8960c (patch)
treed8fac6fe6ff31985e6f568ddd97d0b32ee1cc8b1 /app-text/sablotron
parentRequire dev-perl/XML-Parser only if doc USE flag is set; bug #69452. (diff)
downloadhistorical-bcad61ba8c9ab19bf2faa14e4a02962229f8960c.tar.gz
historical-bcad61ba8c9ab19bf2faa14e4a02962229f8960c.tar.bz2
historical-bcad61ba8c9ab19bf2faa14e4a02962229f8960c.zip
Removed unnecessary patch in files directory.
Diffstat (limited to 'app-text/sablotron')
-rw-r--r--app-text/sablotron/Manifest1
-rw-r--r--app-text/sablotron/files/Sablot-0.96.1.patch46
2 files changed, 0 insertions, 47 deletions
diff --git a/app-text/sablotron/Manifest b/app-text/sablotron/Manifest
index 2b1f5f102beb..b0130875ad8f 100644
--- a/app-text/sablotron/Manifest
+++ b/app-text/sablotron/Manifest
@@ -3,7 +3,6 @@ MD5 c472f5fd1646eb8bca71d8df5cb2bdcc metadata.xml 164
MD5 d311e74bf8893606899a6f98999c613d sablotron-0.97.ebuild 1008
MD5 874b28f2ff15073700aabd7ee970fa8f sablotron-1.0.ebuild 1473
MD5 e740d0873c8c5fbbbb3ad9a7825a5489 sablotron-1.0.1.ebuild 1542
-MD5 d4d88eebd05b4208b430c3e2738431a4 files/Sablot-0.96.1.patch 1698
MD5 47394bfd045510f7f6b74c7828d48502 files/digest-sablotron-0.97 63
MD5 42df851a9f037fa853698dbdb7c2b449 files/digest-sablotron-1.0 62
MD5 be9d8aaeeda4c615088d8c7998c77bb9 files/digest-sablotron-1.0.1 64
diff --git a/app-text/sablotron/files/Sablot-0.96.1.patch b/app-text/sablotron/files/Sablot-0.96.1.patch
deleted file mode 100644
index b6a099cf7a93..000000000000
--- a/app-text/sablotron/files/Sablot-0.96.1.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Index: parser.cpp
-diff -c parser.cpp:1.63 parser.cpp:1.63.2.1
-*** parser.cpp:1.63 Mon Sep 2 12:06:48 2002
---- parser.cpp Mon Sep 9 12:39:21 2002
-***************
-*** 428,436 ****
- if (!(firstTime && rawBuffer[0] == (char) 0xEF &&
- rawBuffer[1] == (char) 0xBB && rawBuffer[2] == (char) 0xBF))
- S.setCurrLine(XML_GetCurrentLineNumber(parser));
-! int code = XML_GetErrorCode(parser);
- Str eCodeStr, eNameStr;
-! eCodeStr = code;
- eNameStr = (char*) XML_ErrorString(code);
- // XML_ParserFree(parser); -- done later
- Err2T(this_, S, E_XML, eCodeStr, eNameStr);
---- 428,436 ----
- if (!(firstTime && rawBuffer[0] == (char) 0xEF &&
- rawBuffer[1] == (char) 0xBB && rawBuffer[2] == (char) 0xBF))
- S.setCurrLine(XML_GetCurrentLineNumber(parser));
-! XML_Error code = XML_GetErrorCode(parser);
- Str eCodeStr, eNameStr;
-! eCodeStr = (int)code;
- eNameStr = (char*) XML_ErrorString(code);
- // XML_ParserFree(parser); -- done later
- Err2T(this_, S, E_XML, eCodeStr, eNameStr);
-Index: situa.cpp
-diff -c situa.cpp:1.23 situa.cpp:1.23.6.1
-*** situa.cpp:1.23 Thu Jul 4 16:12:34 2002
---- situa.cpp Mon Sep 9 13:12:12 2002
-***************
-*** 262,268 ****
- {
- if (l[i] > size / __numargs)
- {
-! b[i] = new char[size / __numargs];
- strcpy(b[i], "...");
- strcpy(b[i] + 3, a[i] + (l[i] - size / __numargs + 3));
- }
---- 262,268 ----
- {
- if (l[i] > size / __numargs)
- {
-! b[i] = new char[size / __numargs + 1];
- strcpy(b[i], "...");
- strcpy(b[i] + 3, a[i] + (l[i] - size / __numargs + 3));
- }