diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-01-23 21:59:44 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-01-23 23:06:52 +0100 |
commit | d0bee14c38c1a34ebe8cc5e26aa39181589df2f7 (patch) | |
tree | 568be3a02e6191d43f52033977ce2a343bd13caa /app-emacs/cape | |
parent | app-emacs/cape: drop old 1.0 (diff) | |
download | gentoo-d0bee14c38c1a34ebe8cc5e26aa39181589df2f7.tar.gz gentoo-d0bee14c38c1a34ebe8cc5e26aa39181589df2f7.tar.bz2 gentoo-d0bee14c38c1a34ebe8cc5e26aa39181589df2f7.zip |
app-emacs/cape: bump to 1.2
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/cape')
-rw-r--r-- | app-emacs/cape/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/cape/cape-1.2.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/app-emacs/cape/Manifest b/app-emacs/cape/Manifest index 1cf400ef08eb..694a11669de2 100644 --- a/app-emacs/cape/Manifest +++ b/app-emacs/cape/Manifest @@ -1 +1,2 @@ DIST cape-1.1.tar.gz 39660 BLAKE2B eb855153d1120a2da5ca077fe9a24fb3f255c751e8d97062aad2de03abfec7a0c9db21305e6f3ce6f8c212e88174d75ff02942f08f30f355bb167af458e5b1c9 SHA512 244dca223a0538ecd57634fb39e9031265690f826e40e6e8a0204567d4403a68ffe86e0fb7b1e2df779727e049ab234d2d61ab98668b6c523eb6aea5372051c7 +DIST cape-1.2.tar.gz 39989 BLAKE2B 9798625431bee4819793d78d7a045599291f3fcbcebc1466bd7b0f9a55f29b3655607fca9bde3bb4d7f3cfcf401a285b571d3a1505aeb343f30518bda4ddc85a SHA512 5991269b5ba9798ad6b2b1aa26848393ac30e5303c464040aee44e9e5fa015bd31dac17e401ef81e9abe1340adce9cea865c34ca1e8bbd0239f9eb6d06ad18f3 diff --git a/app-emacs/cape/cape-1.2.ebuild b/app-emacs/cape/cape-1.2.ebuild new file mode 100644 index 000000000000..99068b9ad304 --- /dev/null +++ b/app-emacs/cape/cape-1.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=27.1 + +inherit elisp + +DESCRIPTION="Completion At Point Extensions" +HOMEPAGE="https://github.com/minad/cape/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/minad/${PN}.git" +else + SRC_URI="https://github.com/minad/${PN}/archive/refs/tags/${PV}.tar.gz + -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/compat-29.1.4.0 +" +DEPEND=" + ${RDEPEND} +" + +DOCS=( CHANGELOG.org README.org ) +ELISP_TEXINFO="${PN}.texi" +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp-org-export-to texinfo README.org + elisp_src_compile + elisp-make-autoload-file +} |