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.
app-xemacs/ebuild-mode: Version bump.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
- Loading branch information
Showing
2 changed files
with
25 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 +1,2 @@ | ||
DIST ebuild-mode-1.24.tar.xz 28816 SHA256 366fa7602d32cda107b560e9a24540a3a5b90fdda58d84a1d108e8a4c6a488ff SHA512 0894ad452b64133c223a4f93755404657eed5cf86667e45ce5c808d2232755bcedd835f1bbab1bd719ce850d56c6d92e339c4262ab0d7cc8aa42e039023db99d WHIRLPOOL ff38c8736051a6f6c34d00103b8f1fa2fe40ce910cc14187e9d95b11d7aa665ba03497b52b324d2e7b0e7c29da1d99e267a1934d5e2434bf986e863afb925801 | ||
DIST ebuild-mode-1.36.tar.xz 30764 SHA256 11651c042a1a52d4c184a0db940ca708563b6d8dc5cc8083ff9ee65405ad0cff SHA512 6189f85d80e52e9320b849fc76def91570f60ce9459f0e533e92e47aa5c6ff712de3129a2b9048cb7416a0c36dda26cdaf5e06f4f0213958a29356c38da55dcd WHIRLPOOL d04afe53777069f92b4adcca688b4c729c012b156e83e5afda4027ccba0b43ce6ff43a3e781edc4699fbcd838828fffc2677a4b531e45c6a4566391b4126fe5c |
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,24 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit xemacs-elisp | ||
|
||
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="~amd64 ~x86" | ||
|
||
RDEPEND=">=app-editors/xemacs-21.4.20-r5 | ||
app-xemacs/sh-script" | ||
DEPEND="${RDEPEND}" | ||
|
||
src_compile() { | ||
${XEMACS_BATCH_CLEAN} -eval "(add-to-list 'load-path \".\")" \ | ||
-f batch-byte-compile ebuild-mode.el gentoo-newsitem-mode.el || die | ||
xemacs-elisp-make-autoload-file *.el || die | ||
} |