unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* GNU Shepherd 0.9.0 released
@ 2022-04-06 21:25 Ludovic Courtès
  2022-04-06 23:18 ` Zhu Zihao
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Ludovic Courtès @ 2022-04-06 21:25 UTC (permalink / raw)
  To: guix-devel, guile-sources, guile-user, info-gnu

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

We are pleased to announce the GNU Shepherd version 0.8.1.  This release
represents 49 commits by 3 people, bringing a new concurrent,
event-driven core, improved logging, and on-demand service startup.


• About

  The GNU Daemon Shepherd or GNU Shepherd is a service manager written
  in Guile that looks after the herd of system services.  It provides a
  replacement for the service-managing capabilities of SysV-init (or any
  other init) with a dependency-based system with a convenient
  interface.  The GNU Shepherd may also be used by unprivileged users to
  manage per-user daemons (e.g., tor, privoxy, mcron, etc.)  It is
  written in Guile Scheme, and is configured and extended using Guile.

  The GNU Shepherd is developed jointly with the GNU Guix project; it is
  used as the init system of Guix, GNU’s advanced GNU/Linux distribution.

  https://www.gnu.org/software/shepherd/


• Download

  Here are the compressed sources and a GPG detached signature[*]:
    https://ftp.gnu.org/gnu/shepherd/shepherd-0.9.0.tar.gz
    https://ftp.gnu.org/gnu/shepherd/shepherd-0.9.0.tar.gz.sig

  Use a mirror for higher download bandwidth:
    https://ftpmirror.gnu.org/shepherd/shepherd-0.9.0.tar.gz
    https://ftpmirror.gnu.org/shepherd/shepherd-0.9.0.tar.gz.sig

  Here are the SHA1 and SHA256 checksums:

  df84c15e21b00e6237af1c243ff77dfee2373626  shepherd-0.9.0.tar.gz
  c180778397694fccc051606d97ab646c8cb07e9d65712e21f154e8155986bce5  shepherd-0.9.0.tar.gz

  [*] Use a .sig file to verify that the corresponding file (without the
  .sig suffix) is intact.  First, be sure to download both the .sig file
  and the corresponding tarball.  Then, run a command like this:

    gpg --verify shepherd-0.9.0.tar.gz.sig

  If that command fails because you don't have the required public key,
  then run this command to import it:

    gpg --keyserver keys.openpgp.org \
        --recv-keys 3CE464558A84FDC69DB40CFB090B11993D9AEBB5

  and rerun the 'gpg --verify' command.

  This release was bootstrapped with the following tools:
    Autoconf 2.71
    Automake 1.16.5
    Makeinfo 6.7
    Help2man 1.48.5


• Changes since version 0.8.1 (excerpt from the NEWS file)

  ** The Shepherd now depends on Fibers 1.1.0 or later
  ** ‘shepherd’ no longer blocks when waiting for PID files, etc.
  ** Services without #:log-file have their output written to syslog
  ** Services with #:log-file have their output timestamped
  ** New ‘make-inetd-constructor’ procedure for inetd-style services
  ** New ‘make-systemd-constructor’ for systemd-style “socket activation”
  ** New ‘start-in-the-background’ procedure
  ** Services can now be “transient” (see the manual for details)
  ** New #:supplementary-groups parameter for ‘make-forkexec-constructor’
  ** New #:create-session? parameter for ‘make-forkexec-constructor’
  ** New #:resource-limits parameter for ‘make-forkexec-constructor’
  ** Log file of unprivileged ‘shepherd’ is now under $XDG_DATA_DIR
  ** Do not reboot upon ‘quit’ when running as root but not PID 1
  ** Improved documentation and examples
  ** The Shepherd can no longer be built with Guile 2.0
  ** Work around Guile 3.0.[5-7] compiler bug
     (<https://bugs.gnu.org/47172>)
  ** Updated translations: da, de, sv, uk

Please report bugs to bug-guix@gnu.org.
Join guix-devel@gnu.org for discussions.

Ludovic, on behalf of the Shepherd herd.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 853 bytes --]

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

* Re: GNU Shepherd 0.9.0 released
  2022-04-06 21:25 GNU Shepherd 0.9.0 released Ludovic Courtès
@ 2022-04-06 23:18 ` Zhu Zihao
  2022-04-07  1:54 ` Ognen Duzlevski
  2022-04-07  4:12 ` Liliana Marie Prikler
  2 siblings, 0 replies; 8+ messages in thread
From: Zhu Zihao @ 2022-04-06 23:18 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, guile-user, info-gnu, guile-sources

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


Ludovic Courtès <ludo@gnu.org> writes:

> [[PGP Signed Part:Undecided]]
> We are pleased to announce the GNU Shepherd version 0.8.1.  This release
> represents 49 commits by 3 people, bringing a new concurrent,
> event-driven core, improved logging, and on-demand service startup.

"version 0.8.1"

A bug here? :)

-- 
Retrieve my PGP public key:

  gpg --recv-keys D47A9C8B2AE3905B563D9135BE42B352A9F6821F

Zihao

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 255 bytes --]

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

* Re: GNU Shepherd 0.9.0 released
  2022-04-06 21:25 GNU Shepherd 0.9.0 released Ludovic Courtès
  2022-04-06 23:18 ` Zhu Zihao
@ 2022-04-07  1:54 ` Ognen Duzlevski
  2022-04-08 11:31   ` Tim Van den Langenbergh
  2022-04-07  4:12 ` Liliana Marie Prikler
  2 siblings, 1 reply; 8+ messages in thread
From: Ognen Duzlevski @ 2022-04-07  1:54 UTC (permalink / raw)
  To: guile-user


Ludovic Courtès <ludo@gnu.org> writes:

> [[PGP Signed Part:Undecided]]
> We are pleased to announce the GNU Shepherd version 0.8.1.  This release
> represents 49 commits by 3 people, bringing a new concurrent,
> event-driven core, improved logging, and on-demand service startup.

Does Shepherd only run on Linux?

Thanks,



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

* Re: GNU Shepherd 0.9.0 released
  2022-04-06 21:25 GNU Shepherd 0.9.0 released Ludovic Courtès
  2022-04-06 23:18 ` Zhu Zihao
  2022-04-07  1:54 ` Ognen Duzlevski
@ 2022-04-07  4:12 ` Liliana Marie Prikler
  2022-04-07 14:11   ` Brian Cully
  2 siblings, 1 reply; 8+ messages in thread
From: Liliana Marie Prikler @ 2022-04-07  4:12 UTC (permalink / raw)
  To: Ludovic Courtès, guix-devel, guile-sources, guile-user,
	info-gnu

Am Mittwoch, dem 06.04.2022 um 23:25 +0200 schrieb Ludovic Courtès:
>   ** Log file of unprivileged ‘shepherd’ is now under $XDG_DATA_DIR
Should that not be $XDG_STATE_DIR?


Cheers



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

* Re: GNU Shepherd 0.9.0 released
  2022-04-07  4:12 ` Liliana Marie Prikler
@ 2022-04-07 14:11   ` Brian Cully
  0 siblings, 0 replies; 8+ messages in thread
From: Brian Cully @ 2022-04-07 14:11 UTC (permalink / raw)
  To: Liliana Marie Prikler
  Cc: guix-devel, Ludovic Courtès, info-gnu, guile-sources,
	guile-user


Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> Am Mittwoch, dem 06.04.2022 um 23:25 +0200 schrieb Ludovic Courtès:
>>   ** Log file of unprivileged ‘shepherd’ is now under $XDG_DATA_DIR
> Should that not be $XDG_STATE_DIR?

	I believe it should be $XDG_STATE_HOME, in fact. See:
	https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html

---[snip]---
 $XDG_STATE_HOME defines the base directory relative to which
 user-specific state files should be stored. If $XDG_STATE_HOME is
 either not set or empty, a default equal to $HOME/.local/state should
 be used.
 ---[snip]---

-bjc



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

* Re: GNU Shepherd 0.9.0 released
  2022-04-07  1:54 ` Ognen Duzlevski
@ 2022-04-08 11:31   ` Tim Van den Langenbergh
  2022-04-08 13:45     ` Ognen Duzlevski
  0 siblings, 1 reply; 8+ messages in thread
From: Tim Van den Langenbergh @ 2022-04-08 11:31 UTC (permalink / raw)
  To: guile-user


Ognen Duzlevski <maketo@sdf.org> writes:

> Ludovic Courtès <ludo@gnu.org> writes:
>
>> [[PGP Signed Part:Undecided]]
>> We are pleased to announce the GNU Shepherd version 0.8.1.  This release
>> represents 49 commits by 3 people, bringing a new concurrent,
>> event-driven core, improved logging, and on-demand service startup.
>
> Does Shepherd only run on Linux?
>
> Thanks,

Hey,

from the README:

> It is intended for use on GNU/Hurd, but it is supposed to work on every
> POSIX-like system where Guile is available.  In particular, it has been
> tested on GNU/Linux.

So if you prefer to run the Hurd rather than Linux, it should work fine.

Vale,

- Tim



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

* Re: GNU Shepherd 0.9.0 released
  2022-04-08 11:31   ` Tim Van den Langenbergh
@ 2022-04-08 13:45     ` Ognen Duzlevski
  2022-04-08 14:19       ` Jack Hill
  0 siblings, 1 reply; 8+ messages in thread
From: Ognen Duzlevski @ 2022-04-08 13:45 UTC (permalink / raw)
  To: Tim Van den Langenbergh; +Cc: guile-user


Tim Van den Langenbergh <tmt_vdl@gmx.com> writes:

> Ognen Duzlevski <maketo@sdf.org> writes:
>
>> Ludovic Courtès <ludo@gnu.org> writes:
>>
>>> [[PGP Signed Part:Undecided]]
>>> We are pleased to announce the GNU Shepherd version 0.8.1.  This release
>>> represents 49 commits by 3 people, bringing a new concurrent,
>>> event-driven core, improved logging, and on-demand service startup.
>>
>> Does Shepherd only run on Linux?
>>
>> It is intended for use on GNU/Hurd, but it is supposed to work on every
>> POSIX-like system where Guile is available.  In particular, it has been
>> tested on GNU/Linux.
>
> So if you prefer to run the Hurd rather than Linux, it should work fine.

Tim, thanks!

I run FreeBSD and it uses kqueue instead of epoll so even if Guile
technically runs on FreeBSD, fibers do not.

I don't mind submitting a patch to make this happen.

Ognen




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

* Re: GNU Shepherd 0.9.0 released
  2022-04-08 13:45     ` Ognen Duzlevski
@ 2022-04-08 14:19       ` Jack Hill
  0 siblings, 0 replies; 8+ messages in thread
From: Jack Hill @ 2022-04-08 14:19 UTC (permalink / raw)
  To: Ognen Duzlevski; +Cc: guile-user

On Fri, 8 Apr 2022, Ognen Duzlevski wrote:

>
> Tim Van den Langenbergh <tmt_vdl@gmx.com> writes:
>
>> Ognen Duzlevski <maketo@sdf.org> writes:
>>
>>> Ludovic Courtès <ludo@gnu.org> writes:
>>>
>>>> [[PGP Signed Part:Undecided]]
>>>> We are pleased to announce the GNU Shepherd version 0.8.1.  This release
>>>> represents 49 commits by 3 people, bringing a new concurrent,
>>>> event-driven core, improved logging, and on-demand service startup.
>>>
>>> Does Shepherd only run on Linux?
>>>
>>> It is intended for use on GNU/Hurd, but it is supposed to work on every
>>> POSIX-like system where Guile is available.  In particular, it has been
>>> tested on GNU/Linux.
>>
>> So if you prefer to run the Hurd rather than Linux, it should work fine.
>
> Tim, thanks!
>
> I run FreeBSD and it uses kqueue instead of epoll so even if Guile
> technically runs on FreeBSD, fibers do not.
>
> I don't mind submitting a patch to make this happen.

Some pointers you might find helpful:

When Ludo’ originally announced this work⁰, this limitation was known, 
but, fortunately, work is already underway to bring fibers to other 
platforms via libevent¹.

0: https://lists.gnu.org/archive/html/guix-devel/2022-03/msg00125.html
1: https://github.com/wingo/fibers/pull/53

Best,
Jack


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

end of thread, other threads:[~2022-04-08 14:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-06 21:25 GNU Shepherd 0.9.0 released Ludovic Courtès
2022-04-06 23:18 ` Zhu Zihao
2022-04-07  1:54 ` Ognen Duzlevski
2022-04-08 11:31   ` Tim Van den Langenbergh
2022-04-08 13:45     ` Ognen Duzlevski
2022-04-08 14:19       ` Jack Hill
2022-04-07  4:12 ` Liliana Marie Prikler
2022-04-07 14:11   ` Brian Cully

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