diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-10-15 02:49:12 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-10-15 02:52:46 +0200 |
commit | 33369d13082ba8f24751f0697b84e6bd98474170 (patch) | |
tree | e60b406a53a472d70b568c570ed2e34fae5c31b9 /app-emacs | |
parent | media-libs/opencv: fix build with ffmpeg 5 (diff) | |
download | gentoo-33369d13082ba8f24751f0697b84e6bd98474170.tar.gz gentoo-33369d13082ba8f24751f0697b84e6bd98474170.tar.bz2 gentoo-33369d13082ba8f24751f0697b84e6bd98474170.zip |
app-emacs/elfeed: new package; add 3.4.1_p20210822
Initial ebuild by Sam <sam@gentoo.org> from his overlay.
2021.08.22 snapshot
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/elfeed/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild | 29 | ||||
-rw-r--r-- | app-emacs/elfeed/files/50elfeed-gentoo.el | 2 | ||||
-rw-r--r-- | app-emacs/elfeed/metadata.xml | 21 |
4 files changed, 53 insertions, 0 deletions
diff --git a/app-emacs/elfeed/Manifest b/app-emacs/elfeed/Manifest new file mode 100644 index 000000000000..6580308a389c --- /dev/null +++ b/app-emacs/elfeed/Manifest @@ -0,0 +1 @@ +DIST elfeed-3.4.1_p20210822.tar.gz 67360 BLAKE2B 32931bbe54578bb8a0b9fc330d5114e4cc5f5f915f6e6125ad3d8cb5be459e72a097d1afb132ff6a73427efe9ffcce4a7e081a9a45144a5c1ea7fcdfe19ba4d9 SHA512 41bb095b87df3dfb40b6a155881f8703c674ddb9f15b5b2765fd4f893d4e58ddafb2fa0da296995e988a9ba6096e78760c262c9a18ef7624e65b60f2d7bf4140 diff --git a/app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild b/app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild new file mode 100644 index 000000000000..5d34ccddc3b0 --- /dev/null +++ b/app-emacs/elfeed/elfeed-3.4.1_p20210822.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=24.3 + +inherit elisp + +DESCRIPTION="Emacs web feeds client" +HOMEPAGE="https://github.com/skeeto/elfeed/" + +if [[ ${PV} == *_p* ]] ; then + H=162d7d545ed41c27967d108c04aa31f5a61c8e16 + SRC_URI="https://github.com/skeeto/${PN}/archive/${H}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}"/${PN}-${H} +else + SRC_URI="https://github.com/skeeto/${PN}/releases/download/${PV}/${P}.tar" +fi + +LICENSE="Unlicense" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="net-misc/curl[ssl]" + +DOCS=( NEWS.md README.md ) +ELISP_REMOVE="${PN}-pkg.el" +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emacs/elfeed/files/50elfeed-gentoo.el b/app-emacs/elfeed/files/50elfeed-gentoo.el new file mode 100644 index 000000000000..535139ef379c --- /dev/null +++ b/app-emacs/elfeed/files/50elfeed-gentoo.el @@ -0,0 +1,2 @@ +(add-to-list 'load-path "@SITELISP@") +(autoload 'elfeed "elfeed" "Enter elfeed." t) diff --git a/app-emacs/elfeed/metadata.xml b/app-emacs/elfeed/metadata.xml new file mode 100644 index 000000000000..a8e59db76c15 --- /dev/null +++ b/app-emacs/elfeed/metadata.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> + <maintainer type="project"> + <email>gnu-emacs@gentoo.org</email> + <name>Gentoo GNU Emacs project</name> + </maintainer> + <maintainer type="person"> + <email>sam@gentoo.org</email> + <name>Sam James</name> + </maintainer> + <longdescription> + Elfeed is an extensible web feed reader for Emacs, supporting both Atom and + RSS. Elfeed was inspired by notmuch. + </longdescription> + <upstream> + <bugs-to>https://github.com/skeeto/elfeed/issues/</bugs-to> + <remote-id type="github">skeeto/elfeed</remote-id> + </upstream> +</pkgmetadata> |