From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [elpa] master 580a1b6: Respect .elpaignore when compiling and optimize compilation. Date: Fri, 23 Dec 2016 18:49:21 -0500 Message-ID: References: <20161223195027.29384.58430@vcs.savannah.gnu.org> <20161223195027.7C9E52201BC@vcs.savannah.gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1482536976 19727 195.159.176.226 (23 Dec 2016 23:49:36 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 23 Dec 2016 23:49:36 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) Cc: Jackson Ray Hamilton To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 24 00:49:30 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cKZab-0004OR-Fp for ged-emacs-devel@m.gmane.org; Sat, 24 Dec 2016 00:49:29 +0100 Original-Received: from localhost ([::1]:41321 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cKZag-0005oh-06 for ged-emacs-devel@m.gmane.org; Fri, 23 Dec 2016 18:49:34 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60043) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cKZaZ-0005oP-W3 for emacs-devel@gnu.org; Fri, 23 Dec 2016 18:49:28 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cKZaW-0007oR-Tx for emacs-devel@gnu.org; Fri, 23 Dec 2016 18:49:28 -0500 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:48316) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cKZaW-0007nd-Nu for emacs-devel@gnu.org; Fri, 23 Dec 2016 18:49:24 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0ARKQAu3EVY/+J3oWxdGgEBAQECAQEBAQgBAQEBgzgBAQEBAR+EW4VUnBAYAZZeGYYDBAICghFDEQECAQEBAQEBAWIohGkGViMQCzQSFBgNiSatFItEAQEIAgEkixmFFIUVBY98imqScwGIJoY6kE6BQTUheBMOI4NtgWMgiS0BAQE X-IPAS-Result: A0ARKQAu3EVY/+J3oWxdGgEBAQECAQEBAQgBAQEBgzgBAQEBAR+EW4VUnBAYAZZeGYYDBAICghFDEQECAQEBAQEBAWIohGkGViMQCzQSFBgNiSatFItEAQEIAgEkixmFFIUVBY98imqScwGIJoY6kE6BQTUheBMOI4NtgWMgiS0BAQE X-IronPort-AV: E=Sophos;i="5.33,749,1477972800"; d="scan'208";a="283682246" Original-Received: from 108-161-119-226.dsl.teksavvy.com (HELO fmsmemgm.homelinux.net) ([108.161.119.226]) by smtp.teksavvy.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 23 Dec 2016 18:49:21 -0500 Original-Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 76D8FAE2A4; Fri, 23 Dec 2016 18:49:21 -0500 (EST) In-Reply-To: <20161223195027.7C9E52201BC@vcs.savannah.gnu.org> (Jackson Ray Hamilton's message of "Fri, 23 Dec 2016 19:50:27 +0000 (UTC)") X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:210759 Archived-At: > + tar -ch $$pt/*.el --no-recursion \ > + --exclude-vcs -X "$${pt}/.elpaignore" \ > + | tar --list; \ I think we can skip the second tar with something like "tar -cvhf /dev/null 2>&1". But I have a question: are we sure that tar will always apply the -X "$${pt}/.elpaignore" patterns to the files explicitly mentioned on the command line? Stefan