From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 29 08:38:24 2018 Received: (at submit) by debbugs.gnu.org; 29 Jun 2018 12:38:24 +0000 Received: from localhost ([127.0.0.1]:39342 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fYsfO-0000Wn-3I for submit@debbugs.gnu.org; Fri, 29 Jun 2018 08:38:24 -0400 Received: from eggs.gnu.org ([208.118.235.92]:35384) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fYsfM-0000Wb-If for submit@debbugs.gnu.org; Fri, 29 Jun 2018 08:38:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fYsfF-0004Ms-UD for submit@debbugs.gnu.org; Fri, 29 Jun 2018 08:38:15 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:47666) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fYsfF-0004M7-PR for submit@debbugs.gnu.org; Fri, 29 Jun 2018 08:38:13 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fYsfE-0004mf-AD for guix-patches@gnu.org; Fri, 29 Jun 2018 08:38:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fYsfB-00044g-0b for guix-patches@gnu.org; Fri, 29 Jun 2018 08:38:12 -0400 Received: from [174.138.12.255] (port=37112 helo=alaok.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fYsfA-0003x5-KI for guix-patches@gnu.org; Fri, 29 Jun 2018 08:38:08 -0400 Received: by mail.alaok.org (OpenSMTPD) with ESMTPSA id 89026106 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Fri, 29 Jun 2018 12:37:51 +0000 (UTC) User-agent: mu4e 1.0; emacs 26.1 From: Peter Mikkelsen To: guix-patches@gnu.org Subject: [PATCH] gnu: emacs-use-package: Update to commit da8c9e2. Date: Fri, 29 Jun 2018 14:38:06 +0200 Message-ID: <87k1qhsr81.fsf@alaok.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -6.0 (------) --=-=-= Content-Type: text/plain Hi, This patch updates 'emacs-use-package' to the latest git commit instead of using the tagged releases. I found that this is needed, because the tarball from github did not contain all the files needed to build the package correctly, which resulted in a lot of errors in emacs. Feedback welcome :) --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-emacs-use-package-Update-to-commit-da8c9e2.patch >From 069156a8f81436996fcd84ac03529e1871d8acfa Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Fri, 29 Jun 2018 14:26:56 +0200 Subject: [PATCH] gnu: emacs-use-package: Update to commit da8c9e2. This update is needed because the release tarball from github does not contain all the files needed for us to build the package. * gnu/packages/emacs.scm (emacs-use-package): Update to commit da8c9e2. [source]: change to git. [arguments]: Enable tests. --- gnu/packages/emacs.scm | 53 +++++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 349ae0d20..c1c3bf65a 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -5771,35 +5771,34 @@ abbreviation of the mode line displays (lighters) of minor modes.") (license license:gpl2+))) (define-public emacs-use-package - (package - (name "emacs-use-package") - (version "2.3") - (source - (origin - (method url-fetch) - (uri (string-append - "https://github.com/jwiegley/use-package/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "0x4h136jb3imyli6zsh7dyzjrra6pv0v6b0yk94jdng3rdfcmsf5")))) - (build-system emacs-build-system) - (propagated-inputs - `(("emacs-diminish" ,emacs-diminish))) - (arguments - ;; Tests fail in this release, but have been fixed in - ;; upstream commit 7956d40eed57d6c06bef36ebc174cf57d934e30d - `(#:tests? #f - #:test-command '("emacs" "--batch" - "-l" "use-package-tests.el" - "-f" "ert-run-tests-batch-and-exit"))) - (home-page "https://github.com/jwiegley/use-package") - (synopsis "Declaration for simplifying your .emacs") - (description "The use-package macro allows you to isolate package + (let ((commit "da8c9e2840343906e732f9699e43d35a1f06481d") + (revision "1")) + (package + (name "emacs-use-package") + (version (git-version "2.3" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jwiegley/use-package") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jz38pbq1p9h85i6qcsh3sfzkd103y6mw3rg5zd14dxigp8ir3xz")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-diminish" ,emacs-diminish))) + (arguments + `(#:tests? #t + #:test-command '("emacs" "--batch" + "-l" "use-package-tests.el" + "-f" "ert-run-tests-batch-and-exit"))) + (home-page "https://github.com/jwiegley/use-package") + (synopsis "Declaration for simplifying your .emacs") + (description "The use-package macro allows you to isolate package configuration in your @file{.emacs} file in a way that is both performance-oriented and tidy.") - (license license:gpl2+))) + (license license:gpl2+)))) (define-public emacs-strace-mode (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11") -- 2.17.1 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 03 09:32:46 2018 Received: (at 32005-done) by debbugs.gnu.org; 3 Jul 2018 13:32:46 +0000 Received: from localhost ([127.0.0.1]:44488 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1faLQE-0006zS-6V for submit@debbugs.gnu.org; Tue, 03 Jul 2018 09:32:46 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:53095) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1faLQD-0006zL-1M for 32005-done@debbugs.gnu.org; Tue, 03 Jul 2018 09:32:45 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id C8F3F21DBB; Tue, 3 Jul 2018 09:32:44 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute5.internal (MEProxy); Tue, 03 Jul 2018 09:32:44 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; bh=XbW8GPwSHjau0JWkeBfJ76kB2/w4QNOgbXELkOsAnjE=; b=ZA1UZlGE rGbWmDkr1h2sjTME4bO3Y+GphXCUnldCT/cfsax2zFuOr5KJVRsyNULW+NooSWW7 Vf4B1EKdLUQ+kQGnoLgmlNiKKd6lNUkyBW+eiqOTIKTM2XDqsl3annpPdfSLwRB0 Y3CoUv68PBVUzAQVahzKOMlYRmzwwtG/UAk2EByDJLb1nV0nLjcqp+zNp9pmNoCc L9TpgWi5hdgAn3SsSq+wmx+Iyv4pDcg/4DYYga7UZDzkQ0tXJjLYnUuFcIn1az8z 5ePRKM3SBuX2IItzLLoj/mseL1mfkXzDhppjdjYzDQEQmncfMx/S/UyS3K0DMsmD 7D0WcSXIMl1dqw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm3; bh=XbW8GPwSHjau0JWkeBfJ76kB2/w4Q NOgbXELkOsAnjE=; b=o0PQNbCQvp6f6t4YfpH3S9uOvLfmUJaZHijJG/Tg7mXYN FVOf+3xJu7oF2rEA7uwoWBRNqCUySMG/lAmW8Q/A/ujHKeOpCb4i+A8zxUhGTt8v gGWkytf2m1SEH0vXU3WvfvhjSIodQmch5d00LE8Z6OlWIR/N0xK7psLjRj3ep7cx R/lwdYUVxH1p+oOJHeggmf3BNRm4IjzGy/ANTmb9NOrF5W9HUgGxayGA0+ubYCTZ WU94kMSA9o3nkjez23jh+lvG6XILHeFm8f2KNsjEv2le/KeWfFf9P93aG9+7eker r7OJReyxrxA+R/n/TerkbNMrjaiyk6UwRSff8mNcQ== X-ME-Proxy: X-ME-Sender: Received: from localhost (95.92-221-151.customer.lyse.net [92.221.151.95]) by mail.messagingengine.com (Postfix) with ESMTPA id 0AE87E444F; Tue, 3 Jul 2018 09:32:43 -0400 (EDT) From: Marius Bakke To: Peter Mikkelsen , 32005-done@debbugs.gnu.org Subject: Re: [bug#32005] [PATCH] gnu: emacs-use-package: Update to commit da8c9e2. In-Reply-To: <87k1qhsr81.fsf@alaok.org> References: <87k1qhsr81.fsf@alaok.org> User-Agent: Notmuch/0.27 (https://notmuchmail.org) Emacs/26.1 (x86_64-pc-linux-gnu) Date: Tue, 03 Jul 2018 15:32:42 +0200 Message-ID: <87po048mx1.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32005-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --=-=-= Content-Type: text/plain Peter Mikkelsen writes: > Hi, > > This patch updates 'emacs-use-package' to the latest git commit > instead of using the tagged releases. I found that this is needed, > because the tarball from github did not contain all the files needed > to build the package correctly, which resulted in a lot of errors in > emacs. Applied, thanks! --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAls7evoACgkQoqBt8qM6 VPpfBAf+IfcczcP39Q1e2Ex+HzZVKF6ibvqzAfZBTW8pZpU7f8ZfGhcUVyPw/NRz Ucw7CKLnfi+aa+4I5Znz++I2p1jl+ftN9Ee7HYjYuDjaOrpEJa7fEhWCMsrOgTwt jIPs+L1pa8DCwGpEt3bF5dUhOakez6O28i0Eu/6C1NZqYbfMNP81C7iexv8lgj/9 hiAUoBumVwRwQyKdOwRL6/NPklrGNl2itqOLXj7RlWYy2oyVzQ7MQesXMNvCkY+E qBtFQA4GGlUKDS8PSbqSgeUZtxU8zh13qJVaUrOT9OKUduQaQg8ofnG5yPfq8WqX RC2z3sDgnBUNxTy5SvLLuxlv7KwioQ== =gHAG -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Jun 21 10:27:42 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 01 Aug 2018 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator