From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36675) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ec63J-0005YA-5D for guix-patches@gnu.org; Thu, 18 Jan 2018 04:00:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ec63G-0007Uo-KP for guix-patches@gnu.org; Thu, 18 Jan 2018 04:00:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:53017) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ec63G-0007Ud-Ea for guix-patches@gnu.org; Thu, 18 Jan 2018 04:00:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ec63G-0007qV-6l for guix-patches@gnu.org; Thu, 18 Jan 2018 04:00:02 -0500 Subject: [bug#30153] [PATCH] gnu: emacs-org: Update to 20180115. References: <20180118083659.12526-1-va511e@yahoo.com> In-Reply-To: <20180118083659.12526-1-va511e@yahoo.com> Resent-Message-ID: From: Vasile Dumitrascu Message-ID: <791f9351-9b0f-186e-db27-a0dc95872628@yahoo.com> Date: Thu, 18 Jan 2018 08:55:00 +0000 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------0EF01B486FBF5D6F3379421B" Content-Language: en-US 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: 30153@debbugs.gnu.org This is a multi-part message in MIME format. --------------0EF01B486FBF5D6F3379421B Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hi Guix First, please ignore the initial patch, as the commit was done on a wrong file version. Second, please find attached the correct patch that updates emacs-org and changes the source repository to the original orgmode.org as elpa does not track and have all the updates published officially. I think tracking directly the orgmode repo should be better than tracking a elpa. Currently for example, in the original repo there are releases that are not present in elpa. Thank you, Vasile --------------0EF01B486FBF5D6F3379421B Content-Type: text/x-patch; name="0001-gnu-emacs-org-Update-to-20180115.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-gnu-emacs-org-Update-to-20180115.patch" >From 050438e4d67400a4fd2b591fafa489cbf1608e39 Mon Sep 17 00:00:00 2001 From: Vasile Dumitrascu Date: Thu, 18 Jan 2018 09:49:11 +0100 Subject: [PATCH] gnu: emacs-org: Update to 20180115. * gnu/packages/emacs.scm (emacs-org): Update to 20180115. [source]: Use orgmode.org instead of elpa. --- gnu/packages/emacs.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1cf14993c..c87958e96 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4206,14 +4206,14 @@ passive voice.") (name "emacs-org") ;; emacs-org-contrib inherits from this package. Please update its sha256 ;; checksum as well. - (version "20171205") + (version "20180115") (source (origin (method url-fetch) - (uri (string-append "http://elpa.gnu.org/packages/org-" + (uri (string-append "http://orgmode.org/elpa/org-" version ".tar")) (sha256 (base32 - "0a1rm94ci47jf5579sxscily680ysmy3hnxjcs073n45nk76za04")))) + "1zc75kxbx9bk1xag46s027a290fnva1id8vv92lz9i5nkqnrm430")))) (build-system emacs-build-system) (home-page "http://orgmode.org/") (synopsis "Outline-based notes management and organizer") -- 2.15.1 --------------0EF01B486FBF5D6F3379421B--