* [PATCH 0/3] Update skarnet packages
@ 2016-07-30 14:05 Eric Le Bihan
2016-07-30 14:05 ` [PATCH 1/3] gnu: Add s6-rc Eric Le Bihan
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Eric Le Bihan @ 2016-07-30 14:05 UTC (permalink / raw)
To: guix-devel
Hi!
This small series adds the last missing programs from the skarnet software
stack.
Eric Le Bihan (3):
gnu: Add s6-rc.
gnu: Add s6-portable-utils.
gnu: Add s6-linux-utils.
gnu/packages/skarnet.scm | 106 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 106 insertions(+)
--
2.4.11
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/3] gnu: Add s6-rc.
2016-07-30 14:05 [PATCH 0/3] Update skarnet packages Eric Le Bihan
@ 2016-07-30 14:05 ` Eric Le Bihan
2016-07-31 22:58 ` Ludovic Courtès
2016-07-30 14:05 ` [PATCH 2/3] gnu: Add s6-portable-utils Eric Le Bihan
2016-07-30 14:58 ` [PATCH 0/3] Update skarnet packages Leo Famulari
2 siblings, 1 reply; 6+ messages in thread
From: Eric Le Bihan @ 2016-07-30 14:05 UTC (permalink / raw)
To: guix-devel
* gnu/packages/skarnet.scm (s6-rc): New variable.
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
---
gnu/packages/skarnet.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm
index 57fc12d..02094a0 100644
--- a/gnu/packages/skarnet.scm
+++ b/gnu/packages/skarnet.scm
@@ -204,3 +204,45 @@ as an alternative to the BIND, djbdns or other DNS clients.")))
It includes command-line client and server management, TCP access control,
privilege escalation across UNIX domain sockets, IDENT protocol management and
clock synchronization.")))
+
+(define-public s6-rc
+ (package
+ (name "s6-rc")
+ (version "0.0.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://skarnet.org/software/s6-rc/s6-rc-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0bl94lbaphbpaaj4wbb86xqgp5bcgrf3m7p80mimw1qsjrvlxfay"))))
+ (build-system gnu-build-system)
+ (inputs `(("skalibs" ,skalibs)
+ ("execline" ,execline)
+ ("s6" ,s6)))
+ (arguments
+ '(#:configure-flags (list
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "skalibs")
+ "/lib/skalibs")
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "execline")
+ "/lib/execline")
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "s6")
+ "/lib/s6")
+ (string-append "--with-sysdeps="
+ (assoc-ref %build-inputs "skalibs")
+ "/lib/skalibs/sysdeps"))
+ #:tests? #f))
+ (home-page "http://skarnet.org/software/s6-rc")
+ (license isc)
+ (synopsis "Service manager for s6-based systems")
+ (description
+ "s6-rc is a service manager for s6-based systems, i.e. a suite of
+programs that can start and stop services, both long-running daemons and
+one-time initialization scripts, in the proper order according to a
+dependency tree. It ensures that long-running daemons are supervised by the
+s6 infrastructure, and that one-time scripts are also run in a controlled
+environment.")))
--
2.4.11
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/3] gnu: Add s6-portable-utils.
2016-07-30 14:05 [PATCH 0/3] Update skarnet packages Eric Le Bihan
2016-07-30 14:05 ` [PATCH 1/3] gnu: Add s6-rc Eric Le Bihan
@ 2016-07-30 14:05 ` Eric Le Bihan
2016-07-31 23:01 ` Ludovic Courtès
2016-07-30 14:58 ` [PATCH 0/3] Update skarnet packages Leo Famulari
2 siblings, 1 reply; 6+ messages in thread
From: Eric Le Bihan @ 2016-07-30 14:05 UTC (permalink / raw)
To: guix-devel
* gnu/packages/skarnet.scm (s6-portable-utils): New variable.
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
---
gnu/packages/skarnet.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/skarnet.scm b/gnu/packages/skarnet.scm
index 02094a0..c41f290 100644
--- a/gnu/packages/skarnet.scm
+++ b/gnu/packages/skarnet.scm
@@ -246,3 +246,36 @@ one-time initialization scripts, in the proper order according to a
dependency tree. It ensures that long-running daemons are supervised by the
s6 infrastructure, and that one-time scripts are also run in a controlled
environment.")))
+
+(define-public s6-portable-utils
+ (package
+ (name "s6-portable-utils")
+ (version "2.0.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://skarnet.org/software/s6-portable-utils/s6-portable-utils-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0jwxj0ma4zd1h6i3i98nsp0miidr54phap7dqwf6c8vafq9psfr3"))))
+ (build-system gnu-build-system)
+ (inputs `(("skalibs" ,skalibs)))
+ (arguments
+ '(#:configure-flags (list
+ (string-append "--with-lib="
+ (assoc-ref %build-inputs "skalibs")
+ "/lib/skalibs")
+ (string-append "--with-sysdeps="
+ (assoc-ref %build-inputs "skalibs")
+ "/lib/skalibs/sysdeps"))
+ #:tests? #f))
+ (home-page "http://skarnet.org/software/s6-portable-utils")
+ (license isc)
+ (synopsis "Set of tiny general Unix utilities")
+ (description
+ "s6-portable-utils is a set of tiny general Unix utilities, often
+performing well-known tasks such as cut and grep, but optimized for
+simplicity and small size. They were designed for embedded systems and other
+constrained environments, but they work everywhere.")))
--
2.4.11
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 0/3] Update skarnet packages
2016-07-30 14:05 [PATCH 0/3] Update skarnet packages Eric Le Bihan
2016-07-30 14:05 ` [PATCH 1/3] gnu: Add s6-rc Eric Le Bihan
2016-07-30 14:05 ` [PATCH 2/3] gnu: Add s6-portable-utils Eric Le Bihan
@ 2016-07-30 14:58 ` Leo Famulari
2 siblings, 0 replies; 6+ messages in thread
From: Leo Famulari @ 2016-07-30 14:58 UTC (permalink / raw)
To: Eric Le Bihan; +Cc: guix-devel
On Sat, Jul 30, 2016 at 04:05:27PM +0200, Eric Le Bihan wrote:
> Hi!
>
> This small series adds the last missing programs from the skarnet software
> stack.
>
> Eric Le Bihan (3):
> gnu: Add s6-rc.
> gnu: Add s6-portable-utils.
> gnu: Add s6-linux-utils.
I didn't receive the 3rd patch (Add s6-linux-utils). Can you send it
again?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] gnu: Add s6-rc.
2016-07-30 14:05 ` [PATCH 1/3] gnu: Add s6-rc Eric Le Bihan
@ 2016-07-31 22:58 ` Ludovic Courtès
0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2016-07-31 22:58 UTC (permalink / raw)
To: Eric Le Bihan; +Cc: guix-devel
Eric Le Bihan <eric.le.bihan.dev@free.fr> skribis:
> * gnu/packages/skarnet.scm (s6-rc): New variable.
Applied, thanks!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/3] gnu: Add s6-portable-utils.
2016-07-30 14:05 ` [PATCH 2/3] gnu: Add s6-portable-utils Eric Le Bihan
@ 2016-07-31 23:01 ` Ludovic Courtès
0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2016-07-31 23:01 UTC (permalink / raw)
To: Eric Le Bihan; +Cc: guix-devel
Eric Le Bihan <eric.le.bihan.dev@free.fr> skribis:
> * gnu/packages/skarnet.scm (s6-portable-utils): New variable.
[...]
> + (synopsis "Set of tiny general Unix utilities")
Removed “Set of”…
> + (description
> + "s6-portable-utils is a set of tiny general Unix utilities, often
> +performing well-known tasks such as cut and grep, but optimized for
… and added @command here.
Applied, thanks!
Ludo’.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-07-31 23:01 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-30 14:05 [PATCH 0/3] Update skarnet packages Eric Le Bihan
2016-07-30 14:05 ` [PATCH 1/3] gnu: Add s6-rc Eric Le Bihan
2016-07-31 22:58 ` Ludovic Courtès
2016-07-30 14:05 ` [PATCH 2/3] gnu: Add s6-portable-utils Eric Le Bihan
2016-07-31 23:01 ` Ludovic Courtès
2016-07-30 14:58 ` [PATCH 0/3] Update skarnet packages Leo Famulari
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
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).