From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Amirouche Newsgroups: gmane.lisp.guile.user Subject: =?UTF-8?Q?Re:_Let=e2=80=99s_update_the_web_site=e2=80=99s_library_p?= =?UTF-8?Q?age!?= Date: Sun, 19 Mar 2017 14:50:39 +0100 Message-ID: <123021a8-d154-60a0-2541-7f32c412db6a@hypermove.net> References: <87r31u90rh.fsf@gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Trace: blaine.gmane.org 1489931464 15003 195.159.176.226 (19 Mar 2017 13:51:04 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 19 Mar 2017 13:51:04 +0000 (UTC) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sun Mar 19 14:50:57 2017 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cpbEX-0003Ej-7F for guile-user@m.gmane.org; Sun, 19 Mar 2017 14:50:57 +0100 Original-Received: from localhost ([::1]:56946 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cpbEd-0004J2-5O for guile-user@m.gmane.org; Sun, 19 Mar 2017 09:51:03 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33290) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cpbEC-0004Ix-B3 for guile-user@gnu.org; Sun, 19 Mar 2017 09:50:37 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cpbEB-0003AI-8f for guile-user@gnu.org; Sun, 19 Mar 2017 09:50:36 -0400 Original-Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:36917) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cpbEB-0003A0-2V for guile-user@gnu.org; Sun, 19 Mar 2017 09:50:35 -0400 Original-Received: from [IPv6:2a01:e35:2ef3:d930:f4f9:55d5:5f09:5505] (unknown [IPv6:2a01:e35:2ef3:d930:f4f9:55d5:5f09:5505]) (Authenticated sender: amirouche@hypermove.net) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id E0208172093 for ; Sun, 19 Mar 2017 14:50:31 +0100 (CET) In-Reply-To: <87r31u90rh.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4b98:c:538::196 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:13561 Archived-At: Le 18/03/2017 à 14:23, Ludovic Courtès a écrit : > Hi Guilers! > > Until we have a proper guildhall, > is a simple way to let people know about goodies available for Guile. > > Please consider adding entries for your favorite packages or updating > existing entries! > > The code for that page is here: > > https://git.savannah.gnu.org/cgit/guile/guile-web.git/tree/website/apps/base/libraries-page.scm#n68 > > You can either send us a patch (as produced by ‘git format-patch’) > against this page, or just an entry like this: > > (define guile-lib > (package #:name "Guile-lib" > #:description "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\"." > #:url "http://www.nongnu.org/guile-lib/" > #:tags '("Guile 2.2" "Guile 2.0" "Guile 1.8") > #:license "LGPL 2.1 or later")) Can we create a database section and an entry for guile-wiredtiger: (define guile-wiredtiger (package #:name "guile-wiredtiger" #:description "guile-wiredtiger is a database library powered by wiredtiger. It comes with two high level abstraction: the EAV model and a graph database. The EAV database use logic extension of scheme microkanren to execute queries. The graph database use functional streams for querying." #:url "https://framagit.org/a-guile-mind/guile-wiredtiger/" #:tags '("Guile 2.2") #:license "GPL 2 or later")) Tx!