diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-11-08 18:43:51 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-11-08 20:34:42 +0100 |
commit | fc0a69c8bf15b5ce23a9f2f18d86fd6eef417f4f (patch) | |
tree | 1b8585ccc4e49ce5f52a9ad473cec5af2b23dbc4 /app-emacs | |
parent | dev-vcs/sourcegit: bump to 8.37 (diff) | |
download | gentoo-fc0a69c8bf15b5ce23a9f2f18d86fd6eef417f4f.tar.gz gentoo-fc0a69c8bf15b5ce23a9f2f18d86fd6eef417f4f.tar.bz2 gentoo-fc0a69c8bf15b5ce23a9f2f18d86fd6eef417f4f.zip |
app-emacs/indent-bars: bump to 0.8.2
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/indent-bars/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/indent-bars/indent-bars-0.8.2.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/app-emacs/indent-bars/Manifest b/app-emacs/indent-bars/Manifest index 6ca3cea41eb0..24818004f765 100644 --- a/app-emacs/indent-bars/Manifest +++ b/app-emacs/indent-bars/Manifest @@ -1,2 +1,3 @@ DIST indent-bars-0.8.1.gh.tar.gz 54475 BLAKE2B 2b92445728ca56fc45b504d9b4a4d106f76d74ccd02f5a2d789846c1a58eaee1b21714a889ea16d0241950763ec5d179e2461d0cbec26d4f6d3bcb538954198c SHA512 3c8b9b3e61eda8721f575b96e3c7f44ffe33e44f64ed0d7c28a6c83b689c507ec7b5797502a8954d18fab409502bdebf73f6d2f3473f2c691db96360ee64b6b6 +DIST indent-bars-0.8.2.gh.tar.gz 53973 BLAKE2B 1d27b20009a51eb7c7bb9a8735fc1b9bfe8fe4ea13176b7dae7f36cfe2c1b3c95476f8d101bfa90d08bd0fccce579bd5386e162c24d9d2ef84a269c75a5b42db SHA512 a301feae3593ca9acbeeca88e54f6ad47a3d574c893cc045aa5ae07689b18368ee83b34e701a4934645dcceacfa119c70313f2e416f4498a7e1a3d6e5938adea DIST indent-bars-0.8.gh.tar.gz 54062 BLAKE2B 13f156d0a4f1188c221a152b01185ddf381645a3039b7e362951291e900d23ea1e97480a579c0265b1f4120aff1a97b16bf023bdd14057f43c2aafb87aabc213 SHA512 aba11e1be71d14bda8362943c35c126f61f5135219487ebd0a16b735819dd5450d6a9f17bbca827aee00368b047e14c3fb26e612dbb2b09061247b28ca288d2b diff --git a/app-emacs/indent-bars/indent-bars-0.8.2.ebuild b/app-emacs/indent-bars/indent-bars-0.8.2.ebuild new file mode 100644 index 000000000000..f8592c21f382 --- /dev/null +++ b/app-emacs/indent-bars/indent-bars-0.8.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="27.1" + +inherit elisp + +DESCRIPTION="Fast, configurable indentation guide-bars for Emacs" +HOMEPAGE="https://github.com/jdtsmith/indent-bars/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/jdtsmith/${PN}.git" +else + SRC_URI="https://github.com/jdtsmith/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.gh.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/compat-30.0.0.0 +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( README.md examples.md ) +SITEFILE="50${PN}-gentoo.el" |