unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: Bengt Richter <bokr@bokr.com>
To: guile-user@gnu.org
Subject: Re: Guile-zlib 0.1.0 released
Date: Sat, 13 Mar 2021 09:18:19 +0100	[thread overview]
Message-ID: <20210313081819.GA10548@LionPure> (raw)
In-Reply-To: <875z1wv6uw.fsf@gnu.org>

On +2021-03-12 14:28:39 +0100, Ludovic Courtès wrote:
> Hi!
> 
> I’m pleased to announce the second release of Guile-zlib:
> 
>   git clone https://notabug.org/guile-zlib/guile-zlib
>   cd guile-zlib
>   git checkout v0.1.0  # or 429b3c65ee8946d7ced2353efb8710047fd29c57
>   git tag -v v0.1.0
> 
> The ‘git tag -v’ command checks the authenticity of your checkout.
> You may need to retrieve the signing key first:
> 
>   gpg --keyserver pool.sks-keyservers.net \
>       --recv-keys 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
> 
> Guile-zlib provides Guile 3.0/2.x bindings to the zlib compression
> library.
> 
> Changes since the previous release (excerpt from the ‘NEWS’ file):
> 
>   ** New procedures: ‘make-zlib-input-port’, ‘make-zlib-output-port’
> 
>      These procedures and the companion ‘call-with-zlib-*’ procedures
>      provide an alternative to the ‘make-gzip-*’ and ‘call-with-gzip-*’
>      procedures; unlike those, they operate on all types of ports, not
>      just file ports.
> 
>      These procedures also support multiple formats: raw “deflate”,
>      “zlib”, and “gzip”.
> 
>   ** New ‘compress’ and ‘uncompress’ procedures
> 
>      These procedures support compression/decompression of individual
>      bytevectors.
> 
> You can report bugs and send patches to <guile-user@gnu.org> or on the
> web site:
> 
>   https://notabug.org/guile-zlib/guile-zlib
> 
> If you like Guile-zlib, you may also like these:
> 
>   https://notabug.org/guile-lzlib/guile-lzlib
>   https://notabug.org/guile-zstd/guile-zstd
> 
> :-)
> 
> Ludo’.

--8<---------------cut here---------------start------------->8---
[08:57 ~/wb]$ git clone https://notabug.org/guile-zlib/guile-zlib
Cloning into 'guile-zlib'...
remote: Counting objects: 75, done.
remote: Compressing objects: 100% (66/66), done.
remote: Total 75 (delta 32), reused 0 (delta 0)
Unpacking objects: 100% (75/75), done.
[08:58 ~/wb]$ cd guile
guile/         guile-netlink/ guile-zlib/    guile-zstd/    
[08:58 ~/wb]$ cd guile-z
guile-zlib/ guile-zstd/ 
[08:58 ~/wb]$ cd guile-zlib/
[08:58 ~/wb/guile-zlib]$ git checkout v0.1.0 
Note: checking out 'v0.1.0'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b <new-branch-name>

HEAD is now at 429b3c6 maint: Bump to 0.1.0.
[08:59 ~/wb/guile-zlib]$ gpg --keyserver pool.sks-keyservers.net \
>       --recv-keys 3CE464558A84FDC69DB40CFB090B11993D9AEBB5

gpg: key 090B11993D9AEBB5: 4 duplicate signatures removed
gpg: key 090B11993D9AEBB5: 122 signatures not checked due to missing keys
gpg: key 090B11993D9AEBB5: 4 signatures reordered
gpg: key 090B11993D9AEBB5: "Ludovic Courtès <ludo@gnu.org>" not changed
gpg: Total number processed: 1
gpg:              unchanged: 1
[09:01 ~/wb/guile-zlib]$ 
[09:01 ~/wb/guile-zlib]$ git tag -v v0.1.0
object 429b3c65ee8946d7ced2353efb8710047fd29c57
type commit
tag v0.1.0
tagger Ludovic Courtès <ludo@gnu.org> 1615555317 +0100

Guile-zlib 0.1.0.
gpg: Signature made Fri 12 Mar 2021 02:21:57 PM CET
gpg:                using RSA key 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
gpg: Good signature from "Ludovic Courtès <ludo@gnu.org>" [expired]
gpg:                 aka "Ludovic Courtès <ludo@chbouib.org>" [expired]
gpg:                 aka "Ludovic Courtès (Inria) <ludovic.courtes@inria.fr>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 3CE4 6455 8A84 FDC6 9DB4  0CFB 090B 1199 3D9A EBB5
--8<---------------cut here---------------end--------------->8---

Following your procedure, above is what I got.
Noting:
   gpg: key 090B11993D9AEBB5: 122 signatures not checked due to missing keys
   gpg: Good signature from "Ludovic Courtès <ludo@gnu.org>" [expired] ...

HTH
-- 
Regards,
Bengt Richter



  reply	other threads:[~2021-03-13  8:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-12 13:28 Guile-zlib 0.1.0 released Ludovic Courtès
2021-03-13  8:18 ` Bengt Richter [this message]
2021-03-15 18:17   ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210313081819.GA10548@LionPure \
    --to=bokr@bokr.com \
    --cc=guile-user@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).