From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48793) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvOCY-0000au-HI for guix-patches@gnu.org; Fri, 22 Sep 2017 09:41:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvOCU-00072j-Ew for guix-patches@gnu.org; Fri, 22 Sep 2017 09:41:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43716) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dvOCU-00072f-Bd for guix-patches@gnu.org; Fri, 22 Sep 2017 09:41:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dvOCU-0000Bs-5e for guix-patches@gnu.org; Fri, 22 Sep 2017 09:41:02 -0400 Subject: [bug#28283] Status: [PATCH 1/1] gnu: services: version-control: Add cgit. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87h8wq2hxw.fsf@gmail.com> <87a82i2hur.fsf@gmail.com> <873787rh4a.fsf@gnu.org> <87d16mv0o3.fsf@gnu.org> <87efr19fms.fsf@gmail.com> Date: Fri, 22 Sep 2017 15:40:34 +0200 In-Reply-To: <87efr19fms.fsf@gmail.com> (Oleg Pykhalov's message of "Thu, 21 Sep 2017 01:20:11 +0300") Message-ID: <87ingasvfx.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Oleg Pykhalov Cc: 28283@debbugs.gnu.org Hi Oleg, Oleg Pykhalov skribis: > ludo@gnu.org (Ludovic Court=C3=A8s) writes: > >> Hello Oleg, >> >> This patch fell through the cracks. :-) >> >> Could you look into the comments I made below and send updated patches? >> We=E2=80=99re almost there! > > Yes, I looked them already few days ago. Your last comment was about > nginx changes. I'm working on it. But I have issue with stucture when > I try to test. > > natsu@magnolia ~/src/guix$ guix environment guix -- make check-system TES= TS=3Dnginx > ;;; note: source file /home/natsu/src/guix-wigust/wigust/packages/emacs.s= cm > ;;; newer than compiled /home/natsu/.cache/guile/ccache/2.2-LE-8-3.= A/home/natsu/src/guix-wigust/wigust/packages/emacs.scm.go > substitute: updating list of substitutes from 'https://berlin.guixsd.org'= ... 100.0% > Compiling Scheme modules... > warning: failed to load '(gnu tests web)': > ERROR: In procedure allocate-struct: Wrong type argument in position 2: 9 > Running 0 system tests... > TOTAL: 0 This (admittedly obscure) error is the symptom of an ABI breakage: specifically, commit b714395a39fffc60f75408504a23dfe27ad13fc2 introduced a couple of new fields to the record type, hence this error. The solution in this case is to =E2=80=9Crm -f gnu/*.go gnu/s*/*g.o && make= =E2=80=9D. HTH! Ludo=E2=80=99.