From owner-svn-ports-head@FreeBSD.ORG Mon Nov 25 12:34:54 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32E6BFD7; Mon, 25 Nov 2013 12:34:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 222EE262C; Mon, 25 Nov 2013 12:34:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAPCYsg3035667; Mon, 25 Nov 2013 12:34:54 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAPCYrKb035664; Mon, 25 Nov 2013 12:34:53 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201311251234.rAPCYrKb035664@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 25 Nov 2013 12:34:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334846 - head/lang/seed7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Nov 2013 12:34:54 -0000 Author: gahr Date: Mon Nov 25 12:34:53 2013 New Revision: 334846 URL: http://svnweb.freebsd.org/changeset/ports/334846 Log: - Update to 05_20131124 Changes: * The new library pic_util.s7i has been added. It contains utility functions for pictures. A picture is a simple way to describe graphic images as readable text. A picture is an array of strings, where every character describes the color of a pixel. * The programs castle.sd7, mahjong.sd7, pairs.sd7, panic.sd7, shisen.sd7, sokoban.sd7 and sudoku7.sd7 have been adjusted to use pic_util.s7i. * The pictures in pic16.s7i and pic32.s7i have been adjusted to be useable by pic_util.s7i. * The pictures cancel_pic, folder_pic and reset_pic have been added to pic16.s7i and pic32.s7i. * A function to convert a pixmap image to BMP format has been added to draw.s7i. * The function getPixelColor has been added to draw.s7i. * In the example programs all usages of the function clear without parameters have been replaced with clear(black). The function clear without parameters is deprecated. * Interpreter and compiler have been improved to support the actions DRW_GETIMAGE and DRW_GETIMAGEPIXEL. * The performance of the function strCLit in str_rtl.c has been improved by a factor of 10. * The function init_bstri_constants in s7c.sd7 has been improved to use the function c_literal instead of cCharLiteral. This way it cannot happen that a sequence like ??( is interpreted as trigraph sequence. As a side effect the performance has been improved also. * The function init_win_constants in s7c.sd7 has been improved to call getImage instead of getPixel. This improves the performance dramatically. * The functions prc_return and prc_return2 in prclib.c have been improved to avoid using block_body when it is NULL. * Spelling errors in chlog.txt, faq.htm, faq.txt, install.txt, manual.htm, manual.txt, problems.txt read_me.txt, src/read_me.txt, flistutl.c, flistutl.h, heaputl.c, heaputl.h and striutl.c have been fixed. * The function drwGetImage has been added to drw_x11.c and drw_win.c. * The function drwGetImagePixel has been added to drw_rtl.c. * The program chkccomp.c has been improved to write defines for NO_EMPTY_STRUCTS, HAS_SYMLINKS and HAS_FIFO_FILES to version.h. Modified: head/lang/seed7/Makefile head/lang/seed7/distinfo head/lang/seed7/pkg-plist Modified: head/lang/seed7/Makefile ============================================================================== --- head/lang/seed7/Makefile Mon Nov 25 12:02:45 2013 (r334845) +++ head/lang/seed7/Makefile Mon Nov 25 12:34:53 2013 (r334846) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20131110 +DISTVERSION= 05_20131124 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/lang/seed7/distinfo ============================================================================== --- head/lang/seed7/distinfo Mon Nov 25 12:02:45 2013 (r334845) +++ head/lang/seed7/distinfo Mon Nov 25 12:34:53 2013 (r334846) @@ -1,2 +1,2 @@ -SHA256 (seed7_05_20131110.tgz) = 4f54c768e88c1ff9649cc4dd4044ed2bcf0dc14774feac01a2a039f6d3a4fa7a -SIZE (seed7_05_20131110.tgz) = 1990251 +SHA256 (seed7_05_20131124.tgz) = 9d1f63cd58313dc8aa02afcd356c0ab8a50c3f6d95c8529dda9115b62a132830 +SIZE (seed7_05_20131124.tgz) = 1990629 Modified: head/lang/seed7/pkg-plist ============================================================================== --- head/lang/seed7/pkg-plist Mon Nov 25 12:02:45 2013 (r334845) +++ head/lang/seed7/pkg-plist Mon Nov 25 12:34:53 2013 (r334846) @@ -86,6 +86,7 @@ lib/seed7/lib/more.s7i lib/seed7/lib/multiscr.s7i lib/seed7/lib/null_file.s7i lib/seed7/lib/osfiles.s7i +lib/seed7/lib/pic_util.s7i lib/seed7/lib/pic16.s7i lib/seed7/lib/pic32.s7i lib/seed7/lib/pixmap_file.s7i