diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-11-08 17:48:24 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-11-08 20:34:40 +0100 |
commit | f5e94b425a3e47203aa6d2a9c6fbe9f7f047dd95 (patch) | |
tree | 9c5d6bebae5ad871542c03472957dea025c194ed /app-emacs | |
parent | app-admin/keepassxc: Add two new USE flags (diff) | |
download | gentoo-f5e94b425a3e47203aa6d2a9c6fbe9f7f047dd95.tar.gz gentoo-f5e94b425a3e47203aa6d2a9c6fbe9f7f047dd95.tar.bz2 gentoo-f5e94b425a3e47203aa6d2a9c6fbe9f7f047dd95.zip |
app-emacs/matlab: bump to 6.1_p20241107
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/matlab/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/matlab/matlab-6.1_p20241107.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/app-emacs/matlab/Manifest b/app-emacs/matlab/Manifest index cc425a0621a4..6f84d595e12c 100644 --- a/app-emacs/matlab/Manifest +++ b/app-emacs/matlab/Manifest @@ -1 +1,2 @@ DIST matlab-3.3.6_pre20191010.tar.xz 111800 BLAKE2B e7960f09c51664ca92ee818ab9bbd946123f4527f5a24d31a4236e8cfe534e4cbcdd1cf49539794de79f00c369d3e440465080ab44a20e184b507e860bcf8e0d SHA512 e1997e23693e09cfcc1461c328d70494f9e83c4d034bce983f6065eff4ce3c7c406e4d046c01dc5b31b0dca6c7ade32860504d4d596e04bcf72618dba5c07792 +DIST matlab-6.1_p20241107.gh.tar.gz 421687 BLAKE2B cb07a0965d02f1b2637e2c141fe649ed284a22ae959462270e51a88285188020bda8e2f8f8a2866dd6412f5f3c2d5f254b2f4d0120eb08f0d512df1a0c67185c SHA512 2a075326753939f7af74e6e5b38faf3afabb5a7f5217dc63d5d0fc1311c00c2cfdc243905d62e1a10e5998d2b68e1b70c65f5d78abcb58348fdc9e10ddbb8836 diff --git a/app-emacs/matlab/matlab-6.1_p20241107.ebuild b/app-emacs/matlab/matlab-6.1_p20241107.ebuild new file mode 100644 index 000000000000..25d44d6bbb42 --- /dev/null +++ b/app-emacs/matlab/matlab-6.1_p20241107.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Major modes for MATLAB .m and .tlc files" +HOMEPAGE="https://github.com/mathworks/Emacs-MATLAB-Mode/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/mathworks/Emacs-MATLAB-Mode" +else + [[ "${PV}" == *p20241107 ]] && COMMIT="f13f511670a52cfa23c4f065a231a3e691763633" + + SRC_URI="https://github.com/mathworks/Emacs-MATLAB-Mode/archive/${COMMIT}.tar.gz + -> ${P}.gh.tar.gz" + S="${WORKDIR}/Emacs-MATLAB-Mode-${COMMIT}" + + KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +fi + +LICENSE="GPL-2+" +SLOT="0" + +DOCS="README.org ChangeLog*" +SITEFILE="50${PN}-gentoo-3.3.6.el" + +src_compile() { + elisp-compile *.el + elisp-make-autoload-file matlab-load.el +} |