From: Tobias Geerinckx-Rice <me@tobias.gr>
To: jmi2k@openmailbox.org
Cc: guix-devel@gnu.org
Subject: Re: [PATCH] gnu: Add beep.
Date: Thu, 5 Jan 2017 13:18:05 +0100 [thread overview]
Message-ID: <8f47b526-d95d-997d-3345-e4edfa0e2146@tobias.gr> (raw)
In-Reply-To: <d05ca2eeb89a993809f6c61458b047d2@openmailbox.org>
[-- Attachment #1.1: Type: text/plain, Size: 1363 bytes --]
José,
On 04/01/17 23:32, José Miguel Sánchez García wrote:
> I've applied your changes, ran guix lint and tested it. Here you have
> the fixed patch.
Thank you!
Pushed as abe2ec7 with small adjustments below.
I hope that's all right.
Kind regards,
T G-R
---
Fix indentation:
(base32
- "0bgch6jq5cahakk3kbr9549iysf2dik09afixxy5brbxk1xfzb2r"))))
+ "0bgch6jq5cahakk3kbr9549iysf2dik09afixxy5brbxk1xfzb2r"))))
Use lambda* instead of %outputs directly, don't abbreviate phase names,
(partially) restore use of let:
- (lambda _
- (substitute* "Makefile" (("/usr") (assoc-ref %outputs "out")))))
- (add-before 'install 'create-dest-dirs
- (lambda _
- (mkdir-p (string-append (assoc-ref %outputs "out") "/bin"))
- (mkdir-p (string-append (assoc-ref %outputs "out") "/man/man1")))))))
+ (lambda* (#:key outputs #:allow-other-keys)
+ (substitute* "Makefile" (("/usr") (assoc-ref outputs "out")))))
+ (add-before 'install 'create-output-directories
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref %outputs "out")))
+ (mkdir-p (string-append out "/bin"))
+ (mkdir-p (string-append out "/man/man1"))))))))
Fix typo:
- (synopsis "Linux command-line utilitu to control the PC speaker")
+ (synopsis "Linux command-line utility to control the PC speaker")
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 476 bytes --]
prev parent reply other threads:[~2017-01-05 12:17 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-02 19:10 [PATCH] gnu: Add beep José Miguel Sánchez García
2017-01-02 19:33 ` José Miguel Sánchez García
2017-01-04 7:10 ` Tobias Geerinckx-Rice
2017-01-04 22:32 ` José Miguel Sánchez García
2017-01-05 12:18 ` Tobias Geerinckx-Rice [this message]
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=8f47b526-d95d-997d-3345-e4edfa0e2146@tobias.gr \
--to=me@tobias.gr \
--cc=guix-devel@gnu.org \
--cc=jmi2k@openmailbox.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).