From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36257) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1czLqF-0008Kl-PA for guix-patches@gnu.org; Sat, 15 Apr 2017 07:26:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1czLq7-0004sR-1f for guix-patches@gnu.org; Sat, 15 Apr 2017 07:26:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49715) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1czLq6-0004s8-Ua for guix-patches@gnu.org; Sat, 15 Apr 2017 07:26:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1czLq6-00023z-Mc for guix-patches@gnu.org; Sat, 15 Apr 2017 07:26:02 -0400 Subject: bug#26515: [PATCH] gnu: Add emacs-calfw. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36081) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1czLp5-00080X-PX for guix-patches@gnu.org; Sat, 15 Apr 2017 07:25:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1czLp2-0004Lg-Lr for guix-patches@gnu.org; Sat, 15 Apr 2017 07:24:59 -0400 Received: from nm30-vm5.bullet.mail.ir2.yahoo.com ([212.82.97.83]:43907) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1czLp2-0004LA-Ap for guix-patches@gnu.org; Sat, 15 Apr 2017 07:24:56 -0400 From: Vasile Dumitrascu Date: Sat, 15 Apr 2017 13:24:52 +0200 Message-Id: <20170415112452.912-1-va511e@yahoo.com> 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: 26515@debbugs.gnu.org Cc: Vasile Dumitrascu * gnu/packages/emacs.scm (emacs-calfw): New variable. --- gnu/packages/emacs.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 976ea31e0..aa7d21dbc 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1207,6 +1207,26 @@ writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs or XEmacs.") (license license:gpl3+))) +(define-public emacs-calfw + (package + (name "emacs-calfw") + (version "1.5") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/kiwanami/emacs-calfw/archive/v" + version ".tar.gz")) + (sha256 + (base32 + "17ssg8gx66yp63nhygjq2r6kgl4h45cacmrxsxs9f0lrfcx37k0l")))) + (build-system emacs-build-system) + (home-page "https://elpa.gnu.org/packages/aggressive-indent.html") + (synopsis "Calendar framework for Emacs") + (description + "This program displays a calendar view in the Emacs buffer.") + (license license:gpl3+))) + (define-public emacs-mmm-mode (package (name "emacs-mmm-mode") -- 2.11.0