unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Alex Kost <alezost@gmail.com>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: guix-devel@gnu.org
Subject: Re: '-light' vs. '-minimal' packages
Date: Fri, 04 Sep 2015 15:59:47 +0300	[thread overview]
Message-ID: <87r3meuypo.fsf@gmail.com> (raw)
In-Reply-To: <87k2s7yzqa.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Thu, 03 Sep 2015 23:11:57 +0200")

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

Ludovic Courtès (2015-09-04 00:11 +0300) wrote:

> Alex Kost <alezost@gmail.com> skribis:
>
>> From e040b70e23f04fca1c91123751ce8b6e28719bb8 Mon Sep 17 00:00:00 2001
>> From: Alex Kost <alezost@gmail.com>
>> Date: Thu, 3 Sep 2015 11:12:28 +0300
>> Subject: [PATCH] gnu: bash-light: Rename to bash-minimal.
>>
>> * gnu/packages/bash.scm (bash-light): Rename to ...
>>   (bash-minimal): ...this.
>>   (static-bash): Use it.
>> * gnu/packages/make-bootstrap.scm (%bash-static): Use it.
>
> This should go to ‘core-updates’, where there’s an additional reference
> to update in commencement.scm.  OK with this change.

I made this patch specifically for ‘core-updates’ and I don't see any
reference to ‘bash-light’ in (gnu packages commencement) there.  AFAICS
‘bash-light’ is used in ‘static-bash-for-glibc’ only in master.  Or do I
miss anything?

I have also noticed that there is another ‘…-light’ package in
‘core-updates’ — ‘coreutils-light’, so I'm attaching the patch to rename
this one as well.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-coreutils-light-Rename-to-coreutils-minimal.patch --]
[-- Type: text/x-patch, Size: 1716 bytes --]

From 91c7da081fc532892ce6e351a7a719d162d6196a Mon Sep 17 00:00:00 2001
From: Alex Kost <alezost@gmail.com>
Date: Fri, 4 Sep 2015 15:50:11 +0300
Subject: [PATCH] gnu: coreutils-light: Rename to coreutils-minimal.

* gnu/packages/base.scm (coreutils-light): Rename to ...
  (coreutils-minimal): ...this.
* gnu/packages/commencement.scm (%boot5-inputs): Use it.
---
 gnu/packages/base.scm         | 4 ++--
 gnu/packages/commencement.scm | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index f4efce2..76fd111 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -293,11 +293,11 @@ functionality beyond that which is outlined in the POSIX standard.")
    (license gpl3+)
    (home-page "http://www.gnu.org/software/coreutils/")))
 
-(define-public coreutils-light
+(define-public coreutils-minimal
   ;; Coreutils without its optional dependencies.
   (package
     (inherit coreutils)
-    (name "coreutils-light")
+    (name "coreutils-minimal")
     (outputs '("out"))
     (inputs '())))
 
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index caadc94..006aee5 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -734,7 +734,7 @@ exec \"~a\" \"$@\"\n"
 
       ;; Grep's test suite uses 'timeout' from Coreutils to execute command,
       ;; and yet these commands need to see the valid 'LOCPATH'.
-      ("coreutils" ,(new-libc-package coreutils-light))
+      ("coreutils" ,(new-libc-package coreutils-minimal))
 
       ;; We just wrap the remaining binaries (tar, gzip, xz, etc.)  so that
       ;; they ignore 'LOCPATH' (if they did not, they would be hit by an
-- 
2.4.3


  reply	other threads:[~2015-09-04 12:59 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-31 16:42 Installing a custom package on Guix binary setup Vicente Vera
2015-08-31 20:03 ` Thompson, David
2015-08-31 20:15 ` Ludovic Courtès
2015-09-01  2:28   ` Vicente Vera
2015-09-01  6:34     ` Ricardo Wurmus
2015-09-02 13:09       ` R dependencies Ludovic Courtès
2015-09-02 18:41         ` '-light' vs. '-minimal' packages Alex Kost
2015-09-02 19:26           ` Mathieu Lirzin
2015-09-02 20:18           ` Ludovic Courtès
2015-09-03  8:32             ` Alex Kost
2015-09-03 21:11               ` Ludovic Courtès
2015-09-04 12:59                 ` Alex Kost [this message]
2015-09-05 20:29                   ` Ludovic Courtès
2015-09-03  0:53         ` R dependencies Vicente Vera
2015-09-03  6:29           ` Ricardo Wurmus
2015-09-03 14:55             ` Vicente Vera
2015-09-11 14:39               ` Vicente Vera
2015-09-03 10:12         ` [PATCH] " Ricardo Wurmus
2015-09-03 21:44           ` Ludovic Courtès
2015-09-05 20:20           ` 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://guix.gnu.org/

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

  git send-email \
    --in-reply-to=87r3meuypo.fsf@gmail.com \
    --to=alezost@gmail.com \
    --cc=guix-devel@gnu.org \
    --cc=ludo@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.
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).