From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: 'Shadow' package home page and tarball no longer accessible Date: Sun, 06 Apr 2014 17:46:16 -0400 Message-ID: <87ioqmt9lj.fsf@yeeloong.lan> References: <87lhw4njyj.fsf@yeeloong.lan> <87ob0g6et9.fsf@gnu.org> <87k3b3uvrb.fsf@yeeloong.lan> <87wqf2z315.fsf@gnu.org> <87d2guz25k.fsf@gnu.org> 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]:41183) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WWuub-00072T-9T for guix-devel@gnu.org; Sun, 06 Apr 2014 17:47:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WWuuV-00083k-29 for guix-devel@gnu.org; Sun, 06 Apr 2014 17:47:33 -0400 In-Reply-To: <87d2guz25k.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Sun, 06 Apr 2014 21:30:31 +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: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: guix-devel@gnu.org 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 a= n 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? Thanks! Mark