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 DA1E9138334 for ; Sat, 24 Nov 2018 10:18:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3409E09C6; Sat, 24 Nov 2018 10:18:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 870D8E09C6 for ; Sat, 24 Nov 2018 10:18:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D2819335D05 for ; Sat, 24 Nov 2018 10:18:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82068442 for ; Sat, 24 Nov 2018 10:18:30 +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: <1543054688.03fa9fa397b19a4ff70e92ee533a130168c3d02f.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/popup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/popup/Manifest app-emacs/popup/metadata.xml app-emacs/popup/popup-0.5.3.ebuild X-VCS-Directories: app-emacs/popup/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 03fa9fa397b19a4ff70e92ee533a130168c3d02f X-VCS-Branch: master Date: Sat, 24 Nov 2018 10:18:30 +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: dc1c8c3c-8316-43e1-bb73-32a73f3ac084 X-Archives-Hash: dad895aee4aa8274ba132404e0502217 commit: 03fa9fa397b19a4ff70e92ee533a130168c3d02f Author: Ulrich Müller gentoo org> AuthorDate: Sat Nov 24 09:51:53 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Nov 24 10:18:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03fa9fa3 app-emacs/popup: Initial import. Ebuild based on a contribution by famsim.de>, with modifications by me. Bug: https://bugs.gentoo.org/670926 Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Ulrich Müller gentoo.org> app-emacs/popup/Manifest | 1 + app-emacs/popup/metadata.xml | 17 +++++++++++++++++ app-emacs/popup/popup-0.5.3.ebuild | 18 ++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/app-emacs/popup/Manifest b/app-emacs/popup/Manifest new file mode 100644 index 00000000000..2b55d379564 --- /dev/null +++ b/app-emacs/popup/Manifest @@ -0,0 +1 @@ +DIST popup-el-0.5.3.tar.gz 25785 BLAKE2B e0104a382730203a86c9ce4e1957c652c0e4b0ee84dfa465a94eddf942a249ccf83493bc04f8503e483f14cfeff3649f5264475531c10fe1a9cb1a08376b4499 SHA512 ad67e5d1e4d969151359a54759ae74b2f1107b25b56e7bcedf15995ff6bc0188916fcf5af64ee6ee2b5046e831ebb49c521724e224d7ddb473d3229f3094f5d5 diff --git a/app-emacs/popup/metadata.xml b/app-emacs/popup/metadata.xml new file mode 100644 index 00000000000..83948483da3 --- /dev/null +++ b/app-emacs/popup/metadata.xml @@ -0,0 +1,17 @@ + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + popup.el is a visual popup user interface library for Emacs. + This provides a basic API and common UI widgets such as popup + tooltips and popup menus. + + + + auto-complete/popup-el + + diff --git a/app-emacs/popup/popup-0.5.3.ebuild b/app-emacs/popup/popup-0.5.3.ebuild new file mode 100644 index 00000000000..5d7bcb2cb6f --- /dev/null +++ b/app-emacs/popup/popup-0.5.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp + +MY_P="${PN}-el-${PV}" +DESCRIPTION="Visual popup interface library for Emacs" +HOMEPAGE="https://github.com/auto-complete/popup-el" +SRC_URI="https://github.com/auto-complete/popup-el/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/${MY_P}" +DOCS="README.md"