From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B30DD1396D9 for ; Sun, 19 Nov 2017 21:21:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D5E7E0F62; Sun, 19 Nov 2017 21:21:15 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E1B6AE0F62 for ; Sun, 19 Nov 2017 21:21:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD1FE34071C for ; Sun, 19 Nov 2017 21:21:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82051A09C for ; Sun, 19 Nov 2017 21:21:10 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1511126458.7dd6db87fd16984363439550371b5feca7870ad4.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/websocket/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/websocket/Manifest app-emacs/websocket/metadata.xml app-emacs/websocket/websocket-1.9.ebuild X-VCS-Directories: app-emacs/websocket/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 7dd6db87fd16984363439550371b5feca7870ad4 X-VCS-Branch: master Date: Sun, 19 Nov 2017 21:21:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bdf9763d-0173-434d-9307-8cc0cf70294e X-Archives-Hash: 81dccb5e4f9362ed444862107dc94df2 commit: 7dd6db87fd16984363439550371b5feca7870ad4 Author: Ulrich Müller gentoo org> AuthorDate: Sun Nov 19 20:58:28 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Nov 19 21:20:58 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dd6db87 app-emacs/websocket: Initial import. Package-Manager: Portage-2.3.14, Repoman-2.3.6 app-emacs/websocket/Manifest | 1 + app-emacs/websocket/metadata.xml | 8 ++++++++ app-emacs/websocket/websocket-1.9.ebuild | 31 +++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/app-emacs/websocket/Manifest b/app-emacs/websocket/Manifest new file mode 100644 index 00000000000..287b2c761ff --- /dev/null +++ b/app-emacs/websocket/Manifest @@ -0,0 +1 @@ +DIST websocket-1.9.tar.gz 27029 SHA256 e7afbb5785e423e108119c9e625c9bab08297415224b07718f75ec6295130533 SHA512 bcd98e7edcbe95cae2f196cea05fd6cfa9083ed1ab2392530ca00cb05b87d6fa95b5f5319981fd94244b74989850c171e4c31c8758a8b7fe95d49299103a4410 WHIRLPOOL b0534b8c098569cebdf9ff597a459df7815f0e0a919c64fbbf4d8c64aa9789f0bbd585ca8adb139bb35254f29798e01e13eb417764a8bc0b1fbd20fa7ff564f7 diff --git a/app-emacs/websocket/metadata.xml b/app-emacs/websocket/metadata.xml new file mode 100644 index 00000000000..c438baf3b32 --- /dev/null +++ b/app-emacs/websocket/metadata.xml @@ -0,0 +1,8 @@ + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + diff --git a/app-emacs/websocket/websocket-1.9.ebuild b/app-emacs/websocket/websocket-1.9.ebuild new file mode 100644 index 00000000000..00ac9a2319d --- /dev/null +++ b/app-emacs/websocket/websocket-1.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +NEED_EMACS=24 + +inherit elisp + +DESCRIPTION="A websocket implementation in elisp" +HOMEPAGE="https://github.com/ahyatt/emacs-websocket" +SRC_URI="https://github.com/ahyatt/emacs-${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/emacs-${P}" + +src_compile() { + elisp-compile websocket.el +} + +src_test() { + ${EMACS} ${EMACSFLAGS} -L . -l websocket-test \ + -f ert-run-tests-batch-and-exit +} + +src_install() { + elisp-install ${PN} websocket.{el,elc} + dodoc README.org websocket-functional-test.el testserver.py +}