forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ulrich Müller <[email protected]>
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST ebuild-mode-1.72.tar.xz 41968 BLAKE2B 24170aa6f23022f47707445eebbb7272c898fa8ca922d0a1ee57962ccc9feed6ea608661998e3f812a0b5fcc8ce8d8ff0baa890505dad846e0dc4b5c9e0b4236 SHA512 7f2234f9f5053f9588fb25d673dbce10a9d6e5c056ea7dabf04ffe5a0f8da7064b81829229339c5d98ee7ce840eb6c8b9ec24fcfd3dee2d5b798b5e6adb81e10 | ||
DIST ebuild-mode-1.73.tar.xz 45264 BLAKE2B 115f67f9bfbf80ce5ddda1cc1dfee62aec15cb66c694b634361762c47c8c5afa6cdf0bc6c374440e939accbe9b13df0a84a7957b8c8c72a13324d2544388124a SHA512 855fdd0c94da77bae8f948fbc02782d47a0982e4a3d8ccff5d77a9c6b1f55b80a78144b493e5949e04b196cf8ee95e1fcc0b84c6ecace1a7d687ed6733d25820 | ||
DIST ebuild-mode-1.74.tar.xz 48480 BLAKE2B f9277473af5610039d2a2f46bdebf79e266dca140c93407d304e746088d6f4df2b492a42918754ebba7abb78fa2c116f621684f93c5df98fc7a86c519755a906 SHA512 35d14987719675122f7f17c76a1fa7ab51f4789e3eb50630d610ea98066ae7091b4f8b8c210874be18b2848e925e2e15f2d25e3d41ae702be9ce7ae28b444db2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit elisp optfeature | ||
|
||
DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files" | ||
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" | ||
SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" | ||
|
||
BDEPEND="sys-apps/texinfo" | ||
|
||
DOCS="ChangeLog keyword-generation.sh" | ||
ELISP_TEXINFO="${PN}.texi" | ||
SITEFILE="50${PN}-gentoo-1.72.el" | ||
|
||
pkg_postinst() { | ||
elisp_pkg_postinst | ||
optfeature "ebuild commands support" sys-apps/portage | ||
optfeature "additional development tools" dev-util/pkgdev | ||
optfeature "ebuild QA utilities" dev-util/pkgcheck | ||
optfeature "decode ANSI colors in build.log" app-emacs/tty-format | ||
optfeature "XML syntax validation" app-emacs/nxml-gentoo-schemas | ||
optfeature "generating HTML from GLEPs" dev-python/docutils-glep | ||
} |