commit: a5de3521b3dbfd4bad9ca46daf5364ed8b912100 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Wed Apr 16 07:31:40 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Wed Apr 16 08:16:05 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5de3521
app-emacs/package-lint: bump to 0.25 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/package-lint/Manifest | 1 + app-emacs/package-lint/package-lint-0.25.ebuild | 75 +++++++++++++++++++++++++ 2 files changed, 76 insertions(+) diff --git a/app-emacs/package-lint/Manifest b/app-emacs/package-lint/Manifest index c8853f3682ef..9fbb118b60fc 100644 --- a/app-emacs/package-lint/Manifest +++ b/app-emacs/package-lint/Manifest @@ -1 +1,2 @@ DIST package-lint-0.24.tar.gz 322270 BLAKE2B 364b3700bc856b4e3c51bfc5702ea76ebdc21e96d4498cd0e9c21269bbb134f53b4bde2cdb2d74ad6ed7fa9719ca8e0117bfa2ec543a56b2366d29d52e52a174 SHA512 d4262378ba482f799f036942a2be0cb1df29ed99774a696511531b7ba7350fcc865c7c655ca31bc3b455fc009f088682965c31d4e9c80c592e2c5a8cae911a40 +DIST package-lint-0.25.tar.gz 352513 BLAKE2B 215413f0547c5fff5ed7e3d3d326d3a8db21aa012e9fa4a197ec7572516d20c72473dafdc02b8bf2b7098785694f7e82f6ff5007e1586fb613a92c85070d6a92 SHA512 5fee3083b5dc44e533dddd6a0091b67ab1cea12f34353550a60530013701ab24817e7b4f0e24c9218c5cb36712869ae4d22bcf3e3bce33c6ca665a7699d9fd65 diff --git a/app-emacs/package-lint/package-lint-0.25.ebuild b/app-emacs/package-lint/package-lint-0.25.ebuild new file mode 100644 index 000000000000..e6e1f5bdf329 --- /dev/null +++ b/app-emacs/package-lint/package-lint-0.25.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=26.1 + +inherit elisp + +DESCRIPTION="Linting library for Emacs Lisp package metadata" +HOMEPAGE="https://github.com/purcell/package-lint/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/purcell/${PN}.git" +else + SRC_URI="https://github.com/purcell/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + app-emacs/compat +" +BDEPEND=" + ${RDEPEND} +" + +PATCHES=( + "${FILESDIR}/${PN}-0.22-load-data-directory.patch" +) + +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests ert + +src_prepare() { + elisp_src_prepare + + sed "s|@SITEETC@|${EPREFIX}${SITEETC}/${PN}|" -i "${PN}.el" || die + + # Skip failing test. Tests are marked as "WORK IN PROGRESS" at the + # top of the file. + local -a skip_tests=( + package-lint-test-accept-new-backported-libraries-with-backport-dep + package-lint-test-accept-new-backported-sub-libraries-with-backport-dep + package-lint-test-accept-normal-deps + package-lint-test-accepts-compat-call + package-lint-test-accepts-compat-require + package-lint-test-accepts-new-backported-functions-with-backport-dep + package-lint-test-accepts-new-functions-with-compat + package-lint-test-accepts-new-macros-with-compat + package-lint-test-error-new-backported-sub-libraries + package-lint-test-warn-unversioned-dep + ) + local skip_test="" + for skip_test in "${skip_tests[@]}"; do + sed -i "/${skip_test}/a (ert-skip nil)" package-lint-test.el || die + done +} + +src_install() { + elisp-install "${PN}" ${PN}{,-flymake}.el{,c} + elisp-make-site-file "${SITEFILE}" + + insinto "${SITEETC}/${PN}" + doins -r data + + einstalldocs +}
