unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* [ANN] Guile-Git 0.1.0 released
@ 2018-07-06  1:33 Erik Edrosa
  2018-07-06  6:21 ` Amirouche Boubekki
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Erik Edrosa @ 2018-07-06  1:33 UTC (permalink / raw)
  To: guile-user@gnu.org

Hello everyone,

This is the first release of Guile-Git, GNU Guile bindings to
libgit2[0]. Guile-Git provides modules for interacting with git
repositories. Here is a small example program which clones guile-git
repo and prints some information:

    (use-modules (git))

    (define repo (clone "https://gitlab.com/guile-git/guile-git.git"
                        "/tmp/guile-git"))

    (display (repository-directory repo))
    (newline)

    (let ((commit (commit-lookup repo (string->oid "92b5ad587351423cc64372d525946c8fdcf23467"))))
      (display (signature-name (commit-author commit)))
      (newline)
      (display (commit-message commit)))

It outputs:

    /tmp/guile-git/.git/
    Erik Edrosa
    build: Change version to 0.1.0

    * configure.ac: Change version 0.1 to 0.1.0.


You may download Guile-Git's release tarball at:
    https://gitlab.com/guile-git/guile-git/uploads/e8c218ac7ae77b745c44d1ffbe34f1dd/guile-git-0.1.0.tar.gz

The Guile-Git repository may be found at:
    https://gitlab.com/guile-git/guile-git

Thanks to Amirouche Boubekki, Ludovic Courtès, Jelle Licht, and Mathieu
Othacehe for their contributions to this release.

Thanks,
Erik (OrangeShark)

[0]: https://libgit2.github.com/



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

* Re: [ANN] Guile-Git 0.1.0 released
  2018-07-06  1:33 [ANN] Guile-Git 0.1.0 released Erik Edrosa
@ 2018-07-06  6:21 ` Amirouche Boubekki
  2018-07-06 11:50 ` alex sassmannshausen
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Amirouche Boubekki @ 2018-07-06  6:21 UTC (permalink / raw)
  To: Erik Edrosa; +Cc: guile-user, guile-user

On 2018-07-06 03:33, Erik Edrosa wrote:
> Hello everyone,
> 
> This is the first release of Guile-Git, GNU Guile bindings to
> libgit2[0]. Guile-Git provides modules for interacting with git
> repositories. Here is a small example program which clones guile-git
> repo and prints some information:

[...]

> [0]: https://libgit2.github.com/

Congrats for the release!

Sorry for letting you down on this. What's missing in the bindings
as of right now?

I read it's now used in guix and cuirass (hydra replacement), great
achievement again!

-- 
Amirouche ~ amz3 ~ http://www.hyperdev.fr



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

* Re: [ANN] Guile-Git 0.1.0 released
  2018-07-06  1:33 [ANN] Guile-Git 0.1.0 released Erik Edrosa
  2018-07-06  6:21 ` Amirouche Boubekki
@ 2018-07-06 11:50 ` alex sassmannshausen
  2018-07-06 13:03 ` Thompson, David
  2018-07-06 21:21 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: alex sassmannshausen @ 2018-07-06 11:50 UTC (permalink / raw)
  To: Erik Edrosa; +Cc: guile-user

Congratulations on the release. Interfacing with git from guile is very
cool :)

On Fri, 6 Jul 2018, 03:33 Erik Edrosa, <erik.edrosa@gmail.com> wrote:

> Hello everyone,
>
> This is the first release of Guile-Git, GNU Guile bindings to
> libgit2[0]. Guile-Git provides modules for interacting with git
> repositories. Here is a small example program which clones guile-git
> repo and prints some information:
>
>     (use-modules (git))
>
>     (define repo (clone "https://gitlab.com/guile-git/guile-git.git"
>                         "/tmp/guile-git"))
>
>     (display (repository-directory repo))
>     (newline)
>
>     (let ((commit (commit-lookup repo (string->oid
> "92b5ad587351423cc64372d525946c8fdcf23467"))))
>       (display (signature-name (commit-author commit)))
>       (newline)
>       (display (commit-message commit)))
>
> It outputs:
>
>     /tmp/guile-git/.git/
>     Erik Edrosa
>     build: Change version to 0.1.0
>
>     * configure.ac: Change version 0.1 to 0.1.0.
>
>
> You may download Guile-Git's release tarball at:
>
> https://gitlab.com/guile-git/guile-git/uploads/e8c218ac7ae77b745c44d1ffbe34f1dd/guile-git-0.1.0.tar.gz
>
> The Guile-Git repository may be found at:
>     https://gitlab.com/guile-git/guile-git
>
> Thanks to Amirouche Boubekki, Ludovic Courtès, Jelle Licht, and Mathieu
> Othacehe for their contributions to this release.
>
> Thanks,
> Erik (OrangeShark)
>
> [0]: https://libgit2.github.com/
>
>


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

* Re: [ANN] Guile-Git 0.1.0 released
  2018-07-06  1:33 [ANN] Guile-Git 0.1.0 released Erik Edrosa
  2018-07-06  6:21 ` Amirouche Boubekki
  2018-07-06 11:50 ` alex sassmannshausen
@ 2018-07-06 13:03 ` Thompson, David
  2018-07-06 21:21 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Thompson, David @ 2018-07-06 13:03 UTC (permalink / raw)
  To: Erik Edrosa; +Cc: guile-user@gnu.org

On Thu, Jul 5, 2018 at 9:33 PM, Erik Edrosa <erik.edrosa@gmail.com> wrote:
> Hello everyone,
>
> This is the first release of Guile-Git, GNU Guile bindings to
> libgit2[0]. Guile-Git provides modules for interacting with git
> repositories. Here is a small example program which clones guile-git
> repo and prints some information:
>
>     (use-modules (git))
>
>     (define repo (clone "https://gitlab.com/guile-git/guile-git.git"
>                         "/tmp/guile-git"))
>
>     (display (repository-directory repo))
>     (newline)
>
>     (let ((commit (commit-lookup repo (string->oid "92b5ad587351423cc64372d525946c8fdcf23467"))))
>       (display (signature-name (commit-author commit)))
>       (newline)
>       (display (commit-message commit)))
>
> It outputs:
>
>     /tmp/guile-git/.git/
>     Erik Edrosa
>     build: Change version to 0.1.0
>
>     * configure.ac: Change version 0.1 to 0.1.0.

This is really neat! Thanks for sharing it with us!

- Dave



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

* Re: [ANN] Guile-Git 0.1.0 released
  2018-07-06  1:33 [ANN] Guile-Git 0.1.0 released Erik Edrosa
                   ` (2 preceding siblings ...)
  2018-07-06 13:03 ` Thompson, David
@ 2018-07-06 21:21 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2018-07-06 21:21 UTC (permalink / raw)
  To: Erik Edrosa; +Cc: Guile User

Hello!

Erik Edrosa <erik.edrosa@gmail.com> skribis:

> This is the first release of Guile-Git, GNU Guile bindings to
> libgit2[0]. Guile-Git provides modules for interacting with git
> repositories. Here is a small example program which clones guile-git
> repo and prints some information:

Woohoo, thank you!

Ludo’.



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

end of thread, other threads:[~2018-07-06 21:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-06  1:33 [ANN] Guile-Git 0.1.0 released Erik Edrosa
2018-07-06  6:21 ` Amirouche Boubekki
2018-07-06 11:50 ` alex sassmannshausen
2018-07-06 13:03 ` Thompson, David
2018-07-06 21:21 ` 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).