commit: 00aec8eb45cfd5e96bb46787fdbbc26e74b046fd Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Thu Jan 8 20:46:32 2026 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Thu Jan 8 21:19:43 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00aec8eb
app-emacs/cond-let: bump to 0.2.1 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/cond-let/Manifest | 1 + app-emacs/cond-let/cond-let-0.2.1.ebuild | 37 ++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/app-emacs/cond-let/Manifest b/app-emacs/cond-let/Manifest index 448826a0ac2f..e26eb31d4329 100644 --- a/app-emacs/cond-let/Manifest +++ b/app-emacs/cond-let/Manifest @@ -1 +1,2 @@ DIST cond-let-0.2.0.tar.gz 19763 BLAKE2B 3d68cd27de44d0d8a42ba24bb809e005a9f46e43e1b5283a39cabc83c4821b0770ba8f4562bc054b22ebb2668d2df0b5c22385377ab4c72a9d396db8c8fff070 SHA512 6e7e043164ed6928ed504f2d4d8af47d09d2096bac312e59b439c3746b54ec4e63ad2771b121bef6bfe041a3439e37029119185fc8c0ec309465d02c236e2f29 +DIST cond-let-0.2.1.gh.tar.gz 19829 BLAKE2B e9d7d3c80a54927b2f283cb813186bca846401d825104b9ebced0609d8145b04c3945ec658b6bcede99e3b15443eda1949c34006ccd52e46ed72c727322e1078 SHA512 4529d51fdbc0c4ec4cd7fbb563ea6a83b84fe8fee9d28f5b032d11542579f57ced99926a409183653e913b938b7ffbd64cea883b02a3eadffbe62321c6eda922 diff --git a/app-emacs/cond-let/cond-let-0.2.1.ebuild b/app-emacs/cond-let/cond-let-0.2.1.ebuild new file mode 100644 index 000000000000..f1e947adeea1 --- /dev/null +++ b/app-emacs/cond-let/cond-let-0.2.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="28.1" + +inherit elisp + +DESCRIPTION="Additional and improved binding conditionals for GNU Emacs" +HOMEPAGE="https://github.com/tarsius/cond-let/ + https://github.com/tarsius/cond-let/wiki/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/tarsius/${PN}" +else + SRC_URI="https://github.com/tarsius/${PN}/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz" + + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +DOCS=( README.org ) +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests ert . -l "${PN}-tests.el" + +src_install() { + rm -f "${PN}-tests.el"* + + elisp_src_install +}
