diff options
author | John Turner <jturner.usa+gentoo@gmail.com> | 2021-09-30 23:37:43 -0400 |
---|---|---|
committer | John Turner <jturner.usa+gentoo@gmail.com> | 2021-09-30 23:42:06 -0400 |
commit | feb63b6d0e1403872142b96f235620862b80f9d8 (patch) | |
tree | ec93a2f18b17dc61c1c698f656c2e925b452d425 | |
parent | 600341c10dc0b9531e54c27b3753fd1b9e9c11dd (diff) | |
download | ebuilds-feb63b6d0e1403872142b96f235620862b80f9d8.tar.gz |
app-emacs/posframe: changed variable COMMIT to MY_COMMIT, moved it up one line (as per sam) and added comment explaining why we use a snapshot instead of a release
-rw-r--r-- | app-emacs/posframe/posframe-1.0.4.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app-emacs/posframe/posframe-1.0.4.ebuild b/app-emacs/posframe/posframe-1.0.4.ebuild index 7d42a6d..7d7e419 100644 --- a/app-emacs/posframe/posframe-1.0.4.ebuild +++ b/app-emacs/posframe/posframe-1.0.4.ebuild @@ -8,10 +8,12 @@ NEED_EMACS="27" inherit elisp DESCRIPTION="Pop a postframe at point" +# The latest github release is out of date with the actual release. +# This snapshot is what melpa stable currently targets. +MY_COMMIT="74f06b77deeb770cd0a96977b1e6bdedb682487a" HOMEPAGE="https://github.com/tumashu/posframe" -COMMIT="74f06b77deeb770cd0a96977b1e6bdedb682487a" -SRC_URI="https://github.com/tumashu/posframe/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${COMMIT}" +SRC_URI="https://github.com/tumashu/posframe/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_COMMIT}" LICENSE="GPL-3+" SLOT="0" |