From debbugs-submit-bounces@debbugs.gnu.org Wed May 27 13:35:08 2020 Received: (at submit) by debbugs.gnu.org; 27 May 2020 17:35:08 +0000 Received: from localhost ([127.0.0.1]:49922 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jdzxL-00008E-TA for submit@debbugs.gnu.org; Wed, 27 May 2020 13:35:08 -0400 Received: from lists.gnu.org ([209.51.188.17]:35804) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jdzxK-000083-8c for submit@debbugs.gnu.org; Wed, 27 May 2020 13:35:06 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39332) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jdzxK-0007kK-2Z for guix-patches@gnu.org; Wed, 27 May 2020 13:35:06 -0400 Received: from wp224.webpack.hosteurope.de ([2a01:488:42:1000:50ed:84e7::]:34000) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jdzxI-0007zq-Nd for guix-patches@gnu.org; Wed, 27 May 2020 13:35:05 -0400 Received: from www.rohleder.de ([37.61.204.227]); authenticated by wp224.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1jdzxF-0007wP-QI; Wed, 27 May 2020 19:35:01 +0200 Received: from [192.168.1.3] (helo=micha) by www.rohleder.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1jdzxF-0002Hz-22 for guix-patches@gnu.org; Wed, 27 May 2020 19:35:01 +0200 From: Michael Rohleder To: guix-patches@gnu.org Subject: [PATCH] gnu: Add emacs-erc-status-sidebar. X-PGP-Fingerprint: 755E 2DE5 D0D5 85C5 2E78 2830 7C7A FFBE FEF2 CB25 X-PGP-Key: https://www.rohleder.de/~mike/pgpkey.asc Date: Wed, 27 May 2020 19:34:53 +0200 Message-ID: <87367le0xu.fsf@rohleder.de> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-bounce-key: webpack.hosteurope.de;mike@rohleder.de;1590600904;e7673088; X-HE-SMSGID: 1jdzxF-0007wP-QI Received-SPF: permerror client-ip=2a01:488:42:1000:50ed:84e7::; envelope-from=mike@rohleder.de; helo=wp224.webpack.hosteurope.de X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/27 13:35:02 X-ACL-Warn: Detected OS = ??? X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, T_SPF_PERMERROR=0.01, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -2.3 (--) 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: -3.3 (---) --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-emacs-erc-status-sidebar.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] gnu: Add emacs-erc-status-sidebar. From=202c47a49177ab0a8ceee52910007a998b73f3bf81 Mon Sep 17 00:00:00 2001 From: Michael Rohleder Date: Wed, 27 May 2020 19:31:46 +0200 Subject: [PATCH] gnu: Add emacs-erc-status-sidebar. * gnu/packages/emacs-xyz.scm (emacs-erc-status-sidebar): New variable. =2D-- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 45a10f4689..338bd270e0 100644 =2D-- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3216,6 +3216,28 @@ appropriate console.") IRC bouncer with ERC.") (license license:expat))) =20 +(define-public emacs-erc-status-sidebar + (package + (name "emacs-erc-status-sidebar") + (version "20171223.2124") + (source + (origin + (method url-fetch) + (uri (string-append "https://melpa.org/packages/erc-status-sidebar-" + version ".el")) + (sha256 + (base32 "1jjz4zs4fx45i9nvy2h7nfzkv0qrpp1pfhr8fx3hb6wxvi6zjis0")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-seq" ,emacs-seq))) + (home-page "https://github.com/drewbarbs/erc-status-sidebar") + (synopsis "Hexchat-like activity overview for ERC channels") + (description + "This package is provides a hexchat-like status bar for joined +channels in ERC. It relies on the @code{erc-track} module, and displays +all the same information erc-track does in the mode line, but in an +alternative format.") + (license license:gpl3))) + (define-public emacs-shut-up (package (name "emacs-shut-up") =2D-=20 2.26.2 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable =2D-=20 A vegan, an IntelliJ user, a Mac user, and a Linux user walked into a bar. How do I know? AFTER 2 MINUTES, THE WHOLE DARN BAR KNEW! --=-=-=-- --==-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEdV4t5dDVhcUueCgwfHr/vv7yyyUFAl7OpL0ACgkQfHr/vv7y yyUiDQf/SAXfhhbRxRdMLQpZeucUm5am8icAysqDa4lHFilEmaX4kfYkV9h0es5v bji9tT6R1iUcutb+7H9Rzs30pAi0LDRItc6yzFwte/OP9Pr7p/eTSTuzzysCbWjC pWnLSMOQSf89fWlOvb48FJ02eLGZAzRU3VXYfHweGndegYGxMsg5/7trpkcbRkQg Nhipy/qsxNTDOFLGbeAy4UOLtaJg/5ZFepgz1e4El38mD3vpSASgCaZAVwe0rqyd UOFNvddqKUcwUuOqhujWvvDeldH18aM66tQvImq/K+QDnvlYLut31dY7Ylp3oOmW Pf4GctumxU13Kuny+N4EYaKEb4kYfg== =PJLG -----END PGP SIGNATURE----- --==-=-=--