diff options
author | gahr <gahr@FreeBSD.org> | 2013-02-20 17:56:01 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2013-02-20 17:56:01 +0800 |
commit | 320070ccdd331ccee482bb0972d79f0ba60016b1 (patch) | |
tree | 800c950056a30fe31aedf45b1fbcba8736a498b9 | |
parent | 66111600a494c38e8f924436ab5cf48b05e32788 (diff) | |
download | freebsd-ports-gnome-320070ccdd331ccee482bb0972d79f0ba60016b1.tar.gz freebsd-ports-gnome-320070ccdd331ccee482bb0972d79f0ba60016b1.tar.zst freebsd-ports-gnome-320070ccdd331ccee482bb0972d79f0ba60016b1.zip |
- 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.
-rw-r--r-- | lang/seed7/Makefile | 2 | ||||
-rw-r--r-- | lang/seed7/distinfo | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lang/seed7/Makefile b/lang/seed7/Makefile index 9c0e5bc973df..62278f7adca8 100644 --- a/lang/seed7/Makefile +++ b/lang/seed7/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20130203 +DISTVERSION= 05_20130217 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo index 02f3dc7d2980..bc75c8bde4f3 100644 --- a/lang/seed7/distinfo +++ b/lang/seed7/distinfo @@ -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 |