diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-06-26 14:50:54 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-06-26 18:24:17 +0200 |
commit | f392fef573d71f81d24cbd08f7d07ec0f59ae8d5 (patch) | |
tree | 61b73846e7e9f4355ac44927b83826e885ebac0f /app-emacs | |
parent | net-misc/modemmanager: Require USE=qmi for USE=qrtr (diff) | |
download | gentoo-f392fef573d71f81d24cbd08f7d07ec0f59ae8d5.tar.gz gentoo-f392fef573d71f81d24cbd08f7d07ec0f59ae8d5.tar.bz2 gentoo-f392fef573d71f81d24cbd08f7d07ec0f59ae8d5.zip |
app-emacs/tablist: new package; add version 1.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/tablist/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/tablist/files/50tablist-gentoo.el | 1 | ||||
-rw-r--r-- | app-emacs/tablist/metadata.xml | 19 | ||||
-rw-r--r-- | app-emacs/tablist/tablist-1.0.ebuild | 19 |
4 files changed, 40 insertions, 0 deletions
diff --git a/app-emacs/tablist/Manifest b/app-emacs/tablist/Manifest new file mode 100644 index 000000000000..5711bc22d9fd --- /dev/null +++ b/app-emacs/tablist/Manifest @@ -0,0 +1 @@ +DIST tablist-1.0.tar.gz 31848 BLAKE2B 11bc943aaf25fb1fe6ecb43a944d70d9b5ab4c423f9df96c881a840570780707a702240808c425e8e91321ad620c1773c80c03e2f6881ccddff84c0d818aa7a4 SHA512 14d32228e9663d218b49563ec07a5f8d094b389e06e532c0710af54d7386fcd19435fae2920163e0c774b7b67bf77ef5fc0a246dfbdb11785dca976ff47eeff2 diff --git a/app-emacs/tablist/files/50tablist-gentoo.el b/app-emacs/tablist/files/50tablist-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/tablist/files/50tablist-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/tablist/metadata.xml b/app-emacs/tablist/metadata.xml new file mode 100644 index 000000000000..55cb7b1f0219 --- /dev/null +++ b/app-emacs/tablist/metadata.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> + <maintainer type="project"> + <email>gnu-emacs@gentoo.org</email> + <name>Gentoo GNU Emacs project</name> + </maintainer> + <longdescription> + This package adds marks and filters to tabulated-list-mode. It also puts a + dired face on tabulated list buffers. It can be used by deriving from + tablist-mode, or with more limited features by enabling tablist-minor-mode + inside a tabulated-list-mode buffer. + </longdescription> + <upstream> + <bugs-to>https://github.com/politza/tablist/issues/</bugs-to> + <remote-id type="github">politza/tablist</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-emacs/tablist/tablist-1.0.ebuild b/app-emacs/tablist/tablist-1.0.ebuild new file mode 100644 index 000000000000..ab4bc1aa5088 --- /dev/null +++ b/app-emacs/tablist/tablist-1.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=24.3 + +inherit elisp + +DESCRIPTION="Extended tabulated-list mode fro Emacs" +HOMEPAGE="https://github.com/politza/tablist/" +SRC_URI="https://github.com/politza/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +KEYWORDS="~amd64 ~x86" +SLOT="0" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" |