Re: Lepton EDA 1.9.14 announce and misc questions

2021-04-21 Thread Vladimir Zhbanov
On Tue, Apr 20, 2021 at 05:34:59PM -0700, Matt Wette wrote:
...
> Hey.   I used the glib routine because it returns the same form,
> if I read correctly.   The return value is a pointer to a sequence
> of (C) pointers.  On my machine they are 8 bytes each.  So, if
> the function is returning three strings, say, the first 8 bytes will
> be a pointer to the first string and last 8 bytes (of a total of 32
> = 4 * 8) will be zero.  You need to access the three 8-byte
> pointer values as numbers and convert to guile pointers to
> access the strings.   I don't see a way around that.
> 
> I don't see this being a problem with gcc vs g++.   Maybe in
> structs with mixed types, but not here, IMO.

I'm much relieved to hear it, thank you for your time.

  Vladimir



Re: Guile-Git 0.5.1 released

2021-04-21 Thread Aleix Conchillo Flaqué
Thanks! I get a 404 with that download link, I believe it should be:

https://gitlab.com/guile-git/guile-git/uploads/4ffd7377b0b74da4051356121b46116f/guile-git-0.5.1.tar.gz

Obtained from: https://gitlab.com/guile-git/guile-git/-/releases#v0.5.1

Aleix


On Tue, Apr 20, 2021 at 3:36 AM Ludovic Courtès  wrote:
>
> Hi!
>
> I’m pleased to announce Guile-Git 0.5.1!  Guile-Git is a GNU Guile
> library to interact with Git repositories using libgit2.
>
> Latest release:
>   https://gitlab.com/guile-git/guile-git/-/tags/v0.5.1
>
> Latest release tarball and OpenPGP detached signature:
>   
> https://gitlab.com/guile-git/guile-git/uploads/30be542d90619ca844dd3a3ed2e13808/guile-git-0.5.1.tar.gz
>   
> https://gitlab.com/guile-git/guile-git/uploads/87ca0d2e30d87b99308aa7eaa5fa755b/guile-git-0.5.1.tar.gz.sig
>
> Repository:
>   https://gitlab.com/guile-git/guile-git
>
> Reporting issues:
>   https://gitlab.com/guile-git/guile-git/issues
>
> The ‘v0.5.1’ Git tag and the source code tarball above are signed.
> Run ‘git tag -v v0.5.1’ to check the authenticity of your checkout.  To
> check the authenticity of the tarball, download both the tarball and the
> ‘.sig’ file and run:
>
>   gpg -v guile-git-0.5.1.tar.gz.sig
>
> You may need to retrieve the signing key first:
>
>   gpg --keyserver pool.sks-keyservers.net \
>   --recv-keys 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
>
>
> * Changes in 0.5.1 (since 0.5.0)
>
> ** Bug fix
>
> *** Fix crash when using ‘config-foreach’ or ‘config-fold’
>
> This bug was reported at .  It could
> lead to segmentation faults in ~tests/config.scm~ while running ~make
> check~.
>
>
> Enjoy!
>
> Ludo’.