unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Listing request: guile-aa-tree module
@ 2017-09-15  3:44 Christopher Howard
  2017-09-16 12:25 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Howard @ 2017-09-15  3:44 UTC (permalink / raw)
  To: Guile User Mailing List

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

Hello, I am making a request to have my new module listed on <https://w
ww.gnu.org/software/guile/libraries/>. The project name is Guile AA
Tree, which is of course an AA tree implementation available at

https://savannah.nongnu.org/projects/guile-aa-tree/

Advantages:
- immutable search, insert, and delete operations
- Convenient nested-list operations
- Unambiguous copyleft licensing
- Documentation included
- Unit tests included ("make tests")

-- 
https://qlfiles.net
https://emailselfdefense.fsf.org/en/

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: Listing request: guile-aa-tree module
  2017-09-15  3:44 Listing request: guile-aa-tree module Christopher Howard
@ 2017-09-16 12:25 ` Ludovic Courtès
  2017-09-16 14:27   ` Christopher Howard
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2017-09-16 12:25 UTC (permalink / raw)
  To: guile-user

Hello,

Christopher Howard <christopher.howard@qlfiles.net> skribis:

> Hello, I am making a request to have my new module listed on <https://w
> ww.gnu.org/software/guile/libraries/>. The project name is Guile AA
> Tree, which is of course an AA tree implementation available at
>
> https://savannah.nongnu.org/projects/guile-aa-tree/

Could you send a patch against
<https://git.savannah.gnu.org/cgit/guile/guile-web.git>?

The libraries are listed at
<https://git.savannah.gnu.org/cgit/guile/guile-web.git/tree/website/apps/base/libraries-page.scm#n64>.

TIA!

Ludo’.




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

* Re: Listing request: guile-aa-tree module
  2017-09-16 12:25 ` Ludovic Courtès
@ 2017-09-16 14:27   ` Christopher Howard
  2017-09-16 15:46     ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Howard @ 2017-09-16 14:27 UTC (permalink / raw)
  To: Ludovic Courtès, guile-user


[-- Attachment #1.1: Type: text/plain, Size: 811 bytes --]

On Sat, 2017-09-16 at 14:25 +0200, Ludovic Courtès wrote:
> Hello,
> 
> Christopher Howard <christopher.howard@qlfiles.net> skribis:
> 
> > Hello, I am making a request to have my new module listed on
> > <https://w
> > ww.gnu.org/software/guile/libraries/>. The project name is Guile AA
> > Tree, which is of course an AA tree implementation available at
> > 
> > https://savannah.nongnu.org/projects/guile-aa-tree/
> 
> Could you send a patch against
> <https://git.savannah.gnu.org/cgit/guile/guile-web.git>?
> 
> The libraries are listed at
> <https://git.savannah.gnu.org/cgit/guile/guile-web.git/tree/website/a
> pps/base/libraries-page.scm#n64>.
> 
> TIA!
> 
> Ludo’.
> 
> 

Is this what you need (attached)?

-- 
https://qlfiles.net
https://emailselfdefense.fsf.org/en/

[-- Attachment #1.2: aa-tree.patch --]
[-- Type: text/x-patch, Size: 1291 bytes --]

diff --git a/website/apps/base/libraries-page.scm b/website/apps/base/libraries-page.scm
index c6108f7..688e216 100644
--- a/website/apps/base/libraries-page.scm
+++ b/website/apps/base/libraries-page.scm
@@ -322,6 +322,17 @@ for GNU Guile programs.  It is a wrapper to the underlying
 ;;; Tools implemented with Guile.
 ;;;
 
+(define aatree
+  (package #:name "Guile AA Tree"
+           #:description "Guile AA tree implementation. AA trees are
+self-balancing binary trees, which ensure O(log n) worst case
+performance for core operations. The module provides non-mutating
+insert, delete, and search operations, with support for convenient
+nested tree operations."
+           #:url "http://savannah.nongnu.org/projects/guile-aa-tree"
+           #:tags '("Guile 2.2")
+           #:license "GPL 3 or later"))
+
 (define aiscm
   (package #:name "AIscm"
            #:description "Guile numerical arrays and tensor extension.
@@ -376,7 +387,7 @@ compression. It is written in C and Scheme, with Guile 2.0 bindings."
 (define (%packages-tools)
   "These projects are tools for or implemented with Guile. Mostly, these are
 the types of things that automate documentation or code generation."
-  (list aiscm autogen guix libchop))
+  (list aatree aiscm autogen guix libchop))
 
 \f
 ;;;

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: Listing request: guile-aa-tree module
  2017-09-16 14:27   ` Christopher Howard
@ 2017-09-16 15:46     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2017-09-16 15:46 UTC (permalink / raw)
  To: Christopher Howard; +Cc: guile-user

Christopher Howard <christopher.howard@qlfiles.net> skribis:

> On Sat, 2017-09-16 at 14:25 +0200, Ludovic Courtès wrote:
>> Hello,
>> 
>> Christopher Howard <christopher.howard@qlfiles.net> skribis:
>> 
>> > Hello, I am making a request to have my new module listed on
>> > <https://w
>> > ww.gnu.org/software/guile/libraries/>. The project name is Guile AA
>> > Tree, which is of course an AA tree implementation available at
>> > 
>> > https://savannah.nongnu.org/projects/guile-aa-tree/
>> 
>> Could you send a patch against
>> <https://git.savannah.gnu.org/cgit/guile/guile-web.git>?
>> 
>> The libraries are listed at
>> <https://git.savannah.gnu.org/cgit/guile/guile-web.git/tree/website/a
>> pps/base/libraries-page.scm#n64>.
>> 
>> TIA!
>> 
>> Ludo’.
>> 
>> 
>
> Is this what you need (attached)?

Yes, perfect.  Pushed, thanks!

Ludo’.



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

end of thread, other threads:[~2017-09-16 15:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-15  3:44 Listing request: guile-aa-tree module Christopher Howard
2017-09-16 12:25 ` Ludovic Courtès
2017-09-16 14:27   ` Christopher Howard
2017-09-16 15:46     ` Ludovic Courtès

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