Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/tablist/, app-emacs/tablist/files/
Date: Sun, 26 Jun 2022 16:24:29
Message-Id: 1656260657.f392fef573d71f81d24cbd08f7d07ec0f59ae8d5.xgqt@gentoo
1 commit: f392fef573d71f81d24cbd08f7d07ec0f59ae8d5
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 12:50:54 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 26 16:24:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f392fef5
7
8 app-emacs/tablist: new package; add version 1.0
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emacs/tablist/Manifest | 1 +
13 app-emacs/tablist/files/50tablist-gentoo.el | 1 +
14 app-emacs/tablist/metadata.xml | 19 +++++++++++++++++++
15 app-emacs/tablist/tablist-1.0.ebuild | 19 +++++++++++++++++++
16 4 files changed, 40 insertions(+)
17
18 diff --git a/app-emacs/tablist/Manifest b/app-emacs/tablist/Manifest
19 new file mode 100644
20 index 000000000000..5711bc22d9fd
21 --- /dev/null
22 +++ b/app-emacs/tablist/Manifest
23 @@ -0,0 +1 @@
24 +DIST tablist-1.0.tar.gz 31848 BLAKE2B 11bc943aaf25fb1fe6ecb43a944d70d9b5ab4c423f9df96c881a840570780707a702240808c425e8e91321ad620c1773c80c03e2f6881ccddff84c0d818aa7a4 SHA512 14d32228e9663d218b49563ec07a5f8d094b389e06e532c0710af54d7386fcd19435fae2920163e0c774b7b67bf77ef5fc0a246dfbdb11785dca976ff47eeff2
25
26 diff --git a/app-emacs/tablist/files/50tablist-gentoo.el b/app-emacs/tablist/files/50tablist-gentoo.el
27 new file mode 100644
28 index 000000000000..431f7e90ae73
29 --- /dev/null
30 +++ b/app-emacs/tablist/files/50tablist-gentoo.el
31 @@ -0,0 +1 @@
32 +(add-to-list 'load-path "@SITELISP@")
33
34 diff --git a/app-emacs/tablist/metadata.xml b/app-emacs/tablist/metadata.xml
35 new file mode 100644
36 index 000000000000..55cb7b1f0219
37 --- /dev/null
38 +++ b/app-emacs/tablist/metadata.xml
39 @@ -0,0 +1,19 @@
40 +<?xml version="1.0" encoding="UTF-8"?>
41 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
42 +
43 +<pkgmetadata>
44 + <maintainer type="project">
45 + <email>gnu-emacs@g.o</email>
46 + <name>Gentoo GNU Emacs project</name>
47 + </maintainer>
48 + <longdescription>
49 + This package adds marks and filters to tabulated-list-mode. It also puts a
50 + dired face on tabulated list buffers. It can be used by deriving from
51 + tablist-mode, or with more limited features by enabling tablist-minor-mode
52 + inside a tabulated-list-mode buffer.
53 + </longdescription>
54 + <upstream>
55 + <bugs-to>https://github.com/politza/tablist/issues/</bugs-to>
56 + <remote-id type="github">politza/tablist</remote-id>
57 + </upstream>
58 +</pkgmetadata>
59
60 diff --git a/app-emacs/tablist/tablist-1.0.ebuild b/app-emacs/tablist/tablist-1.0.ebuild
61 new file mode 100644
62 index 000000000000..ab4bc1aa5088
63 --- /dev/null
64 +++ b/app-emacs/tablist/tablist-1.0.ebuild
65 @@ -0,0 +1,19 @@
66 +# Copyright 1999-2022 Gentoo Authors
67 +# Distributed under the terms of the GNU General Public License v2
68 +
69 +EAPI=8
70 +
71 +NEED_EMACS=24.3
72 +
73 +inherit elisp
74 +
75 +DESCRIPTION="Extended tabulated-list mode fro Emacs"
76 +HOMEPAGE="https://github.com/politza/tablist/"
77 +SRC_URI="https://github.com/politza/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
78 +
79 +LICENSE="GPL-3+"
80 +KEYWORDS="~amd64 ~x86"
81 +SLOT="0"
82 +
83 +DOCS=( README.md )
84 +SITEFILE="50${PN}-gentoo.el"