diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-06-12 23:41:56 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-06-12 23:49:40 +0200 |
commit | 32a2b222864848753a73ae79b71a88771ad907be (patch) | |
tree | eb43b5124f56a0cca8f2cba58cacfdd3abe062ae /app-emacs/autothemer | |
parent | app-emacs/gruvbox-theme: add live (diff) | |
download | gentoo-32a2b222864848753a73ae79b71a88771ad907be.tar.gz gentoo-32a2b222864848753a73ae79b71a88771ad907be.tar.bz2 gentoo-32a2b222864848753a73ae79b71a88771ad907be.zip |
app-emacs/autothemer: enable live
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/autothemer')
-rw-r--r-- | app-emacs/autothemer/autothemer-0.2.18.ebuild | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/app-emacs/autothemer/autothemer-0.2.18.ebuild b/app-emacs/autothemer/autothemer-0.2.18.ebuild index 9ed03806642f..6536dcad1efa 100644 --- a/app-emacs/autothemer/autothemer-0.2.18.ebuild +++ b/app-emacs/autothemer/autothemer-0.2.18.ebuild @@ -9,12 +9,17 @@ inherit elisp DESCRIPTION="Conveniently define themes for GNU Emacs" HOMEPAGE="https://github.com/jasonm23/autothemer" -# Recompressed from NonGNU ELPA. -SRC_URI="https://dev.gentoo.org/~arsen/${P}.tar.xz" +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/jasonm23/autothemer.git" +else + # Recompressed from NonGNU ELPA. + SRC_URI="https://dev.gentoo.org/~arsen/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64" RDEPEND=" >=app-emacs/dash-2.10.0 @@ -30,4 +35,4 @@ DOCS=( function-reference.md ) -elisp-enable-tests ert "${S}"/tests -l "${PN}"-tests.el +elisp-enable-tests ert "${S}"/tests -l tests/"${PN}"-tests.el |