diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-10-17 14:06:53 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-10-17 15:18:55 +0200 |
commit | 542cb939c1400b881b7b78e28ca1733e151d9f93 (patch) | |
tree | d34d40b2624b4cc44becde6d6627a1a1654d1685 /app-emacs/howm | |
parent | app-emacs/f: Update metadata. (diff) | |
download | gentoo-542cb939c1400b881b7b78e28ca1733e151d9f93.tar.gz gentoo-542cb939c1400b881b7b78e28ca1733e151d9f93.tar.bz2 gentoo-542cb939c1400b881b7b78e28ca1733e151d9f93.zip |
app-emacs/howm: Bump to version 1.4.5.
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs/howm')
-rw-r--r-- | app-emacs/howm/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/howm/howm-1.4.5.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/app-emacs/howm/Manifest b/app-emacs/howm/Manifest index 82f04e2ec1f6..19078f659ded 100644 --- a/app-emacs/howm/Manifest +++ b/app-emacs/howm/Manifest @@ -1 +1,2 @@ DIST howm-1.4.3.tar.gz 552747 BLAKE2B 26ddf709fcbcefb962a3cf447c1ccaef61b2407cb875be49a7a207159db5c2425fff953859c2c77ec36250e73d9da17647667d2e0a4448ed0dc40bb25ded0635 SHA512 da6eec498545dced3bad3c6968bb31a24b01b85220dd80c6e1ee312a0cf1a0b883dc77744f5052261e4bf0d536da057fbe05040fbb429b61a8580330750ce189 +DIST howm-1.4.5.tar.gz 565221 BLAKE2B a28e98e9b955c6172c7b9e51d8f157e22e87846cb2a2955d956f434c2a36fad7e0692c951ef3d37f57363d500d118c2eeaad55276656a8e543b72b8276317fa4 SHA512 b448bf8caeaf21bf1980862ed12541bd793369494a3e321bc5b77bb99ef63cc5ed2f70c54eaa60b427489e9b3fa9b0037d5cbe06449f87af924f245b7f8f2615 diff --git a/app-emacs/howm/howm-1.4.5.ebuild b/app-emacs/howm/howm-1.4.5.ebuild new file mode 100644 index 000000000000..389c61d210e3 --- /dev/null +++ b/app-emacs/howm/howm-1.4.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp + +DESCRIPTION="Note-taking tool on Emacs" +HOMEPAGE="https://howm.sourceforge.jp/" +SRC_URI="http://howm.sourceforge.jp/a/${P}.tar.gz" + +LICENSE="GPL-1+ GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +SITEFILE="50${PN}-gentoo.el" + +src_configure() { + default +} + +src_compile() { + emake -j1 </dev/null +} + +src_install() { + emake -j1 DESTDIR="${D}" install </dev/null + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + dodoc ChangeLog +} |