Date: Wed, 20 Feb 2013 09:56:01 +0000 (UTC) From: Pietro Cerutti <gahr@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312621 - head/lang/seed7 Message-ID: <201302200956.r1K9u1db021592@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gahr Date: Wed Feb 20 09:56:01 2013 New Revision: 312621 URL: http://svnweb.freebsd.org/changeset/ports/312621 Log: - Update to 05_20130217 Changes: * The description of exceptions in the manual has been improved. * The handling of program data in interpreter and compiler has been improved to free more unused memory. * The handling of the actions PRG_FIL_PARSE and PRG_STR_PARSE in the Seed7 compiler (s7c) has been improved to support releasing unused programs. * The function prgDestr (in prg_comp.c) has been improved to free (most of) the data used by a program. Several functions, which need to free program data, have been improved to call prgDestr. * The functions prgCpy (in prg_comp.c) and prg_cpy (in prglib.c) have been improve to free a program when the usage_count reaches zero. * The functions getPixmap in draw.s7i have been improved. * The functions decl_any (in analyze.c), dcl_const and dcl_var (both in dcllib.c) have been improved to free unused expressions. * The actions ARR_BASELIT, ARR_BASELIT2, ARR_TIMES, ARR_GEN, ARR_PUSH and ARR_EXTEND in the interpreter (file arrlit.c) have been improved to work correctly for arrays with interface elements. * In blockutl.c the functions free_locobj, free_body, free_block and free_local_consts have been added or improved. * In entutl.c the function free_entity has been improved to free also syobject and name_list. * The function close_entity has been added to entutl.c. This function frees the list of inactive entities. * In executl.c the function destroy_local_init_value has been added and the function destroy_object_list has been removed. * The parameter dest_type has been added to the function any_var_initialisation (file executl.c). * The functions heap_statistic (in flistutl.c) and rtlHeapStatistic (in heaputl.c) have been improved to write information about pollData elements. * The functions free_ident and close_idents in identutl.c have been improved. * The function free_expression has been added to listutl.c. * The function pop_object in name.c has been improved to add inactive entities to a list of inactive entities * The function close_stack in name.c has been improved to reverse the list of local objects and to dump and free the local objects. * The function dump_temp_value, which releases a value without releasing the object, has been added to objutl.c. * The function free_args has been added to prg_comp.c. Modified: head/lang/seed7/Makefile head/lang/seed7/distinfo Modified: head/lang/seed7/Makefile ============================================================================== --- head/lang/seed7/Makefile Wed Feb 20 09:50:37 2013 (r312620) +++ head/lang/seed7/Makefile Wed Feb 20 09:56:01 2013 (r312621) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20130203 +DISTVERSION= 05_20130217 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/lang/seed7/distinfo ============================================================================== --- head/lang/seed7/distinfo Wed Feb 20 09:50:37 2013 (r312620) +++ head/lang/seed7/distinfo Wed Feb 20 09:56:01 2013 (r312621) @@ -1,2 +1,2 @@ -SHA256 (seed7_05_20130203.tgz) = 7b0fb2fce99dd2b9de0cde1c02a722a45e159a2edc390eba8dd072c4f772a8f0 -SIZE (seed7_05_20130203.tgz) = 1829321 +SHA256 (seed7_05_20130217.tgz) = d1a432165c4f26999a33458c5adca9e051b49c9dc65e0e7bb62d4415e6026a57 +SIZE (seed7_05_20130217.tgz) = 1832237
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302200956.r1K9u1db021592>