From 14a17c9f7d8fc7dafeb1a733632323928e66a656 Mon Sep 17 00:00:00 2001 From: Matthew Smith Date: Mon, 14 Feb 2022 17:10:38 +0000 Subject: app-emacs/queue: initial import at 0.2 Signed-off-by: Matthew Smith --- app-emacs/queue/Manifest | 1 + app-emacs/queue/files/50queue-gentoo.el | 1 + app-emacs/queue/metadata.xml | 16 ++++++++++++++++ app-emacs/queue/queue-0.2.ebuild | 17 +++++++++++++++++ 4 files changed, 35 insertions(+) create mode 100644 app-emacs/queue/Manifest create mode 100644 app-emacs/queue/files/50queue-gentoo.el create mode 100644 app-emacs/queue/metadata.xml create mode 100644 app-emacs/queue/queue-0.2.ebuild (limited to 'app-emacs') diff --git a/app-emacs/queue/Manifest b/app-emacs/queue/Manifest new file mode 100644 index 000000000000..5713634b317b --- /dev/null +++ b/app-emacs/queue/Manifest @@ -0,0 +1 @@ +DIST queue-0.2.el.xz 2168 BLAKE2B 4c6c89ffa66d1bc5da11b78b6965077922384090327360c5b787508d9248051a6e3371b1e6ae5dd0fc8337d4623cbcb07d44d0f6147b29f14da8a3900868bd94 SHA512 62e43482db9828fe6f6d58c95389cd93642a6019211b190dd8f862efa6011708ad8e9a6c025ddb2e663effe0a8aec2f72f42f1afcaaf4c7d64fe698c274eef39 diff --git a/app-emacs/queue/files/50queue-gentoo.el b/app-emacs/queue/files/50queue-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/queue/files/50queue-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/queue/metadata.xml b/app-emacs/queue/metadata.xml new file mode 100644 index 000000000000..3ac8e09b5ce7 --- /dev/null +++ b/app-emacs/queue/metadata.xml @@ -0,0 +1,16 @@ + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + Provides queues can be used both as a first-in last-out (FILO) and + as a first-in first-out (FIFO) stack, i.e. elements can be added to + the front or back of the queue, and can be removed from the + front. (This type of data structure is sometimes called an + "output-restricted deque".) + + + diff --git a/app-emacs/queue/queue-0.2.ebuild b/app-emacs/queue/queue-0.2.ebuild new file mode 100644 index 000000000000..08989ce08bb2 --- /dev/null +++ b/app-emacs/queue/queue-0.2.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +NEED_EMACS=24 + +inherit elisp + +DESCRIPTION="Queue data structure" +HOMEPAGE="https://elpa.gnu.org/packages/queue.html" +SRC_URI="https://dev.gentoo.org/~matthew/distfiles/${P}.el.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +SITEFILE="50${PN}-gentoo.el" -- cgit v1.2.3-65-gdbad