commit: 5ffbd79a20db53cfdbbf712460ce663e575662be Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Tue Nov 4 17:09:58 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Tue Nov 4 18:13:45 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ffbd79a
app-emacs/cond-let: bump to 0.2.0 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/cond-let/Manifest | 1 + app-emacs/cond-let/cond-let-0.2.0.ebuild | 37 ++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/app-emacs/cond-let/Manifest b/app-emacs/cond-let/Manifest index a2d4a1dd22a3..fc38bacaa177 100644 --- a/app-emacs/cond-let/Manifest +++ b/app-emacs/cond-let/Manifest @@ -1 +1,2 @@ DIST cond-let-0.1.1.tar.gz 19578 BLAKE2B 166edee3ef2275e500f981e10b61b643b184a0980f838f0e0be30809c729677c9672b4781f47dd715c982cbd55afb6985e06e2e0f59228db109a297c85cabc20 SHA512 64870edb9ea57299b84b3ac8b3bf78ea30bcf737bb4acbffe26deb33e99e98a95d26a328de09a4c118cb0f2ba714d84972e586462a45fed437582dafdef48ff4 +DIST cond-let-0.2.0.tar.gz 19763 BLAKE2B 3d68cd27de44d0d8a42ba24bb809e005a9f46e43e1b5283a39cabc83c4821b0770ba8f4562bc054b22ebb2668d2df0b5c22385377ab4c72a9d396db8c8fff070 SHA512 6e7e043164ed6928ed504f2d4d8af47d09d2096bac312e59b439c3746b54ec4e63ad2771b121bef6bfe041a3439e37029119185fc8c0ec309465d02c236e2f29 diff --git a/app-emacs/cond-let/cond-let-0.2.0.ebuild b/app-emacs/cond-let/cond-let-0.2.0.ebuild new file mode 100644 index 000000000000..a8dcc4ea784d --- /dev/null +++ b/app-emacs/cond-let/cond-let-0.2.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2025 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}.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 +}
