net-news/sfeed: add 1.8

Also update my name to what I prefer since glep76 now allows for using
"established online identity" [0].

[0]: https://www.gentoo.org/glep/glep-0076.html#certificate-of-origin

Closes: https://github.com/gentoo/gentoo/pull/30834
Signed-off-by: NRK <nrk@disroot.org>
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
NRK
2023-05-17 22:13:16 +02:00
committed by David Seifert
parent e921ea88c8
commit b15b13a385
3 changed files with 80 additions and 1 deletions

View File

@@ -1,2 +1,3 @@
DIST sfeed-1.5.tar.gz 65067 BLAKE2B 0f2fbe263d869d396aae9a13c482d381d0e7201ca62b86f795bedd4e4174bea1959c16d1b63d534013e9a100527d6885122b9965e060773809912d299a9a573e SHA512 9a027b092620968bd6a086b37ce5bc3e2d5ee8193b59251466d5318bc1514ca78d3edf894c1988504c99b94f0bb3af2a54ba3067b2d90d1109665a5650bfd8a2
DIST sfeed-1.6.tar.gz 65239 BLAKE2B 25a5f645d8814d48d6c2617cbc9944339866e668c7b7d21581db605987284447c5d6e2f505b5c9d1c1f5d22702ef3b3c80a076f8d9c930f8ae7d5447fd88ecb0 SHA512 450cde27b0d437b165fc024f2b95612fd7755c357e3539167f3c9b123d7a63c3193cb808b6c9621d15b1f5e2d8d783131423e52db6e98c228aa5af190eb167eb
DIST sfeed-1.8.tar.gz 67335 BLAKE2B 7898d6fe51455c65e7b1d7708ba4804880f36d0d3447746f6c81a85a22427bf3f0b7f8f7685f0e3b27b538b4ef7193fdef54f5aa4e1816e33d78a50143307804 SHA512 7a57108ace21813de9d80e7ebcc9ffed37580f52f08313ddcf86f2ee0df54d733631cba6936921623aa34c41a06dba43778cedbf557738db009d91f961fc9af7

View File

@@ -7,7 +7,7 @@
</maintainer>
<maintainer type="person" proxied="yes">
<email>nrk@disroot.org</email>
<name>Nickolas Raymond Kaczynski</name>
<name>NRK</name>
</maintainer>
<maintainer type="project" proxied="proxy">
<email>proxy-maint@gentoo.org</email>

View File

@@ -0,0 +1,78 @@
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs savedconfig optfeature
DESCRIPTION="Simple RSS and Atom parser"
HOMEPAGE="https://codemadness.org/sfeed-simple-feed-parser.html"
SRC_URI="https://codemadness.org/releases/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~riscv ~sparc ~x86"
THEMES=( mono{,-highlight} newsboat templeos )
IUSE="+ncurses +${THEMES[@]/#/theme-}"
REQUIRED_USE="ncurses? ( ^^ ( "${THEMES[@]/#/theme-}" ) )"
DEPEND="ncurses? ( sys-libs/ncurses:= )"
RDEPEND="${DEPEND}"
BDEPEND="ncurses? ( virtual/pkgconfig )"
src_configure() {
local name
for name in "${THEMES[@]}"; do
use "theme-${name}" && SFEED_THEME="${name//-/_}"
done
restore_config $(printf "themes/%s.h " "${THEMES[@]//-/_}")
}
src_compile() {
local ncurses_ldflags=""
use ncurses && ncurses_ldflags="$($(tc-getPKG_CONFIG) --libs ncurses || die)"
emake \
CC="$(tc-getCC)" \
RANLIB="$(tc-getRANLIB)" \
AR="$(tc-getAR)" \
SFEED_CURSES="$(usev ncurses sfeed_curses)" \
SFEED_THEME="${SFEED_THEME}" \
SFEED_CURSES_LDFLAGS="${LDFLAGS} ${ncurses_ldflags}"
}
src_install() {
emake \
DESTDIR="${D}" \
PREFIX="${EPREFIX}/usr" \
MANPREFIX="${EPREFIX}/usr/share/man" \
DOCPREFIX="${EPREFIX}/usr/share/doc/${PF}" \
SFEED_CURSES="$(usev ncurses sfeed_curses)" \
install
save_config $(printf "themes/%s.h " "${THEMES[@]//-/_}")
}
pkg_postinst() {
local optmsg
if use ncurses; then
optmsg="yanking the URL or enclosure in sfeed_curses. "
optmsg+="See \$SFEED_YANKER to change it."
optfeature "${optmsg}" x11-misc/xclip
optmsg="plumbing the URL or enclosure in sfeed_curses. "
optmsg+="See \$SFEED_PLUMBER to change it."
optfeature "${optmsg}" x11-misc/xdg-utils
fi
optmsg="converting HTML content via sfeed_content. "
optmsg+="See the ENVIRONMENT VARIABLES section in the man page to change it."
optfeature "${optmsg}" www-client/lynx
optmsg="fetching feeds. Used by sfeed_update as default. "
optmsg+="See OVERRIDE FUNCTIONS section on sfeedrc manpage to change it."
optfeature "${optmsg}" net-misc/curl
}