summaryrefslogtreecommitdiff
path: root/devel/guile-lib
AgeCommit message (Collapse)AuthorFilesLines
2010-03-24Recursive revision bump for GMP update.asau1-2/+2
2009-12-15Recursive bump for libltdljoerg1-2/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-19/+1
2009-05-20Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlibwiz1-1/+2
major change. Reported by Robert Elz in PR 41345.
2009-02-19Update to 0.1.6.gdt3-8/+13
guile-lib 0.1.6 -- 2007-09-24 ============================= * New module: (apicheck). * New module: (sxml fold). * Improved support for parsing Texinfo. * Better automatic documentation via (texinfo reflection). * Limited support for transforming Docbook to Texinfo. * Guile-Lib now has API regression tests. * Bugfixes guile-lib 0.1.5 -- 2007-08-09 ============================= * New module (container async-queue). * Fixes for Guile 1.8
2008-07-14Mark as destdir ready.joerg1-1/+3
2007-07-21Update to:gdt3-8/+10
guile-lib 0.1.4 -- 2007-07-20 ============================= * First release with NEWS. * New module (match-bind). (match-bind) implements a syntax to bind lexical variables to regular expression match results. (match-bind) also exports two procedures, s/// and s///g, that perform search-and-replace with a perl-like syntax. * New module (scheme kwargs). Two new macros are exported, lambda/kwargs and define/kwargs, which implement keyword and optional function arguments in a manner that is more intuitive than Guile's standard lambda*. * Other bugfixes and improvements. See the ChangeLog for details on changes to (texinfo serialize), (texinfo html), (texinfo), and (sxml simple).
2007-07-17let share/guile/site alone, this is handled by guile itselfdrochner1-2/+1
2007-06-26Add text/parse-lalr.scm, and add text to the list of directories thatgdt2-3/+5
must be created so that the file actually gets installed. Pointed out by joerg@. PKGREVISION++.
2007-06-17Depend on guile rather than guile16. Mostly resolves gnucashgdt1-3/+3
dependency issue where gnucash depends on 3 guile packages that before this commit have a mix of 1.6 and 1.8. Only gnucash and guile-gnome depend on this, via g-wrap and g-wrap points to 1.8. Following discussion with wiz@ and dcmahill@.
2007-06-12Point at lang/guile16 instead of lang/guile in preparation for updatingdmcmahill1-2/+3
lang/guile to 1.8.1 from 1.6.8. These pkgs seemed to fail to build with guile 1.8.1, but maybe can be easily fixed.
2007-01-14Not needed in 0.1.3wiz2-25/+0
2007-01-14Update to 0.1.3:wiz3-26/+36
Version 0.1.3 - Statprof fixes for guile 1.8's numbers - 2-year-old SSAX updates merged, finally + you can make custom parsers now - Package is autotooled - Texinfo parser bugfixes - All documentation is now extracted directly from the source code. + Folded this functionality into (texinfo reflect); see doc/Makefile.am for how this is done - New modules, written by Andy Wingo <wingo@pobox.com>: + (texinfo serialize), allows to convert stexi to texi. - (unit-test) now doesn't use call/cc anymore. This should provide a bit of a speed up and prevent Guile segfaults on at least the ia64 architecture (see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=291551). - (srfi srfi-35) now adds condition field names as init-keywords to the classes created by make-condition-type. - "make check" now exits with a non-zero exit code upon error.
2007-01-07Cleaned up the Makefile.rillig1-9/+4
2006-03-30* Honor PKGINFODIR.jlam5-24/+33
* List the info files directly in the PLIST.
2006-03-05* Teach the tools framework how to supply the pkgsrc version ofjlam1-3/+2
makeinfo if no native makeinfo executable exists. Honor TEXINFO_REQD when determining whether the native makeinfo can be used. * Remove USE_MAKEINFO and replace it with USE_TOOLS+=makeinfo. * Get rid of all the "split" argument deduction for makeinfo since the PLIST module already handles varying numbers of split info files correctly. NOTE: Platforms that have "makeinfo" in the base system should check that the makeinfo entries of pkgsrc/mk/tools.${OPSYS}.mk are correct.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-12-06Manually override config.guess and config.sub since this packagejoerg1-1/+5
doesn't use the normal GNU configure mess.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+3
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-08-10Change my email address to @NetBSD.org.gdt1-2/+2
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests.agc1-1/+2
2005-01-21The makeinfo in NetBSD 1.6 is too old to build this pkg. Set TEXINFO_REQD.kristerw1-1/+2
2004-12-03Initial import of guile-lib, provided by Greg Troxel via pkgsrc-wip.wiz5-0/+142
Guile-Lib is intended as an accumulation place for pure-scheme Guile modules, allowing for people to cooperate integrating their generic Guile modules into a coherent library. Think "a down-scaled, limited-scope CPAN for Guile". Also, it can be seen as a code staging area for Guile; the Guile developers could decide to integrate some of the code into guile-core. An example for a possible candidate is SRFI-35. * SSAX, S-Exp-based XML parsing/query/conversion * HTMLPrag, a permissive ("pragmatic") HTML parser * Texinfo processing, enabling literate programming * Unit testing framework ala JUnit * Logging system * String routines (wrapping, completion, soundex algorithm) * OS process chains (think "shell pipes in scheme") * An LALR parser * ANSI escape sequence text coloring * Structured text (plain, texinfo, html) * SRFI-35 (conditions)