summaryrefslogtreecommitdiff
path: root/lang/oo2c
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2003-07-24 18:39:14 +0000
committerjtb <jtb@pkgsrc.org>2003-07-24 18:39:14 +0000
commit2151669bff23e124682c76ca6a6afe92b9d9345c (patch)
treed10156142e0eb7bc38369c417786476f5cbb33c2 /lang/oo2c
parent7cafdcb95b877844c0470f4175f0b95be2c0e9d8 (diff)
downloadpkgsrc-2151669bff23e124682c76ca6a6afe92b9d9345c.tar.gz
Update to version 2.0.10.
From the release notes: This release is unfortunately a bit late and incorporates a whole bunch of very different changes. The biggest part is an update of the libraries to incorporate the string types from module `Object' into ADT:*, IO:*, OS:*, URI:*, and (partially) XML:* modules. The internal encoding of Unicode strings has been switched to UTF-16. Support for the MacOS X and Win32 platforms has been improved. There were several changes to the symbol file format. Please remove any old symbol files that are still around. __________________________________________________________________________ (Object, ADT:StringBuffer): Internal representation of Unicode strings is now UTF-16. `String32' is gone and has been replaced with `String16'. MAX(UCS4CHAR) is 10FFFFX, the largest possible Unicode code point. (Object:BigInt): Renamed string base constructors to follow the naming conventions from module `Object'. (ADT:ArrayList, ADT:Dictionary): Have been converted to parametric types. One known side-effect of this is that a type guard `Dictionary.Dictionary' can no longer be applied to instances of `Object.Object'. The reason for this is that the run-time type information does not include information on type parameters and therefore cannot test for particular type arguments. (The necessary run-time information may be added later.) (ADT:Storable, ADT:Object:Storage): The parameter type of the methods ReadObject() and WriteObject() has been changed back to `Object.Object'. The methods now handle instances of `Object.String' as well. (IO:Address): `UnknownHostException' is now derived from `IO.Error'. (IO:Buffer): Introduce method `ReadLineLF()', to read a single line of 8-bit characters from a channel, including the termination Ascii.lf character. (IO:FileChannel): File name arguments are now of type STRING. They are converted to sequences of bytes using OS:Path.Encode(). Dito for system() from OS:ProcessManagement. (IO:Socket, IO:SocketChannel): Non-blocking connect is implemented. (OS:Path): Changed functions to work on STRINGs. Changed function names to follow the Oberon naming conventions. Dito for GetCwd() from OS:ProcessParameters. (Exception): Fixed a bug in PopContext(), which lead to stack corruption if more than one TRY context is popped from the stack. Also some minor cleanups. (HashCode): Collects all hash functions for the various basic data types. (URI, URI:*): The URI modules use the string types from `Object', instead of defining their own variant of this theme. Error signalling has been converted to Exception.ParseError. Please note that the interface of these modules may be in for further changes later. The URI changes also propgate into the XML modules. (oo2c): New command --package-installed (tests if a package is present) and --list-packages (list all installed packages). (oo2c): The "Pascal" calling convention, and the CSTRING and ALIGNX flags have been ported to v2 by Stewart Greenhill. This is primarily used for native Windows DLLs. (oo2c): There is now support for MaxOS X style "framework" libraries (contributed by Tim Teulings). (oo2c): The documentation strings of a module have been removed from the symbol file `M.Sym', and are now stored in a separate file `M.Doc' (in the same directory as `M.Sym'). Compilation commands only read the `M.Sym' part. Also, compilation of huge interface modules is now much faster. (oo2c): Constant folding on floating point expressions is now enabled. (oo2c): Various minor bugs with parametric types have been fixed. around.
Diffstat (limited to 'lang/oo2c')
-rw-r--r--lang/oo2c/Makefile7
-rw-r--r--lang/oo2c/distinfo9
-rw-r--r--lang/oo2c/patches/patch-ad13
3 files changed, 22 insertions, 7 deletions
diff --git a/lang/oo2c/Makefile b/lang/oo2c/Makefile
index e863a1430be..006bb485b07 100644
--- a/lang/oo2c/Makefile
+++ b/lang/oo2c/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2003/07/17 21:45:02 grant Exp $
+# $NetBSD: Makefile,v 1.7 2003/07/24 18:39:14 jtb Exp $
-DISTNAME= oo2c_${BITS}-2.0.9
-PKGNAME= oo2c-2.0.9
-PKGREVISION= 1
+DISTNAME= oo2c_${BITS}-2.0.10
+PKGNAME= oo2c-2.0.10
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ooc/}
EXTRACT_SUFX= .tar.bz2
diff --git a/lang/oo2c/distinfo b/lang/oo2c/distinfo
index 6ff06ddbeef..71f0d402277 100644
--- a/lang/oo2c/distinfo
+++ b/lang/oo2c/distinfo
@@ -1,7 +1,10 @@
-$NetBSD: distinfo,v 1.3 2003/05/17 21:00:11 jtb Exp $
+$NetBSD: distinfo,v 1.4 2003/07/24 18:39:14 jtb Exp $
-SHA1 (oo2c_32-2.0.9.tar.bz2) = 3cf005bb8fbf5143beab20e7d8dedbd803b7afbd
-Size (oo2c_32-2.0.9.tar.bz2) = 1483260 bytes
+SHA1 (oo2c_32-2.0.10.tar.bz2) = 22b3a92a3cdce0f84fbf0be672e69c38918e38e4
+Size (oo2c_32-2.0.10.tar.bz2) = 1506000 bytes
+SHA1 (oo2c_64-2.0.10.tar.bz2) = e12714961aaeb3f3db131063e91c19e071595a49
+Size (oo2c_64-2.0.10.tar.bz2) = 1506756 bytes
SHA1 (patch-aa) = 0d2e00b36fe9bb022ff499b49408dc420f57b0d0
SHA1 (patch-ab) = c53da4768af73eebfea2a747876054fa1d9fb733
SHA1 (patch-ac) = e5b0872f5b9b97152d2f16f9805f7d9011362263
+SHA1 (patch-ad) = 2dd2ae037c1d7185ae2e87b04428431e3244ff5b
diff --git a/lang/oo2c/patches/patch-ad b/lang/oo2c/patches/patch-ad
new file mode 100644
index 00000000000..5e9f2757a5e
--- /dev/null
+++ b/lang/oo2c/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1 2003/07/24 18:39:16 jtb Exp $
+
+--- rsrc/OOC/emacs/oberon2.el.orig 2003-05-11 16:04:46.000000000 +0100
++++ rsrc/OOC/emacs/oberon2.el 2003-07-24 19:15:08.000000000 +0100
+@@ -13,7 +13,7 @@
+ (if (or (> emacs-major-version 19)
+ (and (= emacs-major-version 19) (> emacs-minor-version 32)))
+ ;; workaround to avoid problems with 19.28
+- (require 'c-mode))
++ (require 'cc-mode))
+ (require 'compile)
+
+