Hello guilers, Attached is a pkg-list.scm file for guile-lib for use with guildhall. I have only included the files not part of guile 2 already, nor have I included the compatibility file for guile 2 in the pkg-list.scm. As far as I can tell, guildhall itself has some dependencies on guile 2 specific functionality (specifically r6rs support), but if someone is willing to test it on guile 1.x and prove me wrong, I will revise this.
The file is longer than I'd have liked, but some of the options in the pkg-list.scm grammar are either incorrect, or I've misinterpreted it. Most of the information was taken from the guile-lib info page. I hope the copyright info is correct. Anyway, if there are no objections to the content, I will upload the package to my repo. -- Ian Price -- shift-reset.com "Programming is like pinball. The reward for doing it well is the opportunity to do it again" - from "The Wizardy Compiled"
;;; pkg-list.scm --- pkg-list.scm for guildhall ;; Copyright (C) 2012 Ian Price <ianpric...@googlemail.com> ;; Copyright (C) 2003-2007,2010,2011 Andy Wingo, Richard Todd ;; Permission is granted to copy, distribute and/or modify this ;; document under the terms of the GNU Free Documentation License, ;; Version 1.2 or any later version published by the Free Software ;; Foundation; with no Invariant Sections, no Front-Cover Texts, and ;; no Back-Cover Texts. A copy of the license is included in the ;; section entitled "GNU Free Documentation License". ;;; Commentary: ;;; Guile >= 2 only. ;;; Modules that are in guile 2 already are not included, nor is the ;;; compatibility file. ;;; Contains information from the guile-lib info page ;;; Code: (package (guile-lib (0 2 1)) (provides apicheck config-load container-async-queue container-delay-tree debugging-assert debugging-time graph-topological-sort htmlprag io-string logging-logger logging-port-log logging-rotating-log match-bind math-minima math-primes os-process scheme-documentation scheme-kwargs search-basic string-completion string-soundex string-transform string-wrap term-ansi-color unit-test md5) (synopsis "a down-scaled, limited-scope CPAN for Guile") (description "- apicheck: Describe and verify library programming interfaces" "- config load: Loading configuration files" "- container async-queue: A thread-safe message queue" "- container nodal-tree: A tree consisting of nodes with attributes" "- container delay-tree: A nodal tree with lazily evaluated fields" "- debugging assert: Helpful assert macro" "- debugging time: A simple macro to time the execution of an expression" "- graph topological-sort: Routines to perform topological sorts" "- htmlprag: Neil Van Dyke's permissive (\"pragmatic\") HTML parser" "- io string: SLIB's IO routines dealing with strings" "- logging logger: A flexible logging system" "- logging port-log: A logger that outputs to a port" "- logging rotating-log: A logger that rotates its output files" "- match-bind: Nifty and concise regular expression routines" "- math minima: A golden-section minimum finder" "- math primes: Functions related to prime numbers and factorization" "- os process: Spawning processes and capturing their output" "- scheme documentation: Macros to define different kinds of variables with documentation" "- scheme kwargs: Defining functions with flexible keyword arguments" "- search basic: Classic search functions" "- string completion: Building blocks for tab completion" "- string soundex: The SOUNDEX string categorization algorithm" "- string transform: Beyond SRFI-13" "- string wrap: A versatile string formatter" "- term ansi-color: Generate ANSI color escape sequences" "- unit-test: A JUnit-style unit testing framework" "- md5: MD5 hashing") (homepage "http://www.nongnu.org/guile-lib/") (libraries (("src" "config") -> "config") (("src" "container") -> "container") (("src" "debugging") -> "debugging") (("src" "graph") -> "graph") (("src" "io") -> "io") (("src" "logging") -> "logging") (("src" "math") -> "math") (("src" "os") -> "os") (("src" "scheme") -> "scheme") (("src" "search") -> "search") (("src" "string") -> "string") (("src" "term") -> "term") (("src" "apicheck.scm") -> "apicheck.scm") (("src" "htmlprag.scm") -> "htmlprag.scm") (("src" "match-bind.scm") -> "match-bind.scm") (("src" "md5.scm") -> "md5.scm") (("src" "unit-test.scm") -> "unit-test.scm")))