diff options
author | 2024-10-21 22:37:27 +0200 | |
---|---|---|
committer | 2024-10-22 02:08:43 +0200 | |
commit | adf5f53b252da877620672ccc98df1cd817e5759 (patch) | |
tree | 90e70ce02955d85453efafab8b1a0929cc909f84 /app-emacs | |
parent | app-emacs/indent-bars: drop old 0.7.6 (diff) | |
download | gentoo-adf5f53b252da877620672ccc98df1cd817e5759.tar.gz gentoo-adf5f53b252da877620672ccc98df1cd817e5759.tar.bz2 gentoo-adf5f53b252da877620672ccc98df1cd817e5759.zip |
app-emacs/indent-bars: bump to 0.8.1
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.1.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/app-emacs/indent-bars/Manifest b/app-emacs/indent-bars/Manifest index bb374054b9ad..6ca3cea41eb0 100644 --- a/app-emacs/indent-bars/Manifest +++ b/app-emacs/indent-bars/Manifest @@ -1 +1,2 @@ +DIST indent-bars-0.8.1.gh.tar.gz 54475 BLAKE2B 2b92445728ca56fc45b504d9b4a4d106f76d74ccd02f5a2d789846c1a58eaee1b21714a889ea16d0241950763ec5d179e2461d0cbec26d4f6d3bcb538954198c SHA512 3c8b9b3e61eda8721f575b96e3c7f44ffe33e44f64ed0d7c28a6c83b689c507ec7b5797502a8954d18fab409502bdebf73f6d2f3473f2c691db96360ee64b6b6 DIST indent-bars-0.8.gh.tar.gz 54062 BLAKE2B 13f156d0a4f1188c221a152b01185ddf381645a3039b7e362951291e900d23ea1e97480a579c0265b1f4120aff1a97b16bf023bdd14057f43c2aafb87aabc213 SHA512 aba11e1be71d14bda8362943c35c126f61f5135219487ebd0a16b735819dd5450d6a9f17bbca827aee00368b047e14c3fb26e612dbb2b09061247b28ca288d2b diff --git a/app-emacs/indent-bars/indent-bars-0.8.1.ebuild b/app-emacs/indent-bars/indent-bars-0.8.1.ebuild new file mode 100644 index 000000000000..f8592c21f382 --- /dev/null +++ b/app-emacs/indent-bars/indent-bars-0.8.1.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" |