summaryrefslogtreecommitdiff
path: root/lang/smalltalk
AgeCommit message (Collapse)AuthorFilesLines
2003-08-11Use iconv's buildlink2.mk so this works on 1.6.x and -currentjmc1-2/+2
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-08-05Add i18n.so module to PLIST.jtb1-1/+5
2003-08-04Update to version 2.1.4.jtb2-6/+5
NEWS FROM 2.1.3 TO 2.1.4 o Fix bugs treating old objects that have already been considered by the incremental GC (and survived it). Example: ObjectMemory globalGarbageCollect. HomedAssociation class instanceCount gave 0 instead of 1. As a result, --enable-checking now can be used. o Fix bugs when doing #become: between old objects, exactly one of which has not been considered by the incremental GC and was incorrectly swept when the collector finally reached it. o Fix bugs when garbage collection triggered finalization while a primitive was being run. Finalization is now done in a separate Process. o Fix bugs treating very large objects. o Fix infinite loop when the big object threshold was set between the size of survivor spaces and the size of the eden. o Printing Integers was unbelievably inefficient. Fixed together with some more low-hanging fruit. o SequenceableCollection>>#replaceFrom:to:with:startingAt: allows again that stop=start-1 (like replaceFrom: 1 to: 0 with: ...)
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-1/+2
2003-07-07Convert to USE_NEW_TEXINFO.seb2-9/+5
2003-07-07REgen after last update of package.seb1-1/+2
2003-07-02Use LIBTOOL_OVERRIDE rather than LTCONFIG_OVERRIDE.jtb3-17/+18
2003-07-02Update to version 2.1.3.jtb5-98/+294
The NEWS file contains around 650 lines of changes from 1.95.10, so I won't include it here.
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-03-10A few changes to make this work correctly.jmc2-2/+7
Force -fsigned-char in CFLAGS passed to configure as the code has some assumptions about signed char's and EOF handling that aren't easily patched. Add a few missing files to PLIST so this adds/removes cleanly. Passes all regress on x86 and powerpc (wasn't working on powerpc previously).
2002-12-13Synch PLIST with reality.jschauma1-26/+23
2002-10-21buildlink1 -> buildlink2.wiz1-9/+9
2002-04-11Machine is *-powerpc, not *-ppc. From Martijn van Buul in pkg/16299.wiz1-2/+2
2002-04-06add ONLY_FOR_PLATFORM= *-*-i386 *-*-sparc *-*-ppcdmcmahill1-1/+3
because these are the only cpu's for which the required assembly code has been written.
2002-02-18Introduce new framework for handling info files generation and installation.seb2-4/+5
Summary of changes: - removal of USE_GTEXINFO - addition of mk/texinfo.mk - inclusion of this file in package Makefiles requiring it - `install-info' substituted by `${INSTALL_INFO}' in PLISTs - tuning of mk/bsd.pkg.mk: removal of USE_GTEXINFO INSTALL_INFO added to PLIST_SUBST `${INSTALL_INFO}' replace `install-info' in target rules print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info' - a couple of new patch files added for a handful of packages - setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it - devel/cssc marked requiring texinfo 4.0 - a couple of packages Makefiles were tuned with respect of INFO_FILES and makeinfo command usage See -newly added by this commit- section 10.24 of Packages.txt for further information.
2002-01-31Update to 1.95.10. Changes are bug fixes in library classes:mjl3-13/+10
* kernel/Behavior.st: added a missing period * kernel/ExcHandling.st: added a missing period * kernel/RootNamespc.st: added a missing period
2002-01-20Update gnu smalltalk to 1.95.9mjl5-285/+265
o improve SortedCollection performance and ensures that the Directory class>>#image method returns the *current* rather than the default image path. o fix a few bugs that were apparent when trying to extend base classes. o bugfixes in the I/O subsystem, missed a few I/O available events if many happened in a row. o The #(a b) syntax for symbols inside Arrays has been obsoleted, since 2.0 will parse it according to the ANSI standard. o Calls to the virtual machine from plugins, and objects that are passed as OOPs in call-outs, put OOPs in the incubator rather than in the registry; call-outs are wrapped in incSavePointer/incRestorePointer. o Command line parsing uses getopt and thus behaves exactly like other programs (previously there were some discrepancies) o Errors are signaled if a file specified on the command line is not found. o Events can be passed to the Smalltalk image via an ObjectMemory class. o Fixed bug in evalExpr and typeNameToOOP (gave a parse error). o Removed the `make optimize' mess. o Supported two additional ways to pass objects from Smalltalk to C: #selfSmalltalk and #variadicSmalltalk, which are similar to respectively #self and #variadic but pass raw object pointers to the C function instead of attempting automatic conversions. o #bindWith:... methods now accept other objects than Strings as parameters. o Complete hierarchy of exceptions, with more meaningful error message and possibility of more fine-grained exception handling. o FileStream calls are not blocking and can preempt the current Process. o FileStream handling has been rewritten; the buffering is now done by Smalltalk code rather than implied in stdio. Unbuffered file descriptor access (which used to be provided by UnixStream, defined by the TCP package) is provided by FileStream's parent, FileDescriptor. o Many methods in SystemDictionary were moved to ObjectMemory (a new class); the old ones are now deprecated. o SortedCollection's #includes:, #indexOf:, and #occurrencesOf: can check for objects that could not be inserted in the collection (e.g. an Integer in a collection of Strings). Fixed bugs in the same methods related to sort blocks for which sort-block equality (a <= b and b <= a) does not imply equality. o Support for init blocks will be removed in a future version, as it was replaced by the much more powerful ObjectMemory class. o The SystemDictionary>>#enableGC: method does not exist any more, since it only caused harm (the correct way to obtain its effect is to use the incubator, since what we want is to unregister a batch of many objects at the same time). o The TCP library does not poll the socket for I/O, but relies on the system's preemptive I/O facilities. As a result, the polling period methods in Socket have disappeared. o Usual round of bug fixes New goodies: o MD5 checksums o Perl regular expressions o Support for localization, internationalization and multiple character sets
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-07-23Make build not reference directories in ${LOCALBASE}. Reorder some linesjlam1-6/+11
for clarity.
2001-07-10Update to 1.95.4. Too many changes to list here (about a year ofmjl5-223/+198
development)
2001-07-10Gnu smalltalk 1.95.4mjl1-21/+4
2001-05-10mark this pkg as not for alpha or sparc64 as 64-bit platforms are notdmcmahill1-1/+4
yet supported by the program.
2001-04-19Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-6/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-27Don't install the header files in $(oldincludedir) which defaults tojtb2-5/+14
/usr/include. They now get installed only in $(includedir). I have no idea why the package installs the same set of header's in two different locations anyway.
2001-02-17Move the COMMENT from being in its own file to a definition in theagc2-2/+2
package Makefile.
2001-01-23Updated GNU Smalltalk to version 1.8.5. Update requested by jun@soum.co.jp.jtb5-37/+9
Fixes PR pkg/12033.
2000-11-17Correct handling of info files.wiz1-1/+3
2000-10-23Initial import of GNU Smalltalk, the GNU implementation of theagc8-0/+394
Smalltalk-80 language, into the packages collection.