From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxim Cournoyer Subject: bug#27222: emacs-build-system install phase doesn't honor directory hierarchy Date: Sat, 03 Jun 2017 16:02:28 -0700 Message-ID: <87h8zwptdn.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51796) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dHI4U-0001VZ-U4 for bug-guix@gnu.org; Sat, 03 Jun 2017 19:03:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dHI4U-0004cE-1S for bug-guix@gnu.org; Sat, 03 Jun 2017 19:03:02 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51641) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dHI4T-0004c8-U5 for bug-guix@gnu.org; Sat, 03 Jun 2017 19:03:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dHI4T-0002s8-M9 for bug-guix@gnu.org; Sat, 03 Jun 2017 19:03:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51759) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dHI40-0001VF-6O for bug-guix@gnu.org; Sat, 03 Jun 2017 19:02:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dHI3z-0004OD-4q for bug-guix@gnu.org; Sat, 03 Jun 2017 19:02:32 -0400 Received: from mail-pf0-x22b.google.com ([2607:f8b0:400e:c00::22b]:34154) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dHI3y-0004O0-TM for bug-guix@gnu.org; Sat, 03 Jun 2017 19:02:31 -0400 Received: by mail-pf0-x22b.google.com with SMTP id 9so66714275pfj.1 for ; Sat, 03 Jun 2017 16:02:30 -0700 (PDT) Received: from apteryx ([2601:647:4a01:bacd:c2f8:daff:fe5d:2f2f]) by smtp.gmail.com with ESMTPSA id a69sm14859272pfg.7.2017.06.03.16.02.29 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 03 Jun 2017 16:02:29 -0700 (PDT) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 27222@debbugs.gnu.org It seems the recent changes made to the emacs-build-system broke ert-runner; it always output the following: Invalid reporter: dot A quick investigation revealed that ert-runner.el is looking for reporters under the reporters/ sudbdirectory. Here's the arborescence in the original source: --8<---------------cut here---------------start------------->8--- find . -name '*.el' ./reporters/ert-runner-reporter-ert.el ./reporters/ert-runner-reporter-dot.el ./features/step-definitions/ert-runner-steps.el ./features/support/env.el ./ert-runner.el ./ert-compat.el --8<---------------cut here---------------end--------------->8--- And here's what got installed in the store: --8<---------------cut here---------------start------------->8--- find . -name '*.el' ./ert-runner-autoloads.el ./ert-runner.el ./ert-compat.el --8<---------------cut here---------------end--------------->8--- I'm guessing the current inclusion regexp: (include '("^[^/]*\\.el$" "^[^/]*\\.info$" "^doc/.*\\.info$")) must be extended/adapted. What should "^[^/]*\\.el$" become? I've tried ".*\\.el" without success. Ideas? Maxim