pkgsrc/lang/gauche/Makefile

46 lines
1.2 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.73 2018/07/26 16:55:29 jperkin Exp $
#
Update to 0.9.6 * Use gmake for pattern rules Changelog: Release 0.9.6 Major feature upgrade * Notable feature enhancement: * New modules and procedures + R7RS-Large Red Edition support (WiLiKi:Gauche:R7RS-RedEdition) + New srfi support: + Other new modules and procedures: * Incompatible changes * Other bug fixes Notable feature enhancement: * Static linking and standalone executable support: Now you can create a standalone executable from Gauche program. See blog entry and "Building standalone executables" section. * Single shell-script installer (blog entry). * REPL enhancement: Pretty printing (blog entry), online document display ( blog entry) and search (blog entry). * Method dispatch optimizations (1, 2). * Procedure inlining optimizations (1, 2) * Windows console Japanese handling: Thanks to @hamayama, numerous fixes to use Japanese on Windows command prompt is incorporated. * Bump to Boehm gc 7.6.6, thanks to @qykth-git. * Support mbedTLS as an additional TLS support, thanks to @qykth-git. See rfc.tls for the details. * format finally supports floating number formatting ~f. It also supports a subtle rounding mode switch regarding binary to decimal conversion (blog post). * Support of using multiple versions of Gauche in parallel---from 0.9.6 and after, you can invoke a different version of Gauche by gosh -vVERSION, as far as VERSION of Gauche is also installed. This isn't much useful now (VERSION must be 0.9.6 or later), but will be handy with future releases. * Sampling profiler now works on Windows, thanks to Saito Atsushi and @hamayama (although it can only sample the attached thread). New modules and procedures R7RS-Large Red Edition support (WiLiKi:Gauche:R7RS-RedEdition) 12 libraries (out of 17) are supported: * scheme.list List library (formerly srfi-1) * scheme.vector Vector library (formerly srfi-133) * scheme.sort Sort libraries (formerly srfi-132) * scheme.set Sets and bags (formerly srfi-113) * scheme.charset Character-set library (formerly srfi-14) * scheme.hash-table Intermediate hash tables (formerly srfi-125) * scheme.ideque Immutable deques (formerly srfi-134 * scheme.generator Generators (formerly srfi-121) * scheme.lseq Lazy sequences (formerly srfi-127) * scheme.box Boxes (formerly srfi-111) * scheme.list-queue Mutable queues (formerly srfi-117) * scheme.comparator Comparators (formerly srfi-128) Those are still accessible as srfi-* names, but new code is recommended to use the scheme.* names. New srfi support: * srfi-64 A Scheme API for test suites * srfi-66 Octet vectors * srfi-74 Octet-addressed binary blocks * srfi-96 SLIB prerequisites * srfi-129 Titlecase procedures * srfi-141 Integer division * srfi-143 Fixnums * srfi-145 Assumptions (built-in) * srfi-146 Mappings + srfi-146.hash Hashmaps * srfi-149 Basic Syntax-rules template extensions (built-in) * srfi-151 Bitwise operations * srfi-152 String library (reduced) * srfi-158 Generators and accumulators Other new modules and procedures: * pprint - pretty printer. * assume-type macro and type-error procedure. * define-inline is now official. * hash-table-compare-as-sets, tree-map-compare-as-sets - compare those mappings as sets * let-values, let*-values: now built-in. * In gauche.process: do-process!, do-pipeline, run-pipeline!. * In gauche.unicode: char-east-asian-width * In gauche.uvector: uvector-binary-search, u8vector=? ..., u8vector-compare .... * In gauche.charconv: Conversion routines accepts u8vector as well as strings. * In gauche.sequence: delete-neighbor-dups, delete-neighbor-dups!, delete-neighbor-dups-squeeze!, group-contiguous-sequence * In gauche.threads: atomic and atomic-update! allows more than one timeout values. * text.template: Simple template expander, based on built-in string interpolation feature. * Char-set can be immutable. char-set-freeze and char-set-freeze! are used to make a char set immutable. Literal char-sets are immutable, as other literal objects. * rfc.http: You can now use stunnel process to do https connection instead of Gauche's rfc.tls module. Note that it only works with command mode of stunnel---which isn't available on Windows. * rfc.tls: Now that we support mbedTLS and server certificate authentication, a minimal document is added. * binary.io: get-uint, get-sint, put-uint!, put-sint!. * gauche.generator: generator->uvector, generator->uvector!, generator-> bytevector, generator->bytevector!. * data.random: regular-string$ - creates a generator that generates random strings that match the given regexp. * string-incomplete->complete: Add :escape mode to escape illegal bytes in lossless way. Incompatible changes Some change undocumented behaviors; others change because of bug fix. * Literal character sets (#[chars]) are now immutable, as other literal objects; it will raise an error if you try to mutate it. * getter-with-setter now associates the setter to the getter in immutable way ('locked'); it will raise an error if you try to change it. It is the way specified in srfi-17. It also allows Gauche to inline setters. (NB: Many predefined setters are now locked. If your existing code alters them it will cause an error.) * list*, cons* - Requires at least one arg, as specified in srfi-1. Zero argument doesn't make sense, although previous versions of Gauche allowed it. * append, append! - Now it is an error if the arguments except the last one is a dotted list. We've tolerated it before, but it's rather error prone. * util.match: The way to match record instance with positional variables are changed for more reasonable way. We hope no code depends on the previous way, which was broken anyway. See the blog entry for the details. * twos-complement-factor: We fix the behavior when 0 is passed; it used to return 0, now it returns -1. The latter is consistent with srfi-60. Unfortunately we documented the former behavior, so it breaks compatibility. * string-split: Splitting an empty string now yields an empty list instead of (""), as srfi-152 specifies Other bug fixes There are too many; we list up some notable ones. * The behavior of guard when no clauses are satisfied and the exception is reraised is now R7RS-compatible ( https://github.com/shirok/Gauche/pull/335 ). When using R7RS, with-exception-handler is R7RS compatible (which is slightly different from built-in with-exception-handler, compatible to srfi-18). * unwind-protect: Fix bug with interaction of call/cc. * rfc.tls: axTLS interface had MT-hazard. * er-macro-transformer: Fix hygienity issue ( https://github.com/shirok/ Gauche/issues/250 )
2018-07-24 16:52:18 +02:00
DISTNAME= Gauche-0.9.6
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gauche/}
EXTRACT_SUFX= .tgz
MAINTAINER= enami@NetBSD.org
- Update gauche to 0.9.2. See below for the list of changes. - Replace the HOMEPAGE with the url used in the document such as README etc. - Drop minoura@ from MAINTAINER as per his request on twitter. Brief summary of Gauche 0.9.2: [New Features] * Case mapping and character properties are fully supported, compatible to R6RS and R7RS draft (both based on Unicode standard). Character-wise case mapping (char-upcase etc.) and property queries (char-alphabetic?, char-general-category, etc.) are built-in. Context-aware string case mapping (string-upcase etc.) is provided in the new text.unicode module. (Note: srfi-13's string-upcase etc. are unchanged; they are defined to use simple case mappings.) The text.unicode module also provides conversion between utf-8/utf-16 and Unicode codepoints. * Windows binary distribution is now in MS installer (*.msi) format, created with WiX. It's safer than the previous *.exe format created by NSIS, which had a bug that smashes PATH settings when it is too long. * A convenient wrapper for atomic execution is added in gauche.threads. See this intro post. * Benchmarking utilities resembles to Perl's Benchmark module is now available in gauche.time. See this post for an introduction. * with-lock-file: A long-awaited feature to use lock files conveniently. It is in file.util module. * Added full support of srfi-60, integer bitwise operations. * gauche.cgen: Some API that Gauche uses to generate C code become public. See the manual for the details. [Incompatibile Changes] * control.thread-pool: add-job! now takes timeout argument. If it is omitted and the job queue is full, add-job! blocks. It is a change from 0.9.1, in which add-job! returns immediately in such case. To get the same behavior, pass 0 explicitly to the timeout argument. The argument order of wait-all is also changed to take timeout optional argument first. In 0.9.1 it never timeouts. * If --enable-multibyte flag is given to ./configure without explicit encoding, we now assume utf-8. It used to be euc-jp. This is for the consistency. We don't think this change affects many, for the document has always been told to give explicit encoding name for this option. * The --enable-ipv6 configure option is turned on by default. It shouldn't cause problems on modern OSes. If you ever get a compile error in gauche.net module on a platform that lacks modern API, specify --disable-ipv6 option to ./configure. * (This is an internal change of undocumented feature. We mention it just in case if some extension packages depend on this.) In the initialization code generated by genstub or precomp, it used to be possible to refer to the current module by mod. Now you should use Scm_CurrentModule() instead. Also, gauche.cgen.unit now doesn't include <gauche.h> automatically. [Improvements] * The compiler is improved to avoid creating a closure at execution time when it doesn't close local environment. For example, (map (^x (* x x)) lis) doesn't create a closure; instead, the internal lambda is compiled as if it is a toplevel-defined procedure. (Yeah, it's a simple lambda lifting. We didn't do it since it could slow down the compiler. Now the compiler is efficient enough to handle it.) * Supports zero or multi-argument unquote/unquote-splicing, as defined in R6RS. * sys-exec and sys-fork-and-exec now supports :detached keyword argument to make the child process detached from the parent's process group. * Buliltin reverse and reverse! takes optional list-tail argument. * A new builtin procedure map* that can deal with dotted list. * Common Lisp-like ecase macro is added. * The extended lambda formals (:key, :optional, etc) are now available in define-method as well. * New built-in function sys-clearenv, useful to fork subprocess securely. * rxmatch-case accepts (else => proc) form, just like case. * Socket address objects (e.g. <sockaddr-un>) can now be compared by equal? based on its content. Useful to put them in a hashtable, for example. * gauche.uvector: A new procedure uvector-copy! that can copy any type of uvectors. * gauche.test: A new test expected result constructor test-one-of allows to check if the test result matches any one of possible outcomes. * control.thread-pool: Now a pool raises <thread-pool-shut-down> condition if the pool has already be shut down and no longer accepting new jobs. terminate-all now takes :cancel-queued-jobs keyword argument to stop the pool immediately, instead of waiting for all the jobs to be finished. Canceled jobs are marked as killed . New APIs: thread-pool-results, thread-pool-shut-down?. * rfc.json: Allow construct-json to take optional output port for the consistency. * rfc.uri: A new procedure uri-merge that can be resolve a relative uri in regart to a base uri. * rfc.cookie: Recognize :http-only cookie attribute introduced in RFC6265. * Now the tilde `~' expansion of sys-normalize-pathname works on Windows as well to refer to the current user's home directory; it tries environment variables heuristically to find it. To refer to other user's home directory by ~user is still only available on Unix platforms, though. * util.combinations: combinations is optimized to handle leaf cases efficiently. [Bux fixes] * Fixed a bug that the number parser hangs when reading 2.2250738585072012e-308. * Integer multiplication routine had a code that depended on undefined behavior of C; it worked on gcc but revealed the bug on clang-llvm. * Fixed a module bug on the visibility of bindings of extended modules. * gauche.parameter: Fixed a couple of bugs on parameter objects. * Numeric comparison procedures such as < didn't work correctly when more than four arguments were given. The bug was introduced by incorrect optimization. * Fixed bugs in lognot, logand, logior and logxor, which crashed when non-integer ratinoal numbers are passed. * port->string, port->string-list: These procedures returned prematurely when the input contains an illegal byte sequence for internal encoding. Now they return an incomplete string instead. * srfi-1: Some srfi-1 procedures that are built-in were not exported, causing errors when you wanted to import them selectively, e.g. (use srfi-1 :only (fold)). * util.queue: Fixed list->queue to work. * binary.pack: Fixed a bug that the result may be truncated if the input contains byte sequences that can be interpreted as invalid character multibyte sequences. * srfi-42: Fixed a hygiene bug; the previous versions failed when only toplevel macros are imported using :only import option. * rfc.json: Fixed a bug that didn't escape double-quotes in the string, and didn't handle empty array. * Coding-aware ports didn't count lines correctly in CR-only or CRLF line endings. * Fixed a problem that caused crash after changing metaclasses of a class metaobject. An additional protection mechanism is in place in the class metaobject so that it won't be in an inconsistent state unexpectedly. * Fixed sys-setenv in which you couldn't omit the overwrite argument, even if it was described optional. * Fixed build problem of gauche.net on Solaris. * Fixed a bug in gauche-package that caused an error when *load-path* contained a nonexistent path. * Fixed a bug in string comparison routine that surfaces in a special architecture. * The printed output of <time> was incorrect when its value was negative. * There was a bug in the reader it reads ().() incorrectly. * Fixed a bug in format to allow ~* to position after the last argument. * Fixed GC compliation problem on OSX Lion.
2011-09-16 09:49:25 +02:00
HOMEPAGE= http://practical-scheme.net/gauche/
COMMENT= R7RS Scheme implementation aimed to be a handy tool for daily works
2016-01-26 15:46:46 +01:00
LICENSE= modified-bsd # see work/${DISTNAME}/COPYING
DEPENDS+= slib-[0-9]*:../../devel/slib
.include "options.mk"
MAKE_JOBS_SAFE= no
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-slib=${LOCALBASE}/share/slib
CONFIGURE_ARGS+= --enable-threads=pthreads
CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv}
CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
USE_LANGUAGES= c c99
USE_LIBTOOL= yes
Update to 0.9.6 * Use gmake for pattern rules Changelog: Release 0.9.6 Major feature upgrade * Notable feature enhancement: * New modules and procedures + R7RS-Large Red Edition support (WiLiKi:Gauche:R7RS-RedEdition) + New srfi support: + Other new modules and procedures: * Incompatible changes * Other bug fixes Notable feature enhancement: * Static linking and standalone executable support: Now you can create a standalone executable from Gauche program. See blog entry and "Building standalone executables" section. * Single shell-script installer (blog entry). * REPL enhancement: Pretty printing (blog entry), online document display ( blog entry) and search (blog entry). * Method dispatch optimizations (1, 2). * Procedure inlining optimizations (1, 2) * Windows console Japanese handling: Thanks to @hamayama, numerous fixes to use Japanese on Windows command prompt is incorporated. * Bump to Boehm gc 7.6.6, thanks to @qykth-git. * Support mbedTLS as an additional TLS support, thanks to @qykth-git. See rfc.tls for the details. * format finally supports floating number formatting ~f. It also supports a subtle rounding mode switch regarding binary to decimal conversion (blog post). * Support of using multiple versions of Gauche in parallel---from 0.9.6 and after, you can invoke a different version of Gauche by gosh -vVERSION, as far as VERSION of Gauche is also installed. This isn't much useful now (VERSION must be 0.9.6 or later), but will be handy with future releases. * Sampling profiler now works on Windows, thanks to Saito Atsushi and @hamayama (although it can only sample the attached thread). New modules and procedures R7RS-Large Red Edition support (WiLiKi:Gauche:R7RS-RedEdition) 12 libraries (out of 17) are supported: * scheme.list List library (formerly srfi-1) * scheme.vector Vector library (formerly srfi-133) * scheme.sort Sort libraries (formerly srfi-132) * scheme.set Sets and bags (formerly srfi-113) * scheme.charset Character-set library (formerly srfi-14) * scheme.hash-table Intermediate hash tables (formerly srfi-125) * scheme.ideque Immutable deques (formerly srfi-134 * scheme.generator Generators (formerly srfi-121) * scheme.lseq Lazy sequences (formerly srfi-127) * scheme.box Boxes (formerly srfi-111) * scheme.list-queue Mutable queues (formerly srfi-117) * scheme.comparator Comparators (formerly srfi-128) Those are still accessible as srfi-* names, but new code is recommended to use the scheme.* names. New srfi support: * srfi-64 A Scheme API for test suites * srfi-66 Octet vectors * srfi-74 Octet-addressed binary blocks * srfi-96 SLIB prerequisites * srfi-129 Titlecase procedures * srfi-141 Integer division * srfi-143 Fixnums * srfi-145 Assumptions (built-in) * srfi-146 Mappings + srfi-146.hash Hashmaps * srfi-149 Basic Syntax-rules template extensions (built-in) * srfi-151 Bitwise operations * srfi-152 String library (reduced) * srfi-158 Generators and accumulators Other new modules and procedures: * pprint - pretty printer. * assume-type macro and type-error procedure. * define-inline is now official. * hash-table-compare-as-sets, tree-map-compare-as-sets - compare those mappings as sets * let-values, let*-values: now built-in. * In gauche.process: do-process!, do-pipeline, run-pipeline!. * In gauche.unicode: char-east-asian-width * In gauche.uvector: uvector-binary-search, u8vector=? ..., u8vector-compare .... * In gauche.charconv: Conversion routines accepts u8vector as well as strings. * In gauche.sequence: delete-neighbor-dups, delete-neighbor-dups!, delete-neighbor-dups-squeeze!, group-contiguous-sequence * In gauche.threads: atomic and atomic-update! allows more than one timeout values. * text.template: Simple template expander, based on built-in string interpolation feature. * Char-set can be immutable. char-set-freeze and char-set-freeze! are used to make a char set immutable. Literal char-sets are immutable, as other literal objects. * rfc.http: You can now use stunnel process to do https connection instead of Gauche's rfc.tls module. Note that it only works with command mode of stunnel---which isn't available on Windows. * rfc.tls: Now that we support mbedTLS and server certificate authentication, a minimal document is added. * binary.io: get-uint, get-sint, put-uint!, put-sint!. * gauche.generator: generator->uvector, generator->uvector!, generator-> bytevector, generator->bytevector!. * data.random: regular-string$ - creates a generator that generates random strings that match the given regexp. * string-incomplete->complete: Add :escape mode to escape illegal bytes in lossless way. Incompatible changes Some change undocumented behaviors; others change because of bug fix. * Literal character sets (#[chars]) are now immutable, as other literal objects; it will raise an error if you try to mutate it. * getter-with-setter now associates the setter to the getter in immutable way ('locked'); it will raise an error if you try to change it. It is the way specified in srfi-17. It also allows Gauche to inline setters. (NB: Many predefined setters are now locked. If your existing code alters them it will cause an error.) * list*, cons* - Requires at least one arg, as specified in srfi-1. Zero argument doesn't make sense, although previous versions of Gauche allowed it. * append, append! - Now it is an error if the arguments except the last one is a dotted list. We've tolerated it before, but it's rather error prone. * util.match: The way to match record instance with positional variables are changed for more reasonable way. We hope no code depends on the previous way, which was broken anyway. See the blog entry for the details. * twos-complement-factor: We fix the behavior when 0 is passed; it used to return 0, now it returns -1. The latter is consistent with srfi-60. Unfortunately we documented the former behavior, so it breaks compatibility. * string-split: Splitting an empty string now yields an empty list instead of (""), as srfi-152 specifies Other bug fixes There are too many; we list up some notable ones. * The behavior of guard when no clauses are satisfied and the exception is reraised is now R7RS-compatible ( https://github.com/shirok/Gauche/pull/335 ). When using R7RS, with-exception-handler is R7RS compatible (which is slightly different from built-in with-exception-handler, compatible to srfi-18). * unwind-protect: Fix bug with interaction of call/cc. * rfc.tls: axTLS interface had MT-hazard. * er-macro-transformer: Fix hygienity issue ( https://github.com/shirok/ Gauche/issues/250 )
2018-07-24 16:52:18 +02:00
USE_TOOLS+= gmake gzip makeinfo
TEST_TARGET= check
INFO_FILES= yes
# refer %install in ${WRKSRC}/Gauche.spec
INSTALL_TARGET= install-pkg install-doc
# Does relink internally
BUILDLINK_PASSTHRU_RPATHDIRS+= ${WRKSRC}
.include "../../mk/dlopen.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
post-install:
gzip -d ${DESTDIR}${PREFIX}/${PKGINFODIR}/gauche-ref*gz
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"