From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56974) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gLaSE-0006KO-Ma for guix-patches@gnu.org; Sat, 10 Nov 2018 16:06:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gLaSB-0003XW-HW for guix-patches@gnu.org; Sat, 10 Nov 2018 16:06:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:40788) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gLaSA-0003Wk-Hu for guix-patches@gnu.org; Sat, 10 Nov 2018 16:06:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gLaSA-0003ZT-6K for guix-patches@gnu.org; Sat, 10 Nov 2018 16:06:02 -0500 Subject: [bug#33338] [PATCH] gnu: Add emacs-webpaste Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56630) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gLaRH-0005a0-T4 for guix-patches@gnu.org; Sat, 10 Nov 2018 16:05:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gLaRE-0002ZE-Lu for guix-patches@gnu.org; Sat, 10 Nov 2018 16:05:07 -0500 Received: from mout02.posteo.de ([185.67.36.66]:59787) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gLaRD-0002WB-67 for guix-patches@gnu.org; Sat, 10 Nov 2018 16:05:04 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 5F8F82400E6 for ; Sat, 10 Nov 2018 22:04:59 +0100 (CET) From: Brett Gilio Date: Sat, 10 Nov 2018 15:04:51 -0600 Message-Id: <20181110210451.16202-1-brettg@posteo.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 33338@debbugs.gnu.org --- gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index c6008e6a9..72112cfc0 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -40,6 +40,7 @@ ;;; Copyright =C2=A9 2018 Pierre-Antoine Rouby ;;; Copyright =C2=A9 2018 Alex Branham ;;; Copyright =C2=A9 2018 Thorsten Wilms +;;; Copyright =C2=A9 2018 Brett Gilio ;;; ;;; This file is part of GNU Guix. ;;; @@ -9837,6 +9838,31 @@ CSS, JavaScript, JSON.") throw a shell history.") (license license:gpl3+)))) =20 +(define-public emacs-webpaste + (package + (name "emacs-webpaste") + (version "20180815.1855") + (source + (origin + (method url-fetch) + (uri (string-append + "https://melpa.org/packages/webpaste-" + version + ".el")) + (sha256 + (base32 + "0afbyrqs0hk9b5a7g75lar31v8bmmbgvcl64z0i52bi78vz7fdv8")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-request" ,emacs-request))) + (home-page "https://github.com/etu/webpaste.el") + (synopsis "Paste to pastebin-like services") + (description "This mode allows to paste whole buffers or parts of bu= ffers to +pastebin-like services. It supports more than one service and will +failover if one service fails. More services can easily be added +over time and prefered services can easily be configured.") + (license license:gpl3+))) + (define-public emacs-discover-my-major (package (name "emacs-discover-my-major") --=20 2.19.1