From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: 'Shadow' package home page and tarball no longer accessible Date: Mon, 07 Apr 2014 18:19:35 +0200 Message-ID: <87wqf1ru20.fsf@gnu.org> References: <87lhw4njyj.fsf@yeeloong.lan> <87ob0g6et9.fsf@gnu.org> <87k3b3uvrb.fsf@yeeloong.lan> <87wqf2z315.fsf@gnu.org> <87d2guz25k.fsf@gnu.org> <87ioqmt9lj.fsf@yeeloong.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37129) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WXCGs-0005wN-0l for guix-devel@gnu.org; Mon, 07 Apr 2014 12:19:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WXCGn-00027x-4W for guix-devel@gnu.org; Mon, 07 Apr 2014 12:19:41 -0400 Received: from hera.aquilenet.fr ([2a01:474::1]:50957) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WXCGm-00027q-U3 for guix-devel@gnu.org; Mon, 07 Apr 2014 12:19:37 -0400 In-Reply-To: <87ioqmt9lj.fsf@yeeloong.lan> (Mark H. Weaver's message of "Sun, 06 Apr 2014 17:46:16 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Mark H Weaver Cc: guix-devel@gnu.org Mark H Weaver skribis: > ludo@gnu.org (Ludovic Court=C3=A8s) 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))))) >>=20=20 >> (inputs (if (string-suffix? "-linux" >> (or (%current-target-system) > > This patch fixes the problem for me. Would you like to commit it? Done. Ludo=E2=80=99.