[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 'Shadow' package home page and tarball no longer accessible
From: |
Ludovic Courtès |
Subject: |
Re: 'Shadow' package home page and tarball no longer accessible |
Date: |
Mon, 07 Apr 2014 18:19:35 +0200 |
User-agent: |
Gnus/5.130007 (Ma Gnus v0.7) Emacs/24.3 (gnu/linux) |
Mark H Weaver <address@hidden> skribis:
> address@hidden (Ludovic Courtès) writes:
>
>> Sorry the working patch is:
>>
>> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
>> index 51b40c8..54e0e37 100644
>> --- a/gnu/packages/admin.scm
>> +++ b/gnu/packages/admin.scm
>> @@ -201,7 +201,13 @@ client and server, a telnet client and server, and an
>> rsh client and server.")
>> (delete-file (string-append bin "/groups"))
>> (for-each delete-file (find-files man "^groups\\."))
>> #t))
>> - %standard-phases))))
>> + (alist-cons-after
>> + 'unpack 'reset-timestamps
>> + (lambda _
>> + (for-each (lambda (file)
>> + (utime file 0 0 0))
>> + (find-files "." "")))
>> + %standard-phases)))))
>>
>> (inputs (if (string-suffix? "-linux"
>> (or (%current-target-system)
>
> This patch fixes the problem for me. Would you like to commit it?
Done.
Ludo’.