app-emacs/org-superstar-mode: new package; add version 1.5.0

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2022-04-06 13:51:33 +02:00
parent 50a25d6f0e
commit b015c7f386
4 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST org-superstar-mode-1.5.0.tar.gz 622275 BLAKE2B 03c3b652d422d145e916dce02e3e0d7dc0583090803984da67c7e06aae6c3f3a7bfed43bb88fdc2891703cfca6adddf29135f6e93241b137a83d85c7ae165b03 SHA512 3c8f8168011c7f5df96620af6d12d3ab093f994c2875042e88b8f132ce7c44c42b86fd6502f050c0cf5375f986252bc5e45125f08a97db9b8ed0cd5bcd8548bd

View File

@@ -0,0 +1,3 @@
(add-to-list 'load-path "@SITELISP@")
(autoload 'org-superstar-mode "org-superstar"
"Use UTF8 bullets for headlines and plain lists." t)

View File

@@ -0,0 +1,13 @@
<?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>
<upstream>
<bugs-to>https://github.com/integral-dw/org-superstar-mode/issues/</bugs-to>
<remote-id type="github">integral-dw/org-superstar-mode</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,23 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS=26.1
inherit elisp
DESCRIPTION="Prettify headings and plain lists in Org mode (use UTF8 bullets)"
HOMEPAGE="https://github.com/integral-dw/org-superstar-mode/"
SRC_URI="https://github.com/integral-dw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DOCS=( DEMO.org README.org demos )
SITEFILE="50${PN}-gentoo.el"
src_test() {
emake EMACS="${EMACS}" EFLAGS="${EMACSFLAGS}" -C tests
}