Diff bui-1.2.1_p20210108 with a bui-1.3
| /usr/portage/app-emacs/bui/bui-1.3.ebuild 2026-05-04 19:17:04.747099903 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2024 Gentoo Authors |
|
| 1 |
# Copyright 1999-2026 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 |
EAPI=8 |
|
| 4 |
EAPI=9 |
|
| 5 | 5 | |
| 6 |
COMMIT=f3a137628e112a91910fd33c0cff0948fa58d470 |
|
| 6 |
NEED_EMACS="29.1" |
|
| 7 | 7 | |
| 8 | 8 |
inherit elisp |
| 9 | 9 | |
| 10 | 10 |
DESCRIPTION="Buffer interface library for Emacs" |
| 11 | 11 |
HOMEPAGE="https://github.com/alezost/bui.el/" |
| 12 |
SRC_URI="https://github.com/alezost/${PN}.el/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
| 13 |
S="${WORKDIR}"/${PN}.el-${COMMIT}
|
|
| 12 | ||
| 13 |
if [[ "${PV}" == *9999* ]] ; then
|
|
| 14 |
inherit git-r3 |
|
| 15 | ||
| 16 |
EGIT_REPO_URI="https://github.com/alezost/bui.el" |
|
| 17 |
else |
|
| 18 |
SRC_URI="https://github.com/alezost/bui.el/archive/refs/tags/v${PV}.tar.gz
|
|
| 19 |
-> ${P}.gh.tar.gz"
|
|
| 20 |
S="${WORKDIR}/${PN}.el-${PV}"
|
|
| 21 | ||
| 22 |
KEYWORDS="~amd64 ~x86" |
|
| 23 |
fi |
|
| 14 | 24 | |
| 15 | 25 |
LICENSE="GPL-3+" |
| 16 |
KEYWORDS="amd64 ~x86" |
|
| 17 | 26 |
SLOT="0" |
| 18 | 27 | |
| 19 |
RDEPEND="app-emacs/dash" |
|
| 20 |
BDEPEND="${RDEPEND}"
|
|
| 21 | ||
| 22 | 28 |
DOCS=( NEWS README.org examples ) |
| 23 | 29 |
SITEFILE="50${PN}-gentoo.el"
|