diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2023-07-29 18:13:09 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2023-07-29 18:13:09 +0000 |
| commit | f88f8d01ec57dbd63993d4ed815c5d87550e455b (patch) | |
| tree | 2ed2418e1dc216cb1e7f1aabc50ed6a023712648 /app-emacs/assess | |
| parent | c6fb886a0560cdcab5fcb86f4a8bbd6567c392c9 (diff) | |
| download | baldeagleos-repo-f88f8d01ec57dbd63993d4ed815c5d87550e455b.tar.gz baldeagleos-repo-f88f8d01ec57dbd63993d4ed815c5d87550e455b.tar.xz baldeagleos-repo-f88f8d01ec57dbd63993d4ed815c5d87550e455b.zip | |
Adding metadata
Diffstat (limited to 'app-emacs/assess')
| -rw-r--r-- | app-emacs/assess/assess-0.6.ebuild | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/app-emacs/assess/assess-0.6.ebuild b/app-emacs/assess/assess-0.6.ebuild index 6d09c2dc615c..95c83fa6db65 100644 --- a/app-emacs/assess/assess-0.6.ebuild +++ b/app-emacs/assess/assess-0.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,10 +7,17 @@ inherit elisp DESCRIPTION="Test support functions for Emacs" HOMEPAGE="https://github.com/phillord/assess/" -SRC_URI="https://github.com/phillord/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/phillord/${PN}.git" +else + SRC_URI="https://github.com/phillord/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi LICENSE="GPL-3+" -KEYWORDS="~amd64 ~x86" SLOT="0" IUSE="test" RESTRICT="!test? ( test )" @@ -23,8 +30,9 @@ BDEPEND=" DOCS=( README.md ) -# Remove a test helper accessing the network, luckily unnecessary -ELISP_REMOVE="test/local-sandbox.el" +# Remove tests failing with Emacs >=29. +# Remove a test helper accessing the network, luckily unnecessary. +ELISP_REMOVE="test/assess-robot-test.el test/local-sandbox.el" SITEFILE="50${PN}-gentoo.el" src_test() { |
