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: Sun, 06 Apr 2014 21:30:31 +0200 Message-ID: <87d2guz25k.fsf@gnu.org> References: <87lhw4njyj.fsf@yeeloong.lan> <87ob0g6et9.fsf@gnu.org> <87k3b3uvrb.fsf@yeeloong.lan> <87wqf2z315.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WWsmA-0006GX-Tn for guix-devel@gnu.org; Sun, 06 Apr 2014 15:30:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WWsm1-0008Kl-Ro for guix-devel@gnu.org; Sun, 06 Apr 2014 15:30:42 -0400 Received: from hera.aquilenet.fr ([2a01:474::1]:44947) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WWsm1-0008Kb-Ks for guix-devel@gnu.org; Sun, 06 Apr 2014 15:30:33 -0400 In-Reply-To: <87wqf2z315.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Sun, 06 Apr 2014 21:11:34 +0200") 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 --=-=-= Content-Type: text/plain Sorry the working patch is: --=-=-= Content-Type: text/x-patch Content-Disposition: inline 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) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable That=E2=80=99s what happens when doing several things at the same time. ;-) Ludo=E2=80=99. --=-=-=--