unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* guile-lib 0.2.2 released
@ 2013-01-31 10:23 Andy Wingo
  2013-02-04  1:40 ` Ian Price
  2013-02-04  2:07 ` Daniel Hartwig
  0 siblings, 2 replies; 5+ messages in thread
From: Andy Wingo @ 2013-01-31 10:23 UTC (permalink / raw)
  To: guile-devel, guile-user

I am pleased to announce that Guile-Lib 0.2.2 has been released. It
may be obtained at:

  http://download.savannah.gnu.org/releases/guile-lib/guile-lib-0.2.2.tar.gz

What is Guile-Lib
-----------------

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".

What's new
----------

 * Install (texinfo nodal-tree) for Guile 2.0.

 * MD5 bugfixes.

 * Better errors in Apicheck.

Thanks to Daniel Hartwig.

Regards,

Andy
-- 
http://wingolog.org/



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: guile-lib 0.2.2 released
  2013-01-31 10:23 guile-lib 0.2.2 released Andy Wingo
@ 2013-02-04  1:40 ` Ian Price
  2013-02-04  2:07 ` Daniel Hartwig
  1 sibling, 0 replies; 5+ messages in thread
From: Ian Price @ 2013-02-04  1:40 UTC (permalink / raw)
  To: Andy Wingo; +Cc: guile-user, guile-devel

[-- Attachment #1: Type: text/plain, Size: 1168 bytes --]

Andy Wingo <wingo@pobox.com> writes:

> I am pleased to announce that Guile-Lib 0.2.2 has been released. It
> may be obtained at:
>
>   http://download.savannah.gnu.org/releases/guile-lib/guile-lib-0.2.2.tar.gz

I've updated the version on guildhall accordingly.

'guild update' to fetch the latest available.scm, and
'guild install guile-lib' to install, or
'guild upgrade' to upgrade an existing one

I've attached the pkg-list.scm file I used for it. It's a small
modification of the one I posted previously.

Two notes: This only installs the packages that do not come with Guile
2. After the change to make ... a special marker on the path, this is no
longer necessary, and should probably be changed to simplify the file.

Also, it does not build documentation & install for guile-lib, this will
be one of the things I want to address this year with guildhall, along
with some known interface bugs, the srfi package issues, and support for
C etc. A full post will be made later in the week.(promise :)

-- 
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"


[-- Attachment #2: pkg-list.scm for guile lbi --]
[-- Type: text/plain, Size: 3836 bytes --]

;;; pkg-list.scm --- pkg-list.scm for guildhall
;; Copyright (C) 2012,2013 Ian Price <ianprice90@googlemail.com>
;; Copyright (C) 2003-2007,2010,2011,2013 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 2))
  (provides
   apicheck
   config-load
   container-async-queue
   container-delay-tree
   container-nodal-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
   texinfo-nodal-tree
   )
  (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"
   "- texinfo nodal-tree: A nodal tree for texinfo"
   )
  (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")
   (("src" "texinfo" "nodal-tree.scm") -> ("texinfo" "nodal-tree.scm"))))

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: guile-lib 0.2.2 released
  2013-01-31 10:23 guile-lib 0.2.2 released Andy Wingo
  2013-02-04  1:40 ` Ian Price
@ 2013-02-04  2:07 ` Daniel Hartwig
  2013-02-04 10:58   ` Andy Wingo
  1 sibling, 1 reply; 5+ messages in thread
From: Daniel Hartwig @ 2013-02-04  2:07 UTC (permalink / raw)
  To: guile-devel

On 31 January 2013 18:23, Andy Wingo <wingo@pobox.com> wrote:
> 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".

Is guile-lib interested in receiving new code?



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: guile-lib 0.2.2 released
  2013-02-04  2:07 ` Daniel Hartwig
@ 2013-02-04 10:58   ` Andy Wingo
  2013-02-04 11:39     ` Daniel Hartwig
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Wingo @ 2013-02-04 10:58 UTC (permalink / raw)
  To: Daniel Hartwig; +Cc: guile-devel

On Mon 04 Feb 2013 03:07, Daniel Hartwig <mandyke@gmail.com> writes:

> On 31 January 2013 18:23, Andy Wingo <wingo@pobox.com> wrote:
>> 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".
>
> Is guile-lib interested in receiving new code?

Dunno!  I'm not sure.  Now that we have the guildhall starting up, I
would be inclined to say "no".  Better a decentralized repo than a
poorly maintained centralized repo.

Do you think guile-lib should accept new code?

Andy
-- 
http://wingolog.org/



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: guile-lib 0.2.2 released
  2013-02-04 10:58   ` Andy Wingo
@ 2013-02-04 11:39     ` Daniel Hartwig
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Hartwig @ 2013-02-04 11:39 UTC (permalink / raw)
  To: guile-devel

On 4 February 2013 18:58, Andy Wingo <wingo@pobox.com> wrote:
> On Mon 04 Feb 2013 03:07, Daniel Hartwig <mandyke@gmail.com> writes:
>> Is guile-lib interested in receiving new code?
>
> Dunno!  I'm not sure.  Now that we have the guildhall starting up, I
> would be inclined to say "no".  Better a decentralized repo than a
> poorly maintained centralized repo.
>
> Do you think guile-lib should accept new code?

For small modules, I think guile-lib may still service a niche.  Some
downstreams tend to favour having very small language extensions
packaged together (e.g. Debian).  It is certainly more convenient to
declare an apt dependency on guile-lib, rather than introduce a new
package for every 20 line module.

Perhaps it can continue as a kind of collabatively maintained library
for flyby authors to deposit their useful-but-small modules.

:-/



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-02-04 11:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-31 10:23 guile-lib 0.2.2 released Andy Wingo
2013-02-04  1:40 ` Ian Price
2013-02-04  2:07 ` Daniel Hartwig
2013-02-04 10:58   ` Andy Wingo
2013-02-04 11:39     ` Daniel Hartwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).